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
use super::lexer::{
    Token,
    TokenValue,
    Position,
    DefinitionType as TokenDefinitionType,
    DirectiveType as TokenDirectiveType,
    IdentifierType as TokenIdentifierType,
    TypeIdentifierType as TokenTypeIdentifierType
};
use std::path::Path;

// Statement

#[derive(Debug, Clone)]
pub struct Property {
    pub internal_type: TokenTypeIdentifierType,
    pub name: String,
    pub definition_type: TokenDefinitionType
}

#[derive(Debug, Clone)]
pub enum DefinitionType {
    Raw,
    Collective,
    Root(String)
}

#[derive(Debug, Clone)]
pub struct Definition {
    pub name: String,
    pub children: Vec<Statement>,
    pub inherits: Vec<String>,
    pub definition_type: DefinitionType
}

#[derive(Debug, Clone)]
pub struct Setter {
    pub name: String,
    pub value: Token,
    pub position: Position
}

#[derive(Debug, Clone)]
pub struct Object {
    pub name: String,
    pub children: Vec<Statement>,
    pub arguments: Vec<Token>,
    pub setters: Vec<Setter>
}

#[derive(Debug, Clone)]
pub enum StatementValue {
    Property(Property),
    Definition(Definition),
    Object(Object),
    Header(String),
    Include(String)
}

#[derive(Debug, Clone)]
pub struct Statement {
    pub value: StatementValue,
    pub position: Position
}

impl Statement {
    pub fn to_string(&self) -> &str {
        match &self.value {
            StatementValue::Property(_) => "Property",
            StatementValue::Definition(_) => "Definition",
            StatementValue::Object(_) => "Object",
            StatementValue::Header(_) => "Header",
            StatementValue::Include(_) => "Include"
        }
    }
}

// Parser

pub struct Parser {
    pub statements: Vec<Statement>,
    index: usize,
    tokens: Vec<Token>,
    filename: String
}

impl Parser {
    // Parsing Functions

    fn block(&mut self) -> Result<(Vec<Statement>, Position), (String, Position)> {
        let token = &self.tokens[self.index];
        let position = token.position.clone();
        if let TokenValue::StartBlock = token.value {
            self.index += 1;
            let mut statements = Vec::new();
            loop {
                let token = &self.tokens[self.index];
                if let TokenValue::EndBlock = token.value {
                    self.index += 1;
                    break;
                }
                match self.parse_statement() {
                    Ok(statement) => {
                        match &statement.value {
                            StatementValue::Property(_) | StatementValue::Object(_) => statements.push(statement),
                            _ => return Err((format!("found {} inside block. Only properties and objects are allowed here.", statement.to_string()), statement.position)),
                        }
                    },
                    Err(err) => return Err(err)
                }
            }
            Ok(( statements, position ))
        } else {
            Err((format!("expected the start of a block, got {}", token.to_string()), token.position))
        }
    }

    fn arglist(&mut self) -> Result<(Vec<Token>, Position), (String, Position)> {
        let token = &self.tokens[self.index];
        let position = token.position.clone();
        if let TokenValue::StartArgList = token.value {
            let mut args: Vec<Token> = Vec::new();
            loop {
                self.index += 1;
                let token = &self.tokens[self.index];
                match &token.value {
                    TokenValue::Number(_) | TokenValue::String(_) | TokenValue::Bool(_) => args.push(token.clone()),
                    TokenValue::Identifier(_identifier) => {
                        // if let TokenIdentifierType::Type(_) = identifier {
                        //     args.push(token.clone())
                        // } else {
                        //     return Err((format!("found generic identifier, expected Number, String, Bool, or type identifier"), token.position));
                        // }
                        args.push(token.clone())
                    },
                    _ => return Err((format!("found {}, expected Number, String, Bool, or type identifier", token.to_string()), token.position))
                }

                self.index += 1;
                let token = &self.tokens[self.index];
                match token.value {
                    TokenValue::ArgListDeliminator => continue,
                    TokenValue::EndArgList => break,
                    _ => return Err((format!("found '{}', expected ','", token.to_string()), token.position))
                }
            }
            self.index += 1;
            Ok(( args, position ))
        } else {
            Err((format!("expected start of argument list, found {}", token.to_string()), token.position))
        }
    }

