aboutsummaryrefslogtreecommitdiff
path: root/pw_sync/public/pw_sync/timed_mutex.h
blob: 396f9b68d83420e697d6746185aba492d7325e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Copyright 2020 The Pigweed Authors
//
// 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
//
//     https://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 <stdbool.h>

#include "pw_chrono/system_clock.h"
#include "pw_preprocessor/util.h"
#include "pw_sync/lock_annotations.h"
#include "pw_sync/mutex.h"

#ifdef __cplusplus

#include "pw_sync/virtual_basic_lockable.h"

namespace pw::sync {

/// The `TimedMutex` is a synchronization primitive that can be used to protect
/// shared data from being simultaneously accessed by multiple threads with
/// timeouts and deadlines, extending the `Mutex`. It offers exclusive,
/// non-recursive ownership semantics where priority inheritance is used to
/// solve the classic priority-inversion problem. This is thread safe, but NOT
/// IRQ safe.
///
/// @rst
/// .. warning::
///    In order to support global statically constructed TimedMutexes, the user
///    and/or backend MUST ensure that any initialization required in your
///    environment is done prior to the creation and/or initialization of the
///    native synchronization primitives (e.g. kernel initialization).
/// @endrst
class TimedMutex : public Mutex {
 public:
  TimedMutex() = default;
  ~TimedMutex() = default;
  TimedMutex(const TimedMutex&) = delete;
  TimedMutex(TimedMutex&&) = delete;
  TimedMutex& operator=(const TimedMutex&) = delete;
  TimedMutex& operator=(TimedMutex&&) = delete;

  /// Tries to lock the mutex. Blocks until specified the timeout has elapsed or
  /// the lock is acquired, whichever comes first.
  /// Returns true if the mutex was successfully acquired.
  ///
  /// @b PRECONDITION:
  ///   The lock isn't already held by this thread. Recursive locking is
  ///   undefined behavior.
  bool try_lock_for(chrono::SystemClock::duration timeout)
      PW_EXCLUSIVE_TRYLOCK_FUNCTION(true);

  /// Tries to lock the mutex. Blocks until specified deadline has been reached
  /// or the lock is acquired, whichever comes first.
  /// Returns true if the mutex was successfully acquired.
  ///
  /// @b PRECONDITION:
  ///   The lock isn't already held by this thread. Recursive locking is
  ///   undefined behavior.
  bool try_lock_until(chrono::SystemClock::time_point deadline)
      PW_EXCLUSIVE_TRYLOCK_FUNCTION(true);
};

class PW_LOCKABLE("pw::sync::VirtualTimedMutex") VirtualTimedMutex final
    : public GenericBasicLockable<TimedMutex> {
 public:
  TimedMutex& timed_mutex() { return impl(); }
};

}  // namespace pw::sync

#include "pw_sync_backend/timed_mutex_inline.h"

using pw_sync_TimedMutex = pw::sync::TimedMutex;

#else  // !defined(__cplusplus)

typedef struct pw_sync_TimedMutex pw_sync_TimedMutex;

#endif  // __cplusplus

PW_EXTERN_C_START

/// Invokes the `TimedMutex::lock` member function on the given `mutex`.
void pw_sync_TimedMutex_Lock(pw_sync_TimedMutex* mutex)
    PW_NO_LOCK_SAFETY_ANALYSIS;

/// Invokes the `TimedMutex::try_lock` member function on the given `mutex`.
bool pw_sync_TimedMutex_TryLock(pw_sync_TimedMutex* mutex)
    PW_NO_LOCK_SAFETY_ANALYSIS;

/// Invokes the `TimedMutex::try_lock_for` member function on the given `mutex`.
bool pw_sync_TimedMutex_TryLockFor(pw_sync_TimedMutex* mutex,
                                   pw_chrono_SystemClock_Duration timeout)
    PW_NO_LOCK_SAFETY_ANALYSIS;

/// Invokes the `TimedMutex::try_lock_until` member function on the given
/// `mutex`.
bool pw_sync_TimedMutex_TryLockUntil(pw_sync_TimedMutex* mutex,
                                     pw_chrono_SystemClock_TimePoint deadline)
    PW_NO_LOCK_SAFETY_ANALYSIS;

/// Invokes the `TimedMutex::unlock` member function on the given `mutex`.
void pw_sync_TimedMutex_Unlock(pw_sync_TimedMutex* mutex)
    PW_NO_LOCK_SAFETY_ANALYSIS;

PW_EXTERN_C_END