Locks.h 5.8 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
Z
zhangjinchao01 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#pragma once

#include <pthread.h>
#include <sys/time.h>
#include <condition_variable>
#include <mutex>

L
liaogang 已提交
22
#include "Common.h"
L
liaogang 已提交
23

Z
zhangjinchao01 已提交
24 25 26 27
namespace paddle {

/**
 * A simple read-write lock.
28
 * The RWlock allows a number of readers or at most one writer
Z
zhangjinchao01 已提交
29 30 31 32 33 34 35 36 37 38
 * at any point in time.
 * The RWlock disable copy.
 *
 * Lock:
 *
 * Use lock() to lock on write mode, no other thread can get it
 * until unlock.
 *
 * Use lock_shared() to lock on read mode, other thread can get
 * it by using the same method lock_shared().
39
 *
Z
zhangjinchao01 已提交
40 41 42 43 44
 * Unlock:
 *
 * Use unlock() to unlock the lock.
 */
class RWLock {
W
Wu Yi 已提交
45
 public:
Z
zhangjinchao01 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  RWLock() { pthread_rwlock_init(&rwlock_, NULL); }
  ~RWLock() { pthread_rwlock_destroy(&rwlock_); }
  RWLock(const RWLock&) = delete;
  RWLock& operator=(const RWLock&) = delete;

  /**
   * @brief lock on write mode.
   * @note the method will block the thread, if failed to get the lock.
   */
  // std::mutex interface
  void lock() { pthread_rwlock_wrlock(&rwlock_); }
  /**
   * @brief lock on read mode.
   * @note if another thread is writing, it can't get the lock,
   * and will block the thread.
   */
  void lock_shared() { pthread_rwlock_rdlock(&rwlock_); }
  void unlock() { pthread_rwlock_unlock(&rwlock_); }

W
Wu Yi 已提交
65
 protected:
Z
zhangjinchao01 已提交
66 67 68 69
  pthread_rwlock_t rwlock_;
};

/**
70 71
 * The ReadLockGuard is a read mode RWLock
 * using RAII management mechanism.
Z
zhangjinchao01 已提交
72 73
 */
class ReadLockGuard {
W
Wu Yi 已提交
74
 public:
Z
zhangjinchao01 已提交
75
  /**
76
   * @brief Construct Function. Lock on rwlock in read mode.
Z
zhangjinchao01 已提交
77 78 79 80 81 82 83
   */
  explicit ReadLockGuard(RWLock& rwlock) : rwlock_(&rwlock) {
    rwlock_->lock_shared();
  }

  /**
   * @brief Destruct Function.
84
   * @note This method just unlock the read mode rwlock,
Z
zhangjinchao01 已提交
85 86 87 88
   * won't destroy the lock.
   */
  ~ReadLockGuard() { rwlock_->unlock(); }

W
Wu Yi 已提交
89
 protected:
Z
zhangjinchao01 已提交
90 91 92 93 94 95 96 97 98
  RWLock* rwlock_;
};

/**
 * A simple wrapper for spin lock.
 * The lock() method of SpinLock is busy-waiting
 * which means it will keep trying to lock until lock on successfully.
 * The SpinLock disable copy.
 */
Y
Yu Yang 已提交
99
class SpinLockPrivate;
Z
zhangjinchao01 已提交
100
class SpinLock {
W
Wu Yi 已提交
101
 public:
Y
Yu Yang 已提交
102 103 104
  DISABLE_COPY(SpinLock);
  SpinLock();
  ~SpinLock();
Z
zhangjinchao01 已提交
105 106

  // std::mutext interface
Y
Yu Yang 已提交
107 108
  void lock();
  void unlock();
Z
zhangjinchao01 已提交
109

W
Wu Yi 已提交
110
 private:
Y
Yu Yang 已提交
111
  SpinLockPrivate* m;
Z
zhangjinchao01 已提交
112 113 114 115 116
};

/**
 * A simple wapper of semaphore which can only be shared in the same process.
 */
Y
Yu Yang 已提交
117
class SemaphorePrivate;
L
liaogang 已提交
118
class Semaphore {
W
Wu Yi 已提交
119
 public:
Y
Yu Yang 已提交
120 121
  //! Disable copy & assign
  Semaphore(const Semaphore& other) = delete;
122
  Semaphore& operator=(const Semaphore&& other) = delete;
L
liaogang 已提交
123

Y
Yu Yang 已提交
124
  //! Enable move.
125
  Semaphore(Semaphore&& other) : m(std::move(other.m)) {}
L
liaogang 已提交
126

W
Wu Yi 已提交
127
 public:
Z
zhangjinchao01 已提交
128
  /**
129 130
   * @brief Construct Function.
   * @param[in] initValue the initial value of the
Z
zhangjinchao01 已提交
131 132
   * semaphore, default 0.
   */
Y
Yu Yang 已提交
133
  explicit Semaphore(int initValue = 0);
Z
zhangjinchao01 已提交
134

Y
Yu Yang 已提交
135
  ~Semaphore();
Z
zhangjinchao01 已提交
136 137