    fn definition(&mut self, definition_type: TokenDefinitionType, position: Position) -> Result<Statement, (String, Position)> {
        self.index += 1;
        if let TokenDefinitionType::Object(name) = definition_type {
            let token = &self.tokens[self.index];
            let mut inherits: Vec<String> = Vec::new();
            match &token.value {
                TokenValue::StartBlock => (),
                TokenValue::Inherits => {
                    self.index += 1;
                    let token = &self.tokens[self.index];
                    
                    match &token.value {
                        TokenValue::StartArgList => {
                            match self.arglist() {
                                Ok(arglist) => {
                                    for token in arglist.0 {
                                        if let TokenValue::Identifier(TokenIdentifierType::Generic(parent)) = &token.value {
                                            inherits.push(parent.clone());
                                        } else {
                                            return Err((String::from("argument list of parents must only contain definitions"), arglist.1.clone()));
                                        }
                                    }
                                },
                                Err(err) => {
                                    return Err(err);
                                }
                            }
                        },
                        TokenValue::Identifier(TokenIdentifierType::Generic(parent)) => {
                            inherits.push(parent.clone());
                            self.index += 1;
                        },
                        _ => return Err((format!("expected an argument list or definition identifier, found {}", token.to_string()), token.position.clone()))
                    }
                },
                _ => return Err((format!("expected a '->' or '{{', found '{}'", token.to_string()), token.position.clone()))
            }
            match self.block() {
                Ok(block) => {
                    let definition_type = {
                        if block.0.iter().all(|x| matches!(&x.value, StatementValue::Property(_))) {
                            DefinitionType::Raw
                        } else if block.0.iter().all(|x| matches!(&x.value, StatementValue::Object(_))) {
                            if name == "root" {
                                let path = Path::new(&self.filename);
                                DefinitionType::Root(path.file_stem().expect("invalid file path").to_str().expect("failed to unwrap file path string").to_string())
                            } else {
                                DefinitionType::Collective
                            }
                        } else {
                            return Err((String::from("a definition can only have all property definitions or all objects"), block.1));
                        }
                    };

                    let definition = Definition {
                        name: name.to_string(),
                        children: block.0,
                        definition_type,
                        inherits
                    };

                    Ok(Statement {
                        value: StatementValue::Definition(definition),
                        position: position.clone()
                    })
                },
                Err(err) => return Err(err)
            }
        } else {
            match self.arglist() {
                Ok(arglist) => {
                    if arglist.0.len() != 2 {
                        return Err((format!("expected only 2 arguments, found {} args", arglist.0.len()), arglist.1));
                    }
                    
                    let name = &arglist.0[0];
                    if let TokenValue::String(name) = &name.value {
                        let internal_type = &arglist.0[1];
                        if let TokenValue::Identifier(TokenIdentifierType::Type(internal_type)) = &internal_type.value {
                            let property = Property {
                                name: name.clone(),
                                internal_type: internal_type.clone(),
                                definition_type: definition_type.clone()
                            };
                            Ok(Statement {
                                value: StatementValue::Property(property),
                                position: position.clone()
                            })
                        } else {
                            return Err((format!("expected type identifier, found {}", internal_type.to_string()), internal_type.position));
                        }
                    } else {
                        return Err((format!("expected String, found {}", name.to_string()), name.position));
                    }
                },
                Err(err) => return Err(err)
            }
        }
    }

    fn directive(&mut self, directive_type: TokenDirectiveType, position: Position) -> Result<Statement, (String, Position)> {
        self.index += 1;
        let directive_argument_token = &self.tokens[self.index];
        if let TokenValue::String(arg) = &directive_argument_token.value {
            self.index += 1;
            let value = match directive_type {
                TokenDirectiveType::Header => {
                    StatementValue::Header(arg.clone())
                },
                TokenDirectiveType::Include => {
                    StatementValue::Include(arg.clone())
                }
            };
            Ok(Statement {
                value,
                position: position.clone()
            })
        } else {
            Err((format!("expected string, found {}", directive_argument_token.to_string()), directive_argument_token.position))
        }
    }

