XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
recursive_spin_lock.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
9 #include <xtd/debug.hpp>
10 
11 namespace xtd{
12  namespace concurrent {
13  namespace _ {
14  template<typename _WaitPolicyT = null_wait_policy>
16  using wait_policy_type = _WaitPolicyT;
17  using hash_type = std::hash<std::thread::id>;
18  std::atomic<size_t> _lock;
19  hash_type _hash;
20  uint32_t _lock_count;
21  wait_policy_type _WaitPolicy;
22  public:
24 
25  ~recursive_spin_lock_base() = default;
26 
27  recursive_spin_lock_base(wait_policy_type oWait = wait_policy_type()) : _lock(-1), _lock_count(0), _WaitPolicy(oWait) {};
28 
30 
32 
33  bool try_lock() {
34  size_t bad_id = -1;
35  auto ThisID = _hash(std::this_thread::get_id());
36  if (!_lock.compare_exchange_strong(bad_id, ThisID) && !(_lock.compare_exchange_strong(ThisID, ThisID))) {
37  return false;
38  }
39  ++_lock_count;
40  return true;
41  }
42 
43  void lock() {
44  while (!try_lock()) {
45  _WaitPolicy();
46  }
47  }
48 
49  void unlock() {
50  XTD_ASSERT(_lock.load() == _hash(std::this_thread::get_id()));
51  if (0 == --_lock_count) {
52  _lock.store(-1);
53  }
54  }
55  };
56  }
58  }
59 }
RAII pattern to automatically acquire and release the spin lock.
Definition: concurrent.hpp:30
shared declarations for the concurrent namespace
Debugging.