CritSection.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #ifndef __CRITSECTION_20160228__
  2. #define __CRITSECTION_20160228__
  3. /************************************************************************/
  4. /* Copyright (C), 2016-2020, [IT], 保留所有权利;
  5. /* 模 块 名:ThreadSection;
  6. /* 描 述:线程使用的临界值保护对象;
  7. /*
  8. /* 版 本:[V];
  9. /* 作 者:[IT];
  10. /* 日 期:[2/23/2016];
  11. /*
  12. /*
  13. /* 注 意:;
  14. /*
  15. /* 修改记录:[IT];
  16. /* 修改日期:;
  17. /* 修改版本:;
  18. /* 修改内容:;
  19. /************************************************************************/
  20. class ThreadSection
  21. {
  22. public:
  23. ThreadSection(){
  24. HRESULT hr = Init();
  25. (hr);
  26. }
  27. ~ThreadSection(){
  28. DeleteCriticalSection(&_CriticalSection);
  29. }
  30. /// Enter/Lock a critical section
  31. bool Lock(){
  32. bool result = false;
  33. __try
  34. {
  35. EnterCriticalSection(&_CriticalSection);
  36. result = true;
  37. }
  38. __except(STATUS_NO_MEMORY == GetExceptionCode())
  39. {
  40. }
  41. return result;
  42. }
  43. /// Leave/Unlock a critical section
  44. bool Unlock(){
  45. bool result = false;
  46. __try
  47. {
  48. LeaveCriticalSection(&_CriticalSection);
  49. result = true;
  50. }
  51. __except(STATUS_NO_MEMORY == GetExceptionCode())
  52. {
  53. }
  54. return result;
  55. }
  56. private:
  57. /// Initialize critical section
  58. HRESULT Init() throw(){
  59. HRESULT hRes = E_FAIL;
  60. __try
  61. {
  62. InitializeCriticalSection(&_CriticalSection);
  63. hRes = S_OK;
  64. }
  65. // structured exception may be raised in low memory situations
  66. __except(STATUS_NO_MEMORY == GetExceptionCode())
  67. {
  68. hRes = E_OUTOFMEMORY;
  69. }
  70. return hRes;
  71. }
  72. ThreadSection(const ThreadSection & tSection);
  73. ThreadSection &operator=(const ThreadSection & tSection);
  74. CRITICAL_SECTION _CriticalSection;
  75. };
  76. // 垫片类;
  77. class AutoThreadSection
  78. {
  79. public:
  80. /// auto section - constructor
  81. AutoThreadSection(__in ThreadSection* pSection){
  82. //if ( pSection != NULL ){
  83. _pSection = pSection;
  84. _pSection->Lock();
  85. //}
  86. }
  87. ~AutoThreadSection(){
  88. // if ( _pSection != NULL )
  89. _pSection->Unlock();
  90. }
  91. private:
  92. AutoThreadSection(const AutoThreadSection & tSection);
  93. AutoThreadSection &operator=(const AutoThreadSection & tSection);
  94. ThreadSection * _pSection;
  95. };
  96. #endif // __CRITSECTION_20160228__