|
| 1 | +//! Emulated wait status for non-Unix #[cfg(unix) platforms |
| 2 | +//! |
| 3 | +//! Separate module to facilitate testing against a real Unix implementation. |
| 4 | +
|
| 5 | +use crate::ffi::c_int; |
| 6 | +use crate::fmt; |
| 7 | + |
| 8 | +/// Emulated wait status for use by `process_unsupported.rs` |
| 9 | +/// |
| 10 | +/// Uses the "traditional unix" encoding. For use on platfors which are `#[cfg(unix)]` |
| 11 | +/// but do not actually support subprocesses at all. |
| 12 | +/// |
| 13 | +/// These platforms aren't Unix, but are simply pretending to be for porting convenience. |
| 14 | +/// So, we provide a faithful pretence here. |
| 15 | +#[derive(PartialEq, Eq, Clone, Copy, Debug, Default)] |
| 16 | +pub struct ExitStatus { |
| 17 | + wait_status: c_int, |
| 18 | +} |
| 19 | + |
| 20 | +/// Converts a raw `c_int` to a type-safe `ExitStatus` by wrapping it |
| 21 | +impl From<c_int> for ExitStatus { |
| 22 | + fn from(wait_status: c_int) -> ExitStatus { |
| 23 | + ExitStatus { wait_status } |
| 24 | + } |
| 25 | +} |
| 26 | + |
| 27 | +impl fmt::Display for ExitStatus { |
| 28 | + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 29 | + write!(f, "emulated wait status: {}", self.wait_status) |
| 30 | + } |
| 31 | +} |
| 32 | + |
| 33 | +impl ExitStatus { |
| 34 | + pub fn code(&self) -> Option<i32> { |
| 35 | + // Linux and FreeBSD both agree that values linux 0x80 |
| 36 | + // count as "WIFEXITED" even though this is quite mad. |
| 37 | + // Likewise the macros disregard all the high bits, so are happy to declare |
| 38 | + // out-of-range values to be WIFEXITED, WIFSTOPPED, etc. |
| 39 | + let w = self.wait_status; |
| 40 | + if (w & 0x7f) == 0 { Some((w & 0xff00) >> 8) } else { None } |
| 41 | + } |
| 42 | + |
| 43 | + pub fn signal(&self) -> Option<i32> { |
| 44 | + let signal = self.wait_status & 0x007f; |
| 45 | + if signal > 0 && signal < 0x7f { Some(signal) } else { None } |
| 46 | + } |
| 47 | + |
| 48 | + pub fn core_dumped(&self) -> bool { |
| 49 | + self.signal().is_some() && (self.wait_status & 0x80) != 0 |
| 50 | + } |
| 51 | + |
| 52 | + pub fn stopped_signal(&self) -> Option<i32> { |
| 53 | + let w = self.wait_status; |
| 54 | + if (w & 0xff) == 0x7f { Some((w & 0xff00) >> 8) } else { None } |
| 55 | + } |
| 56 | + |
| 57 | + pub fn continued(&self) -> bool { |
| 58 | + self.wait_status == 0xffff |
| 59 | + } |
| 60 | + |
| 61 | + pub fn into_raw(&self) -> c_int { |
| 62 | + self.wait_status |
| 63 | + } |
| 64 | +} |
| 65 | + |
| 66 | +#[cfg(test)] |
| 67 | +#[path = "wait_status/tests.rs"] // needed because of strange layout of process_unsupported |
| 68 | +mod tests; |
0 commit comments