geekorm-derive 0.12.0

GeekORM Derive Macros Library
Documentation
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
//! Geek Attributes for the derive macro
//!
//! # Samples
//!
//! ```rust
//! use geekorm::prelude::*;
//!
//! #[derive(Table, Debug, Default, Clone, serde::Serialize, serde::Deserialize)]
//! struct Users {
//!     #[geekorm(primary_key, auto_increment)]
//!     id: PrimaryKey<i32>,
//!     /// Rename the field for the table
//!     #[geekorm(rename = "full_name")]
//!     name: String,
//!
//!     age: i32,
//!
//!     occupation: String,
//!     /// Random value
//! #   #[cfg(feature = "rand")]
//!     #[geekorm(unique, rand, rand_length = "42", rand_prefix = "gorm_")]
//!     session: String,
//!     /// Datetime using chrono
//! #   #[cfg(feature = "chrono")]
//!     #[geekorm(new = "chrono::Utc::now()")]
//!     created_at: chrono::DateTime<chrono::Utc>,
//! }
//!
//! #[derive(Table, Debug, Clone, serde::Serialize, serde::Deserialize)]
//! struct Posts {
//!     #[geekorm(primary_key, auto_increment)]
//!     id: PrimaryKeyInteger,
//!     #[geekorm(not_null)]
//!     title: String,
//!     #[geekorm(foreign_key = "Users.id")]
//!     author: ForeignKey<i32, Users>,
//! }
//!
//! # fn main() {
//!     let user = Users::new(
//!         "geekmasher",
//!         42,
//!         "Software Engineer",
//!     );
//!     let post = Posts::new(
//!         "Why I love Rust",
//!         user.id
//!     );
//! # }
//! ```
use proc_macro2::{Span, TokenStream};
use quote::{ToTokens, quote};
use syn::{
    Attribute, Ident, LitBool, LitInt, LitStr, Token,
    parse::{Parse, ParseStream, discouraged::AnyDelimiter},
    punctuated::Punctuated,
    spanned::Spanned,
    token::{Bracket, Comma},
};

#[derive(Debug, Clone)]
pub(crate) struct GeekAttribute {
    #[allow(dead_code)]
    pub(crate) span: Ident,
    pub(crate) key: Option<GeekAttributeKeys>,
    pub(crate) value: Option<GeekAttributeValue>,
    pub(crate) value_span: Option<Span>,
}

#[derive(Debug, Clone, Eq, PartialEq)]
pub(crate) enum GeekAttributeKeys {
    /// Rename the field for the table
    Rename,
    /// Database Name
    Database,
    /// ToString
    ToString,
    FromString,
    /// Key
    Key,
    /// Unique value
    Unique,
    /// New Constructor
    New,
    /// Primary Key
    PrimaryKey,
    /// Auto Increment
    AutoIncrement,
    /// Not Null
    NotNull,
    /// Foreign Key
    ForeignKey,
    /// Aliases
    Aliases,
    /// Random value
    Rand,
    RandLength,
    RandPrefix,
    RandEnv,
    /// Hash / Password
    Hash,
    HashAlgorithm,
    /// Searchable
    Searchable,
    /// On Actions
    OnValidate,
    OnUpdate,
    OnSave,
    /// Skip this field
    Skip,
    /// Disable features
    Disable,
}

#[derive(Debug, Clone, PartialEq)]
pub(crate) enum GeekAttributeValue {
    String(String),
    Int(i64),
    Bool(bool),
    List(Vec<String>),
}

const TO_STRING_KEYS: [&str; 1] = ["lowercase"];

impl GeekAttribute {
    pub(crate) fn parse_all(all_attrs: &[Attribute]) -> Result<Vec<Self>, syn::Error> {
        let mut parsed = Vec::new();
        for attribute in all_attrs {
            if attribute.path().is_ident("geekorm") {
                for attr in attribute
                    .parse_args_with(Punctuated::<GeekAttribute, Token![,]>::parse_terminated)?
                {
                    // Validate the attribute before adding it to the parsed list
                    attr.validate()?;
                    parsed.push(attr);
                }
            } else {
                continue;
            };
        }
        Ok(parsed)
    }

