use of org.iobserve.model.provider.file.SystemModelHandler in project iobserve-analysis by research-iobserve.
the class PCMModelHandler method save.
/**
* Saves all currently available models in this provider into the snapshot location.
*
* @param fileLocationURI
* the location directory for the snapshot
*/
public void save(final URI fileLocationURI) {
new AllocationModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.ALLOCATION_SUFFIX), this.allocationModel);
new CloudProfileModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.CLOUD_PROFILE_SUFFIX), this.cloudProfileModel);
new CostModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.COST_SUFFIX), this.costModel);
new DesignDecisionModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.DESIGN_DECISION_SUFFIX), this.designDecisionModel);
new RepositoryModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.REPOSITORY_SUFFIX), this.repositoryModel);
new ResourceEnvironmentModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.RESOURCE_ENVIRONMENT_SUFFIX), this.resourceEnvironmentModel);
new SystemModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.SYSTEM_SUFFIX), this.systemModel);
new UsageModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.USAGE_MODEL_SUFFIX), this.usageModel);
new QMLDeclarationsModelHandler().save(fileLocationURI.appendFileExtension(PCMModelHandler.QML_DECLARATIONS_MODEL), this.qmlDeclarationsModel);
}
use of org.iobserve.model.provider.file.SystemModelHandler in project iobserve-analysis by research-iobserve.
the class ModelGenerationFactory method generateAndSaveSystem.
private static System generateAndSaveSystem(final CommandLine commandLine, final URI outputLocation) {
final PCMModelHandler modelProviders = new PCMModelHandler(new File(outputLocation.toFileString()));
final SystemGeneration systemGen = new SystemGeneration(modelProviders.getRepositoryModel());
final System systemModel = systemGen.generateSystemModel(Integer.parseInt(commandLine.getOptionValue("a")));
final SystemModelHandler systemModelProvider = new SystemModelHandler();
final URI systemModelURI = URI.createFileURI(outputLocation.toFileString() + File.separator + systemModel.getEntityName() + ".system");
systemModelProvider.save(systemModelURI, systemModel);
return systemModel;
}
Aggregations