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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
mod default;
mod id;
mod map;
mod native_types;
mod schema;

use crate::{
    ast::{self, WithName, WithSpan},
    coerce, coerce_array,
    context::Context,
    types::{
        CompositeTypeField, EnumAttributes, FieldWithArgs, IndexAlgorithm, IndexAttribute, IndexFieldPath, IndexType,
        ModelAttributes, OperatorClassStore, RelationField, ScalarField, ScalarFieldType, SortOrder,
    },
    walkers::RelationFieldId,
    DatamodelError, ScalarFieldId, StringId,
};
use diagnostics::Span;
use std::borrow::Cow;

pub(super) fn resolve_attributes(ctx: &mut Context<'_>) {
    for rfid in ctx.types.iter_relation_field_ids() {
        visit_relation_field_attributes(rfid, ctx);
    }

    for top in ctx.ast.iter_tops() {
        match top {
            (ast::TopId::Model(model_id), ast::Top::Model(_)) => resolve_model_attributes(model_id, ctx),
            (ast::TopId::Enum(enum_id), ast::Top::Enum(ast_enum)) => resolve_enum_attributes(enum_id, ast_enum, ctx),
            (ast::TopId::CompositeType(ctid), ast::Top::CompositeType(ct)) => {
                resolve_composite_type_attributes(ctid, ct, ctx)
            }
            _ => (),
        }
    }
}

fn resolve_composite_type_attributes<'db>(
    ctid: ast::CompositeTypeId,
    ct: &'db ast::CompositeType,
    ctx: &mut Context<'db>,
) {
    for (field_id, field) in ct.iter_fields() {
        let CompositeTypeField { r#type, .. } = ctx.types.composite_type_fields[&(ctid, field_id)];

        ctx.visit_attributes((ctid, field_id).into());

        if let ScalarFieldType::BuiltInScalar(_scalar_type) = r#type {
            // native type attributes
            if let Some((datasource_name, type_name, args)) = ctx.visit_datasource_scoped() {
                native_types::visit_composite_type_field_native_type_attribute(
                    (ctid, field_id),
                    datasource_name,
                    type_name,
                    &ctx.ast[args],
                    ctx,
                )
            }
        }

        // @map
        if ctx.visit_optional_single_attr("map") {
            map::composite_type_field(ct, field, ctid, field_id, ctx);
            ctx.validate_visited_arguments();
        }

        // @default
        if ctx.visit_optional_single_attr("default") {
            default::visit_composite_field_default(ctid, field_id, r#type, ctx);
            ctx.validate_visited_arguments();
        }

        ctx.validate_visited_attributes();
    }
}

fn resolve_enum_attributes<'db>(enum_id: ast::EnumId, ast_enum: &'db ast::Enum, ctx: &mut Context<'db>) {
    let mut enum_attributes = EnumAttributes::default();

    for value_idx in 0..ast_enum.values.len() {
        ctx.visit_attributes((enum_id, value_idx as u32).into());
        // @map
        if ctx.visit_optional_single_attr("map") {
            if let Some(mapped_name) = map::visit_map_attribute(ctx) {
                enum_attributes.mapped_values.insert(value_idx as u32, mapped_name);
                ctx.mapped_enum_value_names
                    .insert((enum_id, mapped_name), value_idx as u32);
            }
            ctx.validate_visited_arguments();
        }
        ctx.validate_visited_attributes();
    }

    // Now validate the enum attributes.

    ctx.visit_attributes(enum_id.into());

    // @@map
    if ctx.visit_optional_single_attr("map") {
        if let Some(mapped_name) = map::visit_map_attribute(ctx) {
            enum_attributes.mapped_name = Some(mapped_name);
            ctx.mapped_enum_names.insert(mapped_name, enum_id);
        }
        ctx.validate_visited_arguments();
    }

    // @@schema
    if ctx.visit_optional_single_attr("schema") {
        schema::r#enum(&mut enum_attributes, ctx);
        ctx.validate_visited_arguments();
    }

    ctx.types.enum_attributes.insert(enum_id, enum_attributes);
    ctx.validate_visited_attributes();
}

