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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
//! Defines every node used in the hir representation

use std::rc::Rc;

use debris_common::{CodeId, Ident, InputFiles, Span, SpecialIdent};

use super::{IdentifierPath, SpannedIdentifier};

/// A constant literal, already parsed
#[derive(Debug, Eq, PartialEq)]
pub enum HirConstValue {
    Integer {
        span: Span,
        value: i32,
    },
    Bool {
        span: Span,
        value: bool,
    },
    Fixed {
        span: Span,
        value: i32,
    },
    String {
        span: Span,
        value: Rc<str>,
    },
    FormatString {
        span: Span,
        value: Vec<HirFormatStringMember>,
    },
}

#[derive(Debug, PartialEq, Eq)]
pub enum HirFormatStringMember {
    String(Rc<str>),
    Variable(Box<HirExpression>),
}

/// Any supported comparison operator
#[derive(Debug, Eq, PartialEq, Clone, Copy)]
pub enum HirComparisonOperator {
    Eq,
    Ne,
    Gt,
    Ge,
    Lt,
    Le,
}

/// Any operator that can be used as an infix
///
/// That means that this operator has to be between to values
#[derive(Debug, Eq, PartialEq, Clone)]
pub enum HirInfixOperator {
    /// Any comparison like <, >, <=, >=, ==, !=
    Comparison(HirComparisonOperator),
    /// Logical and
    And,
    /// Logical or
    Or,
    /// Mathematical addition
    Plus,
    /// Mathematical subtraction
    Minus,
    /// Mathematical multiplication
    Times,
    /// Mathematical division
    Divide,
    /// Mathematical modulo
    Modulo,
}

/// Holds an infix operator combined with its span
#[derive(Debug, Eq, PartialEq, Clone)]
pub struct HirInfix {
    pub span: Span,
    pub operator: HirInfixOperator,
}

/// Any prefix operator
///
/// A prefix operator operates on a single value and is written before it
#[derive(Debug, Eq, PartialEq, Clone, Copy)]
pub enum HirPrefixOperator {
    /// Mathematical minus
    Minus,
    /// Logical negation
    Not,
}

/// Holds a prefix operator combined with its span
#[derive(Debug, Eq, PartialEq, Clone)]
pub struct HirPrefix {
    pub span: Span,
    pub operator: HirPrefixOperator,
}

/// Marks an import statement.
/// The id specifies the index of the matching [`HirModule`]
#[derive(Debug, PartialEq, Eq)]
pub struct HirImport {
    pub span: Span,
    pub ident: SpannedIdentifier,
    pub id: usize,
}

#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum HirControlKind {
    Return,
    Break,
    Continue,
}

impl HirControlKind {
    pub fn returns(self) -> bool {
        match self {
            HirControlKind::Return | HirControlKind::Break => true,
            HirControlKind::Continue => false,
        }
    }

    pub fn takes_value(self) -> bool {
        match self {
            HirControlKind::Return | HirControlKind::Break => true,
            HirControlKind::Continue => false,
        }
    }
}

impl std::fmt::Display for HirControlKind {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            HirControlKind::Break => write!(f, "break"),
            HirControlKind::Continue => write!(f, "continue"),
            HirControlKind::Return => write!(f, "return"),
        }
    }
}

/// Represents a control flow statement like return or break
#[derive(Debug, PartialEq, Eq)]
pub struct HirControlFlow {
    pub span: Span,
    pub kind: HirControlKind,
    pub expression: Option<Box<HirExpression>>,
}

/// An infinite loop
/// (Can be exited using control keywords like `break` and `return`)
#[derive(Debug, PartialEq, Eq)]
pub struct HirInfiniteLoop {
    pub span: Span,
    pub block: Box<HirBlock>,
}

/// Holds a variable type declaration like `foo: String`
/// This is used in method signatures
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct HirParameterDeclaration {
    pub span: Span,
    pub ident: SpannedIdentifier,
    pub typ: HirTypePattern,
}

#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum HirDeclarationMode {
    Let,
    Comptime,
}

#[derive(Debug, PartialEq, Eq)]
pub enum HirVariablePattern {
    Path(IdentifierPath),
    Tuple(Vec<HirVariablePattern>),
}

