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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
mod sql_schema_calculator_flavour;

pub(super) use sql_schema_calculator_flavour::SqlSchemaCalculatorFlavour;

use crate::{flavour::SqlFlavour, SqlDatabaseSchema};
use psl::{
    datamodel_connector::walker_ext_traits::*,
    parser_database::{
        ast,
        walkers::{ModelWalker, ScalarFieldWalker},
        ReferentialAction, ScalarFieldType, ScalarType, SortOrder,
    },
    ValidatedSchema,
};
use sql_schema_describer::{self as sql, PrismaValue};
use std::collections::HashMap;

pub(crate) fn calculate_sql_schema(datamodel: &ValidatedSchema, flavour: &dyn SqlFlavour) -> SqlDatabaseSchema {
    let mut schema = SqlDatabaseSchema::default();

    let mut context = Context {
        datamodel,
        schema: &mut schema,
        flavour,
        model_id_to_table_id: HashMap::with_capacity(datamodel.db.models_count()),
        enum_ids: HashMap::with_capacity(datamodel.db.enums_count()),
        schemas: Default::default(),
    };

    if let Some(ds) = context.datamodel.configuration.datasources.first() {
        for (schema, _) in &ds.namespaces {
            context
                .schemas
                .insert(schema, context.schema.describer_schema.push_namespace(schema.clone()));
        }
    }

    flavour.calculate_enums(&mut context);

    // Two types of tables: model tables and implicit M2M relation tables (a.k.a. join tables.).
    push_model_tables(&mut context);

    if context.datamodel.relation_mode().uses_foreign_keys() {
        push_inline_relations(&mut context);
    }

    push_relation_tables(&mut context);
    flavour.push_connector_data(&mut context);

    schema
}

fn push_model_tables(ctx: &mut Context<'_>) {
    for model in ctx.datamodel.db.walk_models() {
        let namespace_id = model
            .schema()
            .and_then(|(name, _)| ctx.schemas.get(name))
            .copied()
            .unwrap_or_default();
        let table_id = ctx
            .schema
            .describer_schema
            .push_table(model.database_name().to_owned(), namespace_id, None);
        ctx.model_id_to_table_id.insert(model.model_id(), table_id);

        for field in model.scalar_fields() {
            push_column_for_scalar_field(field, table_id, ctx);
        }

        push_model_indexes(model, table_id, ctx);
    }
}

fn push_model_indexes(model: ModelWalker<'_>, table_id: sql::TableId, ctx: &mut Context<'_>) {
    if let Some(pk) = model.primary_key() {
        let constraint_name = pk
            .constraint_name(ctx.flavour.datamodel_connector())
            .map(String::from)
            .unwrap_or_else(String::new);
        let pkid = ctx.schema.describer_schema.push_primary_key(table_id, constraint_name);
        for field in pk.scalar_field_attributes() {
            let column_id = ctx
                .walk(table_id)
                .column(field.as_index_field().database_name())
                .unwrap()
                .id;
            ctx.schema.describer_schema.push_index_column(sql::IndexColumn {
                index_id: pkid,
                column_id,
                sort_order: field.sort_order().map(|so| match so {
                    SortOrder::Asc => sql::SQLSortOrder::Asc,
                    SortOrder::Desc => sql::SQLSortOrder::Desc,
                }),
                length: field.length(),
            });
        }
    }

    for index in model.indexes() {
        let constraint_name = index.constraint_name(ctx.flavour.datamodel_connector()).into_owned();
        let index_id = if index.is_unique() {
            ctx.schema
                .describer_schema
                .push_unique_constraint(table_id, constraint_name)
        } else if index.is_fulltext() {
            ctx.schema
                .describer_schema
                .push_fulltext_index(table_id, constraint_name)
        } else {
            ctx.schema.describer_schema.push_index(table_id, constraint_name)
        };

        for sf in index.scalar_field_attributes() {
            let column_id = ctx
                .walk(table_id)
                .column(sf.as_index_field().database_name())
                .unwrap()
                .id;
            ctx.schema.describer_schema.push_index_column(sql::IndexColumn {
                index_id,
                column_id,
                sort_order: sf.sort_order().map(|s| match s {
                    SortOrder::Asc => sql::SQLSortOrder::Asc,
                    SortOrder::Desc => sql::SQLSortOrder::Desc,
                }),
                length: sf.length(),
            });
        }
    }
}

