rune-atbash 0.1.1

Atbash cipher — reverse-alphabet substitution for Latin letters
Documentation
use clap::Parser;
use rune_atbash::atbash_bytes;
use std::{
    io::{self, Read},
    process::ExitCode,
};

/// Atbash cipher — reverse-alphabet substitution for Latin letters.
///
/// Pass text as an argument, pipe via stdin, or supply a file with -f.
/// Non-letter characters are passed through unchanged. Case is preserved.
#[derive(Parser)]
#[command(name = "rune-atbash", version, author)]
struct Cli {
    /// Text to encode (omit to read from stdin)
    text: Option<String>,

    /// File to encode instead of reading from stdin
    #[arg(short, long, value_name = "FILE")]
    file: Option<String>,
}

fn main() -> ExitCode {
    let cli = Cli::parse();

    let input = match read_input(cli.text.as_deref(), cli.file.as_deref()) {
        Ok(bytes) => bytes,
        Err(error) => {
            eprintln!("error: {error}");
            return ExitCode::FAILURE;
        }
    };

    let output = atbash_bytes(&input);
    print!("{}", String::from_utf8_lossy(&output));

    ExitCode::SUCCESS
}

fn read_input(text: Option<&str>, file: Option<&str>) -> io::Result<Vec<u8>> {
    if let Some(content) = text {
        return Ok(content.as_bytes().to_vec());
    }
    if let Some(path) = file {
        return std::fs::read(path);
    }
    let mut buffer = Vec::new();
    io::stdin().read_to_end(&mut buffer)?;
    Ok(buffer)
}