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
//! Definition of warnings, which are displayed to the user during `db
//! pull`.

mod r#enum;
mod model;
mod view;

use crate::introspection::datamodel_calculator::DatamodelCalculatorContext;
use psl::PreviewFeature;
use schema_connector::Warnings;

/// Analyzes the described database schema, triggering
/// warnings to the user if necessary.
pub(crate) fn generate(ctx: &DatamodelCalculatorContext<'_>) -> Warnings {
    let mut warnings = Warnings::new();

    for r#enum in ctx.enum_pairs() {
        r#enum::generate_warnings(r#enum, &mut warnings);
    }

    for model in ctx.model_pairs() {
        model::generate_warnings(model, &mut warnings);
    }

    if ctx.config.preview_features().contains(PreviewFeature::Views) {
        for view in ctx.view_pairs() {
            view::generate_warnings(view, &mut warnings);
        }
    }

    ctx.flavour.generate_warnings(ctx, &mut warnings);

    warnings
}