org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / NewServiceModel.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
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.onap.vid.model;
22
23 import java.text.DateFormat;
24 import java.text.SimpleDateFormat;
25 import java.util.HashMap;
26 import java.util.Map;
27 import java.util.Map.Entry;
28
29 import org.onap.vid.asdc.beans.tosca.Group;
30 import org.onap.vid.asdc.beans.tosca.ToscaModel;
31 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
32 import org.onap.vid.properties.VidProperties;
33 /**
34  * The Class ServiceModel.
35  */
36
37 public class NewServiceModel {
38
39         /** The Constant LOG. */
40         private static final EELFLoggerDelegate LOG = EELFLoggerDelegate.getLogger(NewServiceModel.class);
41         
42         /** The Constant dateFormat. */
43         final static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
44         /** The service. */
45         private Service service;
46         
47         /** The vnfs. */
48         private Map<String, VNF> vnfs;
49         
50         /** The networks. */
51         private Map<String, Network> networks;
52
53         /** 
54          * The vf modules. The VNF also has vfmodules but the vfmodules at the service level may have additional info
55          * that is not present in the VNF, like the vf module customization String 
56          */
57         private Map<String, VfModule> vfModules;
58         /**
59          * The volume groups. The VNF also has volume groups but the volume groups will be populated at the service level
60          * for newer models
61          */
62         private Map<String, VolumeGroup> volumeGroups;
63
64         private Map<String, PortMirroringConfig> configurations;
65
66         private Map<String, ServiceProxy> serviceProxies;
67
68         private Map<String, Node> pnfs;
69
70         /**
71          * Instantiates a new service model.
72          */
73         public NewServiceModel() {}
74         
75         /**
76          * Gets the service.
77          *
78          * @return the service
79          */
80         public Service getService() {
81                 return service;
82         }
83
84         /**
85          * Gets the vnfs.
86          *
87          * @return the vnfs
88          */
89         public Map<String, VNF> getVnfs() {
90                 return vnfs;
91         }
92
93         /**
94          * Gets the networks.
95          *
96          * @return the networks
97          */
98         public Map<String, Network> getNetworks() {
99                 return networks;
100         }
101
102         /**
103          * Sets the service.
104          *
105          * @param service the new service
106          */
107         public void setService(Service service) {
108                 this.service = service;
109         }
110
111         /**
112          * Sets the vnfs.
113          *
114          * @param vnfs the vnfs
115          */
116         public void setVnfs(Map<String, VNF> vnfs) {
117                 this.vnfs = vnfs;
118         }
119
120         /**
121          * Sets the networks.
122          *
123          * @param networks the networks
124          */
125         public void setNetworks(Map<String, Network> networks) {
126                 this.networks = networks;
127         }
128         /**
129          * Gets the vf modules.
130          *
131          * @return the vf modules
132          */
133         public Map<String, VfModule> getVfModules() {
134                 return vfModules;
135         }
136         /**
137          * Gets the volume groups.
138          *
139          * @return the volume groups
140          */
141         public Map<String, VolumeGroup> getVolumeGroups() {
142                 return volumeGroups;
143         }
144
145         public Map<String, PortMirroringConfig> getConfigurations() {
146                 return configurations;
147         }
148
149         public Map<String, ServiceProxy> getServiceProxies() {
150                 return serviceProxies;
151         }
152
153         /**
154          * Sets the vf modules.
155          *
156          * @param vfModules the vf modules
157          */
158
159
160         public void setVfModules(Map<String, VfModule> vfModules) {
161                 this.vfModules = vfModules;
162         }
163         /**
164          * Sets the volume groups.
165          *
166          * @param volumeGroups the volume groups
167          */
168         public void setVolumeGroups(Map<String, VolumeGroup> volumeGroups) {
169                 this.volumeGroups = volumeGroups;
170         }
171
172
173         public Map<String, Node> getPnfs() {
174                 return pnfs;
175         }
176
177         public void setPnfs(Map<String, Node> pnfs) {
178                 this.pnfs = pnfs;
179         }
180
181         /**
182          * Extract service.
183          *
184          * @param serviceToscaModel the service tosca model
185          * @param asdcServiceMetadata the asdc service metadata
186          * @return the service
187          */
188         public static Service extractService(ToscaModel serviceToscaModel, org.onap.vid.asdc.beans.Service asdcServiceMetadata) {
189                 
190                 final Service service = new Service();
191                 
192                 service.setCategory(serviceToscaModel.getMetadata().getCategory());
193                 service.setInvariantUuid(serviceToscaModel.getMetadata().getInvariantUUID());
194                 service.setName(serviceToscaModel.getMetadata().getName());
195                 service.setUuid(serviceToscaModel.getMetadata().getUUID());
196                 service.setDescription(serviceToscaModel.getMetadata().getDescription());
197                 service.setServiceEcompNaming(serviceToscaModel.getMetadata().getServiceEcompNaming());
198                 service.setInputs(serviceToscaModel.gettopology_template().getInputs());
199                 //FIXME: SDC is not sending the Version with the Tosca Model for 1610 - they should send it in 1702
200                 //THIS IS A TEMPORARY FIX, AT SOME POINT UNCOMMENT ME
201                 //service.setVersion(serviceToscaModel.getMetadata().getVersion());
202                 service.setVersion(asdcServiceMetadata.getVersion());
203
204                 return service;
205         }
206         public static void extractGroups (ToscaModel serviceToscaModel,NewServiceModel serviceModel) {
207                 // Get the groups. The groups may duplicate the groups that are in the VNF model and have
208                 // additional data like the VF module customization String>
209                 
210                 final Map<String, VfModule> vfModules = new HashMap<String, VfModule> ();
211                 final Map<String, VolumeGroup> volumeGroups = new HashMap<String, VolumeGroup> ();
212                 
213                 String asdcModelNamespace = VidProperties.getAsdcModelNamespace();
214         String vfModuleTag = asdcModelNamespace + ModelConstants.VF_MODULE;
215         
216                 for (Entry<String, Group> component : serviceToscaModel.gettopology_template().getGroups().entrySet()) {
217                         final Group group = component.getValue();
218                         final String type = group.getType();
219                         final String customizationName = component.getKey();
220                         
221                         if (type.startsWith(vfModuleTag)) {
222                                 VfModule vfMod = VfModule.extractVfModule(customizationName, group);
223                                 vfModules.put(customizationName, vfMod);
224                                 if ( vfMod.isVolumeGroupAllowed() ) {
225                                         //volume groups have the same customization name as the vf module
226                                         volumeGroups.put(customizationName, VolumeGroup.extractVolumeGroup(customizationName,group));
227                                 }
228                         }
229                 }
230                 // add this point vfModules and volume groups are disconnected from VNF
231                 serviceModel.setVfModules (vfModules);
232                 serviceModel.setVolumeGroups (volumeGroups);
233                 
234         }
235         /**
236          * Populate the vf modules and volume groups that we may have under the service level under each VNF.
237          */
238 //      public void associateGroups() {
239 //              String methodName = "associateGroups()";
240 //        LOG.debug(EELFLoggerDelegate.debugLogger, dateFormat.format(new Date()) + methodName + " start");
241 //              // go through the vnfs, get the vnf normalized name and look for a vf module with a customization name that starts
242 //              // with vnf + ".."
243 //              String vnfCustomizationName = null;
244 //              String normalizedVnfCustomizationName = null;
245 //              String vfModuleCustomizationName = null;
246 //              NewVNF tmpVnf = null;
247 //
248 //              if ( ( getVnfs() != null ) && (!(getVnfs().isEmpty())) ) {
249 //                      for (Entry<String, NewVNF> vnfComponent : getVnfs().entrySet()) {
250 //                              vnfCustomizationName = vnfComponent.getValue().getModelCustomizationName();
251 //                              normalizedVnfCustomizationName = VNF.normalizeName(vnfCustomizationName);
252 //
253 //                              LOG.debug(EELFLoggerDelegate.debugLogger, dateFormat.format(new Date()) + methodName +
254 //                                              " VNF customizationName=" + vnfCustomizationName + "normalized customization name=" + normalizedVnfCustomizationName);
255 //
256 //                              // now check to see if there is a vf module with customization name that starts with normalizedVnfCustomizationName
257 //
258 //                              if (( getVfModules() != null ) && (!(getVfModules().isEmpty()))) {
259 //                                      for (Entry<String, VfModule> vfModuleComponent : getVfModules().entrySet()) {
260 //                                              vfModuleCustomizationName = vfModuleComponent.getValue().getModelCustomizationName();
261 //
262 //                                              LOG.debug(EELFLoggerDelegate.debugLogger, dateFormat.format(new Date()) + methodName +
263 //                                                              " VF Module customizationName=" + vfModuleCustomizationName );
264 //                                              if ( vfModuleCustomizationName.startsWith(normalizedVnfCustomizationName + ".." )) {
265 //
266 //                                                      // this vf module belongs to the VNF
267 //                                                      tmpVnf = vnfComponent.getValue();
268 //                                                      (tmpVnf.getVfModules()).put(vfModuleComponent.getKey(), vfModuleComponent.getValue());
269 //
270 //                                                      LOG.debug(EELFLoggerDelegate.debugLogger, dateFormat.format(new Date()) + methodName +
271 //                                                                      " Associated VF Module customizationName=" + vfModuleComponent.getKey() + " with VNF customization name=" + vnfCustomizationName);
272 //
273 //                                                      // now find if this vf module has volume groups, if so, find the volume group with the same customization name and put it under the VNF
274 //                                                      if ( vfModuleComponent.getValue().isVolumeGroupAllowed() ) {
275 //                                                              if (( getVolumeGroups() != null ) && (!(getVolumeGroups().isEmpty()))) {
276 //                                                                      if (getVolumeGroups().containsKey((vfModuleCustomizationName))) {
277 //                                                                              (vnfComponent.getValue().getVolumeGroups()).put(vfModuleCustomizationName, (getVolumeGroups()).get(vfModuleCustomizationName));
278 //                                                                      }
279 //                                                              }
280 //                                                      }
281 //                                              }
282 //                                      }
283 //                              }
284 //                      }
285 //              }
286                 
287 //      }
288 }