Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / src / common / pthread-lock.hpp
1 /*
2 * Copyright (C) 2022 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8 #ifndef LTTNG_PTHREAD_LOCK_H
9 #define LTTNG_PTHREAD_LOCK_H
10
11 #include <common/exception.hpp>
12
13 #include <mutex>
14 #include <pthread.h>
15
16 namespace lttng {
17 namespace pthread {
18
19 namespace details {
20 /*
21 * Class wrapping pthread mutexes and satisfying the Mutex named requirements, except
22 * for the "Default Constructible" requirement. The class is not default-constructible since the
23 * intention is to ease the transition of existing C-code using pthread mutexes to idiomatic C++.
24 *
25 * New code should use std::mutex.
26 */
27 class mutex {
28 public:
29 explicit mutex(pthread_mutex_t& mutex_p) : _mutex(mutex_p)
30 {
31 }
32
33 ~mutex() = default;
34
35 /* "Not copyable" and "not moveable" Mutex requirements. */
36 mutex(mutex const&) = delete;
37 mutex(mutex&&) = delete;
38 mutex& operator=(mutex const&) = delete;
39 mutex& operator=(mutex&&) = delete;
40
41 void lock()
42 {
43 if (pthread_mutex_lock(&_mutex) != 0) {
44 LTTNG_THROW_POSIX("Failed to lock mutex", errno);
45 }
46 }
47
48 bool try_lock()
49 {
50 const auto ret = pthread_mutex_trylock(&_mutex);
51
52 if (ret == 0) {
53 return true;
54 } else if (errno == EBUSY || errno == EAGAIN) {
55 return false;
56 } else {
57 LTTNG_THROW_POSIX("Failed to try to lock mutex", errno);
58 }
59 }
60
61 void unlock()
62 {
63 if (pthread_mutex_unlock(&_mutex) != 0) {
64 /*
65 * Unlock cannot throw as it is called as part of lock_guard's destructor.
66 */
67 abort();
68 }
69 }
70
71 private:
72 pthread_mutex_t& _mutex;
73 };
74 } /* namespace details */
75
76 /*
77 * Provides the basic concept of std::lock_guard for posix mutexes.
78 *
79 * `lock` is held for the duration of lock_guard's lifetime.
80 */
81 class lock_guard {
82 public:
83 explicit lock_guard(pthread_mutex_t& mutex) : _mutex(mutex), _guard(_mutex)
84 {
85 }
86
87 ~lock_guard() = default;
88
89 lock_guard(const lock_guard&) = delete;
90 lock_guard(lock_guard&&) = delete;
91 lock_guard& operator=(const lock_guard&) = delete;
92 lock_guard& operator=(lock_guard&&) = delete;
93
94 private:
95 details::mutex _mutex;
96 std::lock_guard<details::mutex> _guard;
97 };
98
99 } /* namespace pthread */
100 } /* namespace lttng */
101
102 #endif /* LTTNG_PTHREAD_LOCK_H */
This page took 0.031053 seconds and 4 git commands to generate.