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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
//! A mutual exclusion primitive with a timed locking mechanism.
use crate::{
core::time::NSTDDuration,
heap_ptr::{NSTDHeapPtr, NSTDOptionalHeapPtr},
NSTDAny, NSTDAnyMut, NSTDBool,
};
use cfg_if::cfg_if;
cfg_if! {
if #[cfg(any(
target_os = "android",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "haiku",
target_os = "linux",
target_os = "netbsd",
target_os = "nto",
target_os = "openbsd",
target_os = "solaris"
))] {
use crate::os::unix::mutex::{
NSTDUnixMutex, NSTDUnixMutexGuard, NSTDUnixMutexLockResult, NSTDUnixOptionalMutex,
NSTDUnixOptionalMutexLockResult,
};
/// A mutual exclusion primitive with a timed locking mechanism.
pub type NSTDTimedMutex<'a> = NSTDUnixMutex<'a>;
/// Represents an optional value of type `NSTDTimedMutex`.
pub type NSTDOptionalTimedMutex<'a> = NSTDUnixOptionalMutex<'a>;
/// A handle to a timed mutex's data.
pub type NSTDTimedMutexGuard<'m, 'a> = NSTDUnixMutexGuard<'m, 'a>;
/// A result type containing a timed mutex lock whether or not the mutex is poisoned.
pub type NSTDTimedMutexLockResult<'m, 'a> = NSTDUnixMutexLockResult<'m, 'a>;
/// An optional value of type `NSTDTimedMutexLockResult`.
///
/// This type is returned from `nstd_timed_mutex_try_lock` where the uninitialized variant
/// means that the function would block.
pub type NSTDOptionalTimedMutexLockResult<'m, 'a> = NSTDUnixOptionalMutexLockResult<'m, 'a>;
} else {
use crate::core::{optional::NSTDOptional, result::NSTDResult};
use core::{marker::PhantomData, mem::ManuallyDrop};
use nstdapi::nstdapi;
/// A mutual exclusion primitive with a timed locking mechanism.
#[nstdapi]
pub struct NSTDTimedMutex<'a> {
/// The underlying mutex.
inner: NSTDAnyMut,
/// The data to protect.
data: ManuallyDrop<NSTDHeapPtr<'a>>,
/// Determines whether or not the mutex is poisoned.
poisoned: NSTDBool,
/// Determines whether or not the mutex is currently locked.
locked: NSTDBool,
}
impl Drop for NSTDTimedMutex<'_> {
/// [NSTDTimedMutex]'s destructor.
#[inline]
fn drop(&mut self) {
// SAFETY: `NSTDTimeMutex` has been initialized and is valid for reads.
unsafe { nstd_timed_mutex_free(core::ptr::read(self)) };
}
}
/// # Safety
///
/// The data that the mutex is protecting must be able to be safely sent between threads.
// SAFETY: The user guarantees that the data is thread-safe.
unsafe impl Send for NSTDTimedMutex<'_> {}
/// # Safety
///
/// The data that the mutex is protecting must be able to be safely shared between threads.
// SAFETY: The user guarantees that the data is thread-safe.
unsafe impl Sync for NSTDTimedMutex<'_> {}
/// Represents an optional value of type `NSTDTimedMutex`.
pub type NSTDOptionalTimedMutex<'a> = NSTDOptional<NSTDTimedMutex<'a>>;
/// A handle to a timed mutex's data.
#[nstdapi]
pub struct NSTDTimedMutexGuard<'m, 'a> {
/// A reference to the mutex.
mutex: &'m NSTDTimedMutex<'a>,
/// Ensures that the guard is not [Send].
pd: PhantomData<*const ()>,
}
impl Drop for NSTDTimedMutexGuard<'_, '_> {
/// [NSTDTimedMutexGuard]'s destructor.
#[inline]
fn drop(&mut self) {
// SAFETY: `self` is a valid guard for the mutex.
unsafe { nstd_timed_mutex_unlock(core::ptr::read(self)) };
}
}
/// # Safety
///
/// The data that the guard is protecting must be able to be safely shared between threads.
// SAFETY: The user guarantees that the data is thread-safe.
unsafe impl Sync for NSTDTimedMutexGuard<'_, '_> {}
/// A result type containing a timed mutex lock whether or not the mutex is poisoned.
pub type NSTDTimedMutexLockResult<'m, 'a> =
NSTDResult<NSTDTimedMutexGuard<'m, 'a>, NSTDTimedMutexGuard<'m, 'a>>;
/// An optional value of type `NSTDTimedMutexLockResult`.
///
/// This type is returned from `nstd_timed_mutex_try_lock` where the uninitialized variant
/// means that the function would block.
pub type NSTDOptionalTimedMutexLockResult<'m, 'a> =
NSTDOptional<NSTDTimedMutexLockResult<'m, 'a>>;
}
}
extern "C" {
/// Creates a new timed mutual exclusion primitive.
///
/// # Parameters:
///
/// - `NSTDHeapPtr data` - The data to protect.
///
/// # Returns
///
/// `NSTDOptionalTimedMutex mutex` - The new mutex protecting `data` on success, or an
/// uninitialized "none" value if the OS failed to initialize the mutex.
pub fn nstd_timed_mutex_new(data: NSTDHeapPtr) -> NSTDOptionalTimedMutex;
/// Determines whether or not a timed mutex's data is poisoned.
///
/// Mutexes are poisoned when a thread that owns the mutex guard panics. This function is useful
/// for those that configure `nstd` to unwind the stack instead of aborting on panic.
///
/// # Parameters:
///
/// - `const NSTDTimedMutex *mutex` - The mutex.
///
/// # Returns
///
/// `NSTDBool is_poisoned` - A boolean value indicating whether or not `mutex` is poisoned.
pub fn nstd_timed_mutex_is_poisoned(mutex: &NSTDTimedMutex) -> NSTDBool;
/// Waits for a timed mutex lock to become acquired, returning a guard wrapping the protected data.
///
/// Attempting to call this function on a thread that already owns the lock will result in
/// undefined behavior.
///
/// # Parameters:
///
/// - `const NSTDTimedMutex *mutex` - The mutex to lock.
///
/// # Returns
///
/// `NSTDOptionalTimedMutexLockResult guard` - A handle to the mutex's protected data, or an
/// uninitialized "none" value if the OS fails to lock the mutex.
///
/// # Safety
///
/// The mutex lock must not already be owned by the calling thread.
pub fn nstd_timed_mutex_lock<'m, 'a>(
mutex: &'m NSTDTimedMutex<'a>,
) -> NSTDOptionalTimedMutexLockResult<'m, 'a>;
/// The non-blocking variant of `nstd_timed_mutex_lock` returning an uninitialized "none" result if
/// the mutex is locked by another thread.
///
/// Attempting to call this function on a thread that already owns the lock will result in
/// undefined behavior.
///
/// # Parameters:
///
/// - `const NSTDTimedMutex *mutex` - The mutex to lock.
///
/// # Returns
///
/// `NSTDOptionalTimedMutexLockResult guard` - A handle to the mutex's protected data.
///
/// # Safety
///
/// The mutex lock must not already be owned by the calling thread.
pub fn nstd_timed_mutex_try_lock<'m, 'a>(
mutex: &'m NSTDTimedMutex<'a>,
) -> NSTDOptionalTimedMutexLockResult<'m, 'a>;
/// The timed variant of `nstd_timed_mutex_lock` returning an uninitialized "none" result if
/// the mutex lock could not be acquired after a specified number of `seconds`.
///
/// Attempting to call this function on a thread that already owns the lock will result in
/// undefined behavior.
///
/// # Parameters:
///
/// - `const NSTDTimedMutex *mutex` - The mutex to lock.
///
/// - `NSTDDuration duration` - The amount of time to block for.
///
/// # Returns
///
/// `NSTDOptionalTimedMutexLockResult guard` - A handle to the mutex's protected data.
///
/// # Safety
///
/// The mutex lock must not already be owned by the calling thread.
pub fn nstd_timed_mutex_timed_lock<'m, 'a>(
mutex: &'m NSTDTimedMutex<'a>,
duration: NSTDDuration,
) -> NSTDOptionalTimedMutexLockResult<'m, 'a>;
/// Returns an immutable raw pointer to a timed mutex guard's protected data.
///
/// # Parameters:
///
/// - `const NSTDTimedMutexGuard *guard` - The mutex guard.
///
/// # Returns
///
/// `NSTDAny data` - A pointer to the guard's protected data.
pub fn nstd_timed_mutex_get(guard: &NSTDTimedMutexGuard) -> NSTDAny;
/// Returns an raw pointer to a timed mutex guard's protected data.
///
/// # Parameters:
///
/// - `NSTDTimedMutexGuard *guard` - The mutex guard.
///
/// # Returns
///
/// `NSTDAnyMut data` - A pointer to the guard's protected data.
pub fn nstd_timed_mutex_get_mut(guard: &mut NSTDTimedMutexGuard) -> NSTDAnyMut;
/// Consumes a timed mutex and returns the data it was protecting.
///
/// # Parameters:
///
/// - `NSTDTimedMutex mutex` - The mutex to take ownership of.
///
/// # Returns
///
/// `NSTDOptionalHeapPtr data` - Ownership of the mutex's data, or an uninitialized "none"
/// variant if the mutex was poisoned.
pub fn nstd_timed_mutex_into_inner(mutex: NSTDTimedMutex) -> NSTDOptionalHeapPtr;
/// Unlocks a timed mutex by consuming a mutex guard.
///
/// # Parameters:
///
/// - `NSTDTimedMutexGuard guard` - The mutex guard.
pub fn nstd_timed_mutex_unlock(guard: NSTDTimedMutexGuard);
/// Frees an instance of `NSTDTimedMutex`.
///
/// # Parameters:
///
/// - `NSTDTimedMutex mutex` - The timed mutex to free.
pub fn nstd_timed_mutex_free(mutex: NSTDTimedMutex);
/// Frees an instance of `NSTDTimedMutex` after invoking `callback` with the mutex's data.
///
/// `callback` will not be called if the mutex is poisoned.
///
/// # Parameters:
///
/// - `NSTDTimedMutex mutex` - The timed mutex to free.
///
/// - `void (*callback)(NSTDAnyMut)` - The mutex data's destructor.
///
/// # Safety
///
/// This operation makes a direct call on a C function pointer (`callback`).
pub fn nstd_timed_mutex_drop(mutex: NSTDTimedMutex, callback: unsafe extern "C" fn(NSTDAnyMut));
}