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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
use crate::THIS_PROGRAM;
use crate::{
Program, ProgramCollect, RenderResult,
error::{ProgramExecuteError, ProgramPanic},
};
// Async program
#[cfg(feature = "async")]
impl<C> Program<C>
where
C: ProgramCollect<Enum = C>,
{
async fn exec_wrapper<F, Fut>(self, f: F) -> Result<Fut::Output, ProgramPanic>
where
C: 'static + Send + Sync,
F: FnOnce(&'static Program<C>) -> Fut + Send + Sync,
Fut: Future + Send,
{
THIS_PROGRAM.get_or_init(|| Some(Box::new(self)));
let program = THIS_PROGRAM
.get()
.unwrap()
.as_ref()
.unwrap()
.downcast_ref::<Program<C>>()
.unwrap();
#[cfg(not(panic = "abort"))]
if program.stdout_setting.silence_panic {
std::panic::set_hook(Box::new(|_| {}));
}
#[cfg(panic = "abort")]
return Ok(f(program));
#[cfg(not(panic = "abort"))]
match std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| f(program))) {
Ok(fut) => Ok(fut.await),
Err(panic_info) => {
let panic_payload = ProgramPanic {
payload: panic_info,
};
program.run_hook_exec_panic(&panic_payload);
Err(panic_payload)
}
}
}
/// Run the command line program
pub async fn exec_without_render(mut self) -> Result<RenderResult, ProgramExecuteError>
where
C: 'static + Send + Sync,
{
// Run hooks
self.run_hook_on_begin();
self.args = self.args.iter().skip(1).cloned().collect();
match self
.exec_wrapper(|p| async { crate::exec::exec(p).await.map_err(|e| e.into()) })
.await
{
Ok(r) => r,
Err(e) => Err(ProgramExecuteError::Panic(e)),
}
}
/// Run the command line program
pub async fn exec(self) -> i32
where
C: 'static + Send + Sync,
{
let stdout_setting = self.stdout_setting.clone();
let result = match self.exec_without_render().await {
Ok(r) => r,
Err(e) => match e {
ProgramExecuteError::DispatcherNotFound => {
eprintln!("Dispatcher not found");
return 1;
}
ProgramExecuteError::RendererNotFound(renderer_name) => {
eprintln!("Renderer `{}` not found", renderer_name);
return 1;
}
ProgramExecuteError::Other(e) => {
eprintln!("{}", e);
return 1;
}
ProgramExecuteError::Panic(unwinded_error) => {
eprintln!("{}", unwinded_error);
return 1;
}
},
};
// Render result
if stdout_setting.render_output && !result.is_empty() {
let exit_code = result.exit_code;
print!("{}", result);
if let Err(e) = std::io::Write::flush(&mut std::io::stdout())
&& stdout_setting.error_output
{
eprintln!("{}", e);
1
} else {
exit_code
}
} else {
0
}
}
/// Run the command line program, then exit
pub async fn exec_and_exit(self)
where
C: 'static + Send + Sync,
{
std::process::exit(self.exec().await)
}
}
// Sync program
#[cfg(not(feature = "async"))]
impl<C> Program<C>
where
C: ProgramCollect<Enum = C>,
{
fn exec_wrapper<F, R>(self, f: F) -> Result<R, ProgramPanic>
where
C: 'static + Send + Sync,
F: FnOnce(&'static Program<C>) -> R + Send + Sync,
{
THIS_PROGRAM.get_or_init(|| Some(Box::new(self)));
let program = THIS_PROGRAM
.get()
.unwrap()
.as_ref()
.unwrap()
.downcast_ref::<Program<C>>()
.unwrap();
#[cfg(not(panic = "abort"))]
if program.stdout_setting.silence_panic {
std::panic::set_hook(Box::new(|_| {}));
}
#[cfg(panic = "abort")]
return Ok(f(program));
#[cfg(not(panic = "abort"))]
match std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| f(program))) {
Ok(result) => Ok(result),
Err(panic_info) => {
use crate::error::ProgramPanic;
let panic_payload = ProgramPanic {
payload: panic_info,
};
program.run_hook_exec_panic(&panic_payload);
Err(panic_payload)
}
}
}
/// Run the command line program
pub fn exec_without_render(mut self) -> Result<RenderResult, ProgramExecuteError>
where
C: 'static + Send + Sync,
{
// Run hooks
self.run_hook_on_begin();
self.args = self.args.iter().skip(1).cloned().collect();
match self.exec_wrapper(|p| crate::exec::exec(p).map_err(|e| e.into())) {
Ok(r) => r,
Err(e) => Err(ProgramExecuteError::Panic(e)),
}
}
/// Run the command line program
pub fn exec(self) -> i32
where
C: 'static + Send + Sync,
{
use crate::error::ProgramExecuteError;
let stdout_setting = self.stdout_setting.clone();
let result = match self.exec_without_render() {
Ok(r) => r,
Err(e) => match e {
ProgramExecuteError::DispatcherNotFound => {
eprintln!("Dispatcher not found");
return 1;
}
ProgramExecuteError::RendererNotFound(renderer_name) => {
eprintln!("Renderer `{}` not found", renderer_name);
return 1;
}
ProgramExecuteError::Other(e) => {
eprintln!("{}", e);
return 1;
}
ProgramExecuteError::Panic(unwinded_error) => {
eprintln!("{}", unwinded_error);
return 1;
}
},
};
// Render result
if stdout_setting.render_output && !result.is_empty() {
let exit_code = result.exit_code;
print!("{}", result);
if let Err(e) = std::io::Write::flush(&mut std::io::stdout())
&& stdout_setting.error_output
{
eprintln!("{}", e);
1
} else {
exit_code
}
} else {
0
}
}
/// Run the command line program, then exit
pub fn exec_and_exit(self)
where
C: 'static + Send + Sync,
{
std::process::exit(self.exec())
}
}
|