/// Sets a variable like `let a = expression();`
#[derive(Debug, PartialEq, Eq)]
pub struct HirVariableInitialization {
    pub span: Span,
    pub pattern: HirVariablePattern,
    pub value: Box<HirExpression>,
    pub mode: HirDeclarationMode,
}

/// Similar to `HirVariableInitialization`, however this node
/// marks a write to an already initialized value
#[derive(Debug, PartialEq, Eq)]
pub struct HirVariableUpdate {
    pub span: Span,
    pub pattern: HirVariablePattern,
    pub value: Box<HirExpression>,
}

/// Declaration of a property in a struct definition
#[derive(Debug, Eq, PartialEq)]
pub struct HirPropertyDeclaration {
    /// The span of the declaration
    pub span: Span,
    /// The identifier inside of the struct
    pub ident: SpannedIdentifier,
    /// The type of the property
    pub datatype: HirTypePattern,
}

/// Any function call, can be dotted
#[derive(Debug, Eq, PartialEq)]
pub struct HirFunctionCall {
    pub span: Span,
    pub value: Box<HirExpression>,
    pub parameters_span: Span,
    pub parameters: Vec<HirExpression>,
}

/// An if-branch which checks a condition and runs code
/// depending on whether the condition is true or not
#[derive(Debug, Eq, PartialEq)]
pub struct HirConditionalBranch {
    pub span: Span,
    pub is_comptime: bool,
    pub condition: Box<HirExpression>,
    pub block_positive: Box<HirBlock>,
    pub block_negative: Option<Box<HirBlock>>,
}

/// Creates a Struct Object from a struct
#[derive(Debug, PartialEq, Eq)]
pub struct HirStructInitialization {
    pub span: Span,
    pub base: Box<HirExpression>,
    pub values: Vec<(SpannedIdentifier, HirExpression)>,
}

#[derive(Debug, PartialEq, Eq)]
pub struct HirTupleInitialization {
    pub span: Span,
    pub values: Vec<HirExpression>,
}

/// Any expression
#[derive(Debug, Eq, PartialEq)]
pub enum HirExpression {
    /// A variable, for example `a`
    Variable(SpannedIdentifier),
    /// A path, for example `a.b.c`
    Path(IdentifierPath),
    /// A generic property access, not necessarily in a path
    PropertyAccess {
        lhs: Box<HirExpression>,
        rhs: SpannedIdentifier,
    },
    /// A literal value, for example `2.0` or `"Hello World"`
    Value(HirConstValue),
    /// A unary operation, for example `-a`
    UnaryOperation {
        operation: HirPrefix,
        value: Box<HirExpression>,
    },
    /// A binary operation, for example `a + b`
    BinaryOperation {
        operation: HirInfix,
        lhs: Box<HirExpression>,
        rhs: Box<HirExpression>,
    },
    /// A block which returns something
    Block(HirBlock),
    /// An anonymous function
    Function(HirFunction),
    /// A function call, for example `foo()` or `path.to.foo()`
    FunctionCall(HirFunctionCall),
    ConditionalBranch(HirConditionalBranch),
    StructInitialization(HirStructInitialization),
    TupleInitialization(HirTupleInitialization),
    InfiniteLoop(HirInfiniteLoop),
    ControlFlow(HirControlFlow),
}

/// Any statement, the difference to an expression is that a statement does not return anything
#[derive(Debug, Eq, PartialEq)]
pub enum HirStatement {
    /// A variable declaration, for example `let foo = 1`
    VariableDecl(HirVariableInitialization),
    /// A write to an already existing variable
    VariableUpdate(HirVariableUpdate),
    /// Controls the program flow
    ControlFlow(HirControlFlow),
    /// A normal block
    Block(HirBlock),
    /// A normal if statement
    ConditionalBranch(HirConditionalBranch),
    InfiniteLoop(HirInfiniteLoop),
    Expression(HirExpression),
}

/// Any pattern that is allowed to specify a function parameter type
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum HirTypePattern {
    /// A normal type, like `Int`
    Path(IdentifierPath),
    /// A function, like `fn(Int, Int) -> Int`
    Function {
        span: Span,
        parameters: Vec<HirTypePattern>,
        return_type: Option<Box<HirTypePattern>>,
    },
    Tuple {
        span: Span,
        values: Vec<HirTypePattern>,
    },
}

