use of org.finos.legend.pure.generated.Root_meta_external_shared_format_metamodel_SchemaSet in project legend-engine by finos.
the class HelperExternalFormat method getSchemaSet.
public static Root_meta_external_shared_format_metamodel_SchemaSet getSchemaSet(String fullPath, SourceInformation sourceInformation, CompileContext context) {
Root_meta_external_shared_format_metamodel_SchemaSet schemaSet = getExternalFormatCompilerExtension(context).schemaSetCompiler.getCompiledSchemaSet(fullPath);
Assert.assertTrue(schemaSet != null, () -> "Can't find SchemaSet '" + fullPath + "'", sourceInformation, EngineErrorType.COMPILATION);
return schemaSet;
}
use of org.finos.legend.pure.generated.Root_meta_external_shared_format_metamodel_SchemaSet in project legend-engine by finos.
the class BindingCompiler method secondPass.
// Second pass - resolve schemas and model elements
private void secondPass(Binding srcBinding, CompileContext context) {
String path = context.pureModel.buildPackageString(srcBinding._package, srcBinding.name);
Root_meta_external_shared_format_binding_Binding compiled = bindingIndex.get(path);
compiled._contentType(srcBinding.contentType);
if (srcBinding.schemaSet != null) {
Root_meta_external_shared_format_metamodel_SchemaSet schemaSet = HelperExternalFormat.getSchemaSet(srcBinding.schemaSet, srcBinding.sourceInformation, context);
if (srcBinding.schemaId != null && schemaSet._schemas().noneSatisfy(s -> srcBinding.schemaId.equals(s._id()))) {
throw new EngineException("ID '" + srcBinding.schemaId + "' does not exist in SchemaSet '" + srcBinding.schemaSet + "'", srcBinding.sourceInformation, EngineErrorType.COMPILATION);
}
compiled._schemaSet(schemaSet)._schemaId(srcBinding.schemaId);
}
Root_meta_pure_model_unit_ModelUnit modelUnit = new Root_meta_pure_model_unit_ModelUnit_Impl("")._classifierGenericType(new Root_meta_pure_metamodel_type_generics_GenericType_Impl("")._rawType(context.pureModel.getType("meta::pure::model::unit::ModelUnit")))._packageableElementIncludes(ListIterate.collect(srcBinding.modelUnit.packageableElementIncludes, pe -> context.pureModel.getPackageableElement(pe, srcBinding.sourceInformation)))._packageableElementExcludes(ListIterate.collect(srcBinding.modelUnit.packageableElementExcludes, pe -> context.pureModel.getPackageableElement(pe, srcBinding.sourceInformation)));
compiled._modelUnit(modelUnit);
}
use of org.finos.legend.pure.generated.Root_meta_external_shared_format_metamodel_SchemaSet in project legend-engine by finos.
the class SchemaSetCompiler method firstPass.
// First pass - create and index schemas
private PackageableElement firstPass(ExternalFormatSchemaSet srcSchemaSet, CompileContext context) {
if (externalFormatExtensions.get(srcSchemaSet.format) == null) {
throw new EngineException("Unknown schema format: " + srcSchemaSet.format, srcSchemaSet.formatSourceInformation, EngineErrorType.COMPILATION);
}
Root_meta_external_shared_format_metamodel_SchemaSet schemaSet = new Root_meta_external_shared_format_metamodel_SchemaSet_Impl(srcSchemaSet.name)._name(srcSchemaSet.name)._classifierGenericType(new Root_meta_pure_metamodel_type_generics_GenericType_Impl("")._rawType(context.pureModel.getType("meta::external::shared::format::metamodel::SchemaSet")))._format(srcSchemaSet.format);
Set<String> ids = Sets.mutable.empty();
Set<String> locations = Sets.mutable.empty();
for (ExternalFormatSchema srcSchema : srcSchemaSet.schemas) {
if (srcSchema.id != null) {
if (!ids.add(srcSchema.id)) {
throw new EngineException("Schema id '" + srcSchema.id + "' is duplicated", srcSchema.sourceInformation, EngineErrorType.COMPILATION);
}
}
if (srcSchema.location != null) {
if (!locations.add(srcSchema.location)) {
throw new EngineException("Schema location '" + srcSchema.location + "' is duplicated", srcSchema.sourceInformation, EngineErrorType.COMPILATION);
}
}
Root_meta_external_shared_format_metamodel_Schema schema = new Root_meta_external_shared_format_metamodel_Schema_Impl("")._id(srcSchema.id)._location(srcSchema.location);
schemaSet._schemasAdd(schema);
}
String path = context.pureModel.buildPackageString(srcSchemaSet._package, srcSchemaSet.name);
this.schemaSetIndex.put(path, schemaSet);
return schemaSet;
}
use of org.finos.legend.pure.generated.Root_meta_external_shared_format_metamodel_SchemaSet 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);
}
}
}
use of org.finos.legend.pure.generated.Root_meta_external_shared_format_metamodel_SchemaSet in project legend-engine by finos.
the class SchemaToModelGenerator method generate.
public PureModelContextData generate(SchemaToModelConfiguration configuration) {
Root_meta_external_shared_format_metamodel_SchemaSet schemaSet = HelperExternalFormat.getSchemaSet(configuration.sourceSchemaSet, pureModel.getContext());
ExternalFormatExtension schemaExtension = schemaExtensions.get(schemaSet._format());
if (schemaExtension == null) {
throw new IllegalArgumentException("Unknown schema format: " + schemaSet._format());
}
Class<?> configClass = (Class<?>) ((ParameterizedType) schemaExtension.getClass().getGenericInterfaces()[0]).getActualTypeArguments()[1];
if (!configClass.isInstance(configuration)) {
throw new IllegalArgumentException("Invalid configuration for " + schemaSet._format() + " model generation: " + configuration.getClass().getSimpleName());
}
return toPureModelContextData(schemaExtension.generateModel(schemaSet, configuration, pureModel));
}
Aggregations