ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
as_criticalsection.h
1 /*
2  AngelCode Scripting Library
3  Copyright (c) 2003-2017 Andreas Jonsson
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any
7  damages arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any
10  purpose, including commercial applications, and to alter it and
11  redistribute it freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you
14  must not claim that you wrote the original software. If you use
15  this software in a product, an acknowledgment in the product
16  documentation would be appreciated but is not required.
17 
18  2. Altered source versions must be plainly marked as such, and
19  must not be misrepresented as being the original software.
20 
21  3. This notice may not be removed or altered from any source
22  distribution.
23 
24  The original version of this library can be located at:
25  http://www.angelcode.com/angelscript/
26 
27  Andreas Jonsson
28  andreas@angelcode.com
29 */
30 
31 
32 
33 //
34 // as_criticalsection.h
35 //
36 // Classes for multi threading support
37 //
38 
39 #ifndef AS_CRITICALSECTION_H
40 #define AS_CRITICALSECTION_H
41 
42 #include "as_config.h"
43 
44 BEGIN_AS_NAMESPACE
45 
46 #ifdef AS_NO_THREADS
47 
48 #define DECLARECRITICALSECTION(x)
49 #define ENTERCRITICALSECTION(x)
50 #define LEAVECRITICALSECTION(x)
51 
52 inline bool tryEnter() {
53  return true;
54 }
55 #define TRYENTERCRITICALSECTION(x) tryEnter()
56 
57 #define DECLAREREADWRITELOCK(x)
58 #define ACQUIREEXCLUSIVE(x)
59 #define RELEASEEXCLUSIVE(x)
60 #define ACQUIRESHARED(x)
61 #define RELEASESHARED(x)
62 
63 #else
64 
65 #define DECLARECRITICALSECTION(x) asCThreadCriticalSection x;
66 #define ENTERCRITICALSECTION(x) x.Enter()
67 #define LEAVECRITICALSECTION(x) x.Leave()
68 #define TRYENTERCRITICALSECTION(x) x.TryEnter()
69 
70 #define DECLAREREADWRITELOCK(x) asCThreadReadWriteLock x;
71 #define ACQUIREEXCLUSIVE(x) x.AcquireExclusive()
72 #define RELEASEEXCLUSIVE(x) x.ReleaseExclusive()
73 #define ACQUIRESHARED(x) x.AcquireShared()
74 #define RELEASESHARED(x) x.ReleaseShared()
75 
76 #ifdef AS_POSIX_THREADS
77 
78 END_AS_NAMESPACE
79 #include <pthread.h>
80 BEGIN_AS_NAMESPACE
81 
82 class asCThreadCriticalSection {
83 public:
84  asCThreadCriticalSection();
85  ~asCThreadCriticalSection();
86 
87  void Enter();
88  void Leave();
89  bool TryEnter();
90 
91 protected:
92  pthread_mutex_t cs;
93 };
94 
95 class asCThreadReadWriteLock {
96 public:
97  asCThreadReadWriteLock();
98  ~asCThreadReadWriteLock();
99 
100  void AcquireExclusive();
101  void ReleaseExclusive();
102  bool TryAcquireExclusive();
103 
104  void AcquireShared();
105  void ReleaseShared();
106  bool TryAcquireShared();
107 
108 protected:
109  pthread_rwlock_t lock;
110 };
111 
112 #elif defined(AS_WINDOWS_THREADS)
113 
114 END_AS_NAMESPACE
115 #ifdef AS_XBOX360
116 #include <xtl.h>
117 #else
118 #ifndef WIN32_LEAN_AND_MEAN
119 #define WIN32_LEAN_AND_MEAN
120 #endif
121 #ifndef _WIN32_WINNT
122 #define _WIN32_WINNT 0x0600 // We need this to get the declaration for Windows Phone compatible Ex functions
123 #endif
124 #include <windows.h>
125 #endif
126 BEGIN_AS_NAMESPACE
127 
128 // Undefine macros that cause problems in our code
129 #undef GetObject
130 #undef RegisterClass
131 
132 class asCThreadCriticalSection {
133 public:
134  asCThreadCriticalSection();
135  ~asCThreadCriticalSection();
136 
137  void Enter();
138  void Leave();
139  bool TryEnter();
140 
141 protected:
142  CRITICAL_SECTION cs;
143 };
144 
145 class asCThreadReadWriteLock {
146 public:
147  asCThreadReadWriteLock();
148  ~asCThreadReadWriteLock();
149 
150  void AcquireExclusive();
151  void ReleaseExclusive();
152 
153  void AcquireShared();
154  void ReleaseShared();
155 
156 protected:
157  // The Slim Read Write Lock object, SRWLOCK, is more efficient
158  // but it is only available from Windows Vista so we cannot use it and
159  // maintain compatibility with olders versions of Windows.
160 
161  // Critical sections and semaphores are available on Windows XP and onwards.
162  // Windows XP is oldest version we support with multithreading.
163 
164  // The implementation is based on the following article, that shows
165  // how to implement a fair read/write lock that doesn't risk starving
166  // the writers:
167 
168  // http://doc.qt.nokia.com/qq/qq11-mutex.html
169 
170  // TODO: Allow use of SRWLOCK through configuration in as_config.h
171 
172  CRITICAL_SECTION writeLock;
173  HANDLE readLocks;
174 };
175 
176 // This constant really should be a member of asCThreadReadWriteLock,
177 // but it gives a compiler error on MSVC6 so I'm leaving it outside
178 static const asUINT maxReaders = 10;
179 
180 #endif
181 
182 #endif
183 
184 END_AS_NAMESPACE
185 
186 #endif
187