mdql-core 0.5.31

Core library for MDQL — a queryable database backed by markdown files
Documentation
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
//! AST types for the MDQL SQL subset.

// ── AST nodes ──────────────────────────────────────────────────────────────

#[derive(Debug, Clone, PartialEq)]
pub enum ArithOp {
    Add,
    Sub,
    Mul,
    Div,
    Mod,
}

#[derive(Debug, Clone, PartialEq)]
pub enum Expr {
    Literal(SqlValue),
    Column(String),
    BinaryOp { left: Box<Expr>, op: ArithOp, right: Box<Expr> },
    UnaryMinus(Box<Expr>),
    Case { whens: Vec<(WhereClause, Box<Expr>)>, else_expr: Option<Box<Expr>> },
    DateAdd { date: Box<Expr>, days: Box<Expr> },
    DateDiff { left: Box<Expr>, right: Box<Expr> },
    CurrentDate,
    CurrentTimestamp,
    Aggregate { func: AggFunc, arg: String, arg_expr: Option<Box<Expr>> },
    Subquery(Box<SelectQuery>),
    Window { func: WindowFunc, args: Vec<Expr>, over: WindowSpec },
}

impl Expr {
    pub fn as_column(&self) -> Option<&str> {
        if let Expr::Column(name) = self { Some(name) } else { None }
    }

    pub fn display_name(&self) -> String {
        match self {
            Expr::Literal(SqlValue::Int(n)) => n.to_string(),
            Expr::Literal(SqlValue::Float(f)) => f.to_string(),
            Expr::Literal(SqlValue::String(s)) => format!("'{}'", s),
            Expr::Literal(SqlValue::Null) => "NULL".to_string(),
            Expr::Literal(SqlValue::List(_)) => "list".to_string(),
            Expr::Column(name) => name.clone(),
            Expr::BinaryOp { left, op, right } => {
                let op_str = match op {
                    ArithOp::Add => "+",
                    ArithOp::Sub => "-",
                    ArithOp::Mul => "*",
                    ArithOp::Div => "/",
                    ArithOp::Mod => "%",
                };
                format!("{} {} {}", left.display_name(), op_str, right.display_name())
            }
            Expr::UnaryMinus(inner) => format!("-{}", inner.display_name()),
            Expr::Case { .. } => "CASE".to_string(),
            Expr::DateAdd { date, days } => format!("DATE_ADD({}, {})", date.display_name(), days.display_name()),
            Expr::DateDiff { left, right } => format!("DATEDIFF({}, {})", left.display_name(), right.display_name()),
            Expr::CurrentDate => "CURRENT_DATE".to_string(),
            Expr::CurrentTimestamp => "CURRENT_TIMESTAMP".to_string(),
            Expr::Aggregate { func, arg, .. } => {
                let func_name = match func {
                    AggFunc::Count => "COUNT",
                    AggFunc::Sum => "SUM",
                    AggFunc::Avg => "AVG",
                    AggFunc::Min => "MIN",
                    AggFunc::Max => "MAX",
                };
                format!("{}({})", func_name, arg)
            }
            Expr::Subquery(_) => "(subquery)".to_string(),
            Expr::Window { func, args, .. } => {
                let func_name = match func {
                    WindowFunc::RowNumber => "ROW_NUMBER",
                    WindowFunc::Rank => "RANK",
                    WindowFunc::DenseRank => "DENSE_RANK",
                    WindowFunc::Lag => "LAG",
                    WindowFunc::Lead => "LEAD",
                    WindowFunc::Agg(af) => match af {
                        AggFunc::Count => "COUNT",
                        AggFunc::Sum => "SUM",
                        AggFunc::Avg => "AVG",
                        AggFunc::Min => "MIN",
                        AggFunc::Max => "MAX",
                    },
                };
                if args.is_empty() {
                    format!("{}()", func_name)
                } else {
                    let arg_strs: Vec<String> = args.iter().map(|a| a.display_name()).collect();
                    format!("{}({})", func_name, arg_strs.join(", "))
                }
            }
        }
    }

    pub fn contains_aggregate(&self) -> bool {
        match self {
            Expr::Aggregate { .. } => true,
            Expr::BinaryOp { left, right, .. } => {
                left.contains_aggregate() || right.contains_aggregate()
            }
            Expr::UnaryMinus(inner) => inner.contains_aggregate(),
            Expr::Case { whens, else_expr } => {
                whens.iter().any(|(_, e)| e.contains_aggregate())
                    || else_expr.as_ref().map_or(false, |e| e.contains_aggregate())
            }
            Expr::Subquery(_) => false,
            Expr::Window { .. } => false,
            _ => false,
        }
    }

