use of com.opensimulationplatform.core.model.systemstructure.SystemStructure in project osp-validator by open-simulation-platform.
the class UseCase1Test method works.
@Test
public void works() {
SystemStructureFactory factory = new SystemStructureFactory();
SystemStructure systemStructure = factory.create(TestResources.OSP_SYSTEM_STRUCTURE_USE_CASE_1);
SystemStructureValidator validator = new SystemStructureValidator();
List<ValidationDiagnostic<Object>> diagnostics = validator.validate(systemStructure);
for (ValidationDiagnostic<Object> diagnostic : diagnostics) {
System.out.println(diagnostic.getValidatedObject());
System.out.println(diagnostic.getErrorMessage());
}
assertTrue(diagnostics.isEmpty());
}
use of com.opensimulationplatform.core.model.systemstructure.SystemStructure in project osp-validator by open-simulation-platform.
the class UseCase3Test method works.
@Test
public void works() {
SystemStructureFactory factory = new SystemStructureFactory();
SystemStructure systemStructure = factory.create(TestResources.OSP_SYSTEM_STRUCTURE_USE_CASE_3);
SystemStructureValidator validator = new SystemStructureValidator();
List<ValidationDiagnostic<Object>> diagnostics = validator.validate(systemStructure);
for (ValidationDiagnostic<Object> diagnostic : diagnostics) {
System.out.println(diagnostic.getValidatedObject());
System.out.println(diagnostic.getErrorMessage());
}
assertTrue(diagnostics.isEmpty());
}
use of com.opensimulationplatform.core.model.systemstructure.SystemStructure in project osp-validator by open-simulation-platform.
the class UseCase4Test method works.
@Test
public void works() {
SystemStructureFactory factory = new SystemStructureFactory();
SystemStructure systemStructure = factory.create(TestResources.OSP_SYSTEM_STRUCTURE_USE_CASE_4);
SystemStructureValidator validator = new SystemStructureValidator();
List<ValidationDiagnostic<Object>> diagnostics = validator.validate(systemStructure);
for (ValidationDiagnostic<Object> diagnostic : diagnostics) {
System.out.println(diagnostic.getValidatedObject());
System.out.println(diagnostic.getErrorMessage());
}
assertTrue(diagnostics.isEmpty());
}
use of com.opensimulationplatform.core.model.systemstructure.SystemStructure in project osp-validator by open-simulation-platform.
the class Validator method getModelDescriptionErrorMessages.
private List<String> getModelDescriptionErrorMessages(File ospSystemStructureFile, OspSystemStructure ospSystemStructureElement) {
List<String> errorMessages = new ArrayList<>();
for (Simulators.Simulator simulator : ospSystemStructureElement.getSimulators().getSimulator()) {
FmuLocator fmuLocator = new DefaultFmuLocator(ospSystemStructureFile);
URI fmu = fmuLocator.get(simulator);
OspModelDescriptionLocator ospModelDescriptionLocator = new DefaultOspModelDescriptionLocator(ospSystemStructureFile, fmuLocator);
Optional<File> ospModelDescriptionXml = ospModelDescriptionLocator.get(simulator);
if (ospModelDescriptionXml.isPresent()) {
OspModelDescriptionParser parser = new OspModelDescriptionParser();
OspModelDescriptionType ospModelDescriptionElement = parser.parse(ospModelDescriptionXml.get());
Map<Object, Location> locations = parser.getLocations();
ModelDescriptionFactory factory = new ModelDescriptionFactory();
ModelDescription modelDescription = factory.create(ospModelDescriptionXml.get(), fmu);
Simulator s = new Simulator();
s.setName(simulator.getName());
s.setModelDescription(modelDescription);
SystemStructure systemStructure = new SystemStructure();
systemStructure.getSimulators().add(s);
ModelDescriptionValidator validator = new ModelDescriptionValidator();
List<ValidationDiagnostic<Object>> diagnostics = validator.validate(systemStructure);
Map<Object, Object> coreToJaxb = createModelDescriptionMap(ospModelDescriptionElement, modelDescription);
errorMessages.addAll(getErrorMessages(ospModelDescriptionXml.get(), locations, diagnostics, coreToJaxb));
}
}
return errorMessages;
}
use of com.opensimulationplatform.core.model.systemstructure.SystemStructure in project osp-validator by open-simulation-platform.
the class OspSystemStructureConverter method convert.
@Override
public SystemStructure convert(OspSystemStructure ospSystemStructureElement) {
SystemStructure systemStructure = context.systemStructure;
List<Simulators.Simulator> simulatorElements = ospSystemStructureElement.getSimulators().getSimulator();
List<Simulator> simulators = context.simulatorConverter.convert(simulatorElements);
systemStructure.getSimulators().addAll(simulators);
List<Object> connectionElements = ospSystemStructureElement.getConnections().getVariableConnectionOrSignalConnectionOrVariableGroupConnection();
List<Connections.VariableConnection> variableConnectionElements = new ArrayList<>();
List<Connections.VariableGroupConnection> variableGroupConnectionElements = new ArrayList<>();
for (Object connectionElement : connectionElements) {
if (connectionElement instanceof Connections.VariableConnection) {
variableConnectionElements.add((Connections.VariableConnection) connectionElement);
} else if (connectionElement instanceof Connections.VariableGroupConnection) {
variableGroupConnectionElements.add((Connections.VariableGroupConnection) connectionElement);
}
}
List<VariableConnection> variableConnections = context.variableConnectionConverter.convert(variableConnectionElements);
systemStructure.getVariableConnections().addAll(variableConnections);
List<VariableGroupConnection> variableGroupConnections = context.variableGroupConnectionConverter.convert(variableGroupConnectionElements);
systemStructure.getVariableGroupConnections().addAll(variableGroupConnections);
return systemStructure;
}
Aggregations