forked from membase/ep-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatomic.hh
More file actions
472 lines (389 loc) · 9.64 KB
/
atomic.hh
File metadata and controls
472 lines (389 loc) · 9.64 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
#ifndef ATOMIC_HH
#define ATOMIC_HH
#include <pthread.h>
#include <queue>
#include <sched.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include "callbacks.hh"
#include "locks.hh"
#define MAX_THREADS 100
#if defined(HAVE_GCC_ATOMICS)
#include "atomic/gcc_atomics.h"
#elif defined(HAVE_ATOMIC_H)
#include "atomic/libatomic.h"
#else
#error "Don't know how to use atomics on your target system!"
#endif
extern "C" {
typedef void (*ThreadLocalDestructor)(void *);
}
/**
* Container of thread-local data.
*/
template<typename T>
class ThreadLocal {
public:
ThreadLocal(ThreadLocalDestructor destructor = NULL) {
int rc = pthread_key_create(&key, destructor);
if (rc != 0) {
fprintf(stderr, "Failed to create a thread-specific key: %s\n", strerror(rc));
abort();
}
}
~ThreadLocal() {
pthread_key_delete(key);
}
void set(const T &newValue) {
int rc = pthread_setspecific(key, newValue);
if (rc != 0) {
std::stringstream ss;
ss << "Failed to store thread specific value: " << strerror(rc);
throw std::runtime_error(ss.str().c_str());
}
}
T get() const {
return reinterpret_cast<T>(pthread_getspecific(key));
}
void operator =(const T &newValue) {
set(newValue);
}
operator T() const {
return get();
}
private:
pthread_key_t key;
};
/**
* Holder of atomic values.
*/
template <typename T>
class Atomic {
public:
Atomic(const T &initial = 0) {
set(initial);
}
~Atomic() {}
T get() const {
return value;
}
void set(const T &newValue) {
value = newValue;
ep_sync_synchronize();
}
operator T() const {
return get();
}
void operator =(const T &newValue) {
set(newValue);
}
bool cas(const T &oldValue, const T &newValue) {
return ep_sync_bool_compare_and_swap(&value, oldValue, newValue);
}
T operator ++() { // prefix
return ep_sync_add_and_fetch(&value, 1);
}
T operator ++(int) { // postfix
return ep_sync_fetch_and_add(&value, 1);
}
T operator --() { // prefix
return ep_sync_add_and_fetch(&value, -1);
}
T operator --(int) { // postfix
return ep_sync_fetch_and_add(&value, -1);
}
T operator +=(T increment) {
// Returns the new value
return ep_sync_add_and_fetch(&value, increment);
}
T operator -=(T decrement) {
return ep_sync_add_and_fetch(&value, -decrement);
}
T incr(const T &increment) {
// Returns the old value
return ep_sync_fetch_and_add(&value, increment);
}
T decr(const T &decrement) {
return ep_sync_add_and_fetch(&value, -decrement);
}
T swap(const T &newValue) {
T rv;
while (true) {
rv = get();
if (cas(rv, newValue)) {
break;
}
}
return rv;
}
T swapIfNot(const T &badValue, const T &newValue) {
T oldValue;
while (true) {
oldValue = get();
if (oldValue != badValue) {
if (cas(oldValue, newValue)) {
break;
}
} else {
break;
}
}
return oldValue;
}
void setIfLess(const T &newValue) {
T oldValue = get();
while (newValue < oldValue) {
if (cas(oldValue, newValue)) {
break;
}
oldValue = get();
}
}
void setIfBigger(const T &newValue) {
T oldValue = get();
while (newValue > oldValue) {
if (cas(oldValue, newValue)) {
break;
}
oldValue = get();
}
}
private:
volatile T value;
};
/**
* Atomic pointer.
*
* This does *not* make the item that's pointed to atomic.
*/
template <typename T>
class AtomicPtr : public Atomic<T*> {
public:
AtomicPtr(T *initial = NULL) : Atomic<T*>(initial) {}
~AtomicPtr() {}
T *operator ->() {
return Atomic<T*>::get();
}
T operator *() {
return *Atomic<T*>::get();
}
operator bool() const {
return Atomic<T*>::get() != NULL;
}
bool operator !() const {
return Atomic<T*>::get() == NULL;
}
};
/**
* A lighter-weight, smaller lock than a mutex.
*
* This is primarily useful when contention is rare.
*/
class SpinLock {
public:
// It seems like inlining the code caused the dtrace probe to
// be optimized away ;)
SpinLock();
~SpinLock();
void acquire(void);
void release(void);
private:
bool tryAcquire() {
return ep_sync_lock_test_and_set(&lock, 1) == 0;
}
volatile int lock;
DISALLOW_COPY_AND_ASSIGN(SpinLock);
};
/**
* Safe LockHolder for SpinLock instances.
*/
class SpinLockHolder {
public:
SpinLockHolder(SpinLock *theLock) : sl(theLock) {
lock();
}
~SpinLockHolder() {
unlock();
}
void lock() {
sl->acquire();
locked = true;
}
void unlock() {
if (locked) {
sl->release();
locked = false;
}
}
private:
SpinLock *sl;
bool locked;
};
template <class T> class RCPtr;
template <class S> class SingleThreadedRCPtr;
/**
* A reference counted value (used by RCPtr and SingleThreadedRCPtr).
*/
class RCValue {
public:
RCValue() : _rc_refcount(0) {}
RCValue(const RCValue &) : _rc_refcount(0) {}
~RCValue() {}
private:
template <class MyTT> friend class RCPtr;
template <class MySS> friend class SingleThreadedRCPtr;
int _rc_incref() const {
return ++_rc_refcount;
}
int _rc_decref() const {
return --_rc_refcount;
}
mutable Atomic<int> _rc_refcount;
};
/**
* Concurrent reference counted pointer.
*/
template <class C>
class RCPtr {
public:
RCPtr(C *init = NULL) : value(init) {
if (init != NULL) {
static_cast<RCValue*>(value)->_rc_incref();
}
}
RCPtr(const RCPtr<C> &other) : value(other.gimme()) {}
~RCPtr() {
if (value && static_cast<RCValue *>(value)->_rc_decref() == 0) {
delete value;
}
}
void reset(C *newValue = NULL) {
if (newValue != NULL) {
static_cast<RCValue *>(newValue)->_rc_incref();
}
swap(newValue);
}
void reset(const RCPtr<C> &other) {
swap(other.gimme());
}
bool cas(RCPtr<C> &oldValue, RCPtr<C> &newValue) {
SpinLockHolder lh(&lock);
if (value == oldValue.get()) {
C *tmp = value;
value = newValue.gimme();
if (tmp != NULL &&
static_cast<RCValue *>(tmp)->_rc_decref() == 0) {
lh.unlock();
delete tmp;
}
return true;
}
return false;
}
// safe for the lifetime of this instance
C *get() const {
return value;
}
RCPtr<C> & operator =(const RCPtr<C> &other) {
reset(other);
return *this;
}
C &operator *() const {
return *value;
}
C *operator ->() const {
return value;
}
bool operator! () const {
return !value;
}
operator bool () const {
return (bool)value;
}
private:
C *gimme() const {
SpinLockHolder lh(&lock);
if (value) {
static_cast<RCValue *>(value)->_rc_incref();
}
return value;
}
void swap(C *newValue) {
SpinLockHolder lh(&lock);
C *tmp(value.swap(newValue));
lh.unlock();
if (tmp != NULL && static_cast<RCValue *>(tmp)->_rc_decref() == 0) {
delete tmp;
}
}
AtomicPtr<C> value;
mutable SpinLock lock; // exists solely for the purpose of implementing reset() safely
};
/**
* Single-threaded reference counted pointer.
* "Single-threaded" means that the reference counted pointer should be accessed
* by only one thread at any time or accesses to the reference counted pointer
* by multiple threads should be synchronized by the external lock.
*/
template <class T>
class SingleThreadedRCPtr {
public:
SingleThreadedRCPtr(T *init = NULL) : value(init) {
if (init != NULL) {
static_cast<RCValue*>(value)->_rc_incref();
}
}
SingleThreadedRCPtr(const SingleThreadedRCPtr<T> &other) : value(other.gimme()) {}
~SingleThreadedRCPtr() {
if (value && static_cast<RCValue *>(value)->_rc_decref() == 0) {
delete value;
}
}
void reset(T *newValue = NULL) {
if (newValue != NULL) {
static_cast<RCValue *>(newValue)->_rc_incref();
}
swap(newValue);
}
void reset(const SingleThreadedRCPtr<T> &other) {
swap(other.gimme());
}
// safe for the lifetime of this instance
T *get() const {
return value;
}
SingleThreadedRCPtr<T> & operator =(const SingleThreadedRCPtr<T> &other) {
reset(other);
return *this;
}
T &operator *() const {
return *value;
}
T *operator ->() const {
return value;
}
bool operator! () const {
return !value;
}
operator bool () const {
return (bool)value;
}
private:
T *gimme() const {
if (value) {
static_cast<RCValue *>(value)->_rc_incref();
}
return value;
}
void swap(T *newValue) {
T *old = value;
value = newValue;
if (old != NULL && static_cast<RCValue *>(old)->_rc_decref() == 0) {
delete old;
}
}
T *value;
};
#endif // ATOMIC_HH