78d09577d98bd5052d1ae030c9249da3372d6287
[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.heat.datatypes.HeatBoolean;
24 import org.openecomp.sdc.heat.services.HeatConstants;
25 import org.openecomp.sdc.tosca.datatypes.ToscaNodeType;
26 import org.openecomp.sdc.tosca.datatypes.model.NodeTemplate;
27 import org.openecomp.sdc.tosca.services.DataModelUtil;
28 import org.openecomp.sdc.translator.datatypes.heattotosca.to.TranslateTo;
29 import org.openecomp.sdc.translator.services.heattotosca.HeatToToscaUtil;
30 import org.openecomp.sdc.translator.services.heattotosca.mapping.TranslatorHeatToToscaPropertyConverter;
31
32 import java.util.Map;
33
34
35 public class ResourceTranslationCinderVolumeImpl extends ResourceTranslationBase {
36
37   @Override
38   public void translate(TranslateTo translateTo) {
39
40
41     mdcDataDebugMessage.debugEntryMessage(null, null);
42
43     NodeTemplate nodeTemplate = new NodeTemplate();
44     nodeTemplate.setType(ToscaNodeType.CINDER_VOLUME);
45     nodeTemplate.setProperties(TranslatorHeatToToscaPropertyConverter
46         .getToscaPropertiesSimpleConversion(translateTo.getServiceTemplate(),translateTo.
47             getResourceId(),translateTo.getResource().getProperties(),
48             nodeTemplate.getProperties(), translateTo.getHeatFileName(),
49             translateTo.getHeatOrchestrationTemplate(), translateTo.getResource().getType(),
50             nodeTemplate, translateTo.getContext()));
51     handleSizeProperty(nodeTemplate.getProperties());
52     String toscaReadOnlyPropName =
53         HeatToToscaUtil.getToscaPropertyName(translateTo, HeatConstants.READ_ONLY_PROPERTY_NAME);
54     Object readOnlyPropVal = nodeTemplate.getProperties().get(toscaReadOnlyPropName);
55     if (readOnlyPropVal != null && !(readOnlyPropVal instanceof Map)) {
56       nodeTemplate.getProperties().put(toscaReadOnlyPropName, HeatBoolean.eval(readOnlyPropVal));
57     }
58     DataModelUtil.addNodeTemplate(translateTo.getServiceTemplate(), translateTo.getTranslatedId(),
59         nodeTemplate);
60
61     mdcDataDebugMessage.debugExitMessage(null, null);
62   }
63
64
65   private void handleSizeProperty(Map<String, Object> nodeTemplateProperties) {
66
67
68     mdcDataDebugMessage.debugEntryMessage(null, null);
69
70     Object size = nodeTemplateProperties.get("size");
71     if (size == null) {
72       return;
73     }
74
75     if (size instanceof Map) {
76       Map<String, Object> propMap = (Map) size;
77       for (Map.Entry entry : propMap.entrySet()) {
78         String val = "(" + entry.getKey() + " : " + entry.getValue() + ") * 1024";
79         nodeTemplateProperties.put("size", val);
80
81         mdcDataDebugMessage.debugExitMessage(null, null);
82         return;
83       }
84     } else {
85       nodeTemplateProperties.put("size", size + "*1024");
86     }
87
88     mdcDataDebugMessage.debugExitMessage(null, null);
89   }
90 }