-
Notifications
You must be signed in to change notification settings - Fork 2
/
ipc_lock.h
62 lines (53 loc) · 1.14 KB
/
ipc_lock.h
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
#ifndef IPC_LOCK_H
#define IPC_LOCK_H
#include <pthread.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <semaphore.h>
#include <stdio.h>
#include <errno.h>
#include <limits>
#include <atomic>
enum : std::size_t
{
invalid_value = (std::numeric_limits<std::size_t>::max)(),
default_timeout = 100 // ms
};
class Mutex
{
public:
pthread_mutex_t &Native();
bool Open();
bool Close();
bool Lock();
bool Unlock();
private:
pthread_mutex_t mutex_ = PTHREAD_MUTEX_INITIALIZER;
};
class ConditionVar
{
public:
bool Open();
bool Close();
bool Wait(Mutex &mtx, std::size_t tm);
bool Notify();
bool Broadcast();
private:
pthread_cond_t cond_ = PTHREAD_COND_INITIALIZER;
};
inline static bool CalcWaitTime(timespec &ts, std::size_t tm /*ms*/)
{
timeval now;
int eno = gettimeofday(&now, NULL);
if (eno != 0)
{
printf("fail gettimeofday [%d]\n", eno);
return false;
}
ts.tv_nsec = (now.tv_usec + (tm % 1000) * 1000) * 1000;
ts.tv_sec = now.tv_sec + (tm / 1000) + (ts.tv_nsec / 1000000000);
ts.tv_nsec %= 1000000000;
return true;
}
#endif