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
use crate::;
/// Command line interface definition for cargo xtask command.
///
/// # Examples
///
/// Use the premade entry point function with default configuration (`main`
/// feature is required):
///
/// ```rust
/// # #[cfg(feature = "main")]
/// # {
/// use cli_xtask::{Result, Xtask};
///
/// fn main() -> Result<()> {
/// <Xtask>::main()
/// }
/// # }
/// ```
///
/// Use the premade entry point function and custom configuration (`main`
/// feature is required):
///
/// ```rust
/// # #[cfg(feature = "main")]
/// # {
/// use cli_xtask::{config::Config, Result, Xtask};
///
/// fn main() -> Result<()> {
/// <Xtask>::main_with_config(|| Ok(Config::new()))
/// }
/// # }
/// ```
///
/// If you don't want to use the `main` feature, write the main function as
/// follows:
///
/// ```rust
/// # #[cfg(all(feature = "error-handler", feature = "logger"))]
/// # {
/// use cli_xtask::{clap::Parser, config::Config, error_handler, logger, Result, Xtask};
///
/// fn main() -> Result<()> {
/// // Parse command line arguments
/// let command = <Xtask>::parse();
///
/// // Setup error handler and logger
/// error_handler::install()?; // `error-handler` feature is required
/// logger::install(command.verbosity.get())?; // `logger` feature is required
///
/// // Run the subcommand specified by the command line arguments
/// command.run(&Config::new())?;
///
/// Ok(())
/// }
/// # }
/// ```
///
/// If you want to define your own subcommands, declare the type that implements
/// [`clap::Subcommand`] and [`Run`], then use `Xtask<YourOwnSubcommand>`
/// instead of `Xtask`.
///
/// ```rust
/// # #[cfg(feature = "main")]
/// # {
/// use cli_xtask::{
/// clap::{self, Parser},
/// config::Config,
/// subcommand, Result, Run, Xtask,
/// };
///
/// // Define your own subcommand arguments
/// #[derive(Debug, clap::Subcommand)]
/// enum YourOwnSubcommand {
/// #[clap(flatten)]
/// Predefined(subcommand::Subcommand),
/// /// Run foo function.
/// Foo,
/// /// Run bar function
/// Bar,
/// }
///
/// impl Run for YourOwnSubcommand {
/// fn run(&self, config: &Config) -> Result<()> {
/// match self {
/// Self::Predefined(subcommand) => subcommand.run(config)?,
/// Self::Foo => println!("foo!"),
/// Self::Bar => println!("bar!"),
/// }
/// Ok(())
/// }
///
/// fn into_any(self: Box<Self>) -> Box<dyn std::any::Any> {
/// self
/// }
///
/// fn as_any(&self) -> &dyn std::any::Any {
/// self
/// }
///
/// fn as_any_mut(&mut self) -> &mut dyn std::any::Any {
/// self
/// }
/// }
///
/// fn main() -> Result<()> {
/// Xtask::<YourOwnSubcommand>::main()
/// }
/// # }
/// ```