/// A block of code. Usually contained withing a pair of {} parenthesis.
#[derive(Debug, Eq, PartialEq)]
pub struct HirBlock {
    pub span: Span,
    /// The statements of this block
    pub statements: Vec<HirStatement>,
    /// The returned value:
    pub return_value: Option<Box<HirExpression>>,
    /// The objects that got declared within this block
    pub objects: Vec<HirObject>,
}

/// Attributes are a form of metadata that can be applied
/// to any object.
#[derive(Debug, PartialEq, Eq)]
pub struct Attribute {
    pub expression: HirExpression,
}

/// Anonymous functions don't have an explicit identifier,
/// So if the function is unnamed, the hir builder will try to infer it.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum HirFunctionName {
    Ident(SpannedIdentifier),
    Unnamed { file: CodeId, pos: Span },
}

impl HirFunctionName {
    pub fn span(&self) -> Span {
        match self {
            HirFunctionName::Ident(ident) => ident.span,
            HirFunctionName::Unnamed { pos, .. } => *pos,
        }
    }

    pub fn spanned_ident(&self) -> Option<SpannedIdentifier> {
        match self {
            HirFunctionName::Ident(spanned_ident) => Some(*spanned_ident),
            HirFunctionName::Unnamed { .. } => None,
        }
    }

    pub fn is_unknown(&self) -> bool {
        matches!(self, HirFunctionName::Unnamed { .. })
    }

    pub fn into_ident(&self, input_files: &InputFiles) -> Ident {
        match self {
            HirFunctionName::Ident(span) => input_files.get_span_str(span.span).into(),
            HirFunctionName::Unnamed { file, pos } => {
                let code_ref = input_files.get_code_ref(*file);

                let file_name = code_ref
                    .get_code()
                    .path
                    .as_ref()
                    .map_or_else(|| file.to_string(), ToString::to_string);

                let (line, col) = input_files.line_col(*pos);
                let line = line + 1;
                let col = col + 1;
                Ident::Value(format!("<'{file_name}:{line}:{col}'>").into())
            }
        }
    }
}

/// A function, which contains other statements
#[derive(Debug, Eq, PartialEq)]
pub struct HirFunction {
    pub span: Span,
    pub signature_span: Span,
    pub parameter_span: Span,
    pub is_comptime: bool,
    pub attributes: Vec<Attribute>,
    pub ident: HirFunctionName,
    /// The block containing all statements of the function
    pub block: HirBlock,
    pub parameters: Vec<HirParameterDeclaration>,
    pub return_type: Option<HirTypePattern>,
}

/// A struct definition
#[derive(Debug, Eq, PartialEq)]
pub struct HirStruct {
    pub span: Span,
    pub ident: SpannedIdentifier,
    pub attributes: Vec<Attribute>,
    /// All declared properties of this struct
    pub properties: Vec<HirPropertyDeclaration>,
    pub objects: Vec<HirObject>,
}

/// A module with an associated name
#[derive(Debug, PartialEq, Eq)]
pub struct HirModule {
    pub span: Span,
    pub attributes: Vec<Attribute>,
    pub ident: SpannedIdentifier,
    pub block: HirBlock,
}

#[derive(Debug, PartialEq, Eq)]
pub enum HirObject {
    Function(HirFunction),
    Struct(HirStruct),
    Module(HirModule),
    /// Syntax sugar for a module from another file
    Import(HirImport),
}

impl HirObject {
    pub fn spanned_ident(&self) -> Option<SpannedIdentifier> {
        Some(match self {
            HirObject::Function(func) => func.ident.spanned_ident()?,
            HirObject::Struct(strukt) => strukt.ident,
            HirObject::Module(module) => module.ident,
            HirObject::Import(import) => import.ident,
        })
    }
}

/// Any Item
#[derive(Debug, Eq, PartialEq)]
pub enum HirItem {
    Object(HirObject),
    Statement(HirStatement),
}

impl HirConstValue {
    pub fn span(&self) -> Span {
        match self {
            HirConstValue::Fixed { span, .. }
            | HirConstValue::Integer { span, .. }
            | HirConstValue::Bool { span, .. }
            | HirConstValue::String { span, .. }
            | HirConstValue::FormatString { span, .. } => *span,
        }
    }
}

