bacon 3.23.0

background rust compiler
Documentation
use {
    crate::*,
    serde::{
        Deserialize,
        Serialize,
    },
    std::process::ExitStatus,
};

#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize, Eq)]
pub enum CommandStream {
    StdOut,
    StdErr,
}

/// a line coming either from stdout or from stderr, before TTY parsing
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct RawCommandOutputLine {
    pub content: String,
    pub origin: CommandStream,
}

/// a line coming either from stdout or from stderr
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct CommandOutputLine {
    pub content: TLine,
    pub origin: CommandStream,
}

/// some output lines
#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq)]
pub struct CommandOutput {
    pub lines: Vec<Line>,
}

/// a piece of information about the execution of a command
#[derive(Debug)]
pub enum CommandExecInfo {
    /// Command ended
    End { status: ExitStatus },

    /// Bacon killed the command
    Interruption,

    /// Execution failed
    Error(anyhow::Error),

    /// Here's a line of output (coming from stderr or stdout)
    Line(RawCommandOutputLine),
}

impl CommandOutput {
    pub fn reverse(&mut self) {
        self.lines.reverse();
    }
    pub fn push<L: Into<Line>>(
        &mut self,
        line: L,
    ) {
        self.lines.push(line.into());
    }
    pub fn len(&self) -> usize {
        self.lines.len()
    }
}

impl From<RawCommandOutputLine> for CommandOutputLine {
    fn from(raw: RawCommandOutputLine) -> Self {
        CommandOutputLine {
            content: TLine::from_tty(&raw.content),
            origin: raw.origin,
        }
    }
}