schematools-cli 1.0.2

Tools for codegen, preprocessing and validation of json-schema and openapi spec
use clap::{Parser, Subcommand};
use schematools::Client;

pub mod commands;
pub mod error;

#[derive(Parser)]
#[command(author, version, about)]
struct Opts {
    #[clap(subcommand)]
    command: Command,
}

#[derive(Subcommand)]
enum Command {
    /// Schema pre-processing
    Process(commands::process::Opts),

    /// Schema validation
    Validate(commands::validate::Opts),

    /// Schema to code transformations
    #[cfg(feature = "codegen")]
    Codegen(commands::codegen::Opts),

    // Chain different operations in one process
    Chain(commands::chain::Opts),
}

fn main() {
    let opts: Opts = Opts::parse();
    let client = Client::new();

    let result = match opts.command {
        Command::Process(opts) => commands::process::execute(opts, &client),
        #[cfg(feature = "codegen")]
        Command::Codegen(opts) => commands::codegen::execute(opts, &client),
        Command::Validate(opts) => commands::validate::execute(opts, &client),
        Command::Chain(opts) => commands::chain::execute(opts, &client),
    };

    std::process::exit(match result {
        Ok(_) => 0,
        Err(e) => {
            println!("\x1b[0;31mError occurred:\x1b[0m {e}");
            1
        }
    })
}