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
//! The Landon CLI
//!
//! ```ignore
//! # To install local version
//! cargo install -f --path . # In crate root
//!
//! # To install from crates.io
//! cargo install -f landon
//! ```

#![deny(missing_docs)]

#[macro_use]
extern crate structopt;

#[macro_use]
extern crate serde;

use structopt::StructOpt;

mod blender;

pub use self::blender::*;
use crate::subcommands::export::ExportCmd;
use crate::subcommands::install::InstallCmd;

mod subcommands;

/// Run the landon CLI
pub fn run() -> Result<(), anyhow::Error> {
    let landon = Landon::from_args();
    landon.run()
}

impl Subcommand for Landon {
    fn run(&self) -> Result<(), anyhow::Error> {
        let cmd: &dyn Subcommand = match self {
            Landon::Export(cmd) => cmd,
            Landon::Install(cmd) => cmd,
        };
        cmd.run()
    }
}

/// The Landon CLI
/// documentation: https://chinedufn.github.io/landon/landon-cli/index.html
#[derive(Debug, StructOpt)]
#[structopt(name = "landon", rename_all = "kebab-case")]
pub enum Landon {
    /// Export meshes and armatures from your Blender files to stdout as JSON
    Export(ExportCmd),
    /// Install various Blender addons
    Install(InstallCmd),
}

trait Subcommand {
    /// Run a subcommand
    fn run(&self) -> Result<(), anyhow::Error>;
}