2022-12-11 22:45:52 +00:00
|
|
|
/// Sends a message on an asynchronous `Sender` using `send()`
|
|
|
|
/// Panics if the message cannot be sent.
|
|
|
|
///
|
2023-06-22 23:07:40 +01:00
|
|
|
/// # Usage:
|
2022-12-11 22:45:52 +00:00
|
|
|
///
|
|
|
|
/// ```rs
|
|
|
|
/// send_async!(tx, "my message");
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! send_async {
|
|
|
|
($tx:expr, $msg:expr) => {
|
|
|
|
$tx.send($msg).await.expect($crate::error::ERR_CHANNEL_SEND)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sends a message on an synchronous `Sender` using `send()`
|
|
|
|
/// Panics if the message cannot be sent.
|
|
|
|
///
|
2023-06-22 23:07:40 +01:00
|
|
|
/// # Usage:
|
2022-12-11 22:45:52 +00:00
|
|
|
///
|
|
|
|
/// ```rs
|
|
|
|
/// send!(tx, "my message");
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! send {
|
|
|
|
($tx:expr, $msg:expr) => {
|
|
|
|
$tx.send($msg).expect($crate::error::ERR_CHANNEL_SEND)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sends a message on an synchronous `Sender` using `try_send()`
|
|
|
|
/// Panics if the message cannot be sent.
|
|
|
|
///
|
2023-06-22 23:07:40 +01:00
|
|
|
/// # Usage:
|
2022-12-11 22:45:52 +00:00
|
|
|
///
|
|
|
|
/// ```rs
|
|
|
|
/// try_send!(tx, "my message");
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! try_send {
|
|
|
|
($tx:expr, $msg:expr) => {
|
|
|
|
$tx.try_send($msg).expect($crate::error::ERR_CHANNEL_SEND)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Locks a `Mutex`.
|
|
|
|
/// Panics if the `Mutex` cannot be locked.
|
|
|
|
///
|
2023-06-22 23:07:40 +01:00
|
|
|
/// # Usage:
|
2022-12-11 22:45:52 +00:00
|
|
|
///
|
|
|
|
/// ```rs
|
|
|
|
/// let mut val = lock!(my_mutex);
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! lock {
|
2023-04-29 22:09:14 +01:00
|
|
|
($mutex:expr) => {{
|
|
|
|
tracing::trace!("Locking {}", std::stringify!($mutex));
|
2022-12-11 22:45:52 +00:00
|
|
|
$mutex.lock().expect($crate::error::ERR_MUTEX_LOCK)
|
2023-04-29 22:09:14 +01:00
|
|
|
}};
|
2022-12-11 22:45:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Gets a read lock on a `RwLock`.
|
|
|
|
/// Panics if the `RwLock` cannot be locked.
|
|
|
|
///
|
2023-06-22 23:07:40 +01:00
|
|
|
/// # Usage:
|
2022-12-11 22:45:52 +00:00
|
|
|
///
|
|
|
|
/// ```rs
|
|
|
|
/// let val = read_lock!(my_rwlock);
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! read_lock {
|
|
|
|
($rwlock:expr) => {
|
|
|
|
$rwlock.read().expect($crate::error::ERR_READ_LOCK)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Gets a write lock on a `RwLock`.
|
|
|
|
/// Panics if the `RwLock` cannot be locked.
|
|
|
|
///
|
2023-06-22 23:07:40 +01:00
|
|
|
/// # Usage:
|
2022-12-11 22:45:52 +00:00
|
|
|
///
|
|
|
|
/// ```rs
|
|
|
|
/// let mut val = write_lock!(my_rwlock);
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! write_lock {
|
|
|
|
($rwlock:expr) => {
|
|
|
|
$rwlock.write().expect($crate::error::ERR_WRITE_LOCK)
|
|
|
|
};
|
|
|
|
}
|
2023-06-22 23:07:40 +01:00
|
|
|
|
|
|
|
/// Wraps `val` in a new `Arc<Mutex<T>>`.
|
|
|
|
///
|
|
|
|
/// # Usage:
|
|
|
|
///
|
|
|
|
/// ```rs
|
|
|
|
/// let val = arc_mut!(MyService::new());
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! arc_mut {
|
|
|
|
($val:expr) => {
|
2023-06-29 23:16:31 +01:00
|
|
|
std::sync::Arc::new(std::sync::Mutex::new($val))
|
2023-06-22 23:07:40 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Wraps `val` in a new `Arc<RwLock<T>>`.
|
|
|
|
///
|
|
|
|
/// # Usage:
|
|
|
|
///
|
|
|
|
/// ```rs
|
|
|
|
/// let val = arc_rw!(MyService::new());
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! arc_rw {
|
|
|
|
($val:expr) => {
|
|
|
|
std::sync::Arc::new(std::sync::RwLock::new($val))
|
|
|
|
};
|
|
|
|
}
|