easy_process 0.2.1

Easy to use process runner
Documentation
// Copyright (C) 2018 O.S. Systems Sofware LTDA
//
// SPDX-License-Identifier: MIT OR Apache-2.0

#![deny(
    missing_copy_implementations,
    missing_debug_implementations,
    missing_docs,
    trivial_casts,
    trivial_numeric_casts,
    unsafe_code,
    unstable_features,
    unused_import_braces,
    unused_qualifications,
    warnings
)]

//! Allow running external commands and properly handle its success
//! and failures.
//!
//! | Platform | Build Status |
//! | -------- | ------------ |
//! | Linux | [![build status](https://github.com/OSSystems/easy-process-rs/workflows/CI%20(Linux)/badge.svg)](https://github.com/OSSystems/easy-process-rs/actions) |
//! | macOS | [![build status](https://github.com/OSSystems/easy-process-rs/workflows/CI%20(macOS)/badge.svg)](https://github.com/OSSystems/easy-process-rs/actions) |
//! | Windows | [![build status](https://github.com/OSSystems/easy-process-rs/workflows/CI%20(Windows)/badge.svg)](https://github.com/OSSystems/easy-process-rs/actions) |
//!
//! ---
//!
//! This creates provides a `run` function that does inline parsing of
//! literal command line strings (handling escape codes and splitting
//! at whitespace) and checks the `ExitStatus` of the command. If it
//! didn't succeed they will return a `Err(...)` instead of a
//! `Ok(...)`.
//!
//! Note that the provided functions do return their own `Output`
//! struct instead of [`std::process::Output`].
//!
//! # Example
//! ```no_run
//! # fn run() -> Result<(), easy_process::Error> {
//! // stdout
//! let output = easy_process::run(r#"sh -c 'echo "1 2 3 4"'"#)?;
//! assert_eq!(&output.stdout, "1 2 3 4\n");
//!
//! // stderr
//! let output = easy_process::run(r#"sh -c 'echo "1 2 3 4" >&2'"#)?;
//! assert_eq!(&output.stderr, "1 2 3 4\n");
//! # Ok(())
//! # }
//! ```
//!
//! [`std::process::Output`]: https://doc.rust-lang.org/std/process/struct.Output.html
//!
//! Commands on windows are also supported in the same way:
//! ```no_run
//! # fn run() -> Result<(), easy_process::Error> {
//! let output = easy_process::run(r#"powershell /C 'echo "1 2 3 4"'"#)?;
//! assert_eq!(&output.stdout, "1 2 3 4\r\n");
//! # Ok(())
//! # }
//! ```

use cmdline_words_parser::parse_posix;
use derive_more::{Display, Error, From};
use std::{
    io,
    process::{ChildStdin, ExitStatus, Stdio},
};

#[derive(Debug, Default)]
/// Holds the output for a giving `easy_process::run`
pub struct Output {
    /// The stdout output of the process
    pub stdout: String,
    /// The stderr output of the process
    pub stderr: String,
}

/// Error variant for `easy_process::run`.
#[derive(Display, Error, From, Debug)]
pub enum Error {
    /// I/O error
    #[display(fmt = "unexpected I/O Error: {}", _0)]
    Io(io::Error),
    /// Process error. It holds two parts: first argument is the exit
    /// code and the second is the output (stdout and stderr).
    #[display(
        fmt = "status: {:?} stdout: {:?} stderr: {:?}",
        "_0.code()",
        "_1.stdout",
        "_1.stderr"
    )]
    Failure(ExitStatus, Output),
}

/// Result alias with crate's Error value
pub type Result<T> = std::result::Result<T, Error>;

impl From<checked_command::Error> for Error {
    fn from(error: checked_command::Error) -> Self {
        match error {
            checked_command::Error::Io(e) => Error::Io(e),
            checked_command::Error::Failure(ex, err) => Error::Failure(
                ex,
                match err {
                    Some(e) => Output {
                        stdout: String::from_utf8_lossy(&e.stdout).to_string(),
                        stderr: String::from_utf8_lossy(&e.stderr).to_string(),
                    },
                    None => Output::default(),
                },
            ),
        }
    }
}

/// Runs the given command
///
/// # Arguments
///
/// `cmd` - A string slice containing the command to be run.
///
/// # Errors
///
/// if the exit status is not successful or a `io::Error` was returned.
pub fn run(cmd: &str) -> Result<Output> {
    let mut cmd = setup_process(cmd);

    let o = cmd.output()?;
    Ok(Output {
        stdout: String::from_utf8_lossy(&o.stdout).to_string(),
        stderr: String::from_utf8_lossy(&o.stderr).to_string(),
    })
}

