nom-mpq 2.0.8

A nom parser for the MoPaQ archive format
Documentation
use clap::{Parser, Subcommand};
use nom_mpq::*;
use std::io::Write;

#[derive(Subcommand)]
enum Commands {
    /// List Files
    List,
    /// Extract a file from the archive
    ExtractFile {
        /// lists test values
        #[arg(short, long)]
        name: String,
    },
    /// Extract a header from the archive
    ExtractHeader {
        /// Extract a specific named header
        #[arg(short, long)]
        name: String,
    },
}

#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {
    /// Sets a custom config file
    #[arg(short, long, value_name = "FILE")]
    source: String,

    /// Turn debugging information on
    #[arg(short, long, action = clap::ArgAction::Count)]
    debug: u8,

    #[command(subcommand)]
    command: Commands,
}

fn main() {
    tracing_subscriber::fmt::init();
    let cli = Cli::parse();
    let file_contents = parser::read_file(&cli.source);
    let (_input, mpq) = parser::parse(&file_contents).unwrap();
    match &cli.command {
        Commands::List => match mpq.get_files(&file_contents) {
            Err(e) => eprintln!("Error: {}", e),
            Ok(mpq_listfiles_res) => {
                for (filename, size) in mpq_listfiles_res {
                    println!("{} {1:>8} bytes", filename, size);
                }
            }
        },
        Commands::ExtractFile { name } => {
            let (_tail, file_data) = mpq
                .read_mpq_file_sector(name, false, &file_contents)
                .unwrap();
            for word in file_data {
                let bytes = word.to_le_bytes();
                let _ = std::io::stdout().write_all(&bytes);
            }
            let _ = std::io::stdout().flush();
        }
        Commands::ExtractHeader { name } => match name.as_ref() {
            "user_data.content" => {
                let user_data = mpq
                    .user_data
                    .as_ref()
                    .expect("Unable to get user data, not provided in MPQ Archive");
                for word in &user_data.content {
                    let bytes = word.to_le_bytes();
                    let _ = std::io::stdout().write_all(&bytes);
                }
                let _ = std::io::stdout().flush();
            }
            _ => eprintln!("Unknown header"),
        },
    }
}