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
use serde::{Deserialize, Serialize};

#[repr(u8)]
#[derive(Copy, Clone, Debug, Serialize, Deserialize)]
pub enum BinaryOperation {
    Add,
    Subtract,
    Multiply,
    Divide,

    Less,
    LessEqual,
    Greater,
    GreaterEqual,
    Equal,
    NotEqual,

    And,
    Or,

    Assign,
}

#[repr(u8)]
#[derive(Copy, Clone, Debug, Serialize, Deserialize)]
pub enum UnaryOperation {
    Negate,

    Not,
}

#[repr(u8)]
#[derive(Hash, Clone, Debug, Serialize, Deserialize, Eq, PartialEq)]
pub enum PrimitiveType {
    Nil,
    Bool,
    I8,
    I16,
    I32,
    I64,
    U8,
    U16,
    U32,
    U64,
    F32,
    F64,
}

#[derive(Hash, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub enum TypeSignature {
    Primitive(PrimitiveType),
    Function(FunctionSignature),
    Custom(String),
}

impl<'a> TypeSignature {
    pub fn new(t: &'a str) -> TypeSignature {
        match t {
            "Nil" => TypeSignature::Primitive(PrimitiveType::Nil),
            "Bool" => TypeSignature::Primitive(PrimitiveType::Bool),
            "I8" => TypeSignature::Primitive(PrimitiveType::I8),
            "I16" => TypeSignature::Primitive(PrimitiveType::I16),
            "I32" => TypeSignature::Primitive(PrimitiveType::I32),
            "I64" => TypeSignature::Primitive(PrimitiveType::I64),
            "U8" => TypeSignature::Primitive(PrimitiveType::U8),
            "U16" => TypeSignature::Primitive(PrimitiveType::U16),
            "U32" => TypeSignature::Primitive(PrimitiveType::U32),
            "U64" => TypeSignature::Primitive(PrimitiveType::U64),
            "F32" => TypeSignature::Primitive(PrimitiveType::F32),
            "F64" => TypeSignature::Primitive(PrimitiveType::F64),
            _ => TypeSignature::Custom(t.to_string()),
        }
    }
    pub fn is_number(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::Nil | PrimitiveType::Bool => false,
                _ => true,
            },
            _ => false,
        }
    }
    pub fn is_bool(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::Bool => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_nil(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::Nil => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_signed(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::I8
                | PrimitiveType::I16
                | PrimitiveType::I32
                | PrimitiveType::I64 => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_unsigned(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::U8
                | PrimitiveType::U16
                | PrimitiveType::U32
                | PrimitiveType::U64 => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_function(&self) -> bool {
        match self {
            TypeSignature::Function(_) => true,
            _ => false,
        }
    }
    pub fn is_custom(&self) -> bool {
        match self {
            TypeSignature::Custom(_) => true,
            _ => false,
        }
    }
    pub fn is_integer(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::I8
                | PrimitiveType::I16
                | PrimitiveType::I32
                | PrimitiveType::I64
                | PrimitiveType::U8
                | PrimitiveType::U16
                | PrimitiveType::U32
                | PrimitiveType::U64 => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_float(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::F32 | PrimitiveType::F64 => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_8bit(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::I8 | PrimitiveType::U8 => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_16bit(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::I16 | PrimitiveType::U16 => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_32bit(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::I32 | PrimitiveType::U32 | PrimitiveType::F32 => true,
                _ => false,
            },
            _ => false,
        }
    }
    pub fn is_64bit(&self) -> bool {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::I64 | PrimitiveType::U64 | PrimitiveType::F64 => true,
                _ => false,
            },
            _ => false,
        }
    }
}

impl std::fmt::Debug for TypeSignature {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            TypeSignature::Primitive(p) => match p {
                PrimitiveType::Nil => write!(f, "Nil"),
                PrimitiveType::Bool => write!(f, "Bool"),
                PrimitiveType::I8 => write!(f, "I8"),
                PrimitiveType::I16 => write!(f, "I16"),
                PrimitiveType::I32 => write!(f, "I32"),
                PrimitiveType::I64 => write!(f, "I64"),
                PrimitiveType::U8 => write!(f, "U8"),
                PrimitiveType::U16 => write!(f, "U16"),
                PrimitiveType::U32 => write!(f, "U32"),
                PrimitiveType::U64 => write!(f, "U64"),
                PrimitiveType::F32 => write!(f, "F32"),
                PrimitiveType::F64 => write!(f, "F64"),
            },
            TypeSignature::Function(func) => {
                if f.alternate() {
                    write!(f, "{:#?}", func)
                } else {
                    write!(f, "{:?}", func)
                }
            }
            TypeSignature::Custom(c) => write!(f, "{}", c),
        }
    }
}

#[derive(Hash, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct VariableSignature {
    pub mutable: bool,
    pub type_sig: Option<TypeSignature>,
}

impl std::fmt::Debug for VariableSignature {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if f.alternate() {
            if let Some(sig) = &self.type_sig {
                write!(f, "{}{:#?}", if self.mutable { "mut " } else { "" }, sig)
            } else {
                write!(f, "{}Untyped", if self.mutable { "mut " } else { "" })
            }
        } else if let Some(sig) = &self.type_sig {
            write!(f, "{}{:?}", if self.mutable { "mut " } else { "" }, sig)
        } else {
            write!(f, "{}Untyped", if self.mutable { "mut " } else { "" })
        }
    }
}

