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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
mod code;
mod file;
mod parser;
use file::MarkedFile;
use parser::ParsedTableMacro;
pub use parser::FILE_SIGNATURE;
use std::collections::HashMap;
use std::path::PathBuf;
#[derive(Default, Debug, Clone)]
pub struct TableOptions<'a> {
ignore: Option<bool>,
autogenerated_columns: Option<Vec<&'a str>>,
#[cfg(feature = "tsync")]
tsync: Option<bool>,
}
impl<'a> TableOptions<'a> {
pub fn get_ignore(&self) -> bool {
self.ignore.unwrap_or_default()
}
#[cfg(feature = "tsync")]
pub fn get_tsync(&self) -> bool {
self.tsync.unwrap_or_default()
}
pub fn get_autogenerated_columns(&self) -> &[&'_ str] {
self.autogenerated_columns.as_deref().unwrap_or_default()
}
pub fn ignore(self) -> Self {
Self {
ignore: Some(true),
..self
}
}
#[cfg(feature = "tsync")]
pub fn tsync(self) -> Self {
Self {
tsync: Some(true),
..self
}
}
pub fn autogenerated_columns(self, cols: Vec<&'a str>) -> Self {
Self {
autogenerated_columns: Some(cols.clone()),
..self
}
}
pub fn apply_defaults(&self, other: &TableOptions<'a>) -> Self {
Self {
ignore: self.ignore.or(other.ignore),
#[cfg(feature = "tsync")]
tsync: self.tsync.or(other.tsync),
autogenerated_columns: self
.autogenerated_columns
.clone()
.or_else(|| other.autogenerated_columns.clone()),
}
}
}
#[derive(Debug, Clone)]
pub struct GenerationConfig<'a> {
pub table_options: HashMap<&'a str, TableOptions<'a>>,
pub default_table_options: TableOptions<'a>,
pub connection_type: String,
}
impl GenerationConfig<'_> {
pub fn table(&self, name: &str) -> TableOptions<'_> {
let t = self
.table_options
.get(name)
.unwrap_or(&self.default_table_options);
t.apply_defaults(&self.default_table_options)
}
}
pub fn generate_code(
diesel_schema_file_contents: String,
config: GenerationConfig,
) -> anyhow::Result<Vec<ParsedTableMacro>> {
parser::parse_and_generate_code(diesel_schema_file_contents, &config)
}
pub fn generate_files(
input_diesel_schema_file: PathBuf,
output_models_dir: PathBuf,
config: GenerationConfig,
) {
let input = input_diesel_schema_file;
let output_dir = output_models_dir;
let generated = generate_code(
std::fs::read_to_string(input).expect("Could not read schema file."),
config,
)
.expect("An error occurred.");
if !output_dir.exists() {
std::fs::create_dir(&output_dir)
.unwrap_or_else(|_| panic!("Could not create directory '{output_dir:#?}'"));
} else if !output_dir.is_dir() {
panic!("Expected output argument to be a directory or non-existent.")
}
let mut mod_rs = MarkedFile::new(output_dir.join("mod.rs"));
for table in generated.iter() {
let table_dir = output_dir.join(table.name.to_string());
if !table_dir.exists() {
std::fs::create_dir(&table_dir)
.unwrap_or_else(|_| panic!("Could not create directory '{table_dir:#?}'"));
}
if !table_dir.is_dir() {
panic!("Expected a directory at '{table_dir:#?}'")
}
let mut table_generated_rs = MarkedFile::new(table_dir.join("generated.rs"));
let mut table_mod_rs = MarkedFile::new(table_dir.join("mod.rs"));
table_generated_rs.ensure_file_signature();
table_generated_rs.file_contents = table.generated_code.clone();
table_generated_rs.write();
table_mod_rs.ensure_mod_stmt("generated");
table_mod_rs.ensure_use_stmt("generated::*");
table_mod_rs.write();
mod_rs.ensure_mod_stmt(table.name.to_string().as_str());
}
for item in std::fs::read_dir(&output_dir)
.unwrap_or_else(|_| panic!("Could not read directory '{output_dir:#?}'"))
{
let item = item.unwrap_or_else(|_| panic!("Could not read item in '{output_dir:#?}'"));
let file_type = item
.file_type()
.unwrap_or_else(|_| panic!("Could not determine type of file '{:#?}'", item.path()));
if !file_type.is_dir() {
continue;
}
let generated_rs_path = item.path().join("generated.rs");
if !generated_rs_path.exists()
|| !generated_rs_path.is_file()
|| !MarkedFile::new(generated_rs_path.clone()).has_file_signature()
{
continue;
}
let file_name = item.file_name();
let associated_table_name = file_name
.to_str()
.unwrap_or_else(|| panic!("Could not determine name of file '{:#?}'", item.path()));
let found = generated.iter().find(|g| {
g.name
.to_string()
.eq_ignore_ascii_case(associated_table_name)
});
if found.is_some() {
continue;
}
std::fs::remove_file(&generated_rs_path)
.unwrap_or_else(|_| panic!("Could not delete redundant file '{generated_rs_path:#?}'"));
let table_mod_rs_path = item.path().join("mod.rs");
if table_mod_rs_path.exists() {
let mut table_mod_rs = MarkedFile::new(table_mod_rs_path);
table_mod_rs.remove_mod_stmt("generated");
table_mod_rs.remove_use_stmt("generated::*");
table_mod_rs.write();
if table_mod_rs.file_contents.trim().is_empty() {
table_mod_rs.delete()
} else {
table_mod_rs.write() }
}
let is_empty = item
.path()
.read_dir()
.unwrap_or_else(|_| panic!("Could not read directory {:#?}", item.path()))
.next()
.is_none();
if is_empty {
std::fs::remove_dir(item.path())
.unwrap_or_else(|_| panic!("Could not delete directory '{:#?}'", item.path()));
}
mod_rs.remove_mod_stmt(associated_table_name);
}
mod_rs.write();
}