/*- * ============LICENSE_START======================================================= * VID * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= */ package org.onap.vid.model; import org.onap.vid.asdc.beans.tosca.Group; import org.onap.vid.asdc.beans.tosca.ToscaModel; import org.onap.vid.properties.VidProperties; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; /** * The Class ServiceModel. */ public class NewServiceModel { /** The service. */ private Service service; /** The vnfs. */ private Map vnfs; /** The networks. */ private Map networks; /** * The vf modules. The VNF also has vfmodules but the vfmodules at the service level may have additional info * that is not present in the VNF, like the vf module customization String */ private Map vfModules; /** * The volume groups. The VNF also has volume groups but the volume groups will be populated at the service level * for newer models */ private Map volumeGroups; private Map configurations; private Map fabricConfigurations; private Map serviceProxies; private Map pnfs; private Map collectionResource; private Map vnfGroups; /** * Instantiates a new service model. */ public NewServiceModel() {} /** * Gets the service. * * @return the service */ public Service getService() { return service; } /** * Gets the vnfs. * * @return the vnfs */ public Map getVnfs() { return vnfs; } /** * Gets the networks. * * @return the networks */ public Map getNetworks() { return networks; } /** * Sets the service. * * @param service the new service */ public void setService(Service service) { this.service = service; } /** * Sets the vnfs. * * @param vnfs the vnfs */ public void setVnfs(Map vnfs) { this.vnfs = vnfs; } /** * Sets the networks. * * @param networks the networks */ public void setNetworks(Map networks) { this.networks = networks; } /** * Gets the vf modules. * * @return the vf modules */ public Map getVfModules() { return vfModules; } /** * Gets the volume groups. * * @return the volume groups */ public Map getVolumeGroups() { return volumeGroups; } public Map getConfigurations() { return configurations; } public Map getServiceProxies() { return serviceProxies; } /** * Sets the vf modules. * * @param vfModules the vf modules */ public void setVfModules(Map vfModules) { this.vfModules = vfModules; } /** * Sets the volume groups. * * @param volumeGroups the volume groups */ public void setVolumeGroups(Map volumeGroups) { this.volumeGroups = volumeGroups; } public Map getPnfs() { return pnfs; } public void setPnfs(Map pnfs) { this.pnfs = pnfs; } public Map getCollectionResource() { return collectionResource; } public void setCollectionResource(Map collectionResource) { this.collectionResource = collectionResource; } public Map getFabricConfigurations() { return fabricConfigurations; } public void setFabricConfigurations(Map fabricConfigurations) { this.fabricConfigurations = fabricConfigurations; } /** * Extract service. * * @param serviceToscaModel the service tosca model * @param asdcServiceMetadata the asdc service metadata * @return the service */ public static Service extractService(ToscaModel serviceToscaModel, org.onap.vid.asdc.beans.Service asdcServiceMetadata) { final Service service = new Service(); service.setCategory(serviceToscaModel.getMetadata().getCategory()); service.setInvariantUuid(serviceToscaModel.getMetadata().getInvariantUUID()); service.setName(serviceToscaModel.getMetadata().getName()); service.setUuid(serviceToscaModel.getMetadata().getUUID()); service.setDescription(serviceToscaModel.getMetadata().getDescription()); service.setServiceEcompNaming(serviceToscaModel.getMetadata().getServiceEcompNaming()); service.setInputs(serviceToscaModel.gettopology_template().getInputs()); //FIXME: SDC is not sending the Version with the Tosca Model for 1610 - they should send it in 1702 //THIS IS A TEMPORARY FIX, AT SOME POINT UNCOMMENT ME //service.setVersion(serviceToscaModel.getMetadata().getVersion()); service.setVersion(asdcServiceMetadata.getVersion()); return service; } public static void extractGroups (ToscaModel serviceToscaModel,NewServiceModel serviceModel) { // Get the groups. The groups may duplicate the groups that are in the VNF model and have // additional data like the VF module customization String> final Map vfModules = new HashMap<> (); final Map volumeGroups = new HashMap<> (); String asdcModelNamespace = VidProperties.getAsdcModelNamespace(); String vfModuleTag = asdcModelNamespace + ModelConstants.VF_MODULE; for (Entry component : serviceToscaModel.gettopology_template().getGroups().entrySet()) { final Group group = component.getValue(); final String type = group.getType(); final String customizationName = component.getKey(); if (type.startsWith(vfModuleTag)) { VfModule vfMod = VfModule.extractVfModule(customizationName, group); vfModules.put(customizationName, vfMod); if ( vfMod.isVolumeGroupAllowed() ) { //volume groups have the same customization name as the vf module volumeGroups.put(customizationName, VolumeGroup.extractVolumeGroup(customizationName,group)); } } } // add this point vfModules and volume groups are disconnected from VNF serviceModel.setVfModules (vfModules); serviceModel.setVolumeGroups (volumeGroups); } public Map getVnfGroups() { return vnfGroups; } public void setVnfGroups(Map vnfGroups) { this.vnfGroups = vnfGroups; } /** * Populate the vf modules and volume groups that we may have under the service level under each VNF. */ }