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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
use std::collections::hash_map::DefaultHasher;
use std::fmt::{Display, Formatter};
use std::hash::{Hash, Hasher};
use ordered_float::OrderedFloat;
use serde::{Deserialize, Serialize};
use strum::EnumIter;
#[derive(Serialize, Deserialize, Debug, Clone, Hash)]
#[serde(rename_all = "PascalCase")]
pub struct InternalModelFormat {
pub models: Vec<Model>,
}
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "PascalCase")]
pub struct Model {
pub name: String,
pub fields: Vec<Field>,
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub source_defined_at: Option<Source>,
}
impl PartialEq for Model {
fn eq(&self, other: &Self) -> bool {
self.name == other.name && self.fields == other.fields
}
}
impl Hash for Model {
fn hash<H: Hasher>(&self, state: &mut H) {
self.fields.hash(state);
self.name.hash(state);
}
fn hash_slice<H: Hasher>(data: &[Self], state: &mut H)
where
Self: Sized,
{
data.iter().for_each(|x| x.hash(state));
}
}
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "PascalCase")]
pub struct Field {
pub name: String,
#[serde(rename = "Type")]
pub db_type: DbType,
pub annotations: Vec<Annotation>,
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub source_defined_at: Option<Source>,
}
impl PartialEq for Field {
fn eq(&self, other: &Self) -> bool {
self.name == other.name
&& self.db_type == other.db_type
&& self.annotations == other.annotations
}
}
impl Hash for Field {
fn hash<H: Hasher>(&self, state: &mut H) {
self.name.hash(state);
self.annotations.hash(state);
self.db_type.hash(state);
}
fn hash_slice<H: Hasher>(data: &[Self], state: &mut H)
where
Self: Sized,
{
data.iter().for_each(|x| x.hash(state));
}
}
#[derive(Serialize, Deserialize, Debug, Clone, Hash)]
#[serde(rename_all = "PascalCase")]
pub struct Source {
pub file: String,
pub line: usize,
pub column: usize,
}
#[allow(missing_docs)]
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum DbType {
VarChar,
VarBinary,
Int8,
Int16,
Int32,
Int64,
#[serde(rename = "float_number")]
Float,
#[serde(rename = "double_number")]
Double,
Boolean,
Date,
DateTime,
Timestamp,
Time,
Choices,
}
#[non_exhaustive]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, Hash, EnumIter)]
#[serde(tag = "Type", content = "Value")]
#[serde(rename_all = "snake_case")]
pub enum Annotation {
AutoCreateTime,
AutoUpdateTime,
AutoIncrement,
Choices(Vec<String>),
DefaultValue(DefaultValue),
Index(Option<IndexValue>),
MaxLength(i32),
NotNull,
PrimaryKey,
Unique,
ForeignKey(ForeignKey),
}
impl Annotation {
pub fn eq_shallow(&self, other: &Self) -> bool {
match (self, other) {
(Annotation::AutoCreateTime, Annotation::AutoCreateTime) => true,
(Annotation::AutoCreateTime, _) => false,
(Annotation::AutoUpdateTime, Annotation::AutoUpdateTime) => true,
(Annotation::AutoUpdateTime, _) => false,
(Annotation::AutoIncrement, Annotation::AutoIncrement) => true,
(Annotation::AutoIncrement, _) => false,
(Annotation::Choices(_), Annotation::Choices(_)) => true,
(Annotation::Choices(_), _) => false,
(Annotation::DefaultValue(_), Annotation::DefaultValue(_)) => true,
(Annotation::DefaultValue(_), _) => false,
(Annotation::Index(_), Annotation::Index(_)) => true,
(Annotation::Index(_), _) => false,
(Annotation::MaxLength(_), Annotation::MaxLength(_)) => true,
(Annotation::MaxLength(_), _) => false,
(Annotation::NotNull, Annotation::NotNull) => true,
(Annotation::NotNull, _) => false,
(Annotation::PrimaryKey, Annotation::PrimaryKey) => true,
(Annotation::PrimaryKey, _) => false,
(Annotation::Unique, Annotation::Unique) => true,
(Annotation::Unique, _) => false,
(Annotation::ForeignKey(_), Annotation::ForeignKey(_)) => true,
(Annotation::ForeignKey(_), _) => false,
}
}
pub fn hash_shallow(&self) -> u64 {
let mut state = DefaultHasher::new();
match self {
Annotation::AutoCreateTime => state.write_i8(0),
Annotation::AutoUpdateTime => state.write_i8(1),
Annotation::AutoIncrement => state.write_i8(2),
Annotation::Choices(_) => state.write_i8(3),
Annotation::DefaultValue(_) => state.write_i8(4),
Annotation::Index(_) => state.write_i8(5),
Annotation::MaxLength(_) => state.write_i8(6),
Annotation::NotNull => state.write_i8(7),
Annotation::PrimaryKey => state.write_i8(8),
Annotation::Unique => state.write_i8(9),
Annotation::ForeignKey(_) => state.write_i8(10),
}
state.finish()
}
}
#[cfg(test)]
mod test {
use crate::imr::{Annotation, IndexValue};
#[test]
fn test_annotation_hash() {
assert_eq!(
Annotation::MaxLength(1).hash_shallow(),
Annotation::MaxLength(12313).hash_shallow()
);
assert_eq!(
Annotation::Index(None).hash_shallow(),
Annotation::Index(Some(IndexValue {
priority: None,
name: "foo".to_string(),
}))
.hash_shallow()
);
}
#[test]
fn test_annotation_partial_eq() {
assert!(Annotation::MaxLength(1).eq_shallow(&Annotation::MaxLength(2)));
assert!(
Annotation::Index(None).eq_shallow(&Annotation::Index(Some(IndexValue {
priority: None,
name: "foo".to_string()
})))
);
}
}
#[derive(Serialize, Deserialize, Debug, Clone, Hash, PartialEq, Eq)]
#[serde(rename_all = "PascalCase")]
pub struct ForeignKey {
pub table_name: String,
pub column_name: String,
pub on_delete: ReferentialAction,
pub on_update: ReferentialAction,
}
impl Default for ForeignKey {
fn default() -> Self {
ForeignKey {
table_name: String::from(""),
column_name: String::from(""),
on_delete: Default::default(),
on_update: Default::default(),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, Copy, Hash, PartialEq, Eq)]
#[serde(rename_all = "PascalCase")]
pub enum ReferentialAction {
Restrict,
Cascade,
SetNull,
SetDefault,
}
impl Default for ReferentialAction {
fn default() -> Self {
Self::Restrict
}
}
impl Display for ReferentialAction {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
ReferentialAction::Restrict => write!(f, "RESTRICT"),
ReferentialAction::Cascade => write!(f, "CASCADE"),
ReferentialAction::SetNull => write!(f, "SET NULL"),
ReferentialAction::SetDefault => write!(f, "SET DEFAULT"),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, Hash, PartialEq, Eq)]
#[serde(rename_all = "PascalCase")]
pub struct IndexValue {
pub name: String,
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub priority: Option<i32>,
}
#[derive(Serialize, Deserialize, Debug, Clone, Hash, PartialEq, Eq)]
#[serde(untagged)]
pub enum DefaultValue {
String(String),
Integer(i64),
Float(OrderedFloat<f64>),
Boolean(bool),
}
impl Default for DefaultValue {
fn default() -> Self {
DefaultValue::Boolean(true)
}
}