fn resolve_model_attributes(model_id: ast::ModelId, ctx: &mut Context<'_>) {
    let mut model_attributes = ModelAttributes::default();

    // First resolve all the attributes defined on fields **in isolation**.
    for sfid in ctx.types.range_model_scalar_field_ids(model_id) {
        visit_scalar_field_attributes(sfid, &mut model_attributes, ctx);
    }

    // Resolve all the attributes defined on the model itself **in isolation**.
    ctx.visit_attributes(model_id.into());

    // @@ignore
    if ctx.visit_optional_single_attr("ignore") {
        visit_model_ignore(model_id, &mut model_attributes, ctx);
        ctx.validate_visited_arguments();
    }

    // @@id
    if ctx.visit_optional_single_attr("id") {
        id::model(&mut model_attributes, model_id, ctx);
        ctx.validate_visited_arguments();
    }

    // @@map
    if ctx.visit_optional_single_attr("map") {
        map::model(&mut model_attributes, ctx);
        ctx.validate_visited_arguments();
    }

    // @@schema
    if ctx.visit_optional_single_attr("schema") {
        schema::model(&mut model_attributes, ctx);
        ctx.validate_visited_arguments();
    }

    // @@index
    while ctx.visit_repeated_attr("index") {
        model_index(&mut model_attributes, model_id, ctx);
        ctx.validate_visited_arguments();
    }

    // @@unique
    while ctx.visit_repeated_attr("unique") {
        model_unique(&mut model_attributes, model_id, ctx);
        ctx.validate_visited_arguments();
    }

    // @@fulltext
    while ctx.visit_repeated_attr("fulltext") {
        model_fulltext(&mut model_attributes, model_id, ctx);
        ctx.validate_visited_arguments();
    }

    // Model-global validations
    id::validate_id_field_arities(model_id, &model_attributes, ctx);

    ctx.types.model_attributes.insert(model_id, model_attributes);
    ctx.validate_visited_attributes();
}

fn visit_scalar_field_attributes(
    scalar_field_id: ScalarFieldId,
    model_data: &mut ModelAttributes,
    ctx: &mut Context<'_>,
) {
    let ScalarField {
        model_id,
        field_id,
        r#type,
        ..
    } = ctx.types[scalar_field_id];
    let ast_model = &ctx.ast[model_id];
    let ast_field = &ast_model[field_id];
    ctx.visit_scalar_field_attributes(model_id, field_id);

    // @map
    if ctx.visit_optional_single_attr("map") {
        map::scalar_field(scalar_field_id, ast_model, ast_field, model_id, field_id, ctx);
        ctx.validate_visited_arguments();
    }

    // @ignore
    if ctx.visit_optional_single_attr("ignore") {
        if matches!(r#type, ScalarFieldType::Unsupported(_)) {
            ctx.push_attribute_validation_error("Fields of type `Unsupported` cannot take an `@ignore` attribute. They are already treated as ignored by the client due to their type.");
        } else {
            ctx.types[scalar_field_id].is_ignored = true;
        }
        ctx.validate_visited_arguments();
    }

    // @relation
    if ctx.visit_optional_single_attr("relation") {
        ctx.push_attribute_validation_error("Invalid field type, not a relation.");
        ctx.validate_visited_arguments();
    }

    // @id
    if ctx.visit_optional_single_attr("id") {
        id::field(ast_model, scalar_field_id, field_id, model_data, ctx);
        ctx.validate_visited_arguments();
    }

    // @updatedAt
    if ctx.visit_optional_single_attr("updatedAt") {
        if !matches!(r#type, ScalarFieldType::BuiltInScalar(crate::ScalarType::DateTime)) {
            ctx.push_attribute_validation_error("Fields that are marked with @updatedAt must be of type DateTime.");
        }

        if ast_field.arity.is_list() {
            ctx.push_attribute_validation_error("Fields that are marked with @updatedAt cannot be lists.");
        }

        ctx.types[scalar_field_id].is_updated_at = true;
        ctx.validate_visited_arguments();
    }

    // @default
    if ctx.visit_optional_single_attr("default") {
        default::visit_model_field_default(scalar_field_id, model_id, field_id, r#type, ctx);
        ctx.validate_visited_arguments();
    }

    if let ScalarFieldType::BuiltInScalar(_scalar_type) = r#type {
        // native type attributes
        if let Some((datasource_name, type_name, attribute_id)) = ctx.visit_datasource_scoped() {
            let attribute = &ctx.ast[attribute_id];
            native_types::visit_model_field_native_type_attribute(
                scalar_field_id,
                datasource_name,
                type_name,
                attribute,
                ctx,
            );
        }
    }

    // @unique
    if ctx.visit_optional_single_attr("unique") {
        visit_field_unique(scalar_field_id, model_data, ctx);
        ctx.validate_visited_arguments();
    }

    ctx.validate_visited_attributes();
}

