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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
/// Process exit code.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct Code(i32);
impl Code {
/// The process exited successfully.
pub const SUCCESS: Code = Code(0);
/// Generic failure.
pub const FAILURE: Code = Code(1);
/// Catch-all exit code when the process exits for an unknown reason.
pub const UNKNOWN: Code = Code(2);
/// The command was used incorrectly, e.g. with the wrong number of
/// arguments, a bad flag, bad syntax in a parameter, or whatever.
pub const USAGE_ERR: Code = Code(64);
/// The input data was incorrect in some way. This should only be used for
/// user’s data and not system files.
pub const DATA_ERR: Code = Code(65);
/// An input file (not a system file) did not exist or was not readable.
/// This could also include erros like “No message” to a mailer (if it
/// cared to catch it).
pub const NO_INPUT: Code = Code(66);
/// The user specified did not exist. This might be used for mail adresses
/// or remote logins.
pub const NO_USER: Code = Code(67);
/// The host specified did not exist. This is used in mail addresses or
/// network requests.
pub const NO_HOST: Code = Code(68);
/// A service is unavailable. This can occur if a support program or file
/// does not exist. This can also be used as a catch-all message when
/// something you wanted to do doesn’t work, but you don’t know why.
pub const SERVICE_UNAVAILABLE: Code = Code(69);
/// An internal software error has been detected. This should be limited
/// to non-operating system related errors if possible.
pub const SOFTWARE_ERR: Code = Code(70);
/// An operating system error has been detected. This is intended to be
/// used for such things as “cannot fork”, or “cannot create pipe”. It
/// includes things like [getuid(2)] returning a user that does not exist
/// in the passwd file.
///
/// [getuid(2)]: https://man.openbsd.org/getuid.2
pub const OS_ERR: Code = Code(71);
/// Some system file (e.g. _/etc/passwd_, _/var/run/utmp_) does not exist,
/// cannot be opened, or has some sort of error (e.g. syntax error).
pub const OS_FILE_ERR: Code = Code(72);
/// A (user specified) output file cannot be created.
pub const CANT_CREAT: Code = Code(73);
/// An error occurred while doing I/O on some file.
pub const IO_ERR: Code = Code(74);
/// Temporary failure, indicating something that is not really an error.
/// For example that a mailer could not create a connection, and the
/// request should be reattempted later.
pub const TEMP_FAIL: Code = Code(75);
/// The remote system returned something that was “not possible” during a
/// protocol exchange.
pub const PROTOCOL_ERR: Code = Code(76);
/// You did not have sufficient permission to perform the operation. This
/// is not intended for file system problems, which should use `NoInput` or
/// `CantCreat`, but rather for high level permissions.
pub const NO_PERM: Code = Code(77);
/// Something was found in an unconfigured or misconfigured state.
pub const CONFIG_ERR: Code = Code(78);
/// Command was found but is not executable by the shell.
pub const NOT_EXECUTABLE: Code = Code(126);
/// Usually indicates that the command was not found by the shell, or that
/// the command is found but that a library it requires is not found.
pub const NOT_FOUND: Code = Code(127);
/// Usually indicates that the command was not found by the shell, or that
/// the command is found but that a library it requires is not found.
pub const INVALID_EXIT: Code = Code(128);
const SIGBASE: i32 = 128;
/// The `SIGHUP` signal is sent to a process when its controlling terminal
/// is closed.
pub const SIGHUP: Code = Code(Code::SIGBASE + 1);
/// The `SIGINT` signal is sent to a process by its controlling terminal
/// when a user wishes to interrupt the process.
pub const SIGINT: Code = Code(Code::SIGBASE + 2);
/// The `SIGQUIT` signal is sent to a process by its controlling terminal
/// when a user quit from keyboard (Ctrl-\. or, Ctrl-4 or, on the virtual console, the SysRq key)
pub const SIGQUIT: Code = Code(Code::SIGBASE + 3);
/// The `SIGILL` signal is sent to a process by its controlling terminal
/// when an illegal instruction is encountered
pub const SIGILL: Code = Code(Code::SIGBASE + 4);
/// The `SIGTRAP` signal is sent to a process by its controlling terminal
/// when there is a trace/breakpoint trap
pub const SIGTRAP: Code = Code(Code::SIGBASE + 5);
/// The `SIGABRT` signal is sent to a process by its controlling terminal
/// when process abort signal
pub const SIGABRT: Code = Code(Code::SIGBASE + 6);
/// The `SIGFPE` signal is sent to a process by its controlling terminal
/// when there is an erroneous arithmetic operation
pub const SIGFPE: Code = Code(Code::SIGBASE + 8);
/// The `SIGKILL` signal is sent to a process to cause it to terminate
/// immediately. In contrast to `SIGTERM` and `SIGINT`, this signal cannot
/// be caught or ignored, and the receiving process cannot perform any
/// clean-up upon receiving this signal.
pub const SIGKILL: Code = Code(Code::SIGBASE + 9);
/// The `SIGSEGV` signal is sent to a process on invalid memory reference
pub const SIGSEGV: Code = Code(Code::SIGBASE + 11);
/// The `SIGPIPE` signal is sent to a process when it attempts to write to
/// a pipe without a process connected to the other end.
pub const SIGPIPE: Code = Code(Code::SIGBASE + 13);
/// The `SIGALRM` signal is sent to a process when the time limit specified
/// in a call to a preceding alarm setting function (such as `setitimer`)
/// elapses.
pub const SIGALRM: Code = Code(Code::SIGBASE + 14);
/// The `SIGTERM` signal is sent to a process to request its termination.
/// Unlike the `SIGKILL` signal, it can be caught and interpreted or
/// ignored by the process.
pub const SIGTERM: Code = Code(Code::SIGBASE + 15);
pub const fn new(code: i32) -> Self {
Self(code)
}
/// Converts [`std::process::ExitStatus`] to [`Code`].
///
/// On Unix, if the process was terminated by a fatal signal, the corresponding
/// signal exit code is returned.
pub fn from_status(status: std::process::ExitStatus) -> Self {
Self::from(status)
}
/// Coerce the code to a portable value
#[cfg(feature = "portable")]
pub const fn coerce(self) -> Option<Self> {
if self.is_portable() {
Some(self)
} else {
None
}
}
#[cfg(not(feature = "portable"))]
const fn coerce(self) -> Option<Self> {
if self.is_portable() {
Some(self)
} else {
None
}
}
/// Test if provided exit code is portable across platforms.
///
/// While Windows has wider types for return codes, Unix OS's tend to only support 8-bits,
/// stripping off the higher order bits.
#[cfg(feature = "portable")]
pub const fn is_portable(self) -> bool {
0 <= self.0 && self.0 <= 255
}
#[cfg(not(feature = "portable"))]
const fn is_portable(self) -> bool {
true
}
pub fn process_exit(self) -> ! {
std::process::exit(self.coerce().unwrap_or_default().raw())
}
pub fn ok(self) -> crate::ExitResult {
if self.0 == Self::SUCCESS.0 {
Ok(())
} else {
Err(crate::Exit::new(self))
}
}
pub fn into_exit(self) -> crate::Exit {
assert_ne!(self, Self::SUCCESS);
crate::Exit::new(self)
}
pub fn with_message<D: std::fmt::Display + 'static>(self, msg: D) -> crate::Exit {
self.into_exit().with_message(msg)
}
/// Determines if the provided [`std::process::ExitStatus`] was successful.
///
/// Example:
///
/// ```
/// use std::process;
///
/// let exit_status = process::Command::new("true")
/// .status()
/// .expect("failed to run true(1)");
/// assert!(proc_exit::Code::from_status(exit_status).is_ok());
/// ```
///
pub const fn is_ok(self) -> bool {
self.0 == Self::SUCCESS.0
}
/// Determines if the provided [`std::process::ExitStatus`] was unsuccessful.
///
/// Example:
///
/// ```
/// use std::process;
///
/// let exit_status = process::Command::new("false")
/// .status()
/// .expect("failed to run false(1)");
/// assert!(proc_exit::Code::from_status(exit_status).is_err());
/// ```
///
pub const fn is_err(self) -> bool {
!self.is_ok()
}
/// Tests if the provided exit code is reserved, and has a special meaning in
/// shells.
#[allow(clippy::needless_bool)]
#[allow(clippy::if_same_then_else)]
pub const fn is_reserved(self) -> bool {
let code = self.0;
if Self::SUCCESS.0 <= code && code <= Self::UNKNOWN.0 {
true
} else if Self::USAGE_ERR.0 <= code && code <= Self::CONFIG_ERR.0 {
true
} else if Self::NOT_EXECUTABLE.0 <= code && code <= Self::INVALID_EXIT.0 {
true
} else if Self::SIGHUP.0 <= code && code <= Self::SIGTERM.0 {
true
} else {
false
}
}
pub const fn raw(self) -> i32 {
self.0
}
}
impl Default for Code {
fn default() -> Self {
// Chosen to allow `coerce().unwrap_or_default`
Self::UNKNOWN
}
}
/// Converts an `i32` primitive integer to an exit code.
impl From<i32> for Code {
fn from(n: i32) -> Self {
Self(n)
}
}
/// Converts [`std::process::ExitStatus`] to an exit code by looking at its
/// [`ExitStatus::code()`] value.
///
/// On Unix, if the process was terminated by a fatal signal, the corresponding
/// signal exit code is returned.
///
/// [`std::process::ExitStatus`]:
/// https://doc.rust-lang.org/std/process/struct.ExitStatus.html
/// [`ExitStatus::code()`]:
/// https://doc.rust-lang.org/std/process/struct.ExitStatus.html#method.code
impl From<std::process::ExitStatus> for Code {
fn from(status: std::process::ExitStatus) -> Self {
let n = platform_exit_code(status).unwrap_or(Code::UNKNOWN.0);
From::from(n)
}
}
impl From<std::io::ErrorKind> for Code {
fn from(kind: std::io::ErrorKind) -> Self {
use std::io::ErrorKind::*;
match kind {
NotFound => Code::OS_FILE_ERR,
PermissionDenied => Code::NO_PERM,
ConnectionRefused | ConnectionReset | ConnectionAborted | NotConnected => {
Code::PROTOCOL_ERR
}
AddrInUse | AddrNotAvailable => Code::SERVICE_UNAVAILABLE,
BrokenPipe => Code::SIGPIPE,
AlreadyExists => Code::CANT_CREAT,
InvalidInput | InvalidData | UnexpectedEof => Code::DATA_ERR,
TimedOut => Code::SIGALRM,
WriteZero => Code::NO_INPUT,
Interrupted => Code::SIGINT,
Other => Code::FAILURE,
_ => Code::IO_ERR,
}
}
}
#[cfg(target_family = "unix")]
fn platform_exit_code(status: std::process::ExitStatus) -> Option<i32> {
use std::os::unix::process::ExitStatusExt;
status.code().or_else(|| status.signal())
}
#[cfg(not(target_family = "unix"))]
fn platform_exit_code(status: std::process::ExitStatus) -> Option<i32> {
status.code()
}
/// Provides a user-friendly explanation of the exit code.
impl std::fmt::Display for Code {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let reason = match *self {
Code::SUCCESS => "success",
Code::FAILURE => "failure",
Code::UNKNOWN => "unknown",
Code::USAGE_ERR => "usage",
Code::DATA_ERR => "data",
Code::NO_INPUT => "no input",
Code::NO_USER => "no user",
Code::NO_HOST => "no host",
Code::SERVICE_UNAVAILABLE => "unavailable",
Code::SOFTWARE_ERR => "software",
Code::OS_ERR => "os err",
Code::OS_FILE_ERR => "os file",
Code::CANT_CREAT => "cannot create",
Code::IO_ERR => "i/o error",
Code::TEMP_FAIL => "temporary failure",
Code::PROTOCOL_ERR => "protocol",
Code::NO_PERM => "permission denied",
Code::CONFIG_ERR => "config",
Code::NOT_EXECUTABLE => "not executable",
Code::NOT_FOUND => "not found",
Code::SIGHUP => "hangup signal",
Code::SIGINT => "terminal interrupt signal",
Code::SIGQUIT => "quit signal",
Code::SIGKILL => "kill signal",
Code::SIGTRAP => "trap signal",
Code::SIGABRT => "abort signal",
Code::SIGFPE => "floating point exception",
Code::SIGSEGV => "segmentation fault",
Code::SIGPIPE => "broken pipe signal",
Code::SIGALRM => "alarm",
Code::SIGTERM => "terminate signal",
_ => "unknown",
};
write!(f, "{} ({})", reason, self.0)
}
}