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
use std::{borrow::Cow, fmt};

use crate::value::{Function, FunctionParam};

/// Defines a field attribute, wrapping a function.
///
/// ```ignore
/// model X {
///   field Int @map("lol")
///             ^^^^^^^^^^^ this
/// }
/// ```
#[derive(Debug)]
pub(super) struct FieldAttribute<'a> {
    attribute: Function<'a>,
    prefix: Option<Cow<'a, str>>,
}

impl<'a> FieldAttribute<'a> {
    pub(super) fn new(attribute: Function<'a>) -> Self {
        Self {
            attribute,
            prefix: None,
        }
    }

    /// Adds a prefix to the field attribute. Useful for native types,
    /// e.g. `attr.prefix("db")` for a type attribute renders as
    /// `@db.Type`.
    pub(super) fn prefix(&mut self, prefix: impl Into<Cow<'a, str>>) {
        self.prefix = Some(prefix.into());
    }

    /// Add a new parameter to the attribute function.
    pub fn push_param(&mut self, param: impl Into<FunctionParam<'a>>) {
        self.attribute.push_param(param.into());
    }
}

impl<'a> fmt::Display for FieldAttribute<'a> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("@")?;

        if let Some(prefix) = &self.prefix {
            f.write_str(prefix)?;
            f.write_str(".")?;
        }

        self.attribute.fmt(f)?;

        Ok(())
    }
}

/// Defines a block attribute, wrapping a function.
///
/// ```ignore
/// model X {
///   @@map("lol")
///   ^^^^^^^^^^^^ this
/// }
/// ```
#[derive(Debug)]
pub(super) struct BlockAttribute<'a>(pub(super) Function<'a>);

impl<'a> BlockAttribute<'a> {
    /// Add a new parameter to the attribute function.
    pub fn push_param(&mut self, param: impl Into<FunctionParam<'a>>) {
        self.0.push_param(param.into());
    }
}

impl<'a> fmt::Display for BlockAttribute<'a> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("@@")?;
        self.0.fmt(f)?;

        Ok(())
    }
}