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
mod ast_builders;
mod serialization_ast;

#[cfg(test)]
mod tests;

pub use serialization_ast::DataModelMetaFormat;

use ast_builders::schema_to_dmmf;
use schema::QuerySchema;
use std::sync::Arc;

pub fn dmmf_json_from_schema(schema: &str) -> String {
    let dmmf = dmmf_from_schema(schema);
    serde_json::to_string(&dmmf).unwrap()
}

pub fn dmmf_from_schema(schema: &str) -> DataModelMetaFormat {
    let schema = Arc::new(psl::parse_schema(schema).unwrap());
    from_precomputed_parts(&schema::build(schema, true))
}

pub fn from_precomputed_parts(query_schema: &QuerySchema) -> DataModelMetaFormat {
    let data_model = schema_to_dmmf(&query_schema.internal_data_model.schema);
    let (schema, mappings) = ast_builders::render(query_schema);

    DataModelMetaFormat {
        data_model,
        schema,
        mappings,
    }
}