fn push_inline_relations(ctx: &mut Context<'_>) {
    for relation in ctx.datamodel.db.walk_relations().filter_map(|r| r.refine().as_inline()) {
        if relation.referencing_model().ast_model().is_view() || relation.referenced_model().ast_model().is_view() {
            continue;
        }

        let relation_field = relation
            .forward_relation_field()
            .expect("Expecting a complete relation in sql_schmea_calculator");
        let referencing_model = ctx.model_id_to_table_id[&relation_field.model().model_id()];
        let referenced_model = ctx.model_id_to_table_id[&relation.referenced_model().model_id()];
        let on_delete_action = relation_field.explicit_on_delete().unwrap_or_else(|| {
            relation_field.default_on_delete_action(
                ctx.datamodel.configuration.relation_mode().unwrap_or_default(),
                ctx.flavour.datamodel_connector(),
            )
        });
        let on_update_action = relation_field
            .explicit_on_update()
            .map(convert_referential_action)
            .unwrap_or_else(|| sql::ForeignKeyAction::Cascade);

        let fkid = ctx.schema.describer_schema.push_foreign_key(
            Some(relation.constraint_name(ctx.flavour.datamodel_connector()).into_owned()),
            [referencing_model, referenced_model],
            [convert_referential_action(on_delete_action), on_update_action],
        );

        let columns = relation_field
            .fields()
            .unwrap()
            .zip(relation_field.referenced_fields().unwrap());

        for (referencing, referenced) in columns {
            let column = [
                ctx.walk(referencing_model)
                    .column(referencing.database_name())
                    .unwrap()
                    .id,
                ctx.walk(referenced_model)
                    .column(referenced.database_name())
                    .unwrap()
                    .id,
            ];
            ctx.schema.describer_schema.push_foreign_key_column(fkid, column);
        }
    }
}

fn push_relation_tables(ctx: &mut Context<'_>) {
    let datamodel = ctx.datamodel;
    let flavour = ctx.flavour;
    let m2m_relations = datamodel
        .db
        .walk_relations()
        .filter_map(|relation| relation.refine().as_many_to_many());

    for m2m in m2m_relations {
        let table_name = m2m.table_name().to_string();
        let table_name = table_name
            .chars()
            .take(datamodel.configuration.max_identifier_length())
            .collect::<String>();
        let model_a = m2m.model_a();
        let model_a_table_id = ctx.model_id_to_table_id[&model_a.model_id()];
        let model_b = m2m.model_b();
        let model_b_table_id = ctx.model_id_to_table_id[&model_b.model_id()];
        let model_a_column = m2m.column_a_name();
        let model_b_column = m2m.column_b_name();
        let model_a_id = model_a.primary_key().unwrap().fields().next().unwrap();
        let model_b_id = model_b.primary_key().unwrap().fields().next().unwrap();

        let max_identifier_length = ctx.flavour.datamodel_connector().max_identifier_length();
        let fk_suffix = "_fkey";
        let max_table_name_len = max_identifier_length - fk_suffix.len() - 2;
        // We slightly diverge from the default naming conventions here, because we want to
        // completely exclude the possibility of collisions, since these names are not
        // configurable in implicit many-to-many relation tables.
        let model_a_fk_name = if table_name.len() > max_table_name_len {
            format!("{}_A{fk_suffix}", &table_name[0..max_table_name_len])
        } else {
            format!("{table_name}_A{fk_suffix}")
        };
        let model_b_fk_name = if table_name.len() >= max_table_name_len {
            format!("{}_B{fk_suffix}", &table_name[0..max_table_name_len])
        } else {
            format!("{table_name}_B{fk_suffix}")
        };

        let namespace_id = ctx.walk(model_a_table_id).namespace_id(); // we put the join table in the schema of table A.
        let table_id = ctx
            .schema
            .describer_schema
            .push_table(table_name.clone(), namespace_id, None);
        let column_a_type = ctx
            .walk(model_a_table_id)
            .primary_key_columns()
            .unwrap()
            .next()
            .unwrap()
            .as_column()
            .column_type()
            .clone();
        let column_b_type = ctx
            .walk(model_b_table_id)
            .primary_key_columns()
            .unwrap()
            .next()
            .unwrap()
            .as_column()
            .column_type()
            .clone();

        let column_a_id = ctx.schema.describer_schema.push_table_column(
            table_id,
            sql::Column {
                name: model_a_column.into(),
                tpe: column_a_type,
                auto_increment: false,
                description: None,
            },
        );
        let column_b_id = ctx.schema.describer_schema.push_table_column(
            table_id,
            sql::Column {
                name: model_b_column.into(),
                tpe: column_b_type,
                auto_increment: false,
                description: None,
            },
        );

        // Unique index on AB
        {
            let index_name = format!(
                "{}_AB_unique",
                table_name.chars().take(max_identifier_length - 10).collect::<String>()
            );
            let index_id = ctx.schema.describer_schema.push_unique_constraint(table_id, index_name);
            ctx.schema.describer_schema.push_index_column(sql::IndexColumn {
                index_id,
                column_id: column_a_id,
                sort_order: None,
                length: None,
            });
            ctx.schema.describer_schema.push_index_column(sql::IndexColumn {
                index_id,
                column_id: column_b_id,
                sort_order: None,
                length: None,
            });
        }

        // Index on B
        {
            let index_name = format!(
                "{}_B_index",
                table_name.chars().take(max_identifier_length - 8).collect::<String>()
            );
            let index_id = ctx.schema.describer_schema.push_index(table_id, index_name);
            ctx.schema.describer_schema.push_index_column(sql::IndexColumn {
                index_id,
                column_id: column_b_id,
                sort_order: None,
                length: None,
            });
        }

        if ctx.datamodel.relation_mode().uses_foreign_keys() {
            let fkid = ctx.schema.describer_schema.push_foreign_key(
                Some(model_a_fk_name),
                [table_id, ctx.model_id_to_table_id[&model_a.model_id()]],
                [flavour.m2m_foreign_key_action(model_a, model_b); 2],
            );

            ctx.schema.describer_schema.push_foreign_key_column(
                fkid,
                [
                    column_a_id,
                    ctx.schema
                        .describer_schema
                        .walk(model_a_table_id)
                        .column(model_a_id.database_name())
                        .unwrap()
                        .id,
                ],
            );

            let fkid = ctx.schema.describer_schema.push_foreign_key(
                Some(model_b_fk_name),
                [table_id, ctx.model_id_to_table_id[&model_b.model_id()]],
                [flavour.m2m_foreign_key_action(model_a, model_b); 2],
            );

            ctx.schema.describer_schema.push_foreign_key_column(
                fkid,
                [
                    column_b_id,
                    ctx.schema
                        .describer_schema
                        .walk(model_b_table_id)
                        .column(model_b_id.database_name())
                        .unwrap()
                        .id,
                ],
            );
        }
    }
}

