use of org.finos.legend.pure.generated.Root_meta_external_shared_format_metamodel_SchemaDetail in project legend-engine by finos.
the class SchemaSetCompiler method secondPass.
// Second pass - compile external schemas using extension
private void secondPass(ExternalFormatSchemaSet srcSchemaSet, CompileContext context) {
String path = context.pureModel.buildPackageString(srcSchemaSet._package, srcSchemaSet.name);
Root_meta_external_shared_format_metamodel_SchemaSet compiled = schemaSetIndex.get(path);
ExternalFormatExtension schemaExtension = externalFormatExtensions.get(srcSchemaSet.format);
compiled._schemas(Lists.mutable.empty());
for (ExternalFormatSchema srcSchema : srcSchemaSet.schemas) {
try {
Root_meta_external_shared_format_metamodel_SchemaDetail detail = schemaExtension.compileSchema(new SchemaCompileContext(srcSchema, srcSchemaSet, context));
Root_meta_external_shared_format_metamodel_Schema schema = new Root_meta_external_shared_format_metamodel_Schema_Impl("")._id(srcSchema.id)._location(srcSchema.location)._detail(detail);
compiled._schemasAdd(schema);
} catch (ExternalFormatSchemaException e) {
throw new EngineException(e.getMessage(), srcSchema.contentSourceInformation, EngineErrorType.COMPILATION, e);
}
}
}
Aggregations