mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2026-01-01 03:12:13 +08:00
fix bug, remove rw_cas_lock
This commit is contained in:
parent
96c2a037f3
commit
c47175360c
@ -8,46 +8,6 @@
|
||||
|
||||
namespace ipc {
|
||||
|
||||
class rw_cas_lock {
|
||||
std::atomic_size_t lc_ { 0 };
|
||||
|
||||
enum : std::size_t {
|
||||
w_flag = (std::numeric_limits<std::size_t>::max)()
|
||||
};
|
||||
|
||||
public:
|
||||
void lock() {
|
||||
for (unsigned k = 0;; ++k) {
|
||||
std::size_t expected = 0;
|
||||
if (lc_.compare_exchange_weak(expected, w_flag, std::memory_order_acquire)) {
|
||||
break;
|
||||
}
|
||||
yield(k);
|
||||
}
|
||||
}
|
||||
|
||||
void unlock() {
|
||||
lc_.store(0, std::memory_order_release);
|
||||
}
|
||||
|
||||
void lock_shared() {
|
||||
for (unsigned k = 0;; ++k) {
|
||||
std::size_t old = lc_.load(std::memory_order_relaxed);
|
||||
std::size_t unlocked = old + 1;
|
||||
if (unlocked &&
|
||||
lc_.compare_exchange_weak(old, unlocked, std::memory_order_acquire)) {
|
||||
break;
|
||||
}
|
||||
yield(k);
|
||||
std::atomic_thread_fence(std::memory_order_acquire);
|
||||
}
|
||||
}
|
||||
|
||||
void unlock_shared() {
|
||||
lc_.fetch_sub(1, std::memory_order_release);
|
||||
}
|
||||
};
|
||||
|
||||
class rw_lock {
|
||||
using lc_ui_t = std::size_t;
|
||||
std::atomic<lc_ui_t> lc_ { 0 };
|
||||
@ -59,26 +19,26 @@ class rw_lock {
|
||||
|
||||
public:
|
||||
void lock() {
|
||||
auto old = lc_.fetch_or(w_flag, std::memory_order_acquire);
|
||||
if (!old) return;
|
||||
// just like a spin-lock
|
||||
if (old & w_flag) for (unsigned k = 1; lc_.fetch_or(w_flag, std::memory_order_acquire) & w_flag; ++k) {
|
||||
yield(k);
|
||||
for (unsigned k = 0;; ++k) {
|
||||
auto old = lc_.fetch_or(w_flag, std::memory_order_acquire);
|
||||
if (!old) return; // got w-lock
|
||||
if (!(old & w_flag)) break; // other thread having r-lock
|
||||
yield(k); // other thread having w-lock
|
||||
}
|
||||
// wait for reading finished
|
||||
else for (unsigned k = 1; lc_.load(std::memory_order_acquire) & w_mask; ++k) {
|
||||
for (unsigned k = 0; lc_.load(std::memory_order_acquire) & w_mask; ++k) {
|
||||
yield(k);
|
||||
}
|
||||
}
|
||||
|
||||
void unlock() {
|
||||
lc_.fetch_and(w_mask, std::memory_order_release);
|
||||
lc_.store(0, std::memory_order_release);
|
||||
}
|
||||
|
||||
void lock_shared() {
|
||||
for (unsigned k = 0;; ++k) {
|
||||
auto old = lc_.load(std::memory_order_relaxed);
|
||||
// if w_flag set, just continue; otherwise cas ++
|
||||
// if w_flag set, just continue; otherwise cas lc + 1 (set r-lock)
|
||||
if (!(old & w_flag) &&
|
||||
lc_.compare_exchange_weak(old, old + 1, std::memory_order_acquire)) {
|
||||
break;
|
||||
|
||||
@ -44,11 +44,12 @@ struct lc_wrapper : Mutex {
|
||||
void unlock_shared() { Mutex::unlock(); }
|
||||
};
|
||||
|
||||
template <typename Lc, int W = 4, int R = 4, int Loops = 100000>
|
||||
template <typename Lc, int W, int R, int Loops = 1000000>
|
||||
void benchmark() {
|
||||
std::thread w_trd[W];
|
||||
std::thread r_trd[R];
|
||||
std::atomic_int fini { 0 };
|
||||
// std::atomic_bool wf { false };
|
||||
|
||||
std::vector<int> datas;
|
||||
Lc lc;
|
||||
@ -74,9 +75,11 @@ void benchmark() {
|
||||
int x = -1;
|
||||
{
|
||||
std::shared_lock<Lc> guard { lc };
|
||||
// QVERIFY(!wf);
|
||||
if (cnt < datas.size()) {
|
||||
x = datas[cnt];
|
||||
}
|
||||
// std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
||||
}
|
||||
if (x == 0) break; // quit
|
||||
if (x != -1) {
|
||||
@ -100,8 +103,10 @@ void benchmark() {
|
||||
for (int i = 1; i <= Loops; ++i) {
|
||||
{
|
||||
std::unique_lock<Lc> guard { lc };
|
||||
// wf = true;
|
||||
datas.push_back(i);
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
||||
// std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
||||
// wf = false;
|
||||
}
|
||||
std::this_thread::yield();
|
||||
}
|
||||
@ -123,17 +128,17 @@ void test_performance() {
|
||||
<< std::endl;
|
||||
|
||||
benchmark<ipc::rw_lock , W, R>();
|
||||
// benchmark<ipc::rw_cas_lock , W, R>();
|
||||
// benchmark<lc_wrapper<capo::spin_lock>, W, R>();
|
||||
// benchmark<lc_wrapper<std::mutex> , W, R>();
|
||||
// benchmark<std::shared_timed_mutex , W, R>();
|
||||
benchmark<ipc::rw_cas_lock , W, R>();
|
||||
benchmark<lc_wrapper<capo::spin_lock>, W, R>();
|
||||
benchmark<lc_wrapper<std::mutex> , W, R>();
|
||||
benchmark<std::shared_timed_mutex , W, R>();
|
||||
}
|
||||
|
||||
void Unit::test_rw_lock() {
|
||||
test_performance<2, 1>();
|
||||
// test_performance<4, 4>();
|
||||
// test_performance<1, 8>();
|
||||
// test_performance<8, 1>();
|
||||
test_performance<1, 1>();
|
||||
test_performance<4, 4>();
|
||||
test_performance<1, 8>();
|
||||
test_performance<8, 1>();
|
||||
}
|
||||
|
||||
void Unit::test_send_recv() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user