  /**
138
   * @brief The same as wait(), except if the decrement can not
Z
zhangjinchao01 已提交
139
   * be performed until ts return false install of blocking.
140
   * @param[in] ts an absolute timeout in seconds and nanoseconds
Z
zhangjinchao01 已提交
141
   * since the Epoch 1970-01-01 00:00:00 +0000(UTC).
142
   * @return ture if the decrement proceeds before ts,
Z
zhangjinchao01 已提交
143 144
   * else return false.
   */
Y
Yu Yang 已提交
145
  bool timeWait(struct timespec* ts);
Z
zhangjinchao01 已提交
146 147

  /**
148 149
   * @brief decrement the semaphore. If the semaphore's value is 0, then call
   * blocks.
Z
zhangjinchao01 已提交
150
   */
Y
Yu Yang 已提交
151
  void wait();
Z
zhangjinchao01 已提交
152 153

  /**
154
   * @brief increment the semaphore. If the semaphore's value
Z
zhangjinchao01 已提交
155 156
   * greater than 0, wake up a thread blocked in wait().
   */
Y
Yu Yang 已提交
157
  void post();
Z
zhangjinchao01 已提交
158

W
Wu Yi 已提交
159
 private:
Y
Yu Yang 已提交
160
  SemaphorePrivate* m;
Z
zhangjinchao01 已提交
161 162 163 164 165 166
};

/**
 * A simple wrapper of thread barrier.
 * The ThreadBarrier disable copy.
 */
Y
Yu Yang 已提交
167
class ThreadBarrierPrivate;
Z
zhangjinchao01 已提交
168
class ThreadBarrier {
W
Wu Yi 已提交
169
 public:
Y
Yu Yang 已提交
170 171
  DISABLE_COPY(ThreadBarrier);

Z
zhangjinchao01 已提交
172 173 174 175
  /**
   * @brief Construct Function. Initialize the barrier should
   * wait for count threads in wait().
   */
Y
Yu Yang 已提交
176 177
  explicit ThreadBarrier(int count);
  ~ThreadBarrier();
Z
zhangjinchao01 已提交
178 179

  /**
180 181 182
   * @brief .
   * If there were count - 1 threads waiting before,
   * then wake up all the count - 1 threads and continue run together.
Z
zhangjinchao01 已提交
183 184
   * Else block the thread until waked by other thread .
   */
Y
Yu Yang 已提交
185
  void wait();
Z
zhangjinchao01 已提交
186

W
Wu Yi 已提交
187
 private:
Y
Yu Yang 已提交
188
  ThreadBarrierPrivate* m;
Z
zhangjinchao01 已提交
189 190 191 192 193 194
};

/**
 * A wrapper for condition variable with mutex.
 */
class LockedCondition : public std::condition_variable {
W
Wu Yi 已提交
195
 public:
Z
zhangjinchao01 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
  /**
   * @brief execute op and notify one thread which was blocked.
   * @param[in] op a thread can do something in op before notify.
   */
  template <class Op>
  void notify_one(Op op) {
    std::lock_guard<std::mutex> guard(mutex_);
    op();
    std::condition_variable::notify_one();
  }

  /**
   * @brief execute op and notify all the threads which were blocked.
   * @param[in] op a thread can do something in op before notify.
   */
  template <class Op>
  void notify_all(Op op) {
    std::lock_guard<std::mutex> guard(mutex_);
    op();
    std::condition_variable::notify_all();
  }

  /**
   * @brief wait until pred return ture.
220 221 222
   * @tparam Predicate c++ concepts, describes a function object
   * that takes a single iterator argument
   * that is dereferenced and used to
Z
zhangjinchao01 已提交
223
   * return a value testable as a bool.
224 225
   * @note pred shall not apply any non-constant function
   * through the dereferenced iterator.
Z
zhangjinchao01 已提交
226 227 228 229 230 231 232 233 234 235 236 237
   */
  template <class Predicate>
  void wait(Predicate pred) {
    std::unique_lock<std::mutex> lock(mutex_);
    std::condition_variable::wait(lock, pred);
  }

  /**
   * @brief get mutex.
   */
  std::mutex* mutex() { return &mutex_; }

W
Wu Yi 已提交
238
 protected:
Z
zhangjinchao01 已提交
239 240 241 242
  std::mutex mutex_;
};

}  // namespace paddle