fn push_column_for_scalar_field(field: ScalarFieldWalker<'_>, table_id: sql::TableId, ctx: &mut Context<'_>) {
    match field.scalar_field_type() {
        ScalarFieldType::Enum(enum_id) => push_column_for_model_enum_scalar_field(field, enum_id, table_id, ctx),
        ScalarFieldType::CompositeType(_) => {
            push_column_for_builtin_scalar_type(field, ScalarType::Json, table_id, ctx)
        }
        ScalarFieldType::BuiltInScalar(scalar_type) => {
            push_column_for_builtin_scalar_type(field, scalar_type, table_id, ctx)
        }
        ScalarFieldType::Unsupported(_) => push_column_for_model_unsupported_scalar_field(field, table_id, ctx),
    }
}

fn push_column_for_model_enum_scalar_field(
    field: ScalarFieldWalker<'_>,
    enum_id: ast::EnumId,
    table_id: sql::TableId,
    ctx: &mut Context<'_>,
) {
    let r#enum = ctx.datamodel.db.walk(enum_id);
    let value_for_name = |name: &str| -> PrismaValue {
        match r#enum.values().find(|v| v.name() == name).map(|v| v.database_name()) {
            Some(v) => PrismaValue::Enum(v.to_owned()),
            None => panic!("Expected enum field default to reference existing value."),
        }
    };

    let default = field.default_value().and_then(|def| match def.value() {
        ast::Expression::ConstantValue(value_name, _) => {
            let def = sql::DefaultValue::value(value_for_name(value_name))
                .with_constraint_name(ctx.flavour.default_constraint_name(def));
            Some(def)
        }
        ast::Expression::Array(items, _) => {
            let mut values = Vec::with_capacity(items.len());

            for item in items {
                let (value_name, _) = item
                    .as_constant_value()
                    .expect("Non-constant value inside enum list default.");
                values.push(value_for_name(value_name));
            }

            let default_value = sql::DefaultValue::value(PrismaValue::List(values))
                .with_constraint_name(ctx.flavour.default_constraint_name(def));
            Some(default_value)
        }
        other => unwrap_dbgenerated(other).map(|value| {
            sql::DefaultValue::db_generated(value).with_constraint_name(ctx.flavour.default_constraint_name(def))
        }),
    });

    if let Some(default) = default {
        let column_id = ctx.schema.describer_schema.next_table_column_id();
        ctx.schema.describer_schema.push_table_default_value(column_id, default);
    }

    let column = sql::Column {
        name: field.database_name().to_owned(),
        tpe: sql::ColumnType::pure(
            sql::ColumnTypeFamily::Enum(ctx.enum_ids[&r#enum.id]),
            column_arity(field.ast_field().arity),
        ),
        auto_increment: false,
        description: None,
    };

    ctx.schema.describer_schema.push_table_column(table_id, column);
}

fn push_column_for_model_unsupported_scalar_field(
    field: ScalarFieldWalker<'_>,
    table_id: sql::TableId,
    ctx: &mut Context<'_>,
) {
    let default = field.default_value().and_then(|def| {
        // This is validated as @default(dbgenerated("...")), we can unwrap.
        let dbgenerated_contents = unwrap_dbgenerated(def.value());
        if let Some(value) = dbgenerated_contents {
            let default =
                sql::DefaultValue::db_generated(value).with_constraint_name(ctx.flavour.default_constraint_name(def));
            Some(default)
        } else {
            None
        }
    });

    if let Some(default) = default {
        let column_id = ctx.schema.describer_schema.next_table_column_id();
        ctx.schema.describer_schema.push_table_default_value(column_id, default);
    }

    let column = sql::Column {
        name: field.database_name().to_owned(),
        tpe: ctx.flavour.column_type_for_unsupported_type(
            field,
            field.ast_field().field_type.as_unsupported().unwrap().0.to_owned(),
        ),
        auto_increment: false,
        description: None,
    };

    ctx.schema.describer_schema.push_table_column(table_id, column);
}

fn push_column_for_builtin_scalar_type(
    field: ScalarFieldWalker<'_>,
    scalar_type: ScalarType,
    table_id: sql::TableId,
    ctx: &mut Context<'_>,
) {
    let connector = ctx.flavour.datamodel_connector();
    let family = match scalar_type {
        ScalarType::Int => sql::ColumnTypeFamily::Int,
        ScalarType::Float => sql::ColumnTypeFamily::Float,
        ScalarType::Boolean => sql::ColumnTypeFamily::Boolean,
        ScalarType::String => sql::ColumnTypeFamily::String,
        ScalarType::DateTime => sql::ColumnTypeFamily::DateTime,
        ScalarType::Json => sql::ColumnTypeFamily::Json,
        ScalarType::Bytes => sql::ColumnTypeFamily::Binary,
        ScalarType::Decimal => sql::ColumnTypeFamily::Decimal,
        ScalarType::BigInt => sql::ColumnTypeFamily::BigInt,
    };

    let native_type = field
        .native_type_instance(connector)
        .or_else(|| connector.default_native_type_for_scalar_type(&scalar_type));

    enum ColumnDefault {
        Available(sql::DefaultValue),
        PrismaGenerated,
        NA,
    }

    let default: Option<ColumnDefault> = field.default_value().map(|v| {
        let column_default = {
            if v.is_dbgenerated() {
                let value = unwrap_dbgenerated(v.value());
                ColumnDefault::Available(sql::DefaultValue::new(sql::DefaultKind::DbGenerated(value)))
            } else if v.is_now() {
                ColumnDefault::Available(sql::DefaultValue::now())
            } else if v.is_autoincrement() {
                ctx.flavour
                    .column_default_value_for_autoincrement()
                    .map(ColumnDefault::Available)
                    .unwrap_or(ColumnDefault::NA)
            } else if v.is_sequence() {
                ColumnDefault::Available(sql::DefaultValue::new(sql::DefaultKind::Sequence(format!(
                    "prisma_sequence_{}_{}",
                    field.model().database_name(),
                    field.database_name()
                ))))
            } else {
                match v.value() {
                    ast::Expression::Function(_, _, _) => ColumnDefault::PrismaGenerated,
                    constant => ColumnDefault::Available(sql::DefaultValue::new(sql::DefaultKind::Value(
                        constant_expression_to_sql_default(constant, scalar_type),
                    ))),
                }
            }
        };
        match column_default {
            ColumnDefault::Available(df) => {
                ColumnDefault::Available(df.with_constraint_name(ctx.flavour.default_constraint_name(v)))
            }
            other => other,
        }
    });

    let default_is_prisma_level = matches!(default, Some(ColumnDefault::PrismaGenerated));

    if let Some(ColumnDefault::Available(d)) = default {
        let column_id = ctx.schema.describer_schema.next_table_column_id();
        ctx.schema.describer_schema.push_table_default_value(column_id, d);
    }

    let column = sql::Column {
        name: field.database_name().to_owned(),
        tpe: sql::ColumnType {
            family,
            full_data_type: String::new(),
            arity: column_arity(field.ast_field().arity),
            native_type,
        },
        auto_increment: field.is_autoincrement() || ctx.flavour.field_is_implicit_autoincrement_primary_key(field),
        description: None,
    };

    let column_id = ctx.schema.describer_schema.push_table_column(table_id, column);

    if default_is_prisma_level {
        ctx.schema.prisma_level_defaults.push(column_id);
    }
}

fn constant_expression_to_sql_default(expr: &ast::Expression, scalar_type: ScalarType) -> PrismaValue {
    match expr {
        ast::Expression::NumericValue(val, _) => match scalar_type {
            ScalarType::Int => PrismaValue::Int(val.parse().unwrap()),
            ScalarType::BigInt => PrismaValue::BigInt(val.parse().unwrap()),
            ScalarType::Float | ScalarType::Decimal => PrismaValue::Float(val.parse().unwrap()),
            other => unreachable!("{:?}", other),
        },
        ast::Expression::StringValue(val, _) => match scalar_type {
            ScalarType::String => PrismaValue::String(val.clone()),
            ScalarType::DateTime => PrismaValue::DateTime(val.parse().unwrap()),
            ScalarType::Json => PrismaValue::Json(val.parse().unwrap()),
            ScalarType::Bytes => PrismaValue::Bytes(PrismaValue::decode_bytes(val).unwrap()),
            ScalarType::Decimal => PrismaValue::Float(val.parse().unwrap()),
            other => unreachable!("{:?}", other),
        },

        ast::Expression::Array(items, _) => {
            let mut values: Vec<PrismaValue> = Vec::with_capacity(items.len());

            for item in items {
                values.push(constant_expression_to_sql_default(item, scalar_type));
            }

            PrismaValue::List(values)
        }

        // The only case where we have constant defaults in scalars is booleans.
        ast::Expression::ConstantValue(val, _) => PrismaValue::Boolean(val.parse().unwrap()),

        // Handled before this function is called.
        ast::Expression::Function(_, _, _) => unreachable!(),
    }
}

fn column_arity(arity: ast::FieldArity) -> sql::ColumnArity {
    match &arity {
        ast::FieldArity::Required => sql::ColumnArity::Required,
        ast::FieldArity::List => sql::ColumnArity::List,
        ast::FieldArity::Optional => sql::ColumnArity::Nullable,
    }
}

pub(crate) struct Context<'a> {
    datamodel: &'a ValidatedSchema,
    schema: &'a mut SqlDatabaseSchema,
    flavour: &'a dyn SqlFlavour,
    schemas: HashMap<&'a str, sql::NamespaceId>,
    model_id_to_table_id: HashMap<ast::ModelId, sql::TableId>,
    enum_ids: HashMap<ast::EnumId, sql::EnumId>,
}

impl Context<'_> {
    fn walk<I>(&self, id: I) -> sql::Walker<'_, I> {
        self.schema.walk(id)
    }
}

fn convert_referential_action(action: ReferentialAction) -> sql::ForeignKeyAction {
    match action {
        ReferentialAction::Cascade => sql::ForeignKeyAction::Cascade,
        ReferentialAction::Restrict => sql::ForeignKeyAction::Restrict,
        ReferentialAction::NoAction => sql::ForeignKeyAction::NoAction,
        ReferentialAction::SetNull => sql::ForeignKeyAction::SetNull,
        ReferentialAction::SetDefault => sql::ForeignKeyAction::SetDefault,
    }
}

/// Unwraps the value from dbgenerated() or dbgenerated("something")
fn unwrap_dbgenerated(expr: &ast::Expression) -> Option<String> {
    expr.as_function()
        .unwrap()
        .1
        .arguments
        .first()
        .map(|arg| arg.value.as_string_value().unwrap().0.to_owned())
}