/// Runs command with access to it's stdin.
///
/// Spawns the given command then run it's piped stdin through the given
/// closure. The closure's Result Error type is used as the function's
/// result so the users can use their locally defined error types and
/// [`enum@Error`] itself can also be used.
///
/// # Examples
/// ```no_run
/// # fn run() -> Result<(), easy_process::Error> {
/// let output = easy_process::run_with_stdin("rev", |stdin| {
///     std::io::Write::write_all(stdin, b"Hello, world!")?;
///     easy_process::Result::Ok(())
/// })?;
/// assert_eq!("!dlrow ,olleH", &output.stdout);
/// # Ok(())
/// # }
/// ```
pub fn run_with_stdin<F, E>(cmd: &str, f: F) -> std::result::Result<Output, E>
where
    F: FnOnce(&mut ChildStdin) -> std::result::Result<(), E>,
    E: From<Error>,
{
    let mut cmd = setup_process(cmd);
    // both pipes must be set in order to obtain the output later
    cmd.stdin(Stdio::piped()).stdout(Stdio::piped());
    let mut child = cmd.spawn().map_err(Error::from)?;
    let stdin = child.stdin().as_mut().unwrap();

    f(stdin)?;

    let o = child.wait_with_output().map_err(Error::from)?;
    Ok(Output {
        stdout: String::from_utf8_lossy(&o.stdout).to_string(),
        stderr: String::from_utf8_lossy(&o.stderr).to_string(),
    })
}

fn setup_process(cmd: &str) -> checked_command::CheckedCommand {
    let mut cmd = cmd.to_string();
    let mut args = parse_posix(&mut cmd);

    let mut p = checked_command::CheckedCommand::new(args.next().unwrap());
    p.args(args);
    p
}

#[cfg(all(test, not(windows)))]
mod tests {
    use super::*;

    #[test]
    fn failing_command() {
        // failing command with exit status 1
        match run(r#"sh -c 'echo "error" >&2; exit 1'"#) {
            Ok(_) => panic!("call should have failed"),
            Err(Error::Io(io_err)) => panic!("unexpected I/O Error: {:?}", io_err),
            Err(Error::Failure(ex, output)) => {
                assert_eq!(ex.code().unwrap(), 1);
                assert_eq!(&output.stderr, "error\n");
            }
        }
    }

    #[test]
    fn success_command() {
        // failing command with exit status 1
        match run(r#"sh -c 'echo "ok" && exit 0'"#) {
            Ok(output) => assert_eq!(&output.stdout, "ok\n"),
            Err(e) => panic!("unexpected error: {:?}", e),
        }
    }

    #[test]
    fn piped_input() {
        let output = run_with_stdin("rev", |stdin| {
            io::Write::write_all(stdin, b"Hello, world!")?;
            Result::Ok(())
        })
        .unwrap();
        // Older versions of rev will add an new line terminator
        // so we test only the start of the stdout
        assert!(&output.stdout.starts_with("!dlrow ,olleH"));
    }
}

#[cfg(all(test, windows))]
mod tests {
    use super::*;

    #[test]
    fn failing_command() {
        // failing command with exit status 1
        match run(r#"powershell /C '[Console]::Error.WriteLine("Error"); exit(1)'"#) {
            Ok(_) => panic!("call should have failed"),
            Err(Error::Io(io_err)) => panic!("unexpected I/O Error: {:?}", io_err),
            Err(Error::Failure(ex, output)) => {
                assert_eq!(ex.code().unwrap(), 1);
                assert_eq!(&output.stderr, "Error\r\n");
            }
        }
    }

    #[test]
    fn success_command() {
        // failing command with exit status 1
        match run(r#"powershell /C "echo 1 2 3 4""#) {
            Ok(output) => assert_eq!(&output.stdout, "1\r\n2\r\n3\r\n4\r\n"),
            Err(e) => panic!("unexpected error: {:?}", e),
        }
    }

    #[test]
    fn piped_input() {
        let output = run_with_stdin(r#"powershell /C -"#, |stdin| {
            io::Write::write_all(stdin, b"echo 4 3 2 1")?;
            Result::Ok(())
        })
        .unwrap();
        assert_eq!("4\r\n3\r\n2\r\n1\r\n", &output.stdout);
    }
}