CritSection.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. #ifndef CRITSECTION_H
  2. #define CRITSECTION_H
  3. /**
  4. * Critical section
  5. * Critical Section object
  6. */
  7. class ThreadSection
  8. {
  9. public:
  10. ThreadSection()
  11. {
  12. HRESULT hr = Init();
  13. (hr);
  14. }
  15. ~ThreadSection()
  16. {
  17. DeleteCriticalSection(&_CriticalSection);
  18. }
  19. /// Enter/Lock a critical section
  20. bool Lock()
  21. {
  22. bool result = false;
  23. __try
  24. {
  25. EnterCriticalSection(&_CriticalSection);
  26. result = true;
  27. }
  28. __except(STATUS_NO_MEMORY == GetExceptionCode())
  29. {
  30. }
  31. return result;
  32. }
  33. /// Leave/Unlock a critical section
  34. bool Unlock()
  35. {
  36. bool result = false;
  37. __try
  38. {
  39. LeaveCriticalSection(&_CriticalSection);
  40. result = true;
  41. }
  42. __except(STATUS_NO_MEMORY == GetExceptionCode())
  43. {
  44. }
  45. return result;
  46. }
  47. private:
  48. /// Initialize critical section
  49. HRESULT Init() throw()
  50. {
  51. HRESULT hRes = E_FAIL;
  52. __try
  53. {
  54. InitializeCriticalSection(&_CriticalSection);
  55. hRes = S_OK;
  56. }
  57. // structured exception may be raised in low memory situations
  58. __except(STATUS_NO_MEMORY == GetExceptionCode())
  59. {
  60. hRes = E_OUTOFMEMORY;
  61. }
  62. return hRes;
  63. }
  64. ThreadSection(const ThreadSection & tSection);
  65. ThreadSection &operator=(const ThreadSection & tSection);
  66. CRITICAL_SECTION _CriticalSection;
  67. };
  68. /**
  69. * AutoThreadSection class
  70. * Critical section auto-lock
  71. */
  72. class AutoThreadSection
  73. {
  74. public:
  75. /// auto section - constructor
  76. AutoThreadSection(__in ThreadSection* pSection)
  77. {
  78. _pSection = pSection;
  79. _pSection->Lock();
  80. }
  81. ~AutoThreadSection()
  82. {
  83. _pSection->Unlock();
  84. }
  85. private:
  86. AutoThreadSection(const AutoThreadSection & tSection);
  87. AutoThreadSection &operator=(const AutoThreadSection & tSection);
  88. ThreadSection * _pSection;
  89. };
  90. #endif //CRITSECTION_H