blob: 7c9bcdaa9ad0659f4c3f3508951bf7e15aa345a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* Copyright (C) 2001-2006 Jacek Sieka, arnetheduck on gmail point com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#if !defined(CRITICAL_SECTION_H)
#define CRITICAL_SECTION_H
#pragma once
class CriticalSection
{
public:
void enter() throw() {
EnterCriticalSection(&cs);
}
void leave() throw() {
LeaveCriticalSection(&cs);
}
CriticalSection() throw() {
InitializeCriticalSection(&cs);
}
~CriticalSection() throw() {
DeleteCriticalSection(&cs);
}
private:
CRITICAL_SECTION cs;
CriticalSection(const CriticalSection&);
CriticalSection& operator=(const CriticalSection&);
};
template<class T>
class LockBase {
public:
LockBase(T& aCs) throw() : cs(aCs) { cs.enter(); }
~LockBase() throw() { cs.leave(); }
private:
LockBase& operator=(const LockBase&);
T& cs;
};
typedef LockBase<CriticalSection> Lock;
/*
template<class T = CriticalSection>
class RWLock
{
public:
RWLock() throw() : cs(), readers(0) { }
~RWLock() throw() { }
void enterRead() throw() {
cs.enter();
InterlockedIncrement(&readers);
cs.leave();
}
void leaveRead() throw() {
InterlockedDecrement(&readers);
}
void enterWrite() throw() {
cs.enter();
while(readers > 0) {
::Sleep(1);
}
}
void leaveWrite() {
cs.leave();
}
private:
T cs;
volatile long readers;
};
template<class T = CriticalSection>
class RLock {
public:
RLock(RWLock<T>& aRwl) throw() : rwl(aRwl) { rwl.enterRead(); }
~RLock() throw() { rwl.leaveRead(); }
private:
RLock& operator=(const RLock&);
RWLock<T>& rwl;
};
template<class T = CriticalSection>
class WLock {
public:
WLock(RWLock<T>& aRwl) throw() : rwl(aRwl) { rwl.enterWrite(); }
~WLock() throw() { rwl.leaveWrite(); }
private:
WLock& operator=(const WLock&);
RWLock<T>& rwl;
};
*/
#endif // !defined(CRITICAL_SECTION_H)
/**
* @file
* $Id: CriticalSection.h,v 1.20 2006/03/05 10:17:03 bigmuscle Exp $
*/
|