-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmod.rs
More file actions
85 lines (71 loc) · 2.4 KB
/
Copy pathmod.rs
File metadata and controls
85 lines (71 loc) · 2.4 KB
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
use std::str::FromStr;
use clap::{command, CommandFactory, FromArgMatches, Parser};
pub mod build;
pub mod dev;
pub mod init;
pub mod update_env;
const ABOUT: &str = "Build contracts and generate front ends";
// long_about is shown when someone uses `--help`
const LONG_ABOUT: &str = "loam-sdk also helps when writing smart contracts.";
#[derive(Parser, Debug)]
#[command(
name = "loam",
about = ABOUT,
long_about = ABOUT.to_string() + LONG_ABOUT,
disable_help_subcommand = true,
)]
pub struct Root {
#[command(subcommand)]
pub cmd: Cmd,
}
impl Root {
pub fn new() -> Result<Self, clap::Error> {
let mut matches = Self::command().get_matches();
Self::from_arg_matches_mut(&mut matches)
}
pub fn from_arg_matches<I, T>(itr: I) -> Result<Self, clap::Error>
where
I: IntoIterator<Item = T>,
T: Into<std::ffi::OsString> + Clone,
{
Self::from_arg_matches_mut(&mut Self::command().get_matches_from(itr))
}
pub async fn run(&mut self) -> Result<(), Error> {
match &mut self.cmd {
Cmd::Init(init_info) => init_info.run()?,
Cmd::Build(build_info) => build_info.run().await?,
Cmd::UpdateEnv(e) => e.run()?,
Cmd::Dev(dev_info) => dev_info.run().await?,
}
Ok(())
}
}
impl FromStr for Root {
type Err = clap::Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Self::from_arg_matches(s.split_whitespace())
}
}
#[derive(Parser, Debug)]
pub enum Cmd {
/// Initialize the project
Init(init::Cmd),
/// Build contracts, resolving Loam dependencies in the correct order. If you have an `environments.toml` file, it will also follow its instructions to configure the environment set by the `LOAM_ENV` environment variable, turning your contracts into frontend packages (NPM dependencies).
Build(build::Cmd),
/// Update an environment variable in a .env file
UpdateEnv(update_env::Cmd),
/// Monitor contracts and environments.toml for changes and rebuild as needed
Dev(dev::Cmd),
}
#[derive(thiserror::Error, Debug)]
pub enum Error {
// TODO: stop using Debug for displaying errors
#[error(transparent)]
Init(#[from] init::Error),
#[error(transparent)]
BuildContracts(#[from] build::Error),
#[error(transparent)]
UpdateEnv(#[from] update_env::Error),
#[error(transparent)]
Dev(#[from] dev::Error),
}