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
//! 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]
#[cfg(feature = "cli")]
extern crate structopt;

#[macro_use]
extern crate serde;

mod blender;

pub use self::blender::*;

#[cfg(feature = "cli")]
mod subcommands;

#[cfg(feature = "cli")]
pub use self::cli::*;

#[cfg(feature = "cli")]
mod cli {
    use crate::subcommands::export::ExportCmd;
    use crate::subcommands::install::InstallCmd;
    use structopt::StructOpt;

    /// 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),
    }

    #[cfg(feature = "cli")]
    pub(crate) trait Subcommand {
        /// Run a subcommand
        fn run(&self) -> Result<(), anyhow::Error>;
    }
}

/// Attempting to run the CLI without the CLI feature.
#[cfg(not(feature = "cli"))]
pub fn run() -> ! {
    unimplemented!(
        r#"Please enable the "cli" feature.

For example:

cargo install -f landon --features cli"#
    )
}