Cuberite
A lightweight, fast and extensible game server for Minecraft
CriticalSection.cpp
Go to the documentation of this file.
1 
2 #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
3 #include "CriticalSection.h"
4 
5 
6 
7 
8 
10 // cCriticalSection:
11 
13  m_RecursionCount(0)
14 {
15 }
16 
17 
18 
19 
20 
22 {
23  m_Mutex.lock();
24 
25  m_RecursionCount += 1;
26  m_OwningThreadID = std::this_thread::get_id();
27 }
28 
29 
30 
31 
32 
34 {
36  m_RecursionCount -= 1;
37 
38  m_Mutex.unlock();
39 }
40 
41 
42 
43 
44 
46 {
47  return (m_RecursionCount > 0);
48 }
49 
50 
51 
52 
53 
55 {
56  return ((m_RecursionCount > 0) && (m_OwningThreadID == std::this_thread::get_id()));
57 }
58 
59 
60 
61 
62 
64 // cCSLock
65 
67  : m_CS(a_CS)
68  , m_IsLocked(false)
69 {
70  Lock();
71 }
72 
73 
74 
75 
76 
78  : m_CS(&a_CS)
79  , m_IsLocked(false)
80 {
81  Lock();
82 }
83 
84 
85 
86 
87 
89 {
90  if (!m_IsLocked)
91  {
92  return;
93  }
94  Unlock();
95 }
96 
97 
98 
99 
100 
101 void cCSLock::Lock(void)
102 {
103  ASSERT(!m_IsLocked);
104  m_IsLocked = true;
105  m_CS->Lock();
106 }
107 
108 
109 
110 
111 
112 void cCSLock::Unlock(void)
113 {
115  m_IsLocked = false;
116  m_CS->Unlock();
117 }
118 
119 
120 
121 
122 
124 // cCSUnlock:
125 
127  m_Lock(a_Lock)
128 {
129  m_Lock.Unlock();
130 }
131 
132 
133 
134 
135 
137 {
138  m_Lock.Lock();
139 }
140 
141 
142 
143 
#define ASSERT(x)
Definition: Globals.h:276
int m_RecursionCount
Number of times that this CS is currently locked (levels of recursion).
std::recursive_mutex m_Mutex
std::thread::id m_OwningThreadID
ID of the thread that is currently holding the CS.
bool IsLockedByCurrentThread(void)
Returns true if the CS is currently locked by the thread calling this function.
bool IsLocked(void)
Returns true if the CS is currently locked.
RAII for cCriticalSection - locks the CS on creation, unlocks on destruction.
cCSLock(cCriticalSection *a_CS)
void Lock(void)
cCriticalSection * m_CS
void Unlock(void)
bool m_IsLocked
cCSLock & m_Lock
cCSUnlock(cCSLock &a_Lock)