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
//! Matching PSL and database schema information together.

mod relation_names;

use crate::introspection::{
    datamodel_calculator::DatamodelCalculatorContext, introspection_helpers as helpers,
    introspection_pair::RelationFieldDirection, sanitize_datamodel_names,
};
use psl::{
    parser_database::{self, ast, ScalarFieldId},
    PreviewFeature,
};
use relation_names::RelationNames;
use sql_schema_describer as sql;
use std::{
    borrow::Cow,
    collections::{HashMap, HashSet},
};

pub(crate) use relation_names::RelationName;

/// This container is responsible for matching schema items (enums, models and tables, columns and
/// fields, foreign keys and relations...) between a SQL catalog from a database and a Prisma
/// schema.
#[derive(Default)]
pub(crate) struct IntrospectionMap<'a> {
    pub(crate) existing_enums: HashMap<sql::EnumId, ast::EnumId>,
    pub(crate) existing_models: HashMap<sql::TableId, ast::ModelId>,
    pub(crate) existing_views: HashMap<sql::ViewId, ast::ModelId>,
    pub(crate) missing_tables_for_previous_models: HashSet<ast::ModelId>,
    pub(crate) missing_views_for_previous_models: HashSet<ast::ModelId>,
    pub(crate) existing_model_scalar_fields: HashMap<sql::TableColumnId, ScalarFieldId>,
    pub(crate) existing_view_scalar_fields: HashMap<sql::ViewColumnId, ScalarFieldId>,
    pub(crate) existing_inline_relations: HashMap<sql::ForeignKeyId, parser_database::RelationId>,
    pub(crate) existing_m2m_relations: HashMap<sql::TableId, parser_database::ManyToManyRelationId>,
    pub(crate) relation_names: RelationNames<'a>,
    pub(crate) inline_relation_positions: Vec<(sql::TableId, sql::ForeignKeyId, RelationFieldDirection)>,
    pub(crate) m2m_relation_positions: Vec<(sql::TableId, sql::ForeignKeyId, RelationFieldDirection)>,
    pub(crate) top_level_names: HashMap<Cow<'a, str>, usize>,
}

impl<'a> IntrospectionMap<'a> {
    pub(crate) fn new(ctx: &DatamodelCalculatorContext<'a>) -> Self {
        let sql_schema = ctx.sql_schema;
        let prisma_schema = ctx.previous_schema;
        let mut map = Default::default();

        match_existing_models(sql_schema, prisma_schema, &mut map);
        match_existing_views(sql_schema, prisma_schema, &mut map);
        match_enums(sql_schema, prisma_schema, &mut map);
        match_existing_scalar_fields(sql_schema, prisma_schema, &mut map);
        match_existing_inline_relations(sql_schema, prisma_schema, &mut map);
        match_existing_m2m_relations(sql_schema, prisma_schema, &mut map);
        relation_names::introspect(ctx, &mut map);
        position_inline_relation_fields(sql_schema, &mut map);
        position_m2m_relation_fields(sql_schema, &mut map);
        populate_top_level_names(sql_schema, prisma_schema, &mut map);

        map
    }
}