fn visit_field_unique(scalar_field_id: ScalarFieldId, model_data: &mut ModelAttributes, ctx: &mut Context<'_>) {
    let mapped_name = match ctx
        .visit_optional_arg("map")
        .and_then(|arg| coerce::string(arg, ctx.diagnostics))
    {
        Some("") => {
            ctx.push_attribute_validation_error("The `map` argument cannot be an empty string.");
            None
        }
        Some(name) => Some(ctx.interner.intern(name)),
        None => None,
    };

    let length = ctx
        .visit_optional_arg("length")
        .and_then(|length| coerce::integer(length, ctx.diagnostics))
        .map(|len| len as u32);

    let sort_order = match ctx
        .visit_optional_arg("sort")
        .and_then(|sort| coerce::constant(sort, ctx.diagnostics))
    {
        Some("Desc") => Some(SortOrder::Desc),
        Some("Asc") => Some(SortOrder::Asc),
        Some(other) => {
            ctx.push_attribute_validation_error(&format!(
                "The `sort` argument can only be `Asc` or `Desc` you provided: {other}."
            ));
            None
        }
        None => None,
    };

    let clustered = validate_clustering_setting(ctx);

    let attribute_id = ctx.current_attribute_id();
    model_data.ast_indexes.push((
        attribute_id,
        IndexAttribute {
            r#type: IndexType::Unique,
            fields: vec![FieldWithArgs {
                path: IndexFieldPath::new(scalar_field_id),
                sort_order,
                length,
                operator_class: None,
            }],
            source_field: Some(scalar_field_id),
            mapped_name,
            clustered,
            ..Default::default()
        },
    ))
}

fn visit_relation_field_attributes(rfid: RelationFieldId, ctx: &mut Context<'_>) {
    let RelationField { model_id, field_id, .. } = ctx.types[rfid];
    let ast_field = &ctx.ast[model_id][field_id];
    ctx.visit_attributes((model_id, field_id).into());

    // @relation
    // Relation attributes are not required at this stage.
    if ctx.visit_optional_single_attr("relation") {
        visit_relation(model_id, rfid, ctx);
        ctx.validate_visited_arguments();
    }

    // @id
    if ctx.visit_optional_single_attr("id") {
        let msg = format!(
            "The field `{}` is a relation field and cannot be marked with `@id`. Only scalar fields can be declared as id.",
            &ast_field.name(),
        );
        ctx.push_attribute_validation_error(&msg);
        ctx.discard_arguments();
    }

    // @ignore
    if ctx.visit_optional_single_attr("ignore") {
        ctx.types[rfid].is_ignored = true;
        ctx.validate_visited_arguments();
    }

    // @default
    if ctx.visit_optional_single_attr("default") {
        ctx.push_attribute_validation_error("Cannot set a default value on a relation field.");
        ctx.discard_arguments();
    }

    // @map
    if ctx.visit_optional_single_attr("map") {
        ctx.push_attribute_validation_error("The attribute `@map` cannot be used on relation fields.");

        if let Err(err) = ctx.visit_default_arg("name") {
            ctx.push_error(err)
        }
        ctx.discard_arguments();
    }

    // @unique
    if ctx.visit_optional_single_attr("unique") {
        let mut suggested_fields = Vec::new();

        for underlying_field in ctx.types[rfid].fields.iter().flatten() {
            let ScalarField { model_id, field_id, .. } = ctx.types[*underlying_field];
            suggested_fields.push(ctx.ast[model_id][field_id].name());
        }

        let suggestion = match suggested_fields.len() {
            0 => String::new(),
            1 => format!(" Did you mean to put it on `{field}`?", field = suggested_fields[0],),
            _ => {
                format!(
                    " Did you mean to provide `@@unique([{fields}])`?",
                    fields = suggested_fields.join(", "),
                )
            }
        };

        ctx.push_attribute_validation_error(
            &format!(
                "The field `{relation_field_name}` is a relation field and cannot be marked with `unique`. Only scalar fields can be made unique.{suggestion}",
                relation_field_name = ast_field.name(),
                suggestion = suggestion
            )
        );
        ctx.discard_arguments();
    }

    ctx.validate_visited_attributes();
}

fn visit_model_ignore(model_id: ast::ModelId, model_data: &mut ModelAttributes, ctx: &mut Context<'_>) {
    let ignored_field_errors: Vec<_> = ctx
        .types
        .range_model_scalar_fields(model_id)
        .filter(|(_, sf)| sf.is_ignored)
        .map(|(_, sf)| {
            DatamodelError::new_attribute_validation_error(
                "Fields on an already ignored Model do not need an `@ignore` annotation.",
                "@ignore",
                ctx.ast[sf.model_id][sf.field_id].span(),
            )
        })
        .collect();

    for error in ignored_field_errors {
        ctx.push_error(error)
    }

    model_data.is_ignored = true;
}