    pub fn contains_window(&self) -> bool {
        match self {
            Expr::Window { .. } => true,
            Expr::BinaryOp { left, right, .. } => {
                left.contains_window() || right.contains_window()
            }
            Expr::UnaryMinus(inner) => inner.contains_window(),
            _ => false,
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct OrderSpec {
    pub column: String,
    pub expr: Option<Expr>,
    pub descending: bool,
}

#[derive(Debug, Clone, PartialEq)]
pub enum CmpOp {
    Eq,
    Ne,
    Lt,
    Gt,
    Le,
    Ge,
    Like,
    NotLike,
    In,
    IsNull,
    IsNotNull,
}

#[derive(Debug, Clone, PartialEq)]
pub enum BoolOpKind {
    And,
    Or,
}

#[derive(Debug, Clone, PartialEq)]
pub struct Comparison {
    pub column: String,
    pub op: CmpOp,
    pub value: Option<SqlValue>,
    pub left_expr: Option<Expr>,
    pub right_expr: Option<Expr>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct BoolOp {
    pub op: BoolOpKind,
    pub left: Box<WhereClause>,
    pub right: Box<WhereClause>,
}

#[derive(Debug, Clone, PartialEq)]
pub enum WhereClause {
    Comparison(Comparison),
    BoolOp(BoolOp),
}

#[derive(Debug, Clone, PartialEq)]
pub enum SqlValue {
    String(String),
    Int(i64),
    Float(f64),
    Null,
    List(Vec<SqlValue>),
}

#[derive(Debug, Clone, PartialEq)]
pub enum JoinType {
    Inner,
    Left,
}

#[derive(Debug, Clone, PartialEq)]
pub struct JoinClause {
    pub join_type: JoinType,
    pub table: String,
    pub alias: Option<String>,
    pub condition: WhereClause,
}

#[derive(Debug, Clone, PartialEq)]
pub enum AggFunc {
    Count,
    Sum,
    Avg,
    Min,
    Max,
}

#[derive(Debug, Clone, PartialEq)]
pub enum WindowFunc {
    RowNumber,
    Rank,
    DenseRank,
    Lag,
    Lead,
    Agg(AggFunc),
}

#[derive(Debug, Clone, PartialEq)]
pub struct WindowSpec {
    pub partition_by: Vec<String>,
    pub order_by: Vec<OrderSpec>,
}

#[derive(Debug, Clone, PartialEq)]
pub enum SelectExpr {
    Column(String),
    Aggregate { func: AggFunc, arg: String, arg_expr: Option<Expr>, alias: Option<String> },
    Expr { expr: Expr, alias: Option<String> },
}

impl SelectExpr {
    pub fn output_name(&self) -> String {
        match self {
            SelectExpr::Column(name) => name.clone(),
            SelectExpr::Aggregate { func, arg, alias, .. } => {
                if let Some(a) = alias {
                    a.clone()
                } else {
                    let func_name = match func {
                        AggFunc::Count => "COUNT",
                        AggFunc::Sum => "SUM",
                        AggFunc::Avg => "AVG",
                        AggFunc::Min => "MIN",
                        AggFunc::Max => "MAX",
                    };
                    format!("{}({})", func_name, arg)
                }
            }
            SelectExpr::Expr { expr, alias } => {
                alias.clone().unwrap_or_else(|| expr.display_name())
            }
        }
    }

    pub fn is_aggregate(&self) -> bool {
        match self {
            SelectExpr::Aggregate { .. } => true,
            SelectExpr::Expr { expr, .. } => expr.contains_aggregate(),
            _ => false,
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct CteClause {
    pub name: String,
    pub query: Box<SelectQuery>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct SelectQuery {
    pub columns: ColumnList,
    pub table: String,
    pub table_alias: Option<String>,
    pub subquery: Option<Box<SelectQuery>>,
    pub joins: Vec<JoinClause>,
    pub where_clause: Option<WhereClause>,
    pub group_by: Option<Vec<String>>,
    pub having: Option<WhereClause>,
    pub order_by: Option<Vec<OrderSpec>>,
    pub limit: Option<i64>,
    pub ctes: Vec<CteClause>,
}

#[derive(Debug, Clone, PartialEq)]
pub enum ColumnList {
    All,
    Named(Vec<SelectExpr>),
}

#[derive(Debug, Clone, PartialEq)]
pub struct InsertQuery {
    pub table: String,
    pub columns: Vec<String>,
    pub values: Vec<SqlValue>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct UpdateQuery {
    pub table: String,
    pub assignments: Vec<(String, SqlValue)>,
    pub where_clause: Option<WhereClause>,
}

#[derive(Debug, Clone, PartialEq)]
pub enum DeleteMode {
    Default,
    Cascade,
    Restrict,
}

#[derive(Debug, Clone, PartialEq)]
pub struct DeleteQuery {
    pub table: String,
    pub where_clause: Option<WhereClause>,
    pub mode: DeleteMode,
}

#[derive(Debug, Clone, PartialEq)]
pub struct AlterRenameFieldQuery {
    pub table: String,
    pub old_name: String,
    pub new_name: String,
}

#[derive(Debug, Clone, PartialEq)]
pub struct AlterDropFieldQuery {
    pub table: String,
    pub field_name: String,
}

#[derive(Debug, Clone, PartialEq)]
pub struct AlterMergeFieldsQuery {
    pub table: String,
    pub sources: Vec<String>,
    pub into: String,
}

#[derive(Debug, Clone, PartialEq)]
pub struct CreateViewQuery {
    pub view_name: String,
    pub columns: Option<Vec<String>>,
    pub query: Box<SelectQuery>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct DropViewQuery {
    pub view_name: String,
}

#[derive(Debug, Clone, PartialEq)]
pub enum Statement {
    Select(SelectQuery),
    Insert(InsertQuery),
    Update(UpdateQuery),
    Delete(DeleteQuery),
    AlterRename(AlterRenameFieldQuery),
    AlterDrop(AlterDropFieldQuery),
    AlterMerge(AlterMergeFieldsQuery),
    CreateView(CreateViewQuery),
    DropView(DropViewQuery),
}

impl Statement {
    pub fn table_name(&self) -> &str {
        match self {
            Statement::Select(q) => &q.table,
            Statement::Insert(q) => &q.table,
            Statement::Update(q) => &q.table,
            Statement::Delete(q) => &q.table,
            Statement::AlterRename(q) => &q.table,
            Statement::AlterDrop(q) => &q.table,
            Statement::AlterMerge(q) => &q.table,
            Statement::CreateView(q) => &q.view_name,
            Statement::DropView(q) => &q.view_name,
        }
    }
}

pub fn where_clause_to_sql(clause: &WhereClause) -> String {
    match clause {
        WhereClause::BoolOp(bop) => {
            let left = where_clause_to_sql(&bop.left);
            let right = where_clause_to_sql(&bop.right);
            let op = match bop.op {
                BoolOpKind::And => "AND",
                BoolOpKind::Or => "OR",
            };
            format!("{} {} {}", left, op, right)
        }
        WhereClause::Comparison(cmp) => {
            let op_str = match cmp.op {
                CmpOp::Eq => "=",
                CmpOp::Ne => "!=",
                CmpOp::Lt => "<",
                CmpOp::Gt => ">",
                CmpOp::Le => "<=",
                CmpOp::Ge => ">=",
                CmpOp::Like => "LIKE",
                CmpOp::NotLike => "NOT LIKE",
                CmpOp::In => "IN",
                CmpOp::IsNull => "IS NULL",
                CmpOp::IsNotNull => "IS NOT NULL",
            };
            if matches!(cmp.op, CmpOp::IsNull | CmpOp::IsNotNull) {
                if let Some(ref expr) = cmp.left_expr {
                    return format!("{} {}", expr.display_name(), op_str);
                }
                return format!("{} {}", cmp.column, op_str);
            }
            if let (Some(ref left), Some(ref right)) = (&cmp.left_expr, &cmp.right_expr) {
                return format!("{} {} {}", left.display_name(), op_str, right.display_name());
            }
            match &cmp.value {
                Some(SqlValue::String(s)) => format!("{} {} '{}'", cmp.column, op_str, s),
                Some(SqlValue::Int(n)) => format!("{} {} {}", cmp.column, op_str, n),
                Some(SqlValue::Float(f)) => format!("{} {} {}", cmp.column, op_str, f),
                Some(SqlValue::Null) => format!("{} {} NULL", cmp.column, op_str),
                Some(SqlValue::List(items)) => {
                    let vals: Vec<String> = items.iter().map(|v| match v {
                        SqlValue::String(s) => format!("'{}'", s),
                        SqlValue::Int(n) => n.to_string(),
                        SqlValue::Float(f) => f.to_string(),
                        _ => "NULL".to_string(),
                    }).collect();
                    format!("{} {} ({})", cmp.column, op_str, vals.join(", "))
                }
                None => format!("{} {}", cmp.column, op_str),
            }
        }
    }
}