    #[allow(irrefutable_let_patterns)]
    pub(crate) fn validate(&self) -> Result<(), syn::Error> {
        match self.key {
            // Requires: The `primary_key` attribute does not require a value
            Some(GeekAttributeKeys::PrimaryKey) => {
                if self.value.is_some() {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `primary_key` attribute does not require a value",
                    ))
                } else {
                    Ok(())
                }
            }
            Some(GeekAttributeKeys::OnUpdate) => {
                if let Some(GeekAttributeValue::String(_)) = &self.value {
                    Ok(())
                } else {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `update` attribute requires a String value",
                    ))
                }
            }
            Some(GeekAttributeKeys::OnSave) => {
                if let Some(GeekAttributeValue::String(_)) = &self.value {
                    Ok(())
                } else {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `save` attribute requires a String value",
                    ))
                }
            }
            Some(GeekAttributeKeys::New) => {
                // Requires: The `new` attribute requires a string or bool value
                if let Some(value) = &self.value {
                    if let GeekAttributeValue::String(_) = value {
                        Ok(())
                    } else if let GeekAttributeValue::Bool(_) = value {
                        Ok(())
                    } else {
                        Err(syn::Error::new(
                            self.span.span(),
                            "The `new` attribute requires a string value",
                        ))
                    }
                } else {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `new` attribute requires a value",
                    ))
                }
            }
            // Validate the `foreign_key` attribute
            Some(GeekAttributeKeys::ForeignKey) => {
                if let Some(value) = &self.value {
                    if let GeekAttributeValue::String(content) = value {
                        if let Some((_, _)) = content.split_once('.') {
                            // TODO(geekmasher): Lookup and validate the table.column
                            Ok(())
                        } else {
                            Err(syn::Error::new(
                                self.span.span(),
                                "The `foreign_key` attribute requires a table.column value",
                            ))
                        }
                    } else {
                        Err(syn::Error::new(
                            self.span.span(),
                            "The `foreign_key` attribute requires a string value",
                        ))
                    }
                } else {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `foreign_key` attribute requires a value",
                    ))
                }
            }
            Some(GeekAttributeKeys::HashAlgorithm) => {
                if let Some(value) = &self.value {
                    if let GeekAttributeValue::String(content) = value {
                        if geekorm_core::utils::crypto::HashingAlgorithm::try_from(content).is_ok()
                        {
                            Ok(())
                        } else {
                            Err(syn::Error::new(
                                self.value_span.unwrap_or_else(|| self.span.span()),
                                "The `hash_algorithm` attribute requires a supported hashing algorithm",
                            ))
                        }
                    } else {
                        Err(syn::Error::new(
                            self.span.span(),
                            "The `hash_algorithm` attribute requires a string value",
                        ))
                    }
                } else {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `hash_algorithm` attribute requires a value",
                    ))
                }
            }
            Some(GeekAttributeKeys::Searchable) => {
                if self.value.is_some() {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `searchable` attribute does not require a value",
                    ))
                } else {
                    Ok(())
                }
            }
            Some(GeekAttributeKeys::Rename) => {
                if let Some(GeekAttributeValue::String(value)) = &self.value {
                    if value.is_empty() {
                        Err(syn::Error::new(
                            self.span.span(),
                            "The `rename` attribute requires a non-empty string value",
                        ))
                    } else {
                        Ok(())
                    }
                } else {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `rename` attribute requires a string value",
                    ))
                }
            }
            Some(GeekAttributeKeys::Key) => {
                if self.value.is_none() {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `key` attribute requires a string or int value",
                    ))
                } else {
                    Ok(())
                }
            }
            Some(GeekAttributeKeys::ToString) => {
                if let Some(value) = &self.value {
                    if let GeekAttributeValue::String(value_str) = value {
                        if TO_STRING_KEYS.contains(&value_str.as_str()) {
                            Ok(())
                        } else {
                            Err(syn::Error::new(
                                self.span.span(),
                                "The `to_string` attribute only supports `lowercase`",
                            ))
                        }
                    } else {
                        Err(syn::Error::new(
                            self.span.span(),
                            "The `to_string` attribute requires a string value",
                        ))
                    }
                } else {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `to_string` attribute requires a value",
                    ))
                }
            }
            Some(GeekAttributeKeys::Disable) => {
                if let Some(value) = &self.value {
                    if let GeekAttributeValue::List(_) = value {
                        Ok(())
                    } else {
                        Err(syn::Error::new(
                            self.span.span(),
                            "The `disable` attribute requires a list of strings",
                        ))
                    }
                } else {
                    Err(syn::Error::new(
                        self.span.span(),
                        "The `key` attribute requires a string or int value",
                    ))
                }
            }
            _ => Ok(()),
        }
    }
}

const VEC_KEYS: [&str; 2] = ["aliases", "disable"];

impl Parse for GeekAttribute {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let name: Ident = input.parse()?;
        let name_str = name.to_string();