/// Validate @@fulltext on models
fn model_fulltext(data: &mut ModelAttributes, model_id: ast::ModelId, ctx: &mut Context<'_>) {
    let mut index_attribute = IndexAttribute {
        r#type: IndexType::Fulltext,
        ..Default::default()
    };

    common_index_validations(
        &mut index_attribute,
        model_id,
        FieldResolvingSetup::FollowComposites,
        ctx,
    );

    let mapped_name = match ctx
        .visit_optional_arg("map")
        .and_then(|name| coerce::string(name, ctx.diagnostics))
    {
        Some("") => {
            ctx.push_attribute_validation_error("The `map` argument cannot be an empty string.");
            None
        }
        Some(name) => Some(ctx.interner.intern(name)),
        None => None,
    };

    index_attribute.mapped_name = mapped_name;

    data.ast_indexes.push((ctx.current_attribute_id(), index_attribute));
}

/// Validate @@index on models.
fn model_index(data: &mut ModelAttributes, model_id: ast::ModelId, ctx: &mut Context<'_>) {
    let mut index_attribute = IndexAttribute {
        r#type: IndexType::Normal,
        ..Default::default()
    };

    common_index_validations(
        &mut index_attribute,
        model_id,
        FieldResolvingSetup::FollowComposites,
        ctx,
    );

    let name = get_name_argument(ctx);

    let mapped_name = match ctx
        .visit_optional_arg("map")
        .and_then(|name| coerce::string(name, ctx.diagnostics))
    {
        Some("") => {
            ctx.push_attribute_validation_error("The `map` argument cannot be an empty string.");
            None
        }
        Some(name) => Some(ctx.interner.intern(name)),
        None => None,
    };

    // We do not want to break existing datamodels for client purposes that
    // use the old `@@index([field], name: "onlydbname")` This would
    // strictly speaking be invalid now since `name` in the index definition
    // translates to the client name (which non-unique indexes do not have)
    // and `map` translates to the db constraint name.
    //
    // To prevent existing datamodels from failing to parse after an upgrade
    // we will keep accepting the `name` property on @@index. If it is
    // present we will interpret it as the `map` property and populate it
    // accordingly. If the datamodel gets freshly rendered it will then be
    // rendered correctly as `map`. We will however error if both `map` and
    // `name` are being used.
    index_attribute.mapped_name = match (name, mapped_name) {
        (Some(_), Some(_)) => {
            ctx.push_attribute_validation_error("The `@@index` attribute accepts the `name` argument as an alias for the `map` argument for legacy reasons. It does not accept both though. Please use the `map` argument to specify the database name of the index.");
            None
        }
        // backwards compatibility, accept name arg on normal indexes and use it as map arg.
        (Some(name), None) => Some(name),
        (None, Some(map)) => Some(map),
        (None, None) => None,
    };

    let algo = match ctx
        .visit_optional_arg("type")
        .and_then(|sort| coerce::constant(sort, ctx.diagnostics))
    {
        Some("BTree") => Some(IndexAlgorithm::BTree),
        Some("Hash") => Some(IndexAlgorithm::Hash),
        Some("Gist") => Some(IndexAlgorithm::Gist),
        Some("Gin") => Some(IndexAlgorithm::Gin),
        Some("SpGist") => Some(IndexAlgorithm::SpGist),
        Some("Brin") => Some(IndexAlgorithm::Brin),
        Some(other) => {
            ctx.push_attribute_validation_error(&format!("Unknown index type: {other}."));
            None
        }
        None => None,
    };

    index_attribute.algorithm = algo;
    index_attribute.clustered = validate_clustering_setting(ctx);

    data.ast_indexes.push((ctx.current_attribute_id(), index_attribute));
}

/// Validate @@unique on models.
fn model_unique(data: &mut ModelAttributes, model_id: ast::ModelId, ctx: &mut Context<'_>) {
    let mut index_attribute = IndexAttribute {
        r#type: IndexType::Unique,
        ..Default::default()
    };

    common_index_validations(
        &mut index_attribute,
        model_id,
        FieldResolvingSetup::FollowComposites,
        ctx,
    );

    let current_attribute = ctx.current_attribute();
    let current_attribute_id = ctx.current_attribute_id();
    let ast_model = &ctx.ast[model_id];
    let name = get_name_argument(ctx);

    let mapped_name = {
        // We do not want to break existing datamodels for client purposes that
        // use the old `@@unique([field], name: "ClientANDdbname")` Since we
        // still parse the name argument and pass it to the client they will
        // keep working Migrate will however get a new generated db name for the
        // constraint in that case and try to change the underlying constraint
        // name
        //
        // We are fine with that since this is not automatically breaking but
        // rather prompts a migration upon the first run on migrate. The client
        // is unaffected by this.
        let mapped_name = match ctx
            .visit_optional_arg("map")
            .and_then(|name| coerce::string(name, ctx.diagnostics))
        {
            Some("") => {
                ctx.push_attribute_validation_error("The `map` argument cannot be an empty string.");
                None
            }
            Some(name) => Some(ctx.interner.intern(name)),
            None => None,
        };

        if let Some(name) = name {
            validate_client_name(current_attribute.span, ast_model.name(), name, "@@unique", ctx);
        }

        mapped_name
    };

    index_attribute.name = name;
    index_attribute.mapped_name = mapped_name;
    index_attribute.clustered = validate_clustering_setting(ctx);

    data.ast_indexes.push((current_attribute_id, index_attribute));
}

