1use argh::FromArgs;
6use component_debug::cli::{GraphFilter, GraphOrientation, ListFilter};
7use component_debug::config::RawConfigEntry;
8use component_debug::explore::DashNamespaceLayout;
9use fuchsia_url::AbsoluteComponentUrl;
10use moniker::Moniker;
11
12#[derive(FromArgs, PartialEq, Debug)]
13#[argh(
14 name = "component",
15 description = "Discover and manage components. Functionally equivalent to `ffx component`."
16)]
17pub struct ComponentArgs {
18 #[argh(subcommand)]
19 pub subcommand: ComponentSubcommand,
20}
21
22#[derive(FromArgs, PartialEq, Debug)]
23#[argh(subcommand)]
24pub enum ComponentSubcommand {
25 Capability(CapabilityArgs),
26 List(ListArgs),
27 Graph(GraphArgs),
28 Show(ShowArgs),
29 Create(CreateArgs),
30 Destroy(DestroyArgs),
31 Resolve(ResolveArgs),
32 Run(RunArgs),
33 Start(StartArgs),
34 Stop(StopArgs),
35 Reload(ReloadArgs),
36 Doctor(DoctorArgs),
37 Copy(CopyArgs),
38 Storage(StorageArgs),
39 Collection(CollectionArgs),
40 Explore(ExploreArgs),
41 Config(ConfigArgs),
42}
43
44#[derive(FromArgs, PartialEq, Debug)]
45#[argh(subcommand, name = "show", description = "Same as `ffx component show`")]
46pub struct ShowArgs {
47 #[argh(positional)]
48 pub query: String,
50}
51
52#[derive(FromArgs, Debug, PartialEq)]
53#[argh(subcommand, name = "create", description = "Same as `ffx component create`")]
54pub struct CreateArgs {
55 #[argh(positional)]
56 pub moniker: Moniker,
57
58 #[argh(positional)]
59 pub url: AbsoluteComponentUrl,
60
61 #[argh(option)]
62 pub config: Vec<RawConfigEntry>,
67}
68
69#[derive(FromArgs, Debug, PartialEq)]
70#[argh(subcommand, name = "resolve", description = "Same as `ffx component resolve`")]
71pub struct ResolveArgs {
72 #[argh(positional)]
73 pub query: String,
75}
76
77#[derive(FromArgs, Debug, PartialEq)]
78#[argh(subcommand, name = "destroy", description = "Same as `ffx component destroy`")]
79pub struct DestroyArgs {
80 #[argh(positional)]
81 pub query: String,
83}
84
85#[derive(FromArgs, Debug, PartialEq)]
86#[argh(subcommand, name = "start", description = "Same as `ffx component start`")]
87pub struct StartArgs {
88 #[argh(positional)]
89 pub query: String,
91}
92
93#[derive(FromArgs, Debug, PartialEq)]
94#[argh(subcommand, name = "stop", description = "Same as `ffx component stop`")]
95pub struct StopArgs {
96 #[argh(positional)]
97 pub query: String,
99}
100
101#[derive(FromArgs, Debug, PartialEq)]
102#[argh(subcommand, name = "reload", description = "Same as `ffx component reload`")]
103pub struct ReloadArgs {
104 #[argh(positional)]
105 pub query: String,
107}
108
109#[derive(FromArgs, Debug, PartialEq)]
110#[argh(subcommand, name = "doctor", description = "Same as `ffx component doctor`")]
111pub struct DoctorArgs {
112 #[argh(positional)]
113 pub query: String,
115}
116
117#[derive(FromArgs, Debug, PartialEq)]
118#[argh(subcommand, name = "capability", description = "Same as `ffx component capability`")]
119pub struct CapabilityArgs {
120 #[argh(positional)]
121 pub capability_name: String,
122}
123
124#[derive(FromArgs, Debug, PartialEq)]
125#[argh(subcommand, name = "list", description = "Same as `ffx component list`")]
126pub struct ListArgs {
127 #[argh(option, long = "only", short = 'o')]
128 pub filter: Option<ListFilter>,
130
131 #[argh(switch, long = "verbose", short = 'v')]
132 pub verbose: bool,
134}
135
136#[derive(FromArgs, Debug, PartialEq)]
137#[argh(subcommand, name = "graph", description = "Same as `ffx component graph`")]
138pub struct GraphArgs {
139 #[argh(option, long = "only", short = 'o')]
140 pub filter: Option<GraphFilter>,
142
143 #[argh(option, long = "orientation", short = 'r', default = "GraphOrientation::TopToBottom")]
144 pub orientation: GraphOrientation,
147}
148
149#[derive(FromArgs, Debug, PartialEq)]
150#[argh(subcommand, name = "run", description = "Same as `ffx component run`")]
151pub struct RunArgs {
152 #[argh(positional)]
153 pub moniker: Moniker,
154
155 #[argh(positional)]
156 pub url: AbsoluteComponentUrl,
157
158 #[argh(switch, short = 'r')]
159 pub recreate: bool,
161
162 #[argh(switch)]
163 pub connect_stdio: bool,
166
167 #[argh(option)]
168 pub config: Vec<RawConfigEntry>,
173}
174
175#[derive(FromArgs, Debug, PartialEq)]
176#[argh(subcommand, name = "copy", description = "Same as `ffx component copy`")]
177pub struct CopyArgs {
178 #[argh(positional)]
179 pub paths: Vec<String>,
180 #[argh(switch, short = 'v')]
182 pub verbose: bool,
183}
184
185#[derive(FromArgs, Debug, PartialEq)]
186#[argh(subcommand, name = "storage", description = "Same as `ffx component storage`")]
187pub struct StorageArgs {
188 #[argh(subcommand)]
189 pub subcommand: StorageSubcommand,
190
191 #[argh(option, default = "String::from(\"/core\")")]
192 pub provider: String,
195
196 #[argh(option, default = "String::from(\"data\")")]
197 pub capability: String,
201}
202
203#[derive(FromArgs, PartialEq, Debug)]
204#[argh(subcommand)]
205pub enum StorageSubcommand {
206 Copy(StorageCopyArgs),
207 Delete(StorageDeleteArgs),
208 List(StorageListArgs),
209 MakeDirectory(StorageMakeDirectoryArgs),
210}
211
212#[derive(FromArgs, PartialEq, Debug)]
213#[argh(subcommand, name = "list", description = "Same as `ffx component storage list`")]
214pub struct StorageListArgs {
215 #[argh(positional)]
216 pub path: String,
217}
218
219#[derive(FromArgs, Debug, PartialEq)]
220#[argh(
221 subcommand,
222 name = "make-directory",
223 description = "Same as `ffx component storage make-directory`"
224)]
225pub struct StorageMakeDirectoryArgs {
226 #[argh(positional)]
227 pub path: String,
228}
229
230#[derive(FromArgs, Debug, PartialEq)]
231#[argh(subcommand, name = "copy", description = "Same as `ffx component storage copy`")]
232pub struct StorageCopyArgs {
233 #[argh(positional)]
234 pub source_path: String,
235
236 #[argh(positional)]
237 pub destination_path: String,
238}
239
240#[derive(FromArgs, Debug, PartialEq)]
241#[argh(subcommand, name = "delete", description = "Same as `ffx component storage delete`")]
242pub struct StorageDeleteArgs {
243 #[argh(positional)]
244 pub path: String,
245}
246
247#[derive(FromArgs, Debug, PartialEq)]
248#[argh(subcommand, name = "collection", description = "Same as `ffx component collection`")]
249pub struct CollectionArgs {
250 #[argh(subcommand)]
251 pub subcommand: CollectionSubcommand,
252}
253
254#[derive(FromArgs, PartialEq, Debug)]
255#[argh(subcommand)]
256pub enum CollectionSubcommand {
257 List(CollectionListArgs),
258 Show(CollectionShowArgs),
259}
260
261#[derive(FromArgs, PartialEq, Debug)]
262#[argh(subcommand, name = "list", description = "Same as `ffx component collection list`")]
263pub struct CollectionListArgs {
264 #[argh(positional)]
265 pub path: String,
266}
267
268#[derive(FromArgs, Debug, PartialEq)]
269#[argh(subcommand, name = "show", description = "Same as `ffx component collection show`")]
270pub struct CollectionShowArgs {
271 #[argh(positional)]
272 pub query: String,
273}
274
275#[derive(FromArgs, Debug, PartialEq)]
276#[argh(subcommand, name = "explore", description = "Same as `ffx component explore`")]
277pub struct ExploreArgs {
278 #[argh(positional)]
279 pub query: String,
281
282 #[argh(option)]
283 pub tools: Vec<String>,
288
289 #[argh(option, short = 'c', long = "command")]
290 pub command: Option<String>,
293
294 #[argh(
295 option,
296 short = 'l',
297 long = "layout",
298 default = "DashNamespaceLayout::NestAllInstanceDirs"
299 )]
300 pub ns_layout: DashNamespaceLayout,
304}
305
306#[derive(FromArgs, Debug, PartialEq)]
307#[argh(subcommand, name = "config", description = "Same as `ffx component config`")]
308pub struct ConfigArgs {
309 #[argh(subcommand)]
310 pub subcommand: ConfigSubcommand,
311}
312
313#[derive(FromArgs, Debug, PartialEq)]
314#[argh(subcommand)]
315pub enum ConfigSubcommand {
316 Set(SetArgs),
317 Unset(UnsetArgs),
318 List(ConfigListArgs),
319}
320
321#[derive(FromArgs, Debug, PartialEq)]
322#[argh(subcommand, name = "set", description = "Same as `ffx component config set`")]
323pub struct SetArgs {
324 #[argh(positional)]
325 pub query: String,
327 #[argh(positional)]
328 pub key_values: Vec<String>,
331 #[argh(switch, short = 'r')]
332 pub reload: bool,
335}
336
337#[derive(FromArgs, Debug, PartialEq)]
338#[argh(subcommand, name = "unset", description = "Same as `ffx component config unset`")]
339pub struct UnsetArgs {
340 #[argh(positional)]
341 pub query: Option<String>,
344 #[argh(switch, short = 'r')]
345 pub reload: bool,
348}
349
350#[derive(FromArgs, Debug, PartialEq)]
351#[argh(subcommand, name = "list", description = "Same as `ffx component config list`")]
352pub struct ConfigListArgs {
353 #[argh(positional)]
354 pub query: String,
356}