revive-solc-json-interface 1.1.0

Rust bindings for the solc standard JSON and combined JSON interface
Documentation
//! Unifies error handling between different Solidity compilers.

use std::io::Write;

use crate::standard_json::output::error::Error;

/// The Solidity compiler error handler trait.
///
/// This is implemented by entities that can collect and handle errors.
pub trait ErrorHandler {
    /// Returns errors as a list.
    fn errors(&self) -> Vec<&Error>;

    /// Extracts warnings from the list of messages.
    fn take_warnings(&mut self) -> Vec<Error>;

    /// Checks if there is at least one error.
    fn has_errors(&self) -> bool {
        !self.errors().is_empty()
    }

    /// Collects errors into one message and bails, if there is at least one error.
    fn check_errors(&self) -> anyhow::Result<()> {
        if !self.has_errors() {
            return Ok(());
        }

        anyhow::bail!(
            "{}",
            self.errors()
                .iter()
                .map(|error| error.to_string())
                .collect::<Vec<String>>()
                .join("\n")
        );
    }

    /// Checks for errors, exiting the application if there is at least one error.
    fn exit_on_error(&self) {
        if !self.has_errors() {
            return;
        }

        std::io::stderr()
            .write_all(
                self.errors()
                    .iter()
                    .map(|error| error.to_string())
                    .collect::<Vec<String>>()
                    .join("\n")
                    .as_bytes(),
            )
            .expect("Stderr writing error");
        std::process::exit(revive_common::EXIT_CODE_FAILURE);
    }

    /// Removes warnings from the list of messages and prints them to stderr.
    fn take_and_write_warnings(&mut self) {
        let warnings = self.take_warnings();
        if warnings.is_empty() {
            return;
        }
        writeln!(
            std::io::stderr(),
            "{}",
            warnings
                .into_iter()
                .map(|error| error.to_string())
                .collect::<Vec<String>>()
                .join("\n")
        )
        .expect("Stderr writing error");
    }
}