04e71cc2c729d71ca9aea2bdc6f1a931c79408b6
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation;
22
23 import org.openecomp.sdc.common.utils.CommonUtil;
24 import org.openecomp.sdc.heat.datatypes.HeatBoolean;
25 import org.openecomp.sdc.heat.services.HeatConstants;
26 import org.openecomp.sdc.tosca.datatypes.ToscaNodeType;
27 import org.openecomp.sdc.tosca.datatypes.model.NodeTemplate;
28 import org.openecomp.sdc.tosca.services.DataModelUtil;
29 import org.openecomp.sdc.translator.datatypes.heattotosca.to.TranslateTo;
30 import org.openecomp.sdc.translator.services.heattotosca.Constants;
31 import org.openecomp.sdc.translator.services.heattotosca.HeatToToscaUtil;
32 import org.openecomp.sdc.translator.services.heattotosca.mapping.TranslatorHeatToToscaPropertyConverter;
33
34 import java.util.Map;
35
36
37 public class ResourceTranslationCinderVolumeImpl extends ResourceTranslationBase {
38
39   @Override
40   public void translate(TranslateTo translateTo) {
41
42
43     mdcDataDebugMessage.debugEntryMessage(null, null);
44
45     NodeTemplate nodeTemplate = new NodeTemplate();
46     nodeTemplate.setType(ToscaNodeType.CINDER_VOLUME);
47     nodeTemplate.setProperties(TranslatorHeatToToscaPropertyConverter
48         .getToscaPropertiesSimpleConversion(translateTo.getServiceTemplate(),translateTo.
49             getResourceId(),translateTo.getResource().getProperties(),
50             nodeTemplate.getProperties(), translateTo.getHeatFileName(),
51             translateTo.getHeatOrchestrationTemplate(), translateTo.getResource().getType(),
52             nodeTemplate, translateTo.getContext()));
53     handleSizeProperty(nodeTemplate.getProperties());
54     String toscaReadOnlyPropName =
55         HeatToToscaUtil.getToscaPropertyName(translateTo, HeatConstants.READ_ONLY_PROPERTY_NAME);
56     Object readOnlyPropVal = nodeTemplate.getProperties().get(toscaReadOnlyPropName);
57     if (readOnlyPropVal != null && !(readOnlyPropVal instanceof Map)) {
58       nodeTemplate.getProperties().put(toscaReadOnlyPropName, HeatBoolean.eval(readOnlyPropVal));
59     }
60     DataModelUtil.addNodeTemplate(translateTo.getServiceTemplate(), translateTo.getTranslatedId(),
61         nodeTemplate);
62
63     mdcDataDebugMessage.debugExitMessage(null, null);
64   }
65
66
67   private void handleSizeProperty(Map<String, Object> nodeTemplateProperties) {
68
69
70     mdcDataDebugMessage.debugEntryMessage(null, null);
71
72     Object size = nodeTemplateProperties.get("size");
73     if (size == null) {
74       return;
75     }
76
77     if (size instanceof Map) {
78       Map<String, Object> propMap = (Map) size;
79       for (Map.Entry entry : propMap.entrySet()) {
80         String val = "(" + entry.getKey() + " : " + entry.getValue() + ") * 1024";
81         nodeTemplateProperties.put("size", val);
82
83         mdcDataDebugMessage.debugExitMessage(null, null);
84         return;
85       }
86     } else {
87       nodeTemplateProperties.put("size", size + "*1024");
88     }
89
90     mdcDataDebugMessage.debugExitMessage(null, null);
91   }
92 }