fn common_index_validations(
    index_data: &mut IndexAttribute,
    model_id: ast::ModelId,
    resolving: FieldResolvingSetup,
    ctx: &mut Context<'_>,
) {
    let current_attribute = ctx.current_attribute();
    let fields = match ctx.visit_default_arg("fields") {
        Ok(fields) => fields,
        Err(err) => {
            return ctx.push_error(err);
        }
    };

    match resolve_field_array_with_args(fields, current_attribute.span, model_id, resolving, ctx) {
        Ok(fields) => {
            index_data.fields = fields;
        }
        Err(FieldResolutionError::AlreadyDealtWith) => (),
        Err(FieldResolutionError::ProblematicFields {
            unknown_fields: unresolvable_fields,
            relation_fields,
        }) => {
            if !unresolvable_fields.is_empty() {
                let fields = unresolvable_fields
                    .iter()
                    .map(|(top_id, field_name)| match top_id {
                        ast::TopId::CompositeType(ctid) => {
                            let composite_type = &ctx.ast[*ctid].name();

                            Cow::from(format!("{field_name} in type {composite_type}"))
                        }
                        ast::TopId::Model(_) => Cow::from(*field_name),
                        _ => unreachable!(),
                    })
                    .collect::<Vec<_>>();

                ctx.push_error({
                    let message: &str = &format!(
                        "The {}index definition refers to the unknown fields: {}.",
                        if index_data.is_unique() { "unique " } else { "" },
                        fields.join(", "),
                    );
                    let model_name = ctx.ast[model_id].name();
                    DatamodelError::new_model_validation_error(message, "model", model_name, current_attribute.span)
                });
            }

            if !relation_fields.is_empty() {
                let mut suggested_fields = Vec::new();

                for (_, field_id) in &relation_fields {
                    let fields = ctx
                        .types
                        .range_model_relation_fields(model_id)
                        .find(|(_, rf)| rf.field_id == *field_id)
                        .unwrap()
                        .1
                        .fields
                        .iter()
                        .flatten();
                    for underlying_field in fields {
                        let ScalarField { model_id, field_id, .. } = ctx.types[*underlying_field];
                        suggested_fields.push(ctx.ast[model_id][field_id].name());
                    }
                }

                let suggestion = if !suggested_fields.is_empty() {
                    format!(
                        " Did you mean `@@{attribute_name}([{fields}])`?",
                        attribute_name = if index_data.is_unique() { "unique" } else { "index" },
                        fields = suggested_fields.join(", ")
                    )
                } else {
                    String::new()
                };

                ctx.push_error(DatamodelError::new_model_validation_error(
                    &format!(
                        "The {prefix}index definition refers to the relation fields {the_fields}. Index definitions must reference only scalar fields.{suggestion}",
                        prefix = if index_data.is_unique() { "unique " } else { "" },
                        the_fields = relation_fields.iter().map(|(f, _)| f.name()).collect::<Vec<_>>().join(", "),
                        suggestion = suggestion
                    ),
                    "model",
                    ctx.ast[model_id].name(),
                    current_attribute.span,
                ));
            }
        }
    }
}

