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
|
use log::{error, info};
use rust_i18n::t;
use crate::{
r_println,
systems::{
cmd::errors::{CmdExecuteError, CmdPrepareError, CmdProcessError, CmdRenderError},
render::{render_system::render, renderer::JVRenderResult},
},
};
use std::{
any::{TypeId, type_name},
collections::HashMap,
future::Future,
};
pub type AnyOutput = (Box<dyn std::any::Any + Send + 'static>, TypeId);
pub struct JVCommandContext {
pub help: bool,
pub confirmed: bool,
pub args: Vec<String>,
pub lang: String,
}
pub trait JVCommand<Argument, Input, Collect>
where
Argument: clap::Parser + Send,
Input: Send,
Collect: Send,
{
/// Get help string for the command
fn get_help_str() -> impl Future<Output = String> + Send;
/// Run the command and convert the result into type-agnostic serialized information,
/// then hand it over to the universal renderer for rendering.
/// Universal renderer: uses the renderer specified by the `--renderer` flag.
fn process_to_renderer_override(
args: Vec<String>,
ctx: JVCommandContext,
renderer_override: String,
) -> impl Future<Output = Result<JVRenderResult, CmdProcessError>> + Send {
async move {
// If the `--help` flag is used,
// skip execution and return an error,
// unlike `process_to_render_system`,
// when the `--renderer` flag specifies a renderer, `--help` output is not allowed
if ctx.help {
return Err(CmdProcessError::RendererOverrideButRequestHelp);
}
info!("{}", t!("verbose.cmd_process"));
let (data, type_id) = Self::process(args, ctx).await?;
let renderer = renderer_override.as_str();
// Serialize the data based on its concrete type
info!(
"{}",
t!("verbose.render_with_override_renderer", renderer = renderer)
);
include!("../render/_override_renderer_entry.rs")
}
}
/// Run the command and hand it over to the rendering system
/// to select the appropriate renderer for the result
fn process_to_render_system(
args: Vec<String>,
ctx: JVCommandContext,
) -> impl Future<Output = Result<JVRenderResult, CmdProcessError>> + Send {
async {
// If the `--help` flag is used,
// skip execution and directly render help information
if ctx.help {
let mut r = JVRenderResult::default();
let help_str = Self::get_help_str().await;
if !help_str.is_empty() {
r_println!(r, "{}", help_str);
}
return Ok(r);
}
info!("{}", t!("verbose.cmd_process"));
let (data, id) = Self::process(args, ctx).await?;
info!("{}", t!("verbose.render_with_specific_renderer"));
match render(data, id).await {
Ok(r) => Ok(r),
Err(e) => Err(CmdProcessError::Render(e)),
}
}
}
fn process(
args: Vec<String>,
ctx: JVCommandContext,
) -> impl Future<Output = Result<AnyOutput, CmdProcessError>> + Send {
async move {
let mut full_args = vec!["jv".to_string()];
full_args.extend(args);
info!(
"{}",
t!("verbose.cmd_process_parse", t = type_name::<Argument>())
);
let parsed_args = match Argument::try_parse_from(full_args) {
Ok(args) => args,
Err(_) => {
error!(
"{}",
t!(
"verbose.cmd_process_parse_failed",
t = type_name::<Argument>()
)
);
return Err(CmdProcessError::ParseError(Self::get_help_str().await));
}
};
info!(
"{}",
t!(
"verbose.cmd_process_prepare",
i = type_name::<Input>(),
c = type_name::<Collect>()
)
);
let (input, collect) = match tokio::try_join!(
Self::prepare(&parsed_args, &ctx),
Self::collect(&parsed_args, &ctx)
) {
Ok((input, collect)) => (input, collect),
Err(e) => match e {
CmdPrepareError::EarlyOutput(any_output) => {
// Early output is not an "error"
// It's just that when the result can be determined early,
// there's no need to wait until the execution phase to inform the user
return Ok(any_output);
}
_ => {
error!("{}", t!("verbose.cmd_process_prepare_failed"));
return Err(CmdProcessError::from(e));
}
},
};
info!("{}", t!("verbose.cmd_process_exec"));
let data = match Self::exec(input, collect).await {
Ok(output) => output,
Err(e) => {
error!("{}", t!("verbose.cmd_process_exec_failed"));
return Err(CmdProcessError::from(e));
}
};
Ok(data)
}
}
/// Prepare
/// Converts Argument input into parameters readable during the execution phase
fn prepare(
args: &Argument,
ctx: &JVCommandContext,
) -> impl Future<Output = Result<Input, CmdPrepareError>> + Send;
/// Resource collection
/// Reads required resources and sends them to the `exec` function
fn collect(
args: &Argument,
ctx: &JVCommandContext,
) -> impl Future<Output = Result<Collect, CmdPrepareError>> + Send;
/// Execute
/// Executes the results obtained from `prepare` and `collect`
/// Returns data that can be used for rendering
fn exec(
input: Input,
collect: Collect,
) -> impl Future<Output = Result<AnyOutput, CmdExecuteError>> + Send;
/// Get output type mapping
fn get_output_type_mapping() -> HashMap<String, TypeId>;
}
|