2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation;
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;
37 public class ResourceTranslationCinderVolumeImpl extends ResourceTranslationBase {
40 public void translate(TranslateTo translateTo) {
43 mdcDataDebugMessage.debugEntryMessage(null, null);
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));
60 DataModelUtil.addNodeTemplate(translateTo.getServiceTemplate(), translateTo.getTranslatedId(),
63 mdcDataDebugMessage.debugExitMessage(null, null);
67 private void handleSizeProperty(Map<String, Object> nodeTemplateProperties) {
70 mdcDataDebugMessage.debugEntryMessage(null, null);
72 Object size = nodeTemplateProperties.get("size");
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);
83 mdcDataDebugMessage.debugExitMessage(null, null);
87 nodeTemplateProperties.put("size", size + "*1024");
90 mdcDataDebugMessage.debugExitMessage(null, null);