Skip to content

Commit 6595674

Browse files
committed
Adding the config option for generate entity cli command
1 parent a711a88 commit 6595674

File tree

10 files changed

+350
-127
lines changed

10 files changed

+350
-127
lines changed

sea-orm-cli/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ url = { version = "2.2", default-features = false }
4646
chrono = { version = "0.4.20", default-features = false, features = ["clock"] }
4747
regex = { version = "1", default-features = false }
4848
glob = { version = "0.3", default-features = false }
49+
serde = { version = "1.0.183", features = ["derive"] }
50+
serde_json = "1.0.105"
4951

5052
[dev-dependencies]
5153
smol = "1.2.5"

sea-orm-cli/src/cli.rs

+103-106
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use clap::{ArgGroup, Parser, Subcommand, ValueEnum};
1+
use clap::{ArgGroup, Parser, Subcommand, ValueEnum, Args};
2+
use serde::Deserialize;
23

34
#[derive(Parser, Debug)]
45
#[command(
@@ -161,137 +162,133 @@ pub enum GenerateSubcommands {
161162
#[command(about = "Generate entity")]
162163
#[command(group(ArgGroup::new("formats").args(&["compact_format", "expanded_format"])))]
163164
#[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+
}
167167

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>,
170172

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>,
176175

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>,
184179

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>,
192185

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>>,
199193

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>>,
207200

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 \
214219
- For MySQL, this argument is ignored.\n \
215220
- For PostgreSQL, this argument is optional with default value 'public'."
216-
)]
217-
database_schema: String,
221+
)]
222+
pub database_schema: Option<String>,
218223

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>,
221226

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, \
226230
serialize, deserialize, both)"
227-
)]
228-
with_serde: String,
231+
)]
232+
pub with_serde: Option<String>,
229233

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>,
235239

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>,
242245

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\
247249
Enums generated from a database don't have associated data by default, and as such can \
248250
derive Copy.
249251
"
250-
)]
251-
with_copy_enums: bool,
252+
)]
253+
pub with_copy_enums: Option<bool>,
252254

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>,
260261

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>,
268268

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>>,
275275

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>>,
282282

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>,
290288
}
291289

292-
#[derive(Copy, Clone, Debug, PartialEq, Eq, ValueEnum, Default)]
290+
#[derive(Copy, Clone, Debug, PartialEq, Eq, ValueEnum, Deserialize)]
293291
pub enum DateTimeCrate {
294-
#[default]
295292
Chrono,
296293
Time,
297294
}

0 commit comments

Comments
 (0)