|
1 |
| -use clap::{ArgGroup, Parser, Subcommand, ValueEnum}; |
| 1 | +use clap::{ArgGroup, Parser, Subcommand, ValueEnum, Args}; |
| 2 | +use serde::Deserialize; |
2 | 3 |
|
3 | 4 | #[derive(Parser, Debug)]
|
4 | 5 | #[command(
|
@@ -161,137 +162,133 @@ pub enum GenerateSubcommands {
|
161 | 162 | #[command(about = "Generate entity")]
|
162 | 163 | #[command(group(ArgGroup::new("formats").args(&["compact_format", "expanded_format"])))]
|
163 | 164 | #[command(group(ArgGroup::new("group-tables").args(&["tables", "include_hidden_tables"])))]
|
164 |
| - Entity { |
165 |
| - #[arg(long, help = "Generate entity file of compact format")] |
166 |
| - compact_format: bool, |
| 165 | + Entity(GenerateSubCommandsEntity), |
| 166 | +} |
167 | 167 |
|
168 |
| - #[arg(long, help = "Generate entity file of expanded format")] |
169 |
| - expanded_format: bool, |
| 168 | +#[derive(Args,PartialEq, Eq, Debug, Deserialize)] |
| 169 | +pub struct GenerateSubCommandsEntity { |
| 170 | + #[arg(long, help = "Generate entity file of compact format")] |
| 171 | + pub compact_format: Option<bool>, |
170 | 172 |
|
171 |
| - #[arg( |
172 |
| - long, |
173 |
| - help = "Generate entity file for hidden tables (i.e. table name starts with an underscore)" |
174 |
| - )] |
175 |
| - include_hidden_tables: bool, |
| 173 | + #[arg(long, help = "Generate entity file of expanded format")] |
| 174 | + pub expanded_format: Option<bool>, |
176 | 175 |
|
177 |
| - #[arg( |
178 |
| - short = 't', |
179 |
| - long, |
180 |
| - value_delimiter = ',', |
181 |
| - help = "Generate entity file for specified tables only (comma separated)" |
182 |
| - )] |
183 |
| - tables: Vec<String>, |
| 176 | + #[arg(long, help = "Path to config")] |
| 177 | + #[serde(skip_deserializing)] |
| 178 | + pub config: Option<String>, |
184 | 179 |
|
185 |
| - #[arg( |
186 |
| - long, |
187 |
| - value_delimiter = ',', |
188 |
| - default_value = "seaql_migrations", |
189 |
| - help = "Skip generating entity file for specified tables (comma separated)" |
190 |
| - )] |
191 |
| - ignore_tables: Vec<String>, |
| 180 | + #[arg( |
| 181 | + long, |
| 182 | + help = "Generate entity file for hidden tables (i.e. table name starts with an underscore)" |
| 183 | + )] |
| 184 | + pub include_hidden_tables: Option<bool>, |
192 | 185 |
|
193 |
| - #[arg( |
194 |
| - long, |
195 |
| - default_value = "1", |
196 |
| - help = "The maximum amount of connections to use when connecting to the database." |
197 |
| - )] |
198 |
| - max_connections: u32, |
| 186 | + #[arg( |
| 187 | + short = 't', |
| 188 | + long, |
| 189 | + value_delimiter = ',', |
| 190 | + help = "Generate entity file for specified tables only (comma separated)" |
| 191 | + )] |
| 192 | + pub tables: Option<Vec<String>>, |
199 | 193 |
|
200 |
| - #[arg( |
201 |
| - short = 'o', |
202 |
| - long, |
203 |
| - default_value = "./", |
204 |
| - help = "Entity file output directory" |
205 |
| - )] |
206 |
| - output_dir: String, |
| 194 | + #[arg( |
| 195 | + long, |
| 196 | + value_delimiter = ',', |
| 197 | + help = "Skip generating entity file for specified tables (comma separated)" |
| 198 | + )] |
| 199 | + pub ignore_tables: Option<Vec<String>>, |
207 | 200 |
|
208 |
| - #[arg( |
209 |
| - short = 's', |
210 |
| - long, |
211 |
| - env = "DATABASE_SCHEMA", |
212 |
| - default_value = "public", |
213 |
| - long_help = "Database schema\n \ |
| 201 | + #[arg( |
| 202 | + long, |
| 203 | + help = "The maximum amount of connections to use when connecting to the database." |
| 204 | + )] |
| 205 | + pub max_connections: Option<u32>, |
| 206 | + |
| 207 | + #[arg( |
| 208 | + short = 'o', |
| 209 | + long, |
| 210 | + help = "Entity file output directory" |
| 211 | + )] |
| 212 | + pub output_dir: Option<String>, |
| 213 | + |
| 214 | + #[arg( |
| 215 | + short = 's', |
| 216 | + long, |
| 217 | + env = "DATABASE_SCHEMA", |
| 218 | + long_help = "Database schema\n \ |
214 | 219 | - For MySQL, this argument is ignored.\n \
|
215 | 220 | - For PostgreSQL, this argument is optional with default value 'public'."
|
216 |
| - )] |
217 |
| - database_schema: String, |
| 221 | + )] |
| 222 | + pub database_schema: Option<String>, |
218 | 223 |
|
219 |
| - #[arg(short = 'u', long, env = "DATABASE_URL", help = "Database URL")] |
220 |
| - database_url: String, |
| 224 | + #[arg(short = 'u', long, env = "DATABASE_URL", help = "Database URL")] |
| 225 | + pub database_url: Option<String>, |
221 | 226 |
|
222 |
| - #[arg( |
223 |
| - long, |
224 |
| - default_value = "none", |
225 |
| - help = "Automatically derive serde Serialize / Deserialize traits for the entity (none, \ |
| 227 | + #[arg( |
| 228 | + long, |
| 229 | + help = "Automatically derive serde Serialize / Deserialize traits for the entity (none, \ |
226 | 230 | serialize, deserialize, both)"
|
227 |
| - )] |
228 |
| - with_serde: String, |
| 231 | + )] |
| 232 | + pub with_serde: Option<String>, |
229 | 233 |
|
230 |
| - #[arg( |
231 |
| - long, |
232 |
| - help = "Generate a serde field attribute, '#[serde(skip_deserializing)]', for the primary key fields to skip them during deserialization, this flag will be affective only when '--with-serde' is 'both' or 'deserialize'" |
233 |
| - )] |
234 |
| - serde_skip_deserializing_primary_key: bool, |
| 234 | + #[arg( |
| 235 | + long, |
| 236 | + help = "Generate a serde field attribute, '#[serde(skip_deserializing)]', for the primary key fields to skip them during deserialization, this flag will be affective only when '--with-serde' is 'both' or 'deserialize'" |
| 237 | + )] |
| 238 | + pub serde_skip_deserializing_primary_key: Option<bool>, |
235 | 239 |
|
236 |
| - #[arg( |
237 |
| - long, |
238 |
| - default_value = "false", |
239 |
| - help = "Opt-in to add skip attributes to hidden columns (i.e. when 'with-serde' enabled and column name starts with an underscore)" |
240 |
| - )] |
241 |
| - serde_skip_hidden_column: bool, |
| 240 | + #[arg( |
| 241 | + long, |
| 242 | + help = "Opt-in to add skip attributes to hidden columns (i.e. when 'with-serde' enabled and column name starts with an underscore)" |
| 243 | + )] |
| 244 | + pub serde_skip_hidden_column: Option<bool>, |
242 | 245 |
|
243 |
| - #[arg( |
244 |
| - long, |
245 |
| - default_value = "false", |
246 |
| - long_help = "Automatically derive the Copy trait on generated enums.\n\ |
| 246 | + #[arg( |
| 247 | + long, |
| 248 | + long_help = "Automatically derive the Copy trait on generated enums.\n\ |
247 | 249 | Enums generated from a database don't have associated data by default, and as such can \
|
248 | 250 | derive Copy.
|
249 | 251 | "
|
250 |
| - )] |
251 |
| - with_copy_enums: bool, |
| 252 | + )] |
| 253 | + pub with_copy_enums: Option<bool>, |
252 | 254 |
|
253 |
| - #[arg( |
254 |
| - long, |
255 |
| - default_value_t, |
256 |
| - value_enum, |
257 |
| - help = "The datetime crate to use for generating entities." |
258 |
| - )] |
259 |
| - date_time_crate: DateTimeCrate, |
| 255 | + #[arg( |
| 256 | + long, |
| 257 | + value_enum, |
| 258 | + help = "The datetime crate to use for generating entities." |
| 259 | + )] |
| 260 | + pub date_time_crate: Option<DateTimeCrate>, |
260 | 261 |
|
261 |
| - #[arg( |
262 |
| - long, |
263 |
| - short = 'l', |
264 |
| - default_value = "false", |
265 |
| - help = "Generate index file as `lib.rs` instead of `mod.rs`." |
266 |
| - )] |
267 |
| - lib: bool, |
| 262 | + #[arg( |
| 263 | + long, |
| 264 | + short = 'l', |
| 265 | + help = "Generate index file as `lib.rs` instead of `mod.rs`." |
| 266 | + )] |
| 267 | + pub lib: Option<bool>, |
268 | 268 |
|
269 |
| - #[arg( |
270 |
| - long, |
271 |
| - value_delimiter = ',', |
272 |
| - help = "Add extra derive macros to generated model struct (comma separated), e.g. `--model-extra-derives 'ts_rs::Ts','CustomDerive'`" |
273 |
| - )] |
274 |
| - model_extra_derives: Vec<String>, |
| 269 | + #[arg( |
| 270 | + long, |
| 271 | + value_delimiter = ',', |
| 272 | + help = "Add extra derive macros to generated model struct (comma separated), e.g. `--model-extra-derives 'ts_rs::Ts','CustomDerive'`" |
| 273 | + )] |
| 274 | + pub model_extra_derives: Option<Vec<String>>, |
275 | 275 |
|
276 |
| - #[arg( |
277 |
| - long, |
278 |
| - value_delimiter = ',', |
279 |
| - help = r#"Add extra attributes to generated model struct, no need for `#[]` (comma separated), e.g. `--model-extra-attributes 'serde(rename_all = "camelCase")','ts(export)'`"# |
280 |
| - )] |
281 |
| - model_extra_attributes: Vec<String>, |
| 276 | + #[arg( |
| 277 | + long, |
| 278 | + value_delimiter = ',', |
| 279 | + help = r#"Add extra attributes to generated model struct, no need for `#[]` (comma separated), e.g. `--model-extra-attributes 'serde(rename_all = "camelCase")','ts(export)'`"# |
| 280 | + )] |
| 281 | + pub model_extra_attributes: Option<Vec<String>>, |
282 | 282 |
|
283 |
| - #[arg( |
284 |
| - long, |
285 |
| - default_value = "false", |
286 |
| - long_help = "Generate helper Enumerations that are used by Seaography." |
287 |
| - )] |
288 |
| - seaography: bool, |
289 |
| - }, |
| 283 | + #[arg( |
| 284 | + long, |
| 285 | + long_help = "Generate helper Enumerations that are used by Seaography." |
| 286 | + )] |
| 287 | + pub seaography: Option<bool>, |
290 | 288 | }
|
291 | 289 |
|
292 |
| -#[derive(Copy, Clone, Debug, PartialEq, Eq, ValueEnum, Default)] |
| 290 | +#[derive(Copy, Clone, Debug, PartialEq, Eq, ValueEnum, Deserialize)] |
293 | 291 | pub enum DateTimeCrate {
|
294 |
| - #[default] |
295 | 292 | Chrono,
|
296 | 293 | Time,
|
297 | 294 | }
|
0 commit comments