#[derive(Hash, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct FunctionSignature {
    pub params: Vec<VariableSignature>,
    pub return_type: Option<Box<TypeSignature>>,
}

impl std::fmt::Debug for FunctionSignature {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if f.alternate() {
            write!(f, "(")?;
            let len = self.params.len();
            let mut idx = 1;
            for p in &self.params {
                write!(f, "{:#?}{}", p, if idx < len { ", " } else { "" })?;
                idx += 1;
            }
            if let Some(rt) = &self.return_type {
                write!(f, ") -> {:#?}", rt)
            } else {
                write!(f, ") -> Untyped")
            }
        } else {
            write!(f, "(")?;
            let len = self.params.len();
            let mut idx = 1;
            for p in &self.params {
                write!(f, "{:?}{}", p, if idx < len { ", " } else { "" })?;
                idx += 1;
            }
            if let Some(rt) = &self.return_type {
                write!(f, ") -> {:?}", rt)
            } else {
                write!(f, ") -> Untyped")
            }
        }
    }
}

#[macro_export]
macro_rules! make_fn_sig {
    (( $( $type_:ident ),* ) -> $ret:ident) => {
        ast::FunctionSignature{ params: vec!(
            $(
                ast::VariableSignature { mutable: true, type_sig: Some(ast::TypeSignature::new(stringify!($type_))) },
            )*
        ), return_type: Some(Box::new(ast::TypeSignature::new(stringify!($ret)))) }
    };
}

#[derive(Clone, Serialize, Deserialize)]
pub struct Module {
    pub file: Option<String>,
    pub expressions: Vec<AstNode>,
    pub type_sig: Option<TypeSignature>,
}

impl std::fmt::Debug for Module {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if let Some(file_name) = &self.file {
            if let Some(type_sig) = &self.type_sig {
                if f.alternate() {
                    write!(
                        f,
                        "[{}]: [{:#?}]: {:#?}",
                        file_name, type_sig, self.expressions
                    )
                } else {
                    write!(
                        f,
                        "[{}]: [{:?}]: {:?}",
                        file_name, type_sig, self.expressions
                    )
                }
            } else if f.alternate() {
                write!(f, "[{}]: {:#?}", file_name, self.expressions)
            } else {
                write!(f, "[{}]: {:?}", file_name, self.expressions)
            }
        } else if let Some(type_sig) = &self.type_sig {
            if f.alternate() {
                write!(f, "[module]: [{:#?}]: {:#?}", type_sig, self.expressions)
            } else {
                write!(f, "[module]: [{:?}]: {:?}", type_sig, self.expressions)
            }
        } else if f.alternate() {
            write!(f, "[module]: {:#?}", self.expressions)
        } else {
            write!(f, "[module]: {:?}", self.expressions)
        }
    }
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Ast {
    // identifier name
    Identifier(String),

    // integer value
    Integer(i64),

    // floating point value
    Float(f64),

    // string value
    String(String),

    // boolean value
    Bool(bool),

    // expr
    Statement(Box<AstNode>),

    // operator, left expr, right expr
    Binary(BinaryOperation, Box<AstNode>, Box<AstNode>),

    // operator, expr
    Unary(UnaryOperation, Box<AstNode>),

    // returned expression
    Return(Box<AstNode>),

    // vector of expr
    Block(Vec<AstNode>),

    // if cond, if expr, else if conds, else if exprs, optional else expr
    IfElse(
        Box<AstNode>,
        Box<AstNode>,
        Vec<(Box<AstNode>, Box<AstNode>)>,
        Option<Box<AstNode>>,
    ),

    // while cond, while expr
    While(Box<AstNode>, Box<AstNode>),

    // name, variable signature, optional value expr
    VarDecl(String, VariableSignature, Option<Box<AstNode>>),

    // import file name, file's ast
    Import(Module),

    // function parameters, param names return type, implementation
    FnDef(FunctionSignature, Vec<String>, Box<AstNode>),

    // function signature, function name
    FnExtern(FunctionSignature, String),

    // expression that evaluates to function, arguments
    FnCall(Box<AstNode>, Vec<AstNode>),

    // expression, type to cast to
    As(Box<AstNode>, TypeSignature),
}

#[derive(Clone, Serialize, Deserialize)]
pub struct AstNode {
    pub node: Ast,
    pub pos: super::Position,
    pub type_sig: Option<TypeSignature>,
}

impl std::hash::Hash for AstNode {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.pos.hash(state);
        self.type_sig.hash(state);
    }
}

impl std::fmt::Debug for AstNode {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if let Some(type_sig) = &self.type_sig {
            if f.alternate() {
                write!(
                    f,
                    "[{},{}]: [{:#?}]: {:#?}",
                    self.pos.line, self.pos.col, type_sig, self.node
                )
            } else {
                write!(
                    f,
                    "[{},{}]: [{:?}]: {:?}",
                    self.pos.line, self.pos.col, type_sig, self.node
                )
            }
        } else if f.alternate() {
            write!(f, "[{},{}]: {:#?}", self.pos.line, self.pos.col, self.node)
        } else {
            write!(f, "[{},{}]: {:?}", self.pos.line, self.pos.col, self.node)
        }
    }
}