fn populate_top_level_names<'a>(
    sql_schema: &'a sql::SqlSchema,
    prisma_schema: &'a psl::ValidatedSchema,
    map: &mut IntrospectionMap<'a>,
) {
    for table in sql_schema
        .table_walkers()
        .filter(|t| !helpers::is_prisma_m_to_n_relation(*t))
    {
        let name = map
            .existing_models
            .get(&table.id)
            .map(|id| prisma_schema.db.walk(*id))
            .map(|m| Cow::Borrowed(m.name()))
            .unwrap_or_else(|| sanitize_datamodel_names::sanitize_string(table.name()));

        let count = map.top_level_names.entry(name).or_default();
        *count += 1;
    }

    for r#enum in sql_schema.enum_walkers() {
        let name = map
            .existing_enums
            .get(&r#enum.id)
            .map(|id| prisma_schema.db.walk(*id))
            .map(|m| Cow::Borrowed(m.name()))
            .unwrap_or_else(|| sanitize_datamodel_names::sanitize_string(r#enum.name()));

        let count = map.top_level_names.entry(name).or_default();
        *count += 1;
    }

    // we do not want dupe warnings for models clashing with views,
    // if not using the preview.
    if prisma_schema
        .configuration
        .preview_features()
        .contains(PreviewFeature::Views)
    {
        for view in sql_schema.view_walkers() {
            let name = map
                .existing_views
                .get(&view.id)
                .map(|id| prisma_schema.db.walk(*id))
                .map(|m| Cow::Borrowed(m.name()))
                .unwrap_or_else(|| sanitize_datamodel_names::sanitize_string(view.name()));

            let count = map.top_level_names.entry(name).or_default();
            *count += 1;
        }
    }
}

/// Inlined relation fields (foreign key is defined in a model) are
/// sorted in a specific way. We handle the sorting here.
fn position_inline_relation_fields(sql_schema: &sql::SqlSchema, map: &mut IntrospectionMap<'_>) {
    for table in sql_schema
        .table_walkers()
        .filter(|t| !helpers::is_prisma_m_to_n_relation(*t))
    {
        for fk in table.foreign_keys() {
            map.inline_relation_positions
                .push((fk.table().id, fk.id, RelationFieldDirection::Forward));

            map.inline_relation_positions
                .push((fk.referenced_table().id, fk.id, RelationFieldDirection::Back));
        }
    }
}

/// Many to many relation fields (foreign keys are defined in a hidden
/// join table) are sorted in a specific way. We handle the sorting
/// here.
fn position_m2m_relation_fields(sql_schema: &sql::SqlSchema, map: &mut IntrospectionMap<'_>) {
    for table in sql_schema
        .table_walkers()
        .filter(|t| helpers::is_prisma_m_to_n_relation(*t))
    {
        let mut fks = table.foreign_keys();

        if let (Some(first_fk), Some(second_fk)) = (fks.next(), fks.next()) {
            let (fk_a, fk_b) = if first_fk
                .constrained_columns()
                .next()
                .map(|c| c.name().eq_ignore_ascii_case("a"))
                .unwrap_or(false)
            {
                (first_fk, second_fk)
            } else {
                (second_fk, first_fk)
            };

            map.m2m_relation_positions
                .push((fk_a.referenced_table().id, fk_b.id, RelationFieldDirection::Forward));

            map.m2m_relation_positions
                .push((fk_b.referenced_table().id, fk_a.id, RelationFieldDirection::Back));
        }
    }
}

/// Finding enums from the existing PSL definition, matching the
/// ones found in the database.
fn match_enums(sql_schema: &sql::SqlSchema, prisma_schema: &psl::ValidatedSchema, map: &mut IntrospectionMap<'_>) {
    map.existing_enums = if prisma_schema.connector.is_provider("mysql") {
        sql_schema
            .walk_table_columns()
            .filter_map(|col| col.column_type_family_as_enum().map(|enm| (col, enm)))
            .filter_map(|(col, sql_enum)| {
                prisma_schema
                    .db
                    .walk_models()
                    .find(|model| model.database_name() == col.table().name())
                    .and_then(|model| model.scalar_fields().find(|sf| sf.database_name() == col.name()))
                    .and_then(|scalar_field| scalar_field.field_type_as_enum())
                    .map(|ast_enum| (sql_enum.id, ast_enum.id))
            })
            // Make sure the values are the same, otherwise we're not _really_ dealing with the same
            // enum.
            .filter(|(sql_enum_id, ast_enum_id)| {
                let sql_values = sql_schema.walk(*sql_enum_id).values();
                let prisma_values = prisma_schema.db.walk(*ast_enum_id).values();
                prisma_values.len() == sql_values.len()
                    && prisma_values.zip(sql_values).all(|(a, b)| a.database_name() == b)
            })
            .collect()
    } else {
        prisma_schema
            .db
            .walk_enums()
            .filter_map(|prisma_enum| {
                sql_schema
                    .find_enum(prisma_enum.database_name(), prisma_enum.schema().map(|s| s.0))
                    .map(|sql_id| (sql_id, prisma_enum.id))
            })
            .collect()
    }
}

/// Finding models from the existing PSL definition, matching the
/// ones found in the database.
fn match_existing_models(
    schema: &sql::SqlSchema,
    prisma_schema: &psl::ValidatedSchema,
    map: &mut IntrospectionMap<'_>,
) {
    for model in prisma_schema.db.walk_models() {
        match schema.find_table(model.database_name(), model.schema_name()) {
            Some(sql_id) => {
                map.existing_models.insert(sql_id, model.id);
            }

            None => {
                map.missing_tables_for_previous_models.insert(model.id);
            }
        }
    }
}

/// Finding views from the existing PSL definition, matching the
/// ones found in the database.
fn match_existing_views(
    sql_schema: &sql::SqlSchema,
    prisma_schema: &psl::ValidatedSchema,
    map: &mut IntrospectionMap<'_>,
) {
    for view in prisma_schema.db.walk_views() {
        match sql_schema.find_view(view.database_name(), view.schema_name()) {
            Some(sql_id) => {
                map.existing_views.insert(sql_id, view.id);
            }

            None => {
                map.missing_views_for_previous_models.insert(view.id);
            }
        }
    }
}

/// Finding scalar fields from the existing PSL definition, matching
/// the ones found in the database.
fn match_existing_scalar_fields(
    sql_schema: &sql::SqlSchema,
    prisma_schema: &psl::ValidatedSchema,
    map: &mut IntrospectionMap<'_>,
) {
    for col in sql_schema.walk_table_columns() {
        let field = map.existing_models.get(&col.table().id).and_then(|model_id| {
            prisma_schema
                .db
                .walk(*model_id)
                .scalar_fields()
                .find(|field| field.database_name() == col.name())
        });

        if let Some(field) = field {
            map.existing_model_scalar_fields.insert(col.id, field.id);
        }
    }

    for col in sql_schema.walk_view_columns() {
        let field = map.existing_views.get(&col.view().id).and_then(|view_id| {
            prisma_schema
                .db
                .walk(*view_id)
                .scalar_fields()
                .find(|field| field.database_name() == col.name())
        });

        if let Some(field) = field {
            map.existing_view_scalar_fields.insert(col.id, field.id);
        }
    }
}

/// Finding inlined relations from the existing PSL definition,
/// matching the ones found in the database.
fn match_existing_inline_relations<'a>(
    sql_schema: &'a sql::SqlSchema,
    prisma_schema: &'a psl::ValidatedSchema,
    map: &mut IntrospectionMap<'_>,
) {
    map.existing_inline_relations = sql_schema
        .walk_foreign_keys()
        .filter_map(|fk| {
            let referencing_model = *map.existing_models.get(&fk.table().id)?;
            prisma_schema
                .db
                .walk(referencing_model)
                .relations_from()
                .filter_map(|rel| rel.refine().as_inline())
                .find(|relation| {
                    let referencing_fields = if let Some(fields) = relation.referencing_fields() {
                        fields
                    } else {
                        return false;
                    };
                    let referencing_columns = fk.constrained_columns();
                    referencing_fields.len() == referencing_columns.len()
                        && referencing_fields
                            .zip(referencing_columns)
                            .all(|(field, col)| field.database_name() == col.name())
                })
                .map(|relation| (fk.id, relation.relation_id()))
        })
        .collect()
}

/// Finding many to many relations from the existing PSL definition,
/// matching the ones found in the database.
fn match_existing_m2m_relations(
    sql_schema: &sql::SqlSchema,
    prisma_schema: &psl::ValidatedSchema,
    map: &mut IntrospectionMap<'_>,
) {
    map.existing_m2m_relations = sql_schema
        .table_walkers()
        .filter(|t| helpers::is_prisma_m_to_n_relation(*t))
        .filter_map(|table| {
            prisma_schema
                .db
                .walk_relations()
                .filter_map(|rel| rel.refine().as_many_to_many())
                .find(|rel| rel.relation_name().to_string() == table.name()[1..])
                .map(|rel| (table.id, rel.id))
        })
        .collect()
}