org.javafmi.modeldescription.ModelDescriptionDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmu-wrapper Show documentation
Show all versions of fmu-wrapper Show documentation
javaFMI is a Java Library for the functional mock-up interface (or FMI). FMI defines a standardized interface to be used in computer simulations. The FMI Standard has beed developed by a large number of software companies and research centers that have worked in a cooperation project under the name of MODELISAR. This library addresses the connection of a java application with a FMU (functional mock-up unit).
/*
* Copyright 2013-2016 SIANI - ULPGC
*
* This File is part of JavaFMI Project
*
* JavaFMI Project is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License.
*
* JavaFMI Project is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with JavaFMI. If not, see .
*/
package org.javafmi.modeldescription;
import org.simpleframework.xml.core.Persister;
import java.io.File;
public class ModelDescriptionDeserializer {
public static DeserializeRequest deserialize(File modelDescriptionFile) {
return new DeserializeRequest(modelDescriptionFile);
}
public static class DeserializeRequest {
private final File modelDescriptionFile;
public DeserializeRequest(File modelDescriptionFile) {
this.modelDescriptionFile = modelDescriptionFile;
}
public org.javafmi.modeldescription.v2.ModelDescription asV2() {
return (org.javafmi.modeldescription.v2.ModelDescription) read(org.javafmi.modeldescription.v2.ModelDescription.class);
}
public org.javafmi.modeldescription.v1.ModelDescription asV1() {
return (org.javafmi.modeldescription.v1.ModelDescription) read(org.javafmi.modeldescription.v1.ModelDescription.class);
}
private ModelDescription read(Class extends ModelDescription> modelDescription) {
try {
return new Persister().read(modelDescription, modelDescriptionFile).build();
} catch (Exception e) {
throw new RuntimeException("impossible to deserialize model description file", e);
}
}
public ModelDescription as(String version) {
return (FmiVersion.One.equals(version)) ? asV1() : asV2();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy