Search in sources :

Example 6 with CostRepository

use of de.uka.ipd.sdq.pcm.cost.CostRepository in project iobserve-analysis by research-iobserve.

the class ModelTransformer method createResourcesAndReplicationDegrees.

private void createResourcesAndReplicationDegrees(final AllocationGroup allocationGroup) throws ModelHandlingErrorException {
    final CloudProfile profile = this.cloudProfileModel;
    final ResourceEnvironment environment = this.resourceEnvironmentModel;
    final CostRepository costs = this.costModel;
    // Get resource container that represents the instances this allocation
    // group is currently deployed on
    final ResourceContainerCloud representingContainer = allocationGroup.getRepresentingResourceContainer();
    if (representingContainer == null) {
        throw new IllegalArgumentException(String.format("Could not find a cloud container for allocation group '%s'. Check your model.", allocationGroup.getName()));
    }
    // Set group name of the representing container and add it to the
    // resource environment
    representingContainer.setGroupName(allocationGroup.getName());
    representingContainer.setEntityName(allocationGroup.getName());
    ModelHelper.addResourceContainerToEnvironment(environment, representingContainer);
    final int nrOfCurrentReplicas = allocationGroup.getAllocationContexts().size();
    // Upper bound for number of replicas for one resource
    // container type should be sufficiently high
    final int toNrOfReplicas = (nrOfCurrentReplicas + PlanningData.POSSIBLE_REPLICAS_OFFSET) * PlanningData.POSSIBLE_REPLICAS_FACTOR;
    // representing container create only replication degree
    for (final CloudProvider provider : profile.getCloudProviders()) {
        for (final CloudResourceType cloudResource : provider.getCloudResources()) {
            if (cloudResource instanceof VMType) {
                final VMType cloudVM = (VMType) cloudResource;
                final String degreeName;
                final ResourceContainerCloud createdContainer;
                if (this.isSameVMType(cloudVM, representingContainer)) {
                    createdContainer = representingContainer;
                    degreeName = String.format("%s_ReplicationDegree", allocationGroup.getName());
                } else {
                    final String containerName = AllocationGroup.getAllocationGroupName(allocationGroup.getComponentName(), ModelHelper.getResourceContainerIdentifier(cloudVM));
                    createdContainer = ModelHelper.createResourceContainerFromVMType(environment, costs, cloudVM, containerName);
                    degreeName = String.format("%s_ReplicationDegree", containerName);
                }
                DesignDecisionModelFactory.createReplicationDegree(this.decisionSpace, degreeName, createdContainer, 1, toNrOfReplicas);
            }
        }
    }
}
Also used : CloudProfile(org.palladiosimulator.pcm.cloud.pcmcloud.cloudprofile.CloudProfile) ResourceEnvironment(org.palladiosimulator.pcm.resourceenvironment.ResourceEnvironment) CloudResourceType(org.palladiosimulator.pcm.cloud.pcmcloud.cloudprofile.CloudResourceType) ResourceContainerCloud(org.palladiosimulator.pcm.cloud.pcmcloud.resourceenvironmentcloud.ResourceContainerCloud) VMType(org.palladiosimulator.pcm.cloud.pcmcloud.cloudprofile.VMType) CostRepository(de.uka.ipd.sdq.pcm.cost.CostRepository) CloudProvider(org.palladiosimulator.pcm.cloud.pcmcloud.cloudprofile.CloudProvider)

Aggregations

CostRepository (de.uka.ipd.sdq.pcm.cost.CostRepository)6 VMType (org.palladiosimulator.pcm.cloud.pcmcloud.cloudprofile.VMType)5 ResourceEnvironment (org.palladiosimulator.pcm.resourceenvironment.ResourceEnvironment)5 CloudProfile (org.palladiosimulator.pcm.cloud.pcmcloud.cloudprofile.CloudProfile)3 CloudProvider (org.palladiosimulator.pcm.cloud.pcmcloud.cloudprofile.CloudProvider)3 CloudResourceType (org.palladiosimulator.pcm.cloud.pcmcloud.cloudprofile.CloudResourceType)3 ResourceContainerCloud (org.palladiosimulator.pcm.cloud.pcmcloud.resourceenvironmentcloud.ResourceContainerCloud)3 CostModelHandler (org.iobserve.model.provider.file.CostModelHandler)2 ResourceEnvironmentModelHandler (org.iobserve.model.provider.file.ResourceEnvironmentModelHandler)2