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
use crate::abi;
use core::{convert::TryFrom, time::Duration as StdDuration};
use super::Duration;
/// A valid timeout value ([`abi::TMO`]).
///
/// In addition to finite durations, this type can represent the following
/// special values:
/// [`ZERO`] indicating zero or polling and [`FOREVER`] representing an
/// infinite duration. **`TMO_NBLK` is not a valid value for this type.**
///
/// [`ZERO`]: Self::ZERO
/// [`FOREVER`]: Self::FOREVER
#[cfg_attr(
feature = "nightly",
doc = "[`timeout!`] can be used to construct a `Timeout` in a concise syntax."
)]
#[cfg_attr(
not(feature = "nightly"),
doc = "If `nightly` feature is enabled, \
`timeout!` can be used to construct a `Timeout` in a concise syntax."
)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(transparent)]
pub struct Timeout {
value: abi::TMO,
}
impl Timeout {
/// The zero timeout value, which causes polling.
// Safety: It's a valid timeout value
pub const ZERO: Self = unsafe { Self::from_raw(abi::TMO_POL) };
/// The infinite timeout value.
// Safety: It's a valid timeout value
pub const FOREVER: Self = unsafe { Self::from_raw(abi::TMO_FEVR) };
/// Construct a new `Timeout` from a raw value.
///
/// # Safety
///
/// `value` must be a valid timeout value. This crate treats `E_PAR` caused
/// by invalid timeout values as a [critical error].
///
/// [critical error]: crate::error
#[inline]
pub const unsafe fn from_raw(value: abi::TMO) -> Self {
Self { value }
}
#[inline]
pub const fn as_raw(self) -> abi::TMO {
self.value
}
#[inline]
pub const fn is_finite(self) -> bool {
self.value != Self::FOREVER.value
}
/// Construct a new `Timeout` from the specified number of seconds.
///
/// Returns `None` if the specified duration is not representable.
#[inline]
pub const fn from_secs(secs: u64) -> Option<Self> {
if secs > u64::MAX / 1_000_000 {
None
} else {
Self::from_micros(secs * 1_000_000)
}
}
/// Construct a new `Timeout` from the specified number of milliseconds.
///
/// Returns `None` if the specified duration is not representable.
#[inline]
pub const fn from_millis(millis: u64) -> Option<Self> {
if millis > u64::MAX / 1_000 {
None
} else {
Self::from_micros(millis * 1_000)
}
}
/// Construct a new `Timeout` from the specified number of microseconds.
///
/// Returns `None` if the specified duration is not representable.
#[inline]
pub const fn from_micros(micros: u64) -> Option<Self> {
match () {
() => {
if micros > abi::TMAX_RELTIM as u64 {
None
} else {
// Safety: It's a valid timeout value
Some(unsafe { Self::from_raw(micros as u32) })
}
}
}
}
/// Construct a new `Timeout` from the specified number of nanoseconds.
///
/// Returns `None` if the specified duration is not representable.
#[inline]
pub fn from_nanos(nanos: u128) -> Option<Self> {
// TODO: make it `const fn`
u64::try_from(nanos / 1_000)
.ok()
.and_then(Self::from_micros)
}
}
/// The error type returned when a checked duration conversion fails.
pub struct TryFromDurationError(pub(super) ());
impl TryFrom<StdDuration> for Timeout {
type Error = TryFromDurationError;
#[inline]
fn try_from(d: StdDuration) -> Result<Self, Self::Error> {
Self::from_nanos(d.as_nanos()).ok_or(TryFromDurationError(()))
}
}
impl TryFrom<Duration> for Timeout {
type Error = TryFromDurationError;
#[inline]
fn try_from(d: Duration) -> Result<Self, Self::Error> {
match () {
() => {
// In TOPPERS 3rd gen kernel, both types use the same range
// Safety: It's a valid timeout value
Ok(unsafe { Self::from_raw(d.as_raw()) })
}
}
}
}
/// Construct a [`Timeout`] value in a concise syntax. Panics if the specified
/// duration cannot be represented by `Timeout`.
///
/// # Examples
///
/// ```
/// use itron::time::{timeout, Timeout};
/// assert_eq!(Timeout::ZERO, timeout!(0));
/// assert_eq!(Timeout::FOREVER, timeout!(infinity));
/// assert_eq!(Timeout::from_millis(42).unwrap(), timeout!(ms: 42));
/// ```
///
/// Panics if the value is out of range:
///
/// ```should_panic
/// # use itron::time::timeout;
/// let _ = timeout!(s: 0x7ffffffffffffff * 2);
/// ```
///
/// Once [`inline_const`] lands, it will be possible to do the check at
/// compile-time:
///
/// ```compile_fail
/// #![feature(inline_const)]
/// # use itron::time::timeout;
/// let _ = const { timeout!(s: 0x7ffffffffffffff * 2) };
/// ```
///
/// Literal values are validated at compile-time regardless of whether
/// `const { ... }` is used or not:
///
/// ```compile_fail
/// # use itron::time::timeout;
/// let _ = timeout!(s: 0xfffffffffffffff);
/// ```
///
/// ```should_panic
/// # use itron::time::timeout;
/// // Wrap the expression with `( ... )` to avoid the above behavior and
/// // cause a runtime panic.
/// let _ = timeout!(s: (0xfffffffffffffff));
/// ```
///
/// [`inline_const`]: https://rust-lang.github.io/rfcs/2920-inline-const.html
#[cfg(feature = "nightly")]
#[cfg_attr(feature = "doc_cfg", doc(cfg(feature = "nightly")))]
pub macro timeout {
// Compile-time checked literals
($kind:tt: $value:literal) => {{
const VALUE: $crate::time::Timeout = $crate::time::timeout!($kind: ($value));
VALUE
}},
// Seconds
(s: $value:expr) => {
$crate::time::expect_valid_timeout($crate::time::Timeout::from_secs($value))
},
// Milliseconds
(ms: $value:expr) => {
$crate::time::expect_valid_timeout($crate::time::Timeout::from_millis($value))
},
// Microseconds
(us: $value:expr) => {
$crate::time::expect_valid_timeout($crate::time::Timeout::from_micros($value))
},
// Microseconds
(μs: $value:expr) => {
$crate::time::expect_valid_timeout($crate::time::Timeout::from_micros($value))
},
// Nanoseconds
(ns: $value:expr) => {
$crate::time::expect_valid_timeout($crate::time::Timeout::from_nanos($value))
},
// Infinity
(infinity) => { $crate::time::Timeout::FOREVER },
// Zero
(0) => { $crate::time::Timeout::ZERO },
}
/// Panics if the specified `Option<Timeout>` is `None`. Used by `timeout!`.
#[cfg(feature = "nightly")]
#[doc(hidden)]
#[track_caller]
#[inline]
pub const fn expect_valid_timeout(x: Option<Timeout>) -> Timeout {
if let Some(x) = x {
x
} else {
// Panics in `const fn` are unstable at the point of writing
let zero = 0u32;
#[allow(unconditional_panic)]
let __the_specified_timeout_is_invalid_or_not_representable__ = 1 / zero;
#[allow(clippy::empty_loop)]
loop {}
}
}