/// @relation validation for relation fields.
fn visit_relation(model_id: ast::ModelId, relation_field_id: RelationFieldId, ctx: &mut Context<'_>) {
    let attr = ctx.current_attribute();
    ctx.types[relation_field_id].relation_attribute = Some(ctx.current_attribute_id());

    if let Some(fields) = ctx.visit_optional_arg("fields") {
        let fields = match resolve_field_array_without_args(fields, attr.span, model_id, ctx) {
            Ok(fields) => fields,
            Err(FieldResolutionError::AlreadyDealtWith) => Vec::new(),
            Err(FieldResolutionError::ProblematicFields {
                unknown_fields: unresolvable_fields,
                relation_fields,
            }) => {
                if !unresolvable_fields.is_empty() {
                    let unresolvable_fields = unresolvable_fields
                        .into_iter()
                        .map(|(_, field)| field)
                        .collect::<Vec<_>>()
                        .join(", ");

                    let msg = format!("The argument fields must refer only to existing fields. The following fields do not exist in this model: {unresolvable_fields}");

                    ctx.push_error(DatamodelError::new_validation_error(&msg, fields.span()))
                }

                if !relation_fields.is_empty() {
                    let relation_fields = relation_fields
                        .into_iter()
                        .map(|(f, _)| f.name())
                        .collect::<Vec<_>>()
                        .join(", ");

                    let msg = format!("The argument fields must refer only to scalar fields. But it is referencing the following relation fields: {relation_fields}");

                    ctx.push_error(DatamodelError::new_validation_error(&msg, fields.span()));
                }

                Vec::new()
            }
        };

        ctx.types[relation_field_id].fields = Some(fields);
    }

    if let Some(references) = ctx.visit_optional_arg("references") {
        let references = match resolve_field_array_without_args(
            references,
            attr.span,
            ctx.types[relation_field_id].referenced_model,
            ctx,
        ) {
            Ok(references) => references,
            Err(FieldResolutionError::AlreadyDealtWith) => Vec::new(),
            Err(FieldResolutionError::ProblematicFields {
                relation_fields,
                unknown_fields,
            }) => {
                if !unknown_fields.is_empty() {
                    let model_name = ctx.ast[ctx.types[relation_field_id].referenced_model].name();

                    let field_names = unknown_fields
                        .into_iter()
                        .map(|(_, field_name)| field_name)
                        .collect::<Vec<_>>()
                        .join(", ");

                    let msg = format!(
                        "The argument `references` must refer only to existing fields in the related model `{model_name}`. The following fields do not exist in the related model: {field_names}",
                    );

                    ctx.push_error(DatamodelError::new_validation_error(&msg, attr.span));
                }

                if !relation_fields.is_empty() {
                    let msg = format!(
                        "The argument `references` must refer only to scalar fields in the related model `{}`. But it is referencing the following relation fields: {}",
                        ctx.ast[ctx.types[relation_field_id].referenced_model].name(),
                        relation_fields.iter().map(|(f, _)| f.name()).collect::<Vec<_>>().join(", "),
                    );
                    ctx.push_error(DatamodelError::new_validation_error(&msg, attr.span));
                }

                Vec::new()
            }
        };

        ctx.types[relation_field_id].references = Some(references);
    }

    // Validate the `name` argument if present.
    match ctx
        .visit_default_arg("name")
        .ok()
        .and_then(|arg| coerce::string(arg, ctx.diagnostics))
    {
        Some("") => ctx.push_attribute_validation_error("A relation cannot have an empty name."),
        Some(name) => {
            let interned_name = ctx.interner.intern(name);
            ctx.types[relation_field_id].name = Some(interned_name);
        }
        None => (),
    }

    // Validate referential actions.
    if let Some(on_delete) = ctx.visit_optional_arg("onDelete") {
        if let Some(action) = crate::ReferentialAction::try_from_expression(on_delete, ctx.diagnostics) {
            ctx.types[relation_field_id].on_delete = Some((action, on_delete.span()));
        }
    }

    if let Some(on_update) = ctx.visit_optional_arg("onUpdate") {
        if let Some(action) = crate::ReferentialAction::try_from_expression(on_update, ctx.diagnostics) {
            ctx.types[relation_field_id].on_update = Some((action, on_update.span()));
        }
    }

    let fk_name = {
        let mapped_name = match ctx
            .visit_optional_arg("map")
            .and_then(|name| coerce::string(name, ctx.diagnostics))
        {
            Some("") => {
                ctx.push_attribute_validation_error("The `map` argument cannot be an empty string.");
                None
            }
            Some(name) => Some(ctx.interner.intern(name)),
            None => None,
        };

        mapped_name
    };

    ctx.types[relation_field_id].mapped_name = fk_name;
}

