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
mod proc_block;
mod rune;

use std::path::PathBuf;

use anyhow::Error;
use strum::VariantNames;

pub(crate) use self::rune::{wasm_custom_sections, Metadata};
use crate::Format;

#[derive(Debug, Clone, PartialEq, structopt::StructOpt)]
pub struct Inspect {
    #[structopt(
        short,
        long,
        help = "The format to use when printing output",
        default_value = "text",
        possible_values = Format::VARIANTS,
        parse(try_from_str)
    )]
    format: Format,
    #[structopt(help = "The File to inspect", parse(try_from_str))]
    filename: PathBuf,
}

impl Inspect {
    pub fn execute(self) -> Result<(), Error> {
        let Inspect { format, filename } = self;

        if filename.is_dir() {
            return proc_block::inspect(format, &filename);
        }

        match filename.extension().and_then(|s| s.to_str()) {
            Some("rune" | "wasm") => rune::inspect(format, &filename),
            Some(other) => {
                anyhow::bail!("Unable to inspect a \"{}\" file", other)
            },
            None => anyhow::bail!("Unable to inspect this file"),
        }
    }
}