esp32_nimble/utilities/
mutex.rs

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
// original: https://github.com/esp-rs/esp-idf-svc/blob/master/src/private/mutex.rs

use core::cell::UnsafeCell;
use core::ops::{Deref, DerefMut};
use esp_idf_svc::sys::*;

// NOTE: ESP-IDF-specific
const PTHREAD_MUTEX_INITIALIZER: u32 = 0xFFFFFFFF;

pub struct RawMutex(UnsafeCell<pthread_mutex_t>);

impl RawMutex {
  #[inline(always)]
  pub const fn new() -> Self {
    Self(UnsafeCell::new(PTHREAD_MUTEX_INITIALIZER as _))
  }

  #[inline(always)]
  #[allow(clippy::missing_safety_doc)]
  pub unsafe fn lock(&self) {
    let r = pthread_mutex_lock(self.0.get());
    debug_assert_eq!(r, 0);
  }

  #[inline(always)]
  #[allow(clippy::missing_safety_doc)]
  pub unsafe fn try_lock(&self) -> bool {
    pthread_mutex_trylock(self.0.get()) == 0
  }

  #[inline(always)]
  #[allow(clippy::missing_safety_doc)]
  pub unsafe fn unlock(&self) {
    let r = pthread_mutex_unlock(self.0.get());
    debug_assert_eq!(r, 0);
  }
}

impl Drop for RawMutex {
  fn drop(&mut self) {
    let r = unsafe { pthread_mutex_destroy(self.0.get_mut() as *mut _) };
    debug_assert_eq!(r, 0);
  }
}

unsafe impl Sync for RawMutex {}
unsafe impl Send for RawMutex {}

pub struct Mutex<T>(RawMutex, UnsafeCell<T>);

#[allow(dead_code)]
impl<T> Mutex<T> {
  #[inline(always)]
  pub const fn new(data: T) -> Self {
    Self(RawMutex::new(), UnsafeCell::new(data))
  }

  #[inline(always)]
  pub fn lock(&self) -> MutexGuard<'_, T> {
    MutexGuard::new(self)
  }

  #[inline(always)]
  pub fn try_lock(&self) -> Option<MutexGuard<'_, T>> {
    MutexGuard::try_new(self)
  }

  #[inline(always)]
  pub(crate) fn into_innter(self) -> T {
    self.1.into_inner()
  }

  #[inline]
  pub(crate) unsafe fn raw(&self) -> &'_ T {
    self.1.get().as_mut().unwrap()
  }
}

unsafe impl<T> Sync for Mutex<T> where T: Send {}
unsafe impl<T> Send for Mutex<T> where T: Send {}

pub struct MutexGuard<'a, T>(&'a Mutex<T>);

impl<'a, T> MutexGuard<'a, T> {
  #[inline(always)]
  fn new(mutex: &'a Mutex<T>) -> Self {
    unsafe {
      mutex.0.lock();
    }

    Self(mutex)
  }

  #[inline(always)]
  fn try_new(mutex: &'a Mutex<T>) -> Option<Self> {
    if unsafe { mutex.0.try_lock() } {
      Some(Self(mutex))
    } else {
      None
    }
  }
}

impl<T> Drop for MutexGuard<'_, T> {
  #[inline(always)]
  fn drop(&mut self) {
    unsafe {
      self.0 .0.unlock();
    }
  }
}

impl<T> Deref for MutexGuard<'_, T> {
  type Target = T;

  #[inline(always)]
  fn deref(&self) -> &Self::Target {
    unsafe { self.0 .1.get().as_mut().unwrap() }
  }
}

impl<T> DerefMut for MutexGuard<'_, T> {
  #[inline(always)]
  fn deref_mut(&mut self) -> &mut Self::Target {
    unsafe { self.0 .1.get().as_mut().unwrap() }
  }
}