        let key: Option<GeekAttributeKeys> = match name_str.as_str() {
            "skip" => Some(GeekAttributeKeys::Skip),
            "database" | "db" => Some(GeekAttributeKeys::Database),
            "disable" => Some(GeekAttributeKeys::Disable),
            "rename" => Some(GeekAttributeKeys::Rename),
            "to_str" | "to_string" => Some(GeekAttributeKeys::ToString),
            "from_str" | "from_string" => Some(GeekAttributeKeys::FromString),
            "key" | "name" => Some(GeekAttributeKeys::Key),
            "aliases" => Some(GeekAttributeKeys::Aliases),
            // Primary Keys
            "primary_key" => Some(GeekAttributeKeys::PrimaryKey),
            "auto_increment" => Some(GeekAttributeKeys::AutoIncrement),
            "not_null" => Some(GeekAttributeKeys::NotNull),
            "unique" => Some(GeekAttributeKeys::Unique),
            // Foreign Key
            "foreign_key" => Some(GeekAttributeKeys::ForeignKey),
            // Functions on action
            "validate" | "on_validate" => Some(GeekAttributeKeys::OnValidate),
            "update" | "on_update" | "on_update_write" => Some(GeekAttributeKeys::OnUpdate),
            "save" | "on_save" | "on_save_write" => Some(GeekAttributeKeys::OnSave),

            // New Constructor
            "new" => match cfg!(feature = "new") {
                true => Some(GeekAttributeKeys::New),
                false => {
                    return Err(syn::Error::new(
                        name.span(),
                        "The `new` attribute requires the `new` feature to be enabled",
                    ));
                }
            },
            // Random value feature
            "rand" => match cfg!(feature = "rand") {
                true => Some(GeekAttributeKeys::Rand),
                false => {
                    return Err(syn::Error::new(
                        name.span(),
                        "The `rand` attribute requires the `rand` feature to be enabled",
                    ));
                }
            },
            "rand_length" => match cfg!(feature = "rand") {
                true => Some(GeekAttributeKeys::RandLength),
                false => {
                    return Err(syn::Error::new(
                        name.span(),
                        "The `rand_length` attribute requires the `rand` feature to be enabled",
                    ));
                }
            },
            "rand_prefix" => match cfg!(feature = "rand") {
                true => Some(GeekAttributeKeys::RandPrefix),
                false => {
                    return Err(syn::Error::new(
                        name.span(),
                        "The `rand_prefix` attribute requires the `rand` feature to be enabled",
                    ));
                }
            },
            "rand_env" => match cfg!(feature = "rand") {
                true => Some(GeekAttributeKeys::RandEnv),
                false => {
                    return Err(syn::Error::new(
                        name.span(),
                        "The `rand_env` attribute requires the `rand` feature to be enabled",
                    ));
                }
            },
            "hash" | "password" => match cfg!(feature = "hash") {
                true => Some(GeekAttributeKeys::Hash),
                false => {
                    return Err(syn::Error::new(
                        name.span(),
                        "The `hash` or `password` attribute requires the `hash` feature to be enabled",
                    ));
                }
            },
            "hash_algorithm" => match cfg!(feature = "hash") {
                true => Some(GeekAttributeKeys::HashAlgorithm),
                false => {
                    return Err(syn::Error::new(
                        name.span(),
                        "The `hash_algorithm` attribute requires the `hash` feature to be enabled",
                    ));
                }
            },
            "search" | "searchable" => match cfg!(feature = "search") {
                true => Some(GeekAttributeKeys::Searchable),
                false => {
                    return Err(syn::Error::new(
                        name.span(),
                        "The `searchable` attribute requires the `search` feature to be enabled",
                    ));
                }
            },
            _ => {
                return Err(syn::Error::new(
                    name.span(),
                    format!("Unknown attribute `{}`", name_str),
                ));
            }
        };

        let mut value_span: Option<Span> = None;

        let value = if input.peek(Token![=]) {
            // `name = value` attributes.
            let _assign_token = input.parse::<Token![=]>()?; // skip '='
            if input.peek(LitStr) {
                let lit: LitStr = input.parse()?;
                value_span = Some(lit.span());

                let strings = lit.value();

                if VEC_KEYS.contains(&name_str.as_str()) {
                    Some(GeekAttributeValue::List(
                        strings.split(',').map(|s| s.trim().to_string()).collect(),
                    ))
                } else {
                    Some(GeekAttributeValue::String(strings))
                }
            } else if input.peek(LitInt) {
                let lit: LitInt = input.parse()?;
                value_span = Some(lit.span());

                Some(GeekAttributeValue::Int(lit.base10_parse().unwrap()))
            } else if input.peek(LitBool) {
                let lit: LitBool = input.parse()?;
                value_span = Some(lit.span());

                Some(GeekAttributeValue::Bool(lit.value))
            } else {
                None
            }
        } else {
            None
        };

        Ok(Self {
            span: name,
            key,
            value,
            value_span,
        })
    }
}