rw_lock.h 2.3 KB
Newer Older
Q
Qiao Longfei 已提交
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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

17
#if !defined(_WIN32)
18
#include <pthread.h>
M
minqiyang 已提交
19 20 21
#else
#include <mutex>  // NOLINT
#endif            // !_WIN32
22

Q
Qiao Longfei 已提交
23 24
#include "paddle/fluid/platform/enforce.h"

25 26 27
namespace paddle {
namespace framework {

28
#if !defined(_WIN32)
29 30 31 32 33
struct RWLock {
  RWLock() { pthread_rwlock_init(&lock_, nullptr); }

  ~RWLock() { pthread_rwlock_destroy(&lock_); }

M
minqiyang 已提交
34
  inline void RDLock() {
35 36 37 38
    PADDLE_ENFORCE_EQ(pthread_rwlock_rdlock(&lock_), 0,
                      "acquire read lock failed");
  }

M
minqiyang 已提交
39
  inline void WRLock() {
40 41 42 43
    PADDLE_ENFORCE_EQ(pthread_rwlock_wrlock(&lock_), 0,
                      "acquire write lock failed");
  }

M
minqiyang 已提交
44
  inline void UNLock() {
45 46 47 48 49 50
    PADDLE_ENFORCE_EQ(pthread_rwlock_unlock(&lock_), 0, "unlock failed");
  }

 private:
  pthread_rwlock_t lock_;
};
X
Xin Pan 已提交
51
// TODO(paddle-dev): Support RWLock for WIN32 for correctness.
52 53 54 55
#else
// https://stackoverflow.com/questions/7125250/making-pthread-rwlock-wrlock-recursive
// In windows, rw_lock seems like a hack. Use empty object and do nothing.
struct RWLock {
M
minqiyang 已提交
56
  // FIXME(minqiyang): use mutex here to do fake lock
M
minqiyang 已提交
57
  inline void RDLock() { mutex_.lock(); }
M
minqiyang 已提交
58

M
minqiyang 已提交
59
  inline void WRLock() { mutex_.lock(); }
M
minqiyang 已提交
60

M
minqiyang 已提交
61
  inline void UNLock() { mutex_.unlock(); }
M
minqiyang 已提交
62 63 64

 private:
  std::mutex mutex_;
65 66
};
#endif
67

M
minqiyang 已提交
68
class AutoWRLock {
69
 public:
M
minqiyang 已提交
70
  explicit AutoWRLock(RWLock* rw_lock) : lock_(rw_lock) { Lock(); }
71

M
minqiyang 已提交
72 73 74
  ~AutoWRLock() { UnLock(); }

 private:
M
minqiyang 已提交
75
  inline void Lock() { lock_->WRLock(); }
76

M
minqiyang 已提交
77
  inline void UnLock() { lock_->UNLock(); }
78

M
minqiyang 已提交
79 80 81 82 83 84 85 86
 private:
  RWLock* lock_;
};

class AutoRDLock {
 public:
  explicit AutoRDLock(RWLock* rw_lock) : lock_(rw_lock) { Lock(); }

M
minqiyang 已提交
87 88 89
  ~AutoRDLock() { UnLock(); }

 private:
M
minqiyang 已提交
90 91 92
  inline void Lock() { lock_->RDLock(); }

  inline void UnLock() { lock_->UNLock(); }
93 94 95 96 97

 private:
  RWLock* lock_;
};

98 99
}  // namespace framework
}  // namespace paddle