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
use crate::datamodel_connector::{walker_ext_traits::*, ConstraintScope};
use parser_database::ast;
use std::{borrow::Cow, collections::HashMap, ops::Deref};

/// A constraint namespace consists of two kinds of namespaces:
///
/// - Global ones can be triggering validation errors between different models.
/// - Local ones are only valid in the given model.
#[derive(Debug, Default)]
pub(crate) struct ConstraintNamespace<'db> {
    // (ConstraintScope, schema name, name) -> occurrences
    global: HashMap<(ConstraintScope, Option<&'db str>, Cow<'db, str>), usize>,
    local: HashMap<(ast::ModelId, ConstraintScope, Cow<'db, str>), usize>,
    local_custom_name: HashMap<(ast::ModelId, Cow<'db, str>), usize>,
}

impl<'db> ConstraintNamespace<'db> {
    /// An iterator of namespace violations with the given name, first globally followed up with
    /// local violations in the given model.
    pub(crate) fn constraint_name_scope_violations(
        &self,
        model_id: ast::ModelId,
        name: ConstraintName<'db>,
        ctx: &super::Context<'db>,
    ) -> impl Iterator<Item = &'db ConstraintScope> + '_ {
        let schema_name = ctx.db.walk(model_id).schema_name();
        self.global_constraint_name_scope_violations(schema_name, name)
            .chain(self.local_constraint_name_scope_violations(model_id, name))
    }

    fn global_constraint_name_scope_violations(
        &self,
        schema_name: Option<&'db str>,
        name: ConstraintName<'db>,
    ) -> impl Iterator<Item = &'db ConstraintScope> + '_ {
        name.possible_scopes().filter(move |scope| {
            match self.global.get(&(**scope, schema_name, Cow::from(name.as_ref()))) {
                Some(count) => *count > 1,
                None => false,
            }
        })
    }

    fn local_constraint_name_scope_violations(
        &self,
        model_id: ast::ModelId,
        name: ConstraintName<'db>,
    ) -> impl Iterator<Item = &'db ConstraintScope> + '_ {
        name.possible_scopes().filter(move |scope| {
            match self.local.get(&(model_id, **scope, Cow::from(name.as_ref()))) {
                Some(count) => *count > 1,
                None => false,
            }
        })
    }

    pub(crate) fn local_custom_name_scope_violations(&self, model_id: ast::ModelId, name: &'db str) -> bool {
        match self.local_custom_name.get(&(model_id, Cow::from(name))) {
            Some(count) => *count > 1,
            None => false,
        }
    }

    /// Add all index and unique constraints from the data model to a global validation scope.
    pub(super) fn add_global_indexes(&mut self, scope: ConstraintScope, ctx: &super::Context<'db>) {
        for index in ctx
            .db
            .walk_models()
            .chain(ctx.db.walk_views())
            .flat_map(|m| m.indexes())
        {
            let counter = self
                .global
                .entry((scope, index.model().schema_name(), index.constraint_name(ctx.connector)))
                .or_default();
            *counter += 1;
        }
    }

    /// Add all foreign key constraints from the data model to a global validation scope.
    pub(super) fn add_global_relations(&mut self, scope: ConstraintScope, ctx: &super::Context<'db>) {
        for relation in ctx.db.walk_relations().filter_map(|r| r.refine().as_inline()) {
            let name = relation.constraint_name(ctx.connector);
            let schema = relation.referencing_model().schema_name();
            let counter = self.global.entry((scope, schema, name)).or_default();
            *counter += 1;
        }
    }

    /// Add all primary key constraints from the data model to a global validation scope.
    pub(super) fn add_global_primary_keys(&mut self, scope: ConstraintScope, ctx: &super::Context<'db>) {
        for model in ctx.db.walk_models().chain(ctx.db.walk_views()) {
            if let Some(name) = model.primary_key().and_then(|k| k.constraint_name(ctx.connector)) {
                let schema_name = model.schema_name();
                let counter = self.global.entry((scope, schema_name, name)).or_default();
                *counter += 1;
            }
        }
    }

    /// Add all default constraints from the data model to a global validation scope.
    pub(super) fn add_global_default_constraints(&mut self, scope: ConstraintScope, ctx: &super::Context<'db>) {
        for field in ctx
            .db
            .walk_models()
            .chain(ctx.db.walk_views())
            .flat_map(|m| m.scalar_fields())
        {
            if let Some(name) = field.default_value().map(|d| d.constraint_name(ctx.connector)) {
                let name = match name {
                    Cow::Borrowed(bor) => Cow::Owned(bor.to_string()),
                    Cow::Owned(own) => Cow::Owned(own),
                };

                let counter = self
                    .global
                    .entry((scope, field.model().schema_name(), name))
                    .or_default();
                *counter += 1;
            }
        }
    }

    /// Add all index and unique constraints to separate namespaces per model.
    pub(super) fn add_local_indexes(&mut self, scope: ConstraintScope, ctx: &super::Context<'db>) {
        for model in ctx.db.walk_models().chain(ctx.db.walk_views()) {
            for index in model.indexes() {
                let counter = self
                    .local
                    .entry((model.model_id(), scope, index.constraint_name(ctx.connector)))
                    .or_default();

                *counter += 1;
            }
        }
    }

    /// Add all primary key constraints to separate namespaces per model.
    pub(super) fn add_local_primary_keys(&mut self, scope: ConstraintScope, ctx: &super::Context<'db>) {
        for model in ctx.db.walk_models().chain(ctx.db.walk_views()) {
            if let Some(name) = model.primary_key().and_then(|pk| pk.constraint_name(ctx.connector)) {
                let counter = self.local.entry((model.model_id(), scope, name)).or_default();
                *counter += 1;
            }
        }
    }

    /// Add all primary key and unique index custom names to separate namespaces per model.
    pub(super) fn add_local_custom_names_for_primary_keys_and_uniques(&mut self, ctx: &super::Context<'db>) {
        for model in ctx.db.walk_models().chain(ctx.db.walk_views()) {
            if let Some(name) = model.primary_key().and_then(|pk| pk.name()) {
                let counter = self
                    .local_custom_name
                    .entry((model.model_id(), Cow::from(name)))
                    .or_default();
                *counter += 1;
            }
            for index in model.indexes() {
                if let Some(name) = index.name() {
                    let counter = self
                        .local_custom_name
                        .entry((model.model_id(), Cow::from(name)))
                        .or_default();
                    *counter += 1;
                }
            }
        }
    }

    /// Add all foreign key constraints to separate namespaces per model.
    pub(super) fn add_local_relations(&mut self, scope: ConstraintScope, ctx: &super::Context<'db>) {
        for model in ctx.db.walk_models() {
            for name in model
                .relations_from()
                .filter_map(|r| r.refine().as_inline())
                .map(|r| r.constraint_name(ctx.connector))
            {
                let counter = self.local.entry((model.model_id(), scope, name)).or_default();

                *counter += 1;
            }
        }
    }
}

/// A constraint name marked by the constraint type it belongs. The variant decides on which
/// validation scopes it will be checked on.
#[derive(Clone, Copy, Debug)]
pub(crate) enum ConstraintName<'db> {
    Index(&'db str),
    Relation(&'db str),
    Default(&'db str),
    PrimaryKey(&'db str),
}

impl<'db> ConstraintName<'db> {
    /// An iterator of scopes the given name should be checked against.
    fn possible_scopes(self) -> impl Iterator<Item = &'db ConstraintScope> {
        use ConstraintScope::*;

        match self {
            ConstraintName::Index(_) => [
                GlobalKeyIndex,
                GlobalPrimaryKeyKeyIndex,
                ModelKeyIndex,
                ModelPrimaryKeyKeyIndex,
            ]
            .iter(),
            ConstraintName::Relation(_) => [
                GlobalForeignKey,
                GlobalPrimaryKeyForeignKeyDefault,
                ModelPrimaryKeyKeyIndexForeignKey,
            ]
            .iter(),
            ConstraintName::Default(_) => [GlobalPrimaryKeyForeignKeyDefault].iter(),
            ConstraintName::PrimaryKey(_) => [
                GlobalPrimaryKeyForeignKeyDefault,
                GlobalPrimaryKeyKeyIndex,
                ModelPrimaryKeyKeyIndex,
                ModelPrimaryKeyKeyIndexForeignKey,
            ]
            .iter(),
        }
    }
}

impl<'db> AsRef<str> for ConstraintName<'db> {
    fn as_ref(&self) -> &str {
        match self {
            ConstraintName::Index(x) => x,
            ConstraintName::Relation(x) => x,
            ConstraintName::Default(x) => x,
            ConstraintName::PrimaryKey(x) => x,
        }
    }
}

impl<'db> Deref for ConstraintName<'db> {
    type Target = str;

    fn deref(&self) -> &Self::Target {
        self.as_ref()
    }
}