-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathmod.rs
127 lines (114 loc) · 3.73 KB
/
mod.rs
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
use std::env::{current_dir};
use std::io::{stdout, stderr, Write};
use std::path::Path;
use std::sync::Arc;
use argparse::{ArgumentParser, Store, StoreOption, List};
use crate::config::read_settings::{read_settings, MergedSettings};
use super::config::{find_config_or_exit, Config, Settings};
use super::config::command::MainCommand::{Command, Supervise, CapsuleCommand};
mod debug;
mod build;
mod run;
mod setup;
mod util;
mod clean;
mod pack;
mod snapshot;
mod init_persistent;
mod hardlink;
// Command types
mod supervise;
mod commandline;
mod capsule;
pub struct Wrapper<'a> {
config: &'a Config,
settings: &'a Arc<Settings>,
project_root: &'a Path,
ext_settings: &'a MergedSettings,
root: Option<String>,
}
pub fn run(input_args: Vec<String>) -> i32 {
let mut err = stderr();
let mut cmd: String = "".to_string();
let mut args: Vec<String> = Vec::new();
let mut root = None;
{
let mut ap = ArgumentParser::new();
ap.set_description("
Internal vagga tool to setup basic system sandbox
");
ap.refer(&mut root)
.add_option(&["--root"], StoreOption, "
Root to choose for running container (for command that run in a
container)");
ap.refer(&mut cmd)
.add_argument("command", Store,
"A vagga command to run")
.required();
ap.refer(&mut args)
.add_argument("args", List,
"Arguments for the command");
ap.stop_on_first_argument(true);
match ap.parse(input_args, &mut stdout(), &mut stderr()) {
Ok(()) => {}
Err(0) => return 0,
Err(_) => {
return 122;
}
}
}
let workdir = current_dir().unwrap();
let (config, project_root) = find_config_or_exit(&workdir, false);
let (ext_settings, int_settings) = match read_settings(&project_root)
{
Ok(tup) => tup,
Err(e) => {
writeln!(&mut err, "{}", e).ok();
return 126;
}
};
let wrapper = Wrapper {
root: root,
config: &config,
settings: &Arc::new(int_settings),
project_root: &project_root,
ext_settings: &ext_settings,
};
args.insert(0, format!("vagga {}", cmd));
let result = match &cmd[..] {
"_build_shell" => Ok(debug::run_interactive_build_shell(&wrapper)),
"_check_overlayfs_support" => Ok(debug::check_overlayfs(&wrapper)),
"_build" => build::build_container_cmd(&wrapper, args),
"_version_hash" => build::print_version_hash_cmd(&wrapper, args),
"_run" | "_run_in_netns" => run::run_command_cmd(&wrapper, args),
"_clean" => clean::clean_cmd(&wrapper, args),
"_pack_image" => pack::pack_image_cmd(&wrapper, args),
"_hardlink" => hardlink::hardlink_cmd(&wrapper, args),
"_verify" => hardlink::verify_cmd(&wrapper, args),
_ => {
match config.commands.get(&cmd) {
Some(&Command(ref cmd_info)) => {
commandline::commandline_cmd(&cmd,
cmd_info, &wrapper, args)
}
Some(&CapsuleCommand(ref cmd_info)) => {
capsule::commandline_cmd(&cmd, cmd_info, &wrapper, args)
}
Some(&Supervise(ref svc_info)) => {
supervise::supervise_cmd(&cmd, svc_info, &wrapper, args)
}
None => {
error!("Unknown command {}", cmd);
return 127;
}
}
}
};
match result {
Ok(x) => return x,
Err(e) => {
error!("Error executing {}: {}", cmd, e);
return 124;
}
};
}