    fn object(&mut self, identifier_type: TokenIdentifierType, position: Position) -> Result<Statement, (String, Position)> {
        if let TokenIdentifierType::Generic(name) = identifier_type {
            self.index += 1;
            let token = &self.tokens[self.index];
            let mut arguments = Vec::new();
            let mut children = Vec::new();
            let mut setters = Vec::new();
            
            match token.value {
                TokenValue::StartArgList => {
                    match self.arglist() {
                        Ok(args) => {
                            arguments = args.0;
                            let token = &self.tokens[self.index];
                            if let TokenValue::StartBlock = token.value {
                                match self.block() {
                                    Ok(c) => children = c.0,
                                    Err(e) => return Err(e)
                                }
                            }
                        },
                        Err(err) => return Err(err)
                    }
                },
                TokenValue::StartBlock => {
                    match self.block() {
                        Ok(c) => children = c.0,
                        Err(e) => return Err(e)
                    }
                },
                _ => return Err((format!("expected the start of an argument list or block, found '{}'", token.to_string()), token.position))
            }

            loop {
                let token = self.tokens[self.index].clone();
                
                match &token.value {
                    TokenValue::Identifier(_) | TokenValue::EndBlock => break,
                    TokenValue::Setter(name) => {
                        self.index += 1;

                        let name = name.clone();
                        match self.arglist() {
                            Ok(args) => {
                                if args.0.len() != 1 {
                                    return Err((format!("expected 1 argument, got {}", args.0.len()), args.1));
                                }

                                let value = &args.0[0];

                                match value.value {
                                    TokenValue::Number(_) | TokenValue::String(_) | TokenValue::Bool(_) => {
                                        setters.push(Setter {
                                            name: name,
                                            value: value.clone(),
                                            position: token.position
                                        })
                                    },
                                    _ => return Err((format!("expected Number, String, or Bool, found {}", value.to_string()), value.position))
                                }
                            },
                            Err(err) => return Err(err)
                        }
                    },
                    _ => {
                        return Err((format!("expected setter, found {}", token.to_string()), token.position));
                    }
                }
            }
            
            let object = Object {
                arguments,
                name: name.clone(),
                children,
                setters
            };

            Ok(Statement {
                value: StatementValue::Object(object),
                position: position.clone()
            })
        } else {
            Err((format!("expected generic identifier, found type identifier"), position))
        }
    }

    fn parse_statement(&mut self) -> Result<Statement, (String, Position)> {
        let token = &self.tokens[self.index];
        match &token.value {
            TokenValue::Definition(definition) => {
                let definition = definition.clone();
                self.definition(definition, token.position)
            },
            TokenValue::Directive(directive) => {
                let directive = directive.clone();
                self.directive(directive, token.position)
            },
            TokenValue::Identifier(identifier) => {
                let identifier = identifier.clone();
                self.object(identifier, token.position)
            },
            _ => Err(( format!("unexpected {}", token.to_string()), token.position ))
        }
    }

    // Pubs
    pub fn new(tokens: Vec<Token>, filename: String) -> Parser {
        return Parser {
            statements: Vec::new(),
            index: 0,
            tokens,
            filename
        }
    }

    pub fn parse(&mut self) -> Result<(), (String, Position)> {
        loop {
            if self.index >= self.tokens.len() {
                break Ok(())
            }
            match self.parse_statement() {
                Ok(statement) => {
                    match &statement.value {
                        StatementValue::Definition(_) | StatementValue::Header(_) | StatementValue::Include(_) => self.statements.push(statement),
                        _ => return Err(( format!("found {} on top level. Only object definitions and directives are allowed here.", statement.to_string()), statement.position )),
                    }
                },
                Err(err) => return Err(err)
            }
        }
    }
}