impl HirComparisonOperator {
    /// Returns the associated [`SpecialIdent`]
    pub fn get_raw_special_ident(&self) -> SpecialIdent {
        use HirComparisonOperator::*;
        match self {
            Eq => SpecialIdent::CmpEq,
            Ne => SpecialIdent::CmpNe,
            Gt => SpecialIdent::CmpGt,
            Ge => SpecialIdent::CmpGe,
            Lt => SpecialIdent::CmpLt,
            Le => SpecialIdent::CmpLe,
        }
    }
}

impl HirInfixOperator {
    /// Returns the associated [`SpecialIdent`]
    pub fn get_special_ident(&self) -> SpecialIdent {
        use HirInfixOperator::*;
        match self {
            And => SpecialIdent::And,
            Or => SpecialIdent::Or,
            Plus => SpecialIdent::Add,
            Minus => SpecialIdent::Sub,
            Times => SpecialIdent::Mul,
            Divide => SpecialIdent::Div,
            Modulo => SpecialIdent::Mod,
            Comparison(value) => value.get_raw_special_ident(),
        }
    }
}

impl HirPrefixOperator {
    /// Returns the associated [Ident]
    pub fn get_ident(&self) -> Ident {
        Ident::Special(match self {
            HirPrefixOperator::Minus => SpecialIdent::UnaryMinus,
            HirPrefixOperator::Not => SpecialIdent::Not,
        })
    }
}

impl HirBlock {
    /// Returns the span of the item in the block which is responsible
    /// for the return type
    pub fn last_item_span(&self) -> Span {
        if let Some(value) = &self.return_value {
            value.span()
        } else if let [.., last] = self.statements.as_slice() {
            last.span()
        } else {
            self.span
        }
    }
}

impl HirVariablePattern {
    pub fn span(&self) -> Span {
        match self {
            HirVariablePattern::Path(path) => path.span(),
            HirVariablePattern::Tuple(tuple) => match tuple.as_slice() {
                [] => Span::EMPTY,
                [single] => single.span(),
                [first, .., last] => first.span().until(last.span()),
            },
        }
    }
}

impl HirExpression {
    pub fn span(&self) -> Span {
        match self {
            HirExpression::Value(number) => number.span(),
            HirExpression::Variable(var) => var.span,
            HirExpression::Path(path) => path.span(),
            HirExpression::PropertyAccess { lhs, rhs } => lhs.span().until(rhs.span),
            HirExpression::BinaryOperation {
                lhs,
                operation: _,
                rhs,
            } => lhs.span().until(rhs.span()),
            HirExpression::UnaryOperation { operation, value } => {
                operation.span.until(value.span())
            }
            HirExpression::Block(block) => block.span,
            HirExpression::Function(function) => function.span,
            HirExpression::FunctionCall(call) => call.span,
            HirExpression::ConditionalBranch(branch) => branch.span,
            HirExpression::StructInitialization(struct_instantiation) => struct_instantiation.span,
            HirExpression::TupleInitialization(tuple_initialization) => tuple_initialization.span,
            HirExpression::InfiniteLoop(inf_loop) => inf_loop.span,
            HirExpression::ControlFlow(control_flow) => control_flow.span,
        }
    }
}

impl HirStatement {
    pub fn span(&self) -> Span {
        match self {
            HirStatement::VariableDecl(var_decl) => var_decl.span,
            HirStatement::VariableUpdate(var_update) => var_update.span,
            HirStatement::ControlFlow(control_flow) => control_flow.span,
            HirStatement::Block(block) => block.span,
            HirStatement::ConditionalBranch(branch) => branch.span,
            HirStatement::InfiniteLoop(inf_loop) => inf_loop.span,
            HirStatement::Expression(expr) => expr.span(),
        }
    }
}
impl HirTypePattern {
    pub fn span(&self) -> Span {
        match self {
            HirTypePattern::Function { span, .. } | HirTypePattern::Tuple { span, .. } => *span,
            HirTypePattern::Path(path) => path.span(),
        }
    }
}

impl Attribute {
    pub fn span(&self) -> Span {
        self.expression.span()
    }
}

impl HirFunction {
    pub fn return_type_span(&self) -> Span {
        match &self.return_type {
            Some(path) => path.span(),
            None => Span::new(self.parameter_span.end(), 1),
        }
    }
}