#[derive(Debug)]
enum FieldResolutionError<'ast> {
    AlreadyDealtWith,
    ProblematicFields {
        /// Fields that do not exist on the model.
        unknown_fields: Vec<(ast::TopId, &'ast str)>,
        /// Fields that exist on the model but are relation fields.
        relation_fields: Vec<(&'ast ast::Field, ast::FieldId)>,
    },
}

/// Takes an attribute argument, validates it as an array of constants, then
/// resolves  the constant as field names on the model. The error variant
/// contains the fields that are not in the model.
fn resolve_field_array_without_args<'db>(
    values: &'db ast::Expression,
    attribute_span: ast::Span,
    model_id: ast::ModelId,
    ctx: &mut Context<'db>,
) -> Result<Vec<ScalarFieldId>, FieldResolutionError<'db>> {
    let constant_array = match coerce_array(values, &coerce::constant, ctx.diagnostics) {
        Some(values) => values,
        None => {
            return Err(FieldResolutionError::AlreadyDealtWith);
        }
    };

    let mut field_ids: Vec<ScalarFieldId> = Vec::with_capacity(constant_array.len());
    let mut unknown_fields = Vec::new();
    let mut relation_fields = Vec::new();
    let ast_model = &ctx.ast[model_id];

    for field_name in constant_array {
        if field_name.contains('.') {
            unknown_fields.push((ast::TopId::Model(model_id), field_name));
            continue;
        }

        // Does the field exist?
        let field_id = if let Some(field_id) = ctx.find_model_field(model_id, field_name) {
            field_id
        } else {
            unknown_fields.push((ast::TopId::Model(model_id), field_name));
            continue;
        };

        // Is the field a scalar field?
        let sfid = if let Some(sfid) = ctx.types.find_model_scalar_field(model_id, field_id) {
            sfid
        } else {
            relation_fields.push((&ctx.ast[model_id][field_id], field_id));
            continue;
        };

        // Is the field used twice?
        if field_ids.contains(&sfid) {
            ctx.push_error(DatamodelError::new_model_validation_error(
                &format!(
                    "The unique index definition refers to the field {} multiple times.",
                    ast_model[field_id].name()
                ),
                "model",
                ast_model.name(),
                attribute_span,
            ));
            return Err(FieldResolutionError::AlreadyDealtWith);
        }

        field_ids.push(sfid);
    }

    if !unknown_fields.is_empty() || !relation_fields.is_empty() {
        Err(FieldResolutionError::ProblematicFields {
            unknown_fields,
            relation_fields,
        })
    } else {
        Ok(field_ids)
    }
}

#[derive(Debug, Clone, Copy)]
enum FieldResolvingSetup {
    OnlyTopLevel,
    FollowComposites,
}

impl FieldResolvingSetup {
    fn follow_composites(self) -> bool {
        matches!(self, Self::FollowComposites)
    }
}

/// Takes an attribute argument, validates it as an array of fields with potentially args,
/// then resolves  the constant literal as field names on the model. The error variant
/// contains the fields that are not in the model.
fn resolve_field_array_with_args<'db>(
    values: &'db ast::Expression,
    attribute_span: ast::Span,
    model_id: ast::ModelId,
    resolving: FieldResolvingSetup,
    ctx: &mut Context<'db>,
) -> Result<Vec<FieldWithArgs>, FieldResolutionError<'db>> {
    let constant_array = match crate::types::index_fields::coerce_field_array_with_args(values, ctx.diagnostics) {
        Some(values) => values,
        None => return Err(FieldResolutionError::AlreadyDealtWith),
    };

    let mut field_ids = Vec::with_capacity(constant_array.len());
    let mut unknown_fields = Vec::new();
    let mut relation_fields = Vec::new();

    let ast_model = &ctx.ast[model_id];

    'fields: for attrs in &constant_array {
        let path = if attrs.field_name.contains('.') {
            if !resolving.follow_composites() {
                unknown_fields.push((ast::TopId::Model(model_id), attrs.field_name));
                continue 'fields;
            }

            let field_count = attrs.field_name.split('.').count();
            let mut path_in_schema = attrs.field_name.split('.').enumerate();

            let (mut path, mut next_type) = match path_in_schema.next() {
                Some((_, field_shard)) => {
                    let field_id = match ctx.find_model_field(model_id, field_shard) {
                        Some(field_id) => field_id,
                        None => {
                            unknown_fields.push((ast::TopId::Model(model_id), field_shard));
                            continue 'fields;
                        }
                    };

                    let sfid = if let Some(sfid) = ctx.types.find_model_scalar_field(model_id, field_id) {
                        sfid
                    } else {
                        relation_fields.push((&ctx.ast[model_id][field_id], field_id));
                        continue 'fields;
                    };

                    match &ctx.types[sfid].r#type {
                        ScalarFieldType::CompositeType(ctid) => (IndexFieldPath::new(sfid), ctid),
                        _ => {
                            unknown_fields.push((ast::TopId::Model(model_id), attrs.field_name));
                            continue 'fields;
                        }
                    }
                }
                None => {
                    // TODO: See if we need to actually error here, or if this
                    // case is handled earlier.
                    continue 'fields;
                }
            };

            for (i, field_shard) in path_in_schema {
                let field_id = match ctx.find_composite_type_field(*next_type, field_shard) {
                    Some(field_id) => field_id,
                    None => {
                        unknown_fields.push((ast::TopId::CompositeType(*next_type), field_shard));
                        continue 'fields;
                    }
                };

                path.push_field(*next_type, field_id);

                match &ctx.types.composite_type_fields[&(*next_type, field_id)].r#type {
                    ScalarFieldType::CompositeType(ctid) => {
                        next_type = ctid;
                    }
                    _ if i < field_count - 1 => {
                        unknown_fields.push((ast::TopId::Model(model_id), attrs.field_name));
                        continue 'fields;
                    }
                    _ => (),
                }
            }

            path
        } else if let Some(field_id) = ctx.find_model_field(model_id, attrs.field_name) {
            // Is the field a scalar field?
            match ctx.types.find_model_scalar_field(model_id, field_id) {
                Some(sfid) => IndexFieldPath::new(sfid),
                None => {
                    relation_fields.push((&ctx.ast[model_id][field_id], field_id));
                    continue;
                }
            }
        } else {
            unknown_fields.push((ast::TopId::Model(model_id), attrs.field_name));
            continue;
        };

        // Is the field used twice?
        if field_ids.contains(&path) {
            let path_str = match path.field_in_index() {
                either::Either::Left(_) => Cow::from(attrs.field_name),
                either::Either::Right((ctid, field_id)) => {
                    let field_name = &ctx.ast[ctid][field_id].name();
                    let composite_type = &ctx.ast[ctid].name();

                    Cow::from(format!("{field_name} in type {composite_type}"))
                }
            };

            ctx.push_error(DatamodelError::new_model_validation_error(
                &format!("The unique index definition refers to the field {path_str} multiple times.",),
                "model",
                ast_model.name(),
                attribute_span,
            ));

            return Err(FieldResolutionError::AlreadyDealtWith);
        }

        field_ids.push(path);
    }

    if !unknown_fields.is_empty() || !relation_fields.is_empty() {
        Err(FieldResolutionError::ProblematicFields {
            unknown_fields,
            relation_fields,
        })
    } else {
        let fields_with_args = constant_array
            .into_iter()
            .zip(field_ids)
            .map(|(attrs, field_location)| FieldWithArgs {
                path: field_location,
                sort_order: attrs.sort_order,
                length: attrs.length,
                operator_class: attrs.operator_class.map(|c| convert_op_class(c, ctx)),
            })
            .collect();

        Ok(fields_with_args)
    }
}

