aboutsummaryrefslogtreecommitdiff
path: root/tools/nres-cli/src/main.rs
blob: 85086cbe780bf12949373797897e7c35b29412ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
extern crate core;
extern crate libnres;

use std::io::Write;

use clap::{Parser, Subcommand};
use miette::{IntoDiagnostic, Result};

#[derive(Parser, Debug)]
#[command(name = "NRes CLI")]
#[command(about, author, version, long_about = None)]
struct Cli {
    #[command(subcommand)]
    command: Commands,
}

#[derive(Subcommand, Debug)]
enum Commands {
    /// Check if the "NRes" file can be extract
    Check {
        /// "NRes" file
        file: String,
    },
    /// Print debugging information on the "NRes" file
    #[command(arg_required_else_help = true)]
    Debug {
        /// "NRes" file
        file: String,
        /// Filter results by file name
        #[arg(long)]
        name: Option<String>,
    },
    /// Extract files or a file from the "NRes" file
    #[command(arg_required_else_help = true)]
    Extract {
        /// "NRes" file
        file: String,
        /// Overwrite files
        #[arg(short, long, default_value_t = false, value_name = "TRUE|FALSE")]
        force: bool,
        /// Outbound directory
        #[arg(short, long, value_name = "DIR")]
        out: String,
    },
    /// Print a list of files in the "NRes" file
    #[command(arg_required_else_help = true)]
    Ls {
        /// "NRes" file
        file: String,
    },
}

pub fn main() -> Result<()> {
    let stdout = console::Term::stdout();
    let cli = Cli::parse();

    match cli.command {
        Commands::Check { file } => command_check(stdout, file)?,
        Commands::Debug { file, name } => command_debug(stdout, file, name)?,
        Commands::Extract { file, force, out } => command_extract(stdout, file, out, force)?,
        Commands::Ls { file } => command_ls(stdout, file)?,
    }

    Ok(())
}

fn command_check(_stdout: console::Term, file: String) -> Result<()> {
    let file = std::fs::File::open(file).into_diagnostic()?;
    let list = libnres::reader::get_list(&file).into_diagnostic()?;
    let tmp = tempdir::TempDir::new("nres").into_diagnostic()?;
    let bar = indicatif::ProgressBar::new(list.len() as u64);

    bar.set_style(get_bar_style()?);

    for element in list {
        bar.set_message(element.get_filename());

        let path = tmp.path().join(element.get_filename());
        let mut output = std::fs::File::create(path).into_diagnostic()?;
        let mut buffer = libnres::reader::get_file(&file, &element).into_diagnostic()?;

        output.write_all(&buffer).into_diagnostic()?;
        buffer.clear();
        bar.inc(1);
    }

    bar.finish();

    Ok(())
}

fn command_debug(stdout: console::Term, file: String, name: Option<String>) -> Result<()> {
    let file = std::fs::File::open(file).into_diagnostic()?;
    let mut list = libnres::reader::get_list(&file).into_diagnostic()?;

    let mut total_files_size: u32 = 0;
    let mut total_files_gap: u32 = 0;
    let mut total_files: u32 = 0;

    for (index, item) in list.iter().enumerate() {
        total_files_size += item.size;
        total_files += 1;
        let mut gap = 0;

        if index > 1 {
            let previous_item = &list[index - 1];
            gap = item.position - (previous_item.position + previous_item.size);
        }

        total_files_gap += gap;
    }

    if let Some(name) = name {
        list.retain(|item| item.name.contains(&name));
    };

    for (index, item) in list.iter().enumerate() {
        let mut gap = 0;

        if index > 1 {
            let previous_item = &list[index - 1];
            gap = item.position - (previous_item.position + previous_item.size);
        }

        let text = format!("Index: {};\nGap: {};\nItem: {:#?};\n", index, gap, item);
        stdout.write_line(&text).into_diagnostic()?;
    }

    let text = format!(
        "Total files: {};\nTotal files gap: {} (bytes);\nTotal files size: {} (bytes);",
        total_files, total_files_gap, total_files_size
    );

    stdout.write_line(&text).into_diagnostic()?;

    Ok(())
}

fn command_extract(_stdout: console::Term, file: String, out: String, force: bool) -> Result<()> {
    let file = std::fs::File::open(file).into_diagnostic()?;
    let list = libnres::reader::get_list(&file).into_diagnostic()?;
    let bar = indicatif::ProgressBar::new(list.len() as u64);

    bar.set_style(get_bar_style()?);

    for element in list {
        bar.set_message(element.get_filename());

        let path = format!("{}/{}", out, element.get_filename());

        if !force && is_exist_file(&path) {
            let message = format!("File \"{}\" exists. Overwrite it?", path);

            if !dialoguer::Confirm::new()
                .with_prompt(message)
                .interact()
                .into_diagnostic()?
            {
                continue;
            }
        }

        let mut output = std::fs::File::create(path).into_diagnostic()?;
        let mut buffer = libnres::reader::get_file(&file, &element).into_diagnostic()?;

        output.write_all(&buffer).into_diagnostic()?;
        buffer.clear();
        bar.inc(1);
    }

    bar.finish();

    Ok(())
}

fn command_ls(stdout: console::Term, file: String) -> Result<()> {
    let file = std::fs::File::open(file).into_diagnostic()?;
    let list = libnres::reader::get_list(&file).into_diagnostic()?;

    for element in list {
        stdout.write_line(&element.name).into_diagnostic()?;
    }

    Ok(())
}

fn get_bar_style() -> Result<indicatif::ProgressStyle> {
    Ok(
        indicatif::ProgressStyle::with_template("[{bar:32}] {pos:>7}/{len:7} {msg}")
            .into_diagnostic()?
            .progress_chars("=>-"),
    )
}

fn is_exist_file(path: &String) -> bool {
    let metadata = std::path::Path::new(path);
    metadata.exists()
}