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
use crate::attribute::AttributeGroup;
use crate::comment::Document;
use crate::data_type::DataType;
use crate::literal::Value;
use crate::modifiers::Modifier;
use crate::modifiers::VisibilityModifier;
use crate::Generator;
use crate::Indentation;

#[derive(Debug)]
pub struct Constant {
    pub documentation: Option<Document>,
    pub name: String,
    pub value: Value,
}

impl Constant {
    pub fn new<T: ToString>(name: T) -> Self {
        Self {
            documentation: None,
            name: name.to_string(),
            value: Value::Null,
        }
    }

    pub fn document(mut self, documentation: Document) -> Self {
        self.documentation = Some(documentation);

        self
    }

    pub fn valued<T: Into<Value>>(mut self, value: T) -> Self {
        self.value = value.into();

        self
    }
}

impl Generator for Constant {
    fn generate(&self, indentation: Indentation, level: usize) -> String {
        let mut output = String::new();

        if let Some(documentation) = &self.documentation {
            output.push_str(&documentation.generate(indentation, level));
        }

        output.push_str(&format!(
            "const {} = {};\n",
            self.name,
            self.value.generate(indentation, level)
        ));

        output
    }
}

impl Generator for Vec<Constant> {
    fn generate(&self, indentation: Indentation, level: usize) -> String {
        let mut code = String::new();
        if self.is_empty() {
            return code;
        }

        for constant in self {
            code.push_str(constant.generate(indentation, level).as_str());
            code.push('\n');
        }

        code
    }
}

impl<T: ToString, Tv: Into<Value>> From<(T, Tv)> for Constant {
    fn from((name, value): (T, Tv)) -> Self {
        Self {
            documentation: None,
            name: name.to_string(),
            value: value.into(),
        }
    }
}

#[derive(Debug)]
pub struct ClassConstant {
    pub documentation: Option<Document>,
    pub attributes: Vec<AttributeGroup>,
    pub visibility: Option<VisibilityModifier>,
    pub modifiers: Vec<Modifier>,
    pub data_type: Option<DataType>,
    pub name: String,
    pub value: Value,
}

impl ClassConstant {
    pub fn new<T: ToString>(name: T) -> Self {
        Self {
            documentation: None,
            attributes: vec![],
            visibility: None,
            modifiers: vec![],
            data_type: None,
            name: name.to_string(),
            value: Value::Null,
        }
    }

    pub fn document(mut self, documentation: Document) -> Self {
        self.documentation = Some(documentation);

        self
    }

    pub fn attributes(mut self, attributes: AttributeGroup) -> Self {
        self.attributes.push(attributes);

        self
    }

    pub fn public(mut self) -> Self {
        self.visibility = Some(VisibilityModifier::Public);

        self
    }

    pub fn protected(mut self) -> Self {
        self.visibility = Some(VisibilityModifier::Protected);

        self
    }

    pub fn private(mut self) -> Self {
        self.visibility = Some(VisibilityModifier::Private);

        self
    }

    pub fn visibility(mut self, visibility: VisibilityModifier) -> Self {
        self.visibility = Some(visibility);

        self
    }

    pub fn modifier(mut self, modifier: Modifier) -> Self {
        self.modifiers.push(modifier);

        self
    }

    pub fn typed<T: Into<DataType>>(mut self, data_type: T) -> Self {
        self.data_type = Some(data_type.into());

        self
    }

    pub fn valued<T: Into<Value>>(mut self, value: T) -> Self {
        self.value = value.into();

        self
    }
}

impl Generator for ClassConstant {
    fn generate(&self, indentation: Indentation, level: usize) -> String {
        let mut code = String::new();

        if let Some(document) = &self.documentation {
            code.push_str(&document.generate(indentation, level));
        }

        for attribute in &self.attributes {
            code.push_str(&attribute.generate(indentation, level));
        }

        code.push_str(&indentation.value(level));

        if let Some(visibility) = &self.visibility {
            code.push_str(&format!("{} ", visibility.generate(indentation, level)));
        }

        for modifier in &self.modifiers {
            code.push_str(&format!("{} ", modifier.generate(indentation, level)));
        }

        if let Some(data_type) = &self.data_type {
            code.push_str(&format!(
                "const {} {} = {};\n",
                data_type.generate(indentation, level),
                self.name,
                self.value.generate(indentation, level)
            ));
        } else {
            code.push_str(&format!(
                "const {} = {};\n",
                self.name,
                self.value.generate(indentation, level)
            ));
        }

        code
    }
}

impl Generator for Vec<ClassConstant> {
    fn generate(&self, indentation: Indentation, level: usize) -> String {
        let mut code = String::new();
        if self.is_empty() {
            return code;
        }

        for constant in self {
            code.push_str(constant.generate(indentation, level).as_str());
            code.push('\n');
        }

        code
    }
}

impl<T: ToString, Tv: Into<Value>> From<(T, Tv)> for ClassConstant {
    fn from((name, value): (T, Tv)) -> Self {
        Self {
            documentation: None,
            attributes: vec![],
            visibility: None,
            modifiers: vec![],
            data_type: None,
            name: name.to_string(),
            value: value.into(),
        }
    }
}