fn convert_op_class(raw: crate::types::index_fields::OperatorClass<'_>, ctx: &mut Context<'_>) -> OperatorClassStore {
    match raw {
        crate::types::index_fields::OperatorClass::Constant(class) => OperatorClassStore::from(class),
        crate::types::index_fields::OperatorClass::Raw(s) => OperatorClassStore::raw(ctx.interner.intern(s)),
    }
}

fn get_name_argument(ctx: &mut Context<'_>) -> Option<StringId> {
    match ctx
        .visit_optional_arg("name")
        .and_then(|name| coerce::string(name, ctx.diagnostics))
    {
        Some("") => {
            ctx.push_attribute_validation_error("The `name` argument cannot be an empty string.");
            None
        }
        Some(name) => Some(ctx.interner.intern(name)),
        None => None,
    }
}

fn validate_client_name(span: Span, object_name: &str, name: StringId, attribute: &'static str, ctx: &mut Context<'_>) {
    // only Alphanumeric characters and underscore are allowed due to this making its way into the client API
    // todo what about starting with a number or underscore?
    {
        let name = &ctx[name];

        let is_valid = name
            .chars()
            .all(|c| c == '_' || c.is_ascii_digit() || c.is_ascii_alphabetic());

        if is_valid {
            return;
        }
    }

    ctx.push_error(DatamodelError::new_model_validation_error(
        &format!(
            "The `name` property within the `{attribute}` attribute only allows for the following characters: `_a-zA-Z0-9`."
        ),
        "model",
        object_name,
        span,
    ))
}

fn validate_clustering_setting(ctx: &mut Context<'_>) -> Option<bool> {
    ctx.visit_optional_arg("clustered")
        .and_then(|sort| coerce::boolean(sort, ctx.diagnostics))
}

/// Create the default values of [`ModelAttributes`] and [`EnumAttributes`] for each model and enum
/// in the AST to ensure [`crate::walkers::ModelWalker`] and [`crate::walkers::EnumWalker`] can
/// access their corresponding entries in the attributes map in the database even in the presence
/// of name and type resolution errors. This is useful for the language tools.
pub(super) fn create_default_attributes(ctx: &mut Context<'_>) {
    for top in ctx.ast.iter_tops() {
        match top {
            (ast::TopId::Model(model_id), ast::Top::Model(_)) => {
                ctx.types.model_attributes.insert(model_id, ModelAttributes::default());
            }
            (ast::TopId::Enum(enum_id), ast::Top::Enum(_)) => {
                ctx.types.enum_attributes.insert(enum_id, EnumAttributes::default());
            }
            _ => (),
        }
    }
}