forked from Softmotions/ejdb-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejdb_thread.h
More file actions
80 lines (71 loc) · 2.19 KB
/
ejdb_thread.h
File metadata and controls
80 lines (71 loc) · 2.19 KB
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
/**************************************************************************************************
* EJDB database library http://ejdb.org
* Copyright (C) 2012-2013 Softmotions Ltd <info@softmotions.com>
*
* This file is part of EJDB.
* EJDB is free software; you can redistribute it and/or modify it under the terms of
* the GNU Lesser General Public License as published by the Free Software Foundation; either
* version 2.1 of the License or any later version. EJDB 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 Lesser General Public
* License for more details.
* You should have received a copy of the GNU Lesser General Public License along with EJDB;
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA.
*************************************************************************************************/
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#ifndef EJDB_THREAD_H
#define EJDB_THREAD_H
#ifdef _WIN32
#include "win32/pthread_mutex.h"
#else
#include <pthread.h>
#endif
namespace ejdb {
/**
* Mutex
*/
class EJMutex {
pthread_mutex_t cs;
volatile bool initialized;
public:
EJMutex() {
pthread_mutex_init(&cs, NULL);
initialized = true;
}
~EJMutex() {
pthread_mutex_destroy(&cs);
initialized = false;
}
bool IsInitialized() {
return initialized;
}
void Lock() {
if (initialized) {
pthread_mutex_lock(&cs);
}
}
void Unlock() {
if (initialized) {
pthread_mutex_unlock(&cs);
}
}
};
/**
* Stack based mutex locking
*/
class EJCriticalSection {
private:
EJMutex& mutex;
public:
EJCriticalSection(EJMutex& guard) : mutex(guard) {
mutex.Lock();
}
~EJCriticalSection() {
mutex.Unlock();
}
};
}
#endif /* EJDB_THREAD_H */