GetZZLCommander.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:3k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. #if defined (_MSC_VER) && (_MSC_VER >= 1000)
  20. #pragma once
  21. #endif
  22. #ifndef _GETZZLCOMMANDER_H
  23. #define _GETZZLCOMMANDER_H
  24. #include <list>
  25. #include "GetZZL.h"
  26. using namespace std;
  27. class CGetZZLDisplayDlg;
  28. class CCri
  29. {
  30. public:
  31. CCri()
  32. {
  33.  InitializeCriticalSection(&moCS);
  34. };
  35. ~CCri()
  36. {
  37.  DeleteCriticalSection(&moCS);
  38. };
  39. void Enter()
  40. {
  41.  EnterCriticalSection(&moCS);
  42. };
  43. void Leave()
  44. {
  45. LeaveCriticalSection(&moCS);
  46. }
  47. private:
  48. CRITICAL_SECTION moCS;
  49. };
  50. class CAuto
  51. {
  52. public:
  53. CAuto (CCri* apCS)
  54. {
  55. mpCS = apCS;
  56. mpCS->Enter();
  57. };
  58. ~CAuto()
  59. {
  60. mpCS->Leave();
  61. };
  62. CCri* mpCS;
  63. };
  64. class CGetZZLCommander
  65. {
  66. public:
  67. CGetZZLCommander();
  68. ~CGetZZLCommander();
  69. public:
  70. void CreateInstance();
  71. BOOL SetSourceFile(CString& astrSourceFile, CString& astrSourceFileName);
  72. void DelSourceFile(CString& astrSourceFileName);
  73. void CloseGetZZL();
  74. BOOL RunCommader(CWnd* apWnd);
  75. void Stop();
  76. void SetClose();
  77. void SetBuffer(CString& astrBuffer);
  78. //该函数用来回调
  79. static int __stdcall GetZZLState(void* apUserPara,int aiState);
  80. //设置转化ZZL处理过程函数
  81. static void __stdcall ConvertZZL( CGetZZLCommander* pParam);
  82. //初始化调试信息
  83. bool CreateDebugInfo();
  84. private:
  85. struct STRU_SOURCE_FILE 
  86. {
  87. char* mszSourceFile;
  88. char* mszSourceFileName;
  89. BOOL  mbFinished;
  90. };
  91. int miCount; //当转换多个文件时,用来计数。
  92. HANDLE mhGetZZL;
  93. list<STRU_SOURCE_FILE> mlstSourceFile;
  94. //这是一个ZZL文件转换完成的标志,0为运行,1为停止(全部文件转化完成为停止)。-1为发生意外错误停止(用户点击Stop为意外停止)
  95. volatile int miStopFlag;
  96. CString mstrBuffer;
  97. CWnd* mpWnd; //显示界面的CWnd
  98. BOOL mbClose;
  99. BOOL mbRunThread; //防止起两个或以上线程
  100. CCri   mocritsec;
  101. };
  102. #endif