Merge "VFModule To HeatTemplateUUID" into dublin
[so.git] / asdc-controller / src / main / java / org / onap / so / asdc / installer / heat / ToscaResourceInstaller.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.
7  * ================================================================================
8  * Modifications Copyright (c) 2019 Samsung
9  * ================================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  * 
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  * 
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.so.asdc.installer.heat;
25
26
27 import java.sql.Timestamp;
28 import java.util.ArrayList;
29 import java.util.Date;
30 import java.util.HashMap;
31 import java.util.HashSet;
32 import java.util.LinkedHashMap;
33 import java.util.List;
34 import java.util.Map;
35 import java.util.Optional;
36 import java.util.Set;
37 import java.util.stream.Collectors;
38 import org.hibernate.StaleObjectStateException;
39 import org.hibernate.exception.ConstraintViolationException;
40 import org.hibernate.exception.LockAcquisitionException;
41 import org.onap.sdc.api.notification.IArtifactInfo;
42 import org.onap.sdc.api.notification.IResourceInstance;
43 import org.onap.sdc.api.notification.IStatusData;
44 import org.onap.sdc.tosca.parser.api.IEntityDetails;
45 import org.onap.sdc.tosca.parser.api.ISdcCsarHelper;
46 import org.onap.sdc.tosca.parser.elements.queries.EntityQuery;
47 import org.onap.sdc.tosca.parser.elements.queries.TopologyTemplateQuery;
48 import org.onap.sdc.tosca.parser.enums.SdcTypes;
49 import org.onap.sdc.tosca.parser.impl.SdcPropertyNames;
50 import org.onap.sdc.toscaparser.api.CapabilityAssignment;
51 import org.onap.sdc.toscaparser.api.CapabilityAssignments;
52 import org.onap.sdc.toscaparser.api.Group;
53 import org.onap.sdc.toscaparser.api.NodeTemplate;
54 import org.onap.sdc.toscaparser.api.Policy;
55 import org.onap.sdc.toscaparser.api.Property;
56 import org.onap.sdc.toscaparser.api.RequirementAssignment;
57 import org.onap.sdc.toscaparser.api.RequirementAssignments;
58 import org.onap.sdc.toscaparser.api.elements.Metadata;
59 import org.onap.sdc.toscaparser.api.functions.GetInput;
60 import org.onap.sdc.toscaparser.api.parameters.Input;
61 import org.onap.sdc.utils.DistributionStatusEnum;
62 import org.onap.so.asdc.client.ASDCConfiguration;
63 import org.onap.so.asdc.client.exceptions.ArtifactInstallerException;
64 import org.onap.so.asdc.installer.ASDCElementInfo;
65 import org.onap.so.asdc.installer.BigDecimalVersion;
66 import org.onap.so.asdc.installer.IVfModuleData;
67 import org.onap.so.asdc.installer.PnfResourceStructure;
68 import org.onap.so.asdc.installer.ResourceStructure;
69 import org.onap.so.asdc.installer.ToscaResourceStructure;
70 import org.onap.so.asdc.installer.VfModuleArtifact;
71 import org.onap.so.asdc.installer.VfModuleStructure;
72 import org.onap.so.asdc.installer.VfResourceStructure;
73 import org.onap.so.asdc.installer.bpmn.WorkflowResource;
74 import org.onap.so.asdc.util.YamlEditor;
75 import org.onap.so.db.catalog.beans.AllottedResource;
76 import org.onap.so.db.catalog.beans.AllottedResourceCustomization;
77 import org.onap.so.db.catalog.beans.CollectionNetworkResourceCustomization;
78 import org.onap.so.db.catalog.beans.CollectionResource;
79 import org.onap.so.db.catalog.beans.CollectionResourceInstanceGroupCustomization;
80 import org.onap.so.db.catalog.beans.ConfigurationResource;
81 import org.onap.so.db.catalog.beans.ConfigurationResourceCustomization;
82 import org.onap.so.db.catalog.beans.CvnfcConfigurationCustomization;
83 import org.onap.so.db.catalog.beans.CvnfcCustomization;
84 import org.onap.so.db.catalog.beans.HeatEnvironment;
85 import org.onap.so.db.catalog.beans.HeatFiles;
86 import org.onap.so.db.catalog.beans.HeatTemplate;
87 import org.onap.so.db.catalog.beans.HeatTemplateParam;
88 import org.onap.so.db.catalog.beans.InstanceGroup;
89 import org.onap.so.db.catalog.beans.InstanceGroupType;
90 import org.onap.so.db.catalog.beans.NetworkCollectionResourceCustomization;
91 import org.onap.so.db.catalog.beans.NetworkInstanceGroup;
92 import org.onap.so.db.catalog.beans.NetworkResource;
93 import org.onap.so.db.catalog.beans.NetworkResourceCustomization;
94 import org.onap.so.db.catalog.beans.PnfResource;
95 import org.onap.so.db.catalog.beans.PnfResourceCustomization;
96 import org.onap.so.db.catalog.beans.Service;
97 import org.onap.so.db.catalog.beans.ServiceProxyResourceCustomization;
98 import org.onap.so.db.catalog.beans.SubType;
99 import org.onap.so.db.catalog.beans.TempNetworkHeatTemplateLookup;
100 import org.onap.so.db.catalog.beans.ToscaCsar;
101 import org.onap.so.db.catalog.beans.VFCInstanceGroup;
102 import org.onap.so.db.catalog.beans.VfModule;
103 import org.onap.so.db.catalog.beans.VfModuleCustomization;
104 import org.onap.so.db.catalog.beans.VnfResource;
105 import org.onap.so.db.catalog.beans.VnfResourceCustomization;
106 import org.onap.so.db.catalog.beans.VnfcCustomization;
107 import org.onap.so.db.catalog.beans.VnfcInstanceGroupCustomization;
108 import org.onap.so.db.catalog.data.repository.AllottedResourceCustomizationRepository;
109 import org.onap.so.db.catalog.data.repository.AllottedResourceRepository;
110 import org.onap.so.db.catalog.data.repository.CollectionResourceCustomizationRepository;
111 import org.onap.so.db.catalog.data.repository.CollectionResourceRepository;
112 import org.onap.so.db.catalog.data.repository.ConfigurationResourceCustomizationRepository;
113 import org.onap.so.db.catalog.data.repository.ConfigurationResourceRepository;
114 import org.onap.so.db.catalog.data.repository.CvnfcCustomizationRepository;
115 import org.onap.so.db.catalog.data.repository.ExternalServiceToInternalServiceRepository;
116 import org.onap.so.db.catalog.data.repository.HeatEnvironmentRepository;
117 import org.onap.so.db.catalog.data.repository.HeatFilesRepository;
118 import org.onap.so.db.catalog.data.repository.HeatTemplateRepository;
119 import org.onap.so.db.catalog.data.repository.InstanceGroupRepository;
120 import org.onap.so.db.catalog.data.repository.NetworkResourceCustomizationRepository;
121 import org.onap.so.db.catalog.data.repository.NetworkResourceRepository;
122 import org.onap.so.db.catalog.data.repository.PnfCustomizationRepository;
123 import org.onap.so.db.catalog.data.repository.PnfResourceRepository;
124 import org.onap.so.db.catalog.data.repository.ServiceProxyResourceCustomizationRepository;
125 import org.onap.so.db.catalog.data.repository.ServiceRepository;
126 import org.onap.so.db.catalog.data.repository.TempNetworkHeatTemplateRepository;
127 import org.onap.so.db.catalog.data.repository.ToscaCsarRepository;
128 import org.onap.so.db.catalog.data.repository.VFModuleCustomizationRepository;
129 import org.onap.so.db.catalog.data.repository.VFModuleRepository;
130 import org.onap.so.db.catalog.data.repository.VnfResourceRepository;
131 import org.onap.so.db.catalog.data.repository.VnfcCustomizationRepository;
132 import org.onap.so.db.catalog.data.repository.VnfcInstanceGroupCustomizationRepository;
133 import org.onap.so.db.request.beans.WatchdogComponentDistributionStatus;
134 import org.onap.so.db.request.beans.WatchdogDistributionStatus;
135 import org.onap.so.db.request.beans.WatchdogServiceModVerIdLookup;
136 import org.onap.so.db.request.data.repository.WatchdogComponentDistributionStatusRepository;
137 import org.onap.so.db.request.data.repository.WatchdogDistributionStatusRepository;
138 import org.onap.so.db.request.data.repository.WatchdogServiceModVerIdLookupRepository;
139 import org.onap.so.logger.ErrorCode;
140 import org.onap.so.logger.MessageEnum;
141 import org.slf4j.Logger;
142 import org.slf4j.LoggerFactory;
143 import org.springframework.beans.factory.annotation.Autowired;
144 import org.springframework.orm.ObjectOptimisticLockingFailureException;
145 import org.springframework.stereotype.Component;
146 import org.springframework.transaction.annotation.Transactional;
147 import com.fasterxml.jackson.core.JsonProcessingException;
148 import com.fasterxml.jackson.databind.ObjectMapper;
149
150 @Component
151 public class ToscaResourceInstaller {
152
153     protected static final String NODES_VRF_ENTRY = "org.openecomp.nodes.VRFEntry";
154
155     protected static final String VLAN_NETWORK_RECEPTOR = "org.openecomp.nodes.VLANNetworkReceptor";
156
157     protected static final String ALLOTTED_RESOURCE = "Allotted Resource";
158
159     protected static final String MULTI_STAGE_DESIGN = "multi_stage_design";
160
161     protected static final String SCALABLE = "scalable";
162
163     protected static final String BASIC = "BASIC";
164
165     protected static final String PROVIDER = "PROVIDER";
166
167     protected static final String HEAT = "HEAT";
168
169     protected static final String MANUAL_RECORD = "MANUAL_RECORD";
170
171     protected static final String MSO = "SO";
172
173     protected static final String SDNC_MODEL_NAME = "sdnc_model_name";
174
175     protected static final String SDNC_MODEL_VERSION = "sdnc_model_version";
176
177     private static String CUSTOMIZATION_UUID = "customizationUUID";
178
179     protected static final String SKIP_POST_INST_CONF = "skip_post_instantiation_configuration";
180
181     @Autowired
182     protected ServiceRepository serviceRepo;
183
184     @Autowired
185     protected InstanceGroupRepository instanceGroupRepo;
186
187     @Autowired
188     protected ServiceProxyResourceCustomizationRepository serviceProxyCustomizationRepo;
189
190     @Autowired
191     protected CollectionResourceRepository collectionRepo;
192
193     @Autowired
194     protected CollectionResourceCustomizationRepository collectionCustomizationRepo;
195
196     @Autowired
197     protected ConfigurationResourceCustomizationRepository configCustomizationRepo;
198
199     @Autowired
200     protected ConfigurationResourceRepository configRepo;
201
202     @Autowired
203     protected VnfResourceRepository vnfRepo;
204
205     @Autowired
206     protected VFModuleRepository vfModuleRepo;
207
208     @Autowired
209     protected VFModuleCustomizationRepository vfModuleCustomizationRepo;
210
211     @Autowired
212     protected VnfcInstanceGroupCustomizationRepository vnfcInstanceGroupCustomizationRepo;
213
214     @Autowired
215     protected VnfcCustomizationRepository vnfcCustomizationRepo;
216
217     @Autowired
218     protected CvnfcCustomizationRepository cvnfcCustomizationRepo;
219
220     @Autowired
221     protected AllottedResourceRepository allottedRepo;
222
223     @Autowired
224     protected AllottedResourceCustomizationRepository allottedCustomizationRepo;
225
226     @Autowired
227     protected NetworkResourceRepository networkRepo;
228
229     @Autowired
230     protected HeatTemplateRepository heatRepo;
231
232     @Autowired
233     protected HeatEnvironmentRepository heatEnvRepo;
234
235     @Autowired
236     protected HeatFilesRepository heatFilesRepo;
237
238     @Autowired
239     protected NetworkResourceCustomizationRepository networkCustomizationRepo;
240
241     @Autowired
242     protected WatchdogComponentDistributionStatusRepository watchdogCDStatusRepository;
243     @Autowired
244     protected WatchdogDistributionStatusRepository watchdogDistributionStatusRepository;
245     @Autowired
246     protected WatchdogServiceModVerIdLookupRepository watchdogModVerIdLookupRepository;
247
248     @Autowired
249     protected TempNetworkHeatTemplateRepository tempNetworkLookupRepo;
250
251     @Autowired
252     protected ExternalServiceToInternalServiceRepository externalServiceToInternalServiceRepository;
253
254     @Autowired
255     protected ToscaCsarRepository toscaCsarRepo;
256
257     @Autowired
258     protected PnfResourceRepository pnfResourceRepository;
259
260     @Autowired
261     protected PnfCustomizationRepository pnfCustomizationRepository;
262
263     @Autowired
264     protected WorkflowResource workflowResource;
265
266     protected static final Logger logger = LoggerFactory.getLogger(ToscaResourceInstaller.class);
267
268     public boolean isCsarAlreadyDeployed(ToscaResourceStructure toscaResourceStructure)
269             throws ArtifactInstallerException {
270         boolean deployed = false;
271         if (toscaResourceStructure == null) {
272             return deployed;
273         }
274
275         IArtifactInfo inputToscaCsar = toscaResourceStructure.getToscaArtifact();
276         String checkSum = inputToscaCsar.getArtifactChecksum();
277         String artifactUuid = inputToscaCsar.getArtifactUUID();
278
279         Optional<ToscaCsar> toscaCsarObj = toscaCsarRepo.findById(artifactUuid);
280         if (toscaCsarObj.isPresent()) {
281             ToscaCsar toscaCsar = toscaCsarObj.get();
282             if (!toscaCsar.getArtifactChecksum().equalsIgnoreCase(checkSum)) {
283                 String errorMessage =
284                         String.format("Csar with UUID: %s already exists.Their checksums don't match", artifactUuid);
285                 throw new ArtifactInstallerException(errorMessage);
286             } else if (toscaCsar.getArtifactChecksum().equalsIgnoreCase(checkSum)) {
287                 deployed = true;
288             }
289         }
290         return deployed;
291     }
292
293     public boolean isResourceAlreadyDeployed(ResourceStructure vfResourceStruct, boolean serviceDeployed)
294             throws ArtifactInstallerException {
295         boolean status = false;
296         ResourceStructure vfResourceStructure = vfResourceStruct;
297         try {
298             status = vfResourceStructure.isDeployedSuccessfully();
299         } catch (RuntimeException e) {
300             status = false;
301         }
302         try {
303             Service existingService =
304                     serviceRepo.findOneByModelUUID(vfResourceStructure.getNotification().getServiceUUID());
305             if (existingService != null && !serviceDeployed)
306                 status = true;
307             if (status) {
308                 logger.info(vfResourceStructure.getResourceInstance().getResourceInstanceName(),
309                         vfResourceStructure.getResourceInstance().getResourceCustomizationUUID(),
310                         vfResourceStructure.getNotification().getServiceName(),
311                         BigDecimalVersion.castAndCheckNotificationVersionToString(
312                                 vfResourceStructure.getNotification().getServiceVersion()),
313                         vfResourceStructure.getNotification().getServiceUUID(),
314                         vfResourceStructure.getResourceInstance().getResourceName(), "", "");
315                 WatchdogComponentDistributionStatus wdStatus = new WatchdogComponentDistributionStatus(
316                         vfResourceStruct.getNotification().getDistributionID(), MSO);
317                 wdStatus.setComponentDistributionStatus(DistributionStatusEnum.COMPONENT_DONE_OK.name());
318                 watchdogCDStatusRepository.saveAndFlush(wdStatus);
319             } else {
320                 logger.info(vfResourceStructure.getResourceInstance().getResourceInstanceName(),
321                         vfResourceStructure.getResourceInstance().getResourceCustomizationUUID(),
322                         vfResourceStructure.getNotification().getServiceName(),
323                         BigDecimalVersion.castAndCheckNotificationVersionToString(
324                                 vfResourceStructure.getNotification().getServiceVersion()),
325                         vfResourceStructure.getNotification().getServiceUUID(),
326                         vfResourceStructure.getResourceInstance().getResourceName(), "", "");
327             }
328             return status;
329         } catch (Exception e) {
330             logger.error("{} {} {}", MessageEnum.ASDC_ARTIFACT_CHECK_EXC.toString(), ErrorCode.SchemaError.getValue(),
331                     "Exception - isResourceAlreadyDeployed");
332             throw new ArtifactInstallerException("Exception caught during checking existence of the VNF Resource.", e);
333         }
334     }
335
336     public void installTheComponentStatus(IStatusData iStatus) throws ArtifactInstallerException {
337         logger.debug("Entering installTheComponentStatus for distributionId {} and ComponentName {}",
338                 iStatus.getDistributionID(), iStatus.getComponentName());
339
340         try {
341             WatchdogComponentDistributionStatus cdStatus =
342                     new WatchdogComponentDistributionStatus(iStatus.getDistributionID(), iStatus.getComponentName());
343             cdStatus.setComponentDistributionStatus(iStatus.getStatus().toString());
344             watchdogCDStatusRepository.save(cdStatus);
345
346         } catch (Exception e) {
347             logger.debug("Exception caught in installTheComponentStatus {}", e.getMessage());
348             throw new ArtifactInstallerException("Exception caught in installTheComponentStatus " + e.getMessage());
349         }
350     }
351
352
353     @Transactional(rollbackFor = {ArtifactInstallerException.class})
354     public void installTheResource(ToscaResourceStructure toscaResourceStruct, ResourceStructure resourceStruct)
355             throws ArtifactInstallerException {
356         if (resourceStruct instanceof VfResourceStructure) {
357             installTheVfResource(toscaResourceStruct, (VfResourceStructure) resourceStruct);
358         } else if (resourceStruct instanceof PnfResourceStructure) {
359             installPnfResource(toscaResourceStruct, (PnfResourceStructure) resourceStruct);
360         } else {
361             logger.warn("Unrecognized resource type");
362         }
363     }
364
365     private void installPnfResource(ToscaResourceStructure toscaResourceStruct, PnfResourceStructure resourceStruct)
366             throws ArtifactInstallerException {
367
368         // PCLO: in case of deployment failure, use a string that will represent
369         // the type of artifact that failed...
370         List<ASDCElementInfo> artifactListForLogging = new ArrayList<>();
371         try {
372             createToscaCsar(toscaResourceStruct);
373             Service service = createService(toscaResourceStruct, resourceStruct);
374
375             processResourceSequence(toscaResourceStruct, service);
376             processPnfResources(toscaResourceStruct, service, resourceStruct);
377             serviceRepo.save(service);
378
379             WatchdogComponentDistributionStatus status =
380                     new WatchdogComponentDistributionStatus(resourceStruct.getNotification().getDistributionID(), MSO);
381             status.setComponentDistributionStatus(DistributionStatusEnum.COMPONENT_DONE_OK.name());
382             watchdogCDStatusRepository.save(status);
383
384             toscaResourceStruct.setSuccessfulDeployment();
385
386         } catch (Exception e) {
387             logger.debug("Exception :", e);
388             WatchdogComponentDistributionStatus status =
389                     new WatchdogComponentDistributionStatus(resourceStruct.getNotification().getDistributionID(), MSO);
390             status.setComponentDistributionStatus(DistributionStatusEnum.COMPONENT_DONE_ERROR.name());
391             watchdogCDStatusRepository.save(status);
392             Throwable dbExceptionToCapture = e;
393             while (!(dbExceptionToCapture instanceof ConstraintViolationException
394                     || dbExceptionToCapture instanceof LockAcquisitionException)
395                     && (dbExceptionToCapture.getCause() != null)) {
396                 dbExceptionToCapture = dbExceptionToCapture.getCause();
397             }
398
399             if (dbExceptionToCapture instanceof ConstraintViolationException
400                     || dbExceptionToCapture instanceof LockAcquisitionException) {
401                 logger.warn("{} {} {} {} {}", MessageEnum.ASDC_ARTIFACT_ALREADY_DEPLOYED.toString(),
402                         resourceStruct.getResourceInstance().getResourceName(),
403                         resourceStruct.getNotification().getServiceVersion(), ErrorCode.DataError.getValue(),
404                         "Exception - ASCDC Artifact already deployed", e);
405             } else {
406                 String elementToLog = (!artifactListForLogging.isEmpty()
407                         ? artifactListForLogging.get(artifactListForLogging.size() - 1).toString()
408                         : "No element listed");
409                 logger.error("{} {} {} {}", MessageEnum.ASDC_ARTIFACT_INSTALL_EXC.toString(), elementToLog,
410                         ErrorCode.DataError.getValue(), "Exception caught during installation of "
411                                 + resourceStruct.getResourceInstance().getResourceName() + ". Transaction rollback",
412                         e);
413                 throw new ArtifactInstallerException(
414                         "Exception caught during installation of "
415                                 + resourceStruct.getResourceInstance().getResourceName() + ". Transaction rollback.",
416                         e);
417             }
418         }
419     }
420
421     @Transactional(rollbackFor = {ArtifactInstallerException.class})
422     public void installTheVfResource(ToscaResourceStructure toscaResourceStruct, VfResourceStructure vfResourceStruct)
423             throws ArtifactInstallerException {
424         VfResourceStructure vfResourceStructure = vfResourceStruct;
425         extractHeatInformation(toscaResourceStruct, vfResourceStructure);
426
427         // PCLO: in case of deployment failure, use a string that will represent
428         // the type of artifact that failed...
429         List<ASDCElementInfo> artifactListForLogging = new ArrayList<>();
430         try {
431             createToscaCsar(toscaResourceStruct);
432             createService(toscaResourceStruct, vfResourceStruct);
433             Service service = toscaResourceStruct.getCatalogService();
434             List<NodeTemplate> vfNodeTemplatesList = toscaResourceStruct.getSdcCsarHelper().getServiceVfList();
435
436             for (NodeTemplate nodeTemplate : vfNodeTemplatesList) {
437                 Metadata metadata = nodeTemplate.getMetaData();
438                 String serviceType = toscaResourceStruct.getCatalogService().getServiceType();
439                 String vfCustomizationCategory = toscaResourceStruct.getSdcCsarHelper()
440                         .getMetadataPropertyValue(metadata, SdcPropertyNames.PROPERTY_NAME_CATEGORY);
441                 processVfModules(toscaResourceStruct, vfResourceStructure, service, nodeTemplate, metadata,
442                         vfCustomizationCategory);
443             }
444
445             workflowResource.processWorkflows(vfResourceStructure);
446             processResourceSequence(toscaResourceStruct, service);
447             List<NodeTemplate> allottedResourceList = toscaResourceStruct.getSdcCsarHelper().getAllottedResources();
448             processAllottedResources(toscaResourceStruct, service, allottedResourceList);
449             processNetworks(toscaResourceStruct, service);
450             // process Network Collections
451             processNetworkCollections(toscaResourceStruct, service);
452             // Process Service Proxy & Configuration
453             processServiceProxyAndConfiguration(toscaResourceStruct, service);
454
455             logger.info("Saving Service: {} ", service.getModelName());
456             service = serviceRepo.save(service);
457             correlateConfigCustomResources(service);
458
459             WatchdogComponentDistributionStatus status = new WatchdogComponentDistributionStatus(
460                     vfResourceStruct.getNotification().getDistributionID(), MSO);
461             status.setComponentDistributionStatus(DistributionStatusEnum.COMPONENT_DONE_OK.name());
462             watchdogCDStatusRepository.save(status);
463
464             toscaResourceStruct.setSuccessfulDeployment();
465
466         } catch (Exception e) {
467             logger.debug("Exception :", e);
468             WatchdogComponentDistributionStatus status = new WatchdogComponentDistributionStatus(
469                     vfResourceStruct.getNotification().getDistributionID(), MSO);
470             status.setComponentDistributionStatus(DistributionStatusEnum.COMPONENT_DONE_ERROR.name());
471             watchdogCDStatusRepository.save(status);
472             Throwable dbExceptionToCapture = e;
473             while (!(dbExceptionToCapture instanceof ConstraintViolationException
474                     || dbExceptionToCapture instanceof LockAcquisitionException)
475                     && (dbExceptionToCapture.getCause() != null)) {
476                 dbExceptionToCapture = dbExceptionToCapture.getCause();
477             }
478
479             if (dbExceptionToCapture instanceof ConstraintViolationException
480                     || dbExceptionToCapture instanceof LockAcquisitionException) {
481                 logger.warn("{} {} {} {} {}", MessageEnum.ASDC_ARTIFACT_ALREADY_DEPLOYED.toString(),
482                         vfResourceStructure.getResourceInstance().getResourceName(),
483                         vfResourceStructure.getNotification().getServiceVersion(), ErrorCode.DataError.getValue(),
484                         "Exception - ASCDC Artifact already deployed", e);
485             } else {
486                 String elementToLog = (!artifactListForLogging.isEmpty()
487                         ? artifactListForLogging.get(artifactListForLogging.size() - 1).toString()
488                         : "No element listed");
489                 logger.error("{} {} {} {}", MessageEnum.ASDC_ARTIFACT_INSTALL_EXC.toString(), elementToLog,
490                         ErrorCode.DataError.getValue(),
491                         "Exception caught during installation of "
492                                 + vfResourceStructure.getResourceInstance().getResourceName()
493                                 + ". Transaction rollback",
494                         e);
495                 throw new ArtifactInstallerException("Exception caught during installation of "
496                         + vfResourceStructure.getResourceInstance().getResourceName() + ". Transaction rollback.", e);
497             }
498         }
499     }
500
501
502     List<NodeTemplate> getRequirementList(List<NodeTemplate> resultList, List<NodeTemplate> nodeTemplates,
503             ISdcCsarHelper iSdcCsarHelper) {
504
505         List<NodeTemplate> nodes = new ArrayList<NodeTemplate>();
506         nodes.addAll(nodeTemplates);
507
508         for (NodeTemplate nodeTemplate : nodeTemplates) {
509             RequirementAssignments requirement = iSdcCsarHelper.getRequirementsOf(nodeTemplate);
510             List<RequirementAssignment> reqAs = requirement.getAll();
511             for (RequirementAssignment ra : reqAs) {
512                 String reqNode = ra.getNodeTemplateName();
513                 for (NodeTemplate rNode : resultList) {
514                     if (rNode.getName().equals(reqNode)) {
515                         if (!resultList.contains(nodeTemplate)) {
516                             resultList.add(nodeTemplate);
517                         }
518                         if (nodes.contains(nodeTemplate)) {
519                             nodes.remove(nodeTemplate);
520                         }
521                         break;
522                     }
523                 }
524             }
525         }
526
527         if (!nodes.isEmpty()) {
528             getRequirementList(resultList, nodes, iSdcCsarHelper);
529         }
530
531         return resultList;
532     }
533
534     // This method retrieve resource sequence from csar file
535     void processResourceSequence(ToscaResourceStructure toscaResourceStructure, Service service) {
536         List<String> resouceSequence = new ArrayList<String>();
537         List<NodeTemplate> resultList = new ArrayList<NodeTemplate>();
538
539         ISdcCsarHelper iSdcCsarHelper = toscaResourceStructure.getSdcCsarHelper();
540         List<NodeTemplate> nodeTemplates = iSdcCsarHelper.getServiceNodeTemplates();
541         List<NodeTemplate> nodes = new ArrayList<NodeTemplate>();
542         nodes.addAll(nodeTemplates);
543
544         for (NodeTemplate nodeTemplate : nodeTemplates) {
545             RequirementAssignments requirement = iSdcCsarHelper.getRequirementsOf(nodeTemplate);
546
547             if (requirement == null || requirement.getAll() == null || requirement.getAll().isEmpty()) {
548                 resultList.add(nodeTemplate);
549                 nodes.remove(nodeTemplate);
550             }
551         }
552
553         resultList = getRequirementList(resultList, nodes, iSdcCsarHelper);
554
555         for (NodeTemplate node : resultList) {
556             String templateName = node.getMetaData().getValue("name");
557             if (!resouceSequence.contains(templateName)) {
558                 resouceSequence.add(templateName);
559             }
560         }
561
562         String resourceSeqStr = resouceSequence.stream().collect(Collectors.joining(","));
563         service.setResourceOrder(resourceSeqStr);
564         logger.debug(" resourceSeq for service uuid(" + service.getModelUUID() + ") : " + resourceSeqStr);
565     }
566
567     private static String getValue(Object value, List<Input> servInputs) {
568         String output = null;
569         if (value instanceof Map) {
570             // currently this logic handles only one level of nesting.
571             return ((LinkedHashMap) value).values().toArray()[0].toString();
572         } else if (value instanceof GetInput) {
573             String inputName = ((GetInput) value).getInputName();
574
575             for (Input input : servInputs) {
576                 if (input.getName().equals(inputName)) {
577                     // keep both input name and default value
578                     // if service input does not supplies value the use default value
579                     String defaultValue = input.getDefault() != null ? (String) input.getDefault().toString() : "";
580                     output = inputName + "|" + defaultValue;// return default value
581                 }
582             }
583
584         } else {
585             output = value != null ? value.toString() : "";
586         }
587         return output; // return property value
588     }
589
590     String getResourceInput(ToscaResourceStructure toscaResourceStructure, String resourceCustomizationUuid)
591             throws ArtifactInstallerException {
592         Map<String, String> resouceRequest = new HashMap<>();
593         ISdcCsarHelper iSdcCsarHelper = toscaResourceStructure.getSdcCsarHelper();
594
595         List<Input> serInput = iSdcCsarHelper.getServiceInputs();
596         Optional<NodeTemplate> nodeTemplateOpt = iSdcCsarHelper.getServiceNodeTemplates().stream()
597                 .filter(e -> e.getMetaData().getValue(CUSTOMIZATION_UUID).equals(resourceCustomizationUuid))
598                 .findFirst();
599         if (nodeTemplateOpt.isPresent()) {
600             NodeTemplate nodeTemplate = nodeTemplateOpt.get();
601             LinkedHashMap<String, Property> resourceProperties = nodeTemplate.getProperties();
602
603             for (String key : resourceProperties.keySet()) {
604                 Property property = resourceProperties.get(key);
605
606                 String value = getValue(property.getValue(), serInput);
607                 resouceRequest.put(key, value);
608             }
609         }
610
611         try {
612             ObjectMapper objectMapper = new ObjectMapper();
613             String jsonStr = objectMapper.writeValueAsString(resouceRequest);
614
615             jsonStr = jsonStr.replace("\"", "\\\"");
616             logger.debug(
617                     "resource request for resource customization id (" + resourceCustomizationUuid + ") : " + jsonStr);
618             return jsonStr;
619         } catch (JsonProcessingException e) {
620             logger.error("resource input could not be deserialized for resource customization id ("
621                     + resourceCustomizationUuid + ")");
622             throw new ArtifactInstallerException("resource input could not be parsed", e);
623         }
624     }
625
626     protected void processNetworks(ToscaResourceStructure toscaResourceStruct, Service service)
627             throws ArtifactInstallerException {
628         List<NodeTemplate> nodeTemplatesVLList = toscaResourceStruct.getSdcCsarHelper().getServiceVlList();
629
630         if (nodeTemplatesVLList != null) {
631             for (NodeTemplate vlNode : nodeTemplatesVLList) {
632                 String networkResourceModelName = vlNode.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME);
633
634                 TempNetworkHeatTemplateLookup tempNetworkLookUp =
635                         tempNetworkLookupRepo.findFirstBynetworkResourceModelName(networkResourceModelName);
636
637                 if (tempNetworkLookUp != null) {
638                     HeatTemplate heatTemplate =
639                             heatRepo.findByArtifactUuid(tempNetworkLookUp.getHeatTemplateArtifactUuid());
640                     if (heatTemplate != null) {
641                         NetworkResourceCustomization networkCustomization = createNetwork(vlNode, toscaResourceStruct,
642                                 heatTemplate, tempNetworkLookUp.getAicVersionMax(),
643                                 tempNetworkLookUp.getAicVersionMin(), service);
644                         service.getNetworkCustomizations().add(networkCustomization);
645                     } else {
646                         throw new ArtifactInstallerException("No HeatTemplate found for artifactUUID: "
647                                 + tempNetworkLookUp.getHeatTemplateArtifactUuid());
648                     }
649                 } else {
650                     NetworkResourceCustomization networkCustomization =
651                             createNetwork(vlNode, toscaResourceStruct, null, null, null, service);
652                     service.getNetworkCustomizations().add(networkCustomization);
653                     logger.debug("No NetworkResourceName found in TempNetworkHeatTemplateLookup for "
654                             + networkResourceModelName);
655                 }
656
657             }
658         }
659     }
660
661     protected void processAllottedResources(ToscaResourceStructure toscaResourceStruct, Service service,
662             List<NodeTemplate> allottedResourceList) {
663         if (allottedResourceList != null) {
664             for (NodeTemplate allottedNode : allottedResourceList) {
665                 service.getAllottedCustomizations()
666                         .add(createAllottedResource(allottedNode, toscaResourceStruct, service));
667             }
668         }
669     }
670
671
672     protected ConfigurationResource getConfigurationResource(NodeTemplate nodeTemplate) {
673         Metadata metadata = nodeTemplate.getMetaData();
674         ConfigurationResource configResource = new ConfigurationResource();
675         configResource.setModelName(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
676         configResource.setModelInvariantUUID(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
677         configResource.setModelUUID(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
678         configResource.setModelVersion(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
679         configResource.setDescription(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
680         configResource.setToscaNodeType(nodeTemplate.getType());
681         return configResource;
682     }
683
684     protected ConfigurationResourceCustomization getConfigurationResourceCustomization(NodeTemplate nodeTemplate,
685             ToscaResourceStructure toscaResourceStructure, ServiceProxyResourceCustomization spResourceCustomization,
686             Service service) {
687         Metadata metadata = nodeTemplate.getMetaData();
688
689         ConfigurationResource configResource = getConfigurationResource(nodeTemplate);
690
691         ConfigurationResourceCustomization configCustomizationResource = new ConfigurationResourceCustomization();
692
693         Set<ConfigurationResourceCustomization> configResourceCustomizationSet = new HashSet<>();
694
695         configCustomizationResource
696                 .setModelCustomizationUUID(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
697         configCustomizationResource.setModelInstanceName(nodeTemplate.getName());
698
699         configCustomizationResource.setNfFunction(toscaResourceStructure.getSdcCsarHelper()
700                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFFUNCTION));
701         configCustomizationResource.setNfRole(toscaResourceStructure.getSdcCsarHelper()
702                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFROLE));
703         configCustomizationResource.setNfType(toscaResourceStructure.getSdcCsarHelper()
704                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFTYPE));
705         configCustomizationResource
706                 .setServiceProxyResourceCustomizationUUID(spResourceCustomization.getModelCustomizationUUID());
707
708         configCustomizationResource.setConfigurationResource(configResource);
709         configCustomizationResource.setService(service);
710         configResourceCustomizationSet.add(configCustomizationResource);
711
712         configResource.setConfigurationResourceCustomization(configResourceCustomizationSet);
713
714         return configCustomizationResource;
715     }
716
717
718     protected void processServiceProxyAndConfiguration(ToscaResourceStructure toscaResourceStruct, Service service) {
719
720         List<NodeTemplate> serviceProxyResourceList =
721                 toscaResourceStruct.getSdcCsarHelper().getServiceNodeTemplateBySdcType(SdcTypes.SERVICE_PROXY);
722
723         List<NodeTemplate> configurationNodeTemplatesList =
724                 toscaResourceStruct.getSdcCsarHelper().getServiceNodeTemplateBySdcType(SdcTypes.CONFIGURATION);
725
726         List<ServiceProxyResourceCustomization> serviceProxyList = new ArrayList<ServiceProxyResourceCustomization>();
727         List<ConfigurationResourceCustomization> configurationResourceList =
728                 new ArrayList<ConfigurationResourceCustomization>();
729
730         ServiceProxyResourceCustomization serviceProxy = null;
731
732         if (serviceProxyResourceList != null) {
733             for (NodeTemplate spNode : serviceProxyResourceList) {
734                 serviceProxy = createServiceProxy(spNode, service, toscaResourceStruct);
735                 serviceProxyList.add(serviceProxy);
736
737                 for (NodeTemplate configNode : configurationNodeTemplatesList) {
738
739                     List<RequirementAssignment> requirementsList =
740                             toscaResourceStruct.getSdcCsarHelper().getRequirementsOf(configNode).getAll();
741                     for (RequirementAssignment requirement : requirementsList) {
742                         if (requirement.getNodeTemplateName().equals(spNode.getName())) {
743                             ConfigurationResourceCustomization configurationResource =
744                                     createConfiguration(configNode, toscaResourceStruct, serviceProxy, service);
745
746                             Optional<ConfigurationResourceCustomization> matchingObject =
747                                     configurationResourceList.stream()
748                                             .filter(configurationResourceCustomization -> configNode.getMetaData()
749                                                     .getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID)
750                                                     .equals(configurationResource.getModelCustomizationUUID()))
751                                             .filter(configurationResourceCustomization -> configurationResourceCustomization
752                                                     .getModelInstanceName()
753                                                     .equals(configurationResource.getModelInstanceName()))
754                                             .findFirst();
755                             if (!matchingObject.isPresent()) {
756                                 configurationResourceList.add(configurationResource);
757                             }
758                             break;
759                         }
760                     }
761                 }
762
763             }
764         }
765
766         service.setConfigurationCustomizations(configurationResourceList);
767         service.setServiceProxyCustomizations(serviceProxyList);
768     }
769
770     /*
771      * ConfigurationResourceCustomization objects have their IDs auto incremented in the database. Unless we know their
772      * IDs we cannot possibly associate their related records. So these ConfigResourceCustomizations are persisted first
773      * and subsequently correlated.
774      */
775
776     protected void correlateConfigCustomResources(Service service) {
777         /* Assuming that we have only one pair of VRF-VNR */
778         ConfigurationResourceCustomization vrfConfigCustomResource = null;
779         ConfigurationResourceCustomization vnrConfigCustomResource = null;
780         List<ConfigurationResourceCustomization> configCustomList = service.getConfigurationCustomizations();
781         for (ConfigurationResourceCustomization configResource : configCustomList) {
782             String nodeType = configResource.getConfigurationResource().getToscaNodeType();
783             if (NODES_VRF_ENTRY.equalsIgnoreCase(nodeType)) {
784                 vrfConfigCustomResource = configResource;
785             } else if (VLAN_NETWORK_RECEPTOR.equalsIgnoreCase(nodeType)) {
786                 vnrConfigCustomResource = configResource;
787             }
788         }
789
790         if (vrfConfigCustomResource != null) {
791             vrfConfigCustomResource.setConfigResourceCustomization(vnrConfigCustomResource);
792             configCustomizationRepo.save(vrfConfigCustomResource);
793
794         }
795         if (vnrConfigCustomResource != null) {
796             vnrConfigCustomResource.setConfigResourceCustomization(vrfConfigCustomResource);
797             configCustomizationRepo.save(vnrConfigCustomResource);
798         }
799     }
800
801     protected void processNetworkCollections(ToscaResourceStructure toscaResourceStruct, Service service) {
802
803         List<NodeTemplate> networkCollectionList =
804                 toscaResourceStruct.getSdcCsarHelper().getServiceNodeTemplateBySdcType(SdcTypes.CR);
805
806         if (networkCollectionList != null) {
807             for (NodeTemplate crNode : networkCollectionList) {
808
809                 createNetworkCollection(crNode, toscaResourceStruct, service);
810                 collectionRepo.saveAndFlush(toscaResourceStruct.getCatalogCollectionResource());
811
812                 List<NetworkInstanceGroup> networkInstanceGroupList =
813                         toscaResourceStruct.getCatalogNetworkInstanceGroup();
814                 for (NetworkInstanceGroup networkInstanceGroup : networkInstanceGroupList) {
815                     instanceGroupRepo.saveAndFlush(networkInstanceGroup);
816                 }
817
818             }
819         }
820         service.getCollectionResourceCustomizations()
821                 .add(toscaResourceStruct.getCatalogCollectionResourceCustomization());
822     }
823
824
825
826     /**
827      * This is used to process the PNF specific resource, including resource and resource_customization.
828      * {@link IEntityDetails} based API is used to retrieve information. Please check {@link ISdcCsarHelper} for
829      * details.
830      */
831     protected void processPnfResources(ToscaResourceStructure toscaResourceStruct, Service service,
832             PnfResourceStructure resourceStructure) throws Exception {
833         logger.info("Processing PNF resource: {}", resourceStructure.getResourceInstance().getResourceUUID());
834
835         ISdcCsarHelper sdcCsarHelper = toscaResourceStruct.getSdcCsarHelper();
836         EntityQuery entityQuery = EntityQuery.newBuilder(SdcTypes.PNF).build();
837         TopologyTemplateQuery topologyTemplateQuery = TopologyTemplateQuery.newBuilder(SdcTypes.SERVICE).build();
838
839         List<IEntityDetails> entityDetailsList = sdcCsarHelper.getEntity(entityQuery, topologyTemplateQuery, false);
840         for (IEntityDetails entityDetails : entityDetailsList) {
841             Metadata metadata = entityDetails.getMetadata();
842             String customizationUUID = metadata.getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID);
843             String modelUuid = metadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID);
844             String notifCustomizationUUID = resourceStructure.getResourceInstance().getResourceCustomizationUUID();
845             if (customizationUUID != null && customizationUUID.equals(notifCustomizationUUID)) {
846                 logger.info("Resource customization UUID: {} is the same as notified resource customizationUUID: {}",
847                         customizationUUID, notifCustomizationUUID);
848
849                 if (checkExistingPnfResourceCutomization(customizationUUID)) {
850                     logger.info("Resource customization UUID: {} already deployed", customizationUUID);
851                 } else {
852                     PnfResource pnfResource = findExistingPnfResource(service, modelUuid);
853                     if (pnfResource == null) {
854                         pnfResource = createPnfResource(entityDetails);
855                     }
856                     PnfResourceCustomization pnfResourceCustomization =
857                             createPnfResourceCustomization(entityDetails, pnfResource);
858                     pnfResource.getPnfResourceCustomizations().add(pnfResourceCustomization);
859                     toscaResourceStruct.setPnfResourceCustomization(pnfResourceCustomization);
860                     service.getPnfCustomizations().add(pnfResourceCustomization);
861                 }
862             } else {
863                 logger.warn(
864                         "Resource customization UUID: {} is NOT the same as notified resource customizationUUID: {}",
865                         customizationUUID, notifCustomizationUUID);
866             }
867         }
868     }
869
870     private PnfResource findExistingPnfResource(Service service, String modelUuid) {
871         PnfResource pnfResource = null;
872         for (PnfResourceCustomization pnfResourceCustomization : service.getPnfCustomizations()) {
873             if (pnfResourceCustomization.getPnfResources() != null
874                     && pnfResourceCustomization.getPnfResources().getModelUUID().equals(modelUuid)) {
875                 pnfResource = pnfResourceCustomization.getPnfResources();
876             }
877         }
878         if (pnfResource == null) {
879             pnfResource = pnfResourceRepository.findById(modelUuid).orElse(pnfResource);
880         }
881         return pnfResource;
882     }
883
884     private boolean checkExistingPnfResourceCutomization(String customizationUUID) {
885         return pnfCustomizationRepository.findById(customizationUUID).isPresent();
886     }
887
888     /**
889      * Construct the {@link PnfResource} from {@link IEntityDetails} object.
890      */
891     private PnfResource createPnfResource(IEntityDetails entity) {
892         PnfResource pnfResource = new PnfResource();
893         Metadata metadata = entity.getMetadata();
894         pnfResource.setModelInvariantUUID(testNull(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID)));
895         pnfResource.setModelName(testNull(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
896         pnfResource.setModelUUID(testNull(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID)));
897         pnfResource.setModelVersion(testNull(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
898         pnfResource.setDescription(testNull(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
899         pnfResource.setCategory(testNull(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_CATEGORY)));
900         pnfResource.setSubCategory(testNull(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_SUBCATEGORY)));
901         pnfResource.setToscaNodeType(entity.getToscaType());
902         return pnfResource;
903     }
904
905     /**
906      * Construct the {@link PnfResourceCustomization} from {@link IEntityDetails} object.
907      */
908     private PnfResourceCustomization createPnfResourceCustomization(IEntityDetails entityDetails,
909             PnfResource pnfResource) {
910
911         PnfResourceCustomization pnfResourceCustomization = new PnfResourceCustomization();
912         Metadata metadata = entityDetails.getMetadata();
913         Map<String, Property> properties = entityDetails.getProperties();
914         pnfResourceCustomization.setModelCustomizationUUID(
915                 testNull(metadata.getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID)));
916         pnfResourceCustomization.setModelInstanceName(entityDetails.getName());
917         pnfResourceCustomization
918                 .setNfFunction(getStringValue(properties.get(SdcPropertyNames.PROPERTY_NAME_NFFUNCTION)));
919         pnfResourceCustomization.setNfNamingCode(getStringValue(properties.get(SdcPropertyNames.PROPERTY_NAME_NFCODE)));
920         pnfResourceCustomization.setNfRole(getStringValue(properties.get(SdcPropertyNames.PROPERTY_NAME_NFROLE)));
921         pnfResourceCustomization.setNfType(getStringValue(properties.get(SdcPropertyNames.PROPERTY_NAME_NFTYPE)));
922         pnfResourceCustomization.setMultiStageDesign(getStringValue(properties.get(MULTI_STAGE_DESIGN)));
923         pnfResourceCustomization.setBlueprintName(getStringValue(properties.get(SDNC_MODEL_NAME)));
924         pnfResourceCustomization.setBlueprintVersion(getStringValue(properties.get(SDNC_MODEL_VERSION)));
925         pnfResourceCustomization.setSkipPostInstConf(getBooleanValue(properties.get(SKIP_POST_INST_CONF)));
926         pnfResourceCustomization.setPnfResources(pnfResource);
927
928         return pnfResourceCustomization;
929     }
930
931     /**
932      * Get value from {@link Property} and cast to boolean value. Return true if property is null.
933      */
934     private boolean getBooleanValue(Property property) {
935         if (null == property) {
936             return true;
937         }
938         Object value = property.getValue();
939         return new Boolean(String.valueOf(value));
940     }
941
942     /**
943      * Get value from {@link Property} and cast to String value. Return empty String if property is null value.
944      */
945     private String getStringValue(Property property) {
946         if (null == property) {
947             return "";
948         }
949         Object value = property.getValue();
950         return String.valueOf(value);
951     }
952
953     protected void processVfModules(ToscaResourceStructure toscaResourceStruct, VfResourceStructure vfResourceStructure,
954             Service service, NodeTemplate nodeTemplate, Metadata metadata, String vfCustomizationCategory)
955             throws Exception {
956
957         logger.debug("VF Category is : " + vfCustomizationCategory);
958
959         if (vfResourceStructure.getVfModuleStructure() != null
960                 && !vfResourceStructure.getVfModuleStructure().isEmpty()) {
961
962             String vfCustomizationUUID = toscaResourceStruct.getSdcCsarHelper().getMetadataPropertyValue(metadata,
963                     SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID);
964             logger.debug("VFCustomizationUUID=" + vfCustomizationUUID);
965
966             IResourceInstance vfNotificationResource = vfResourceStructure.getResourceInstance();
967
968             // Make sure the VF ResourceCustomizationUUID from the notification and tosca customizations match before
969             // comparing their VF Modules UUID's
970             logger.debug("Checking if Notification VF ResourceCustomizationUUID: "
971                     + vfNotificationResource.getResourceCustomizationUUID() + " matches Tosca VF Customization UUID: "
972                     + vfCustomizationUUID);
973
974             if (vfCustomizationUUID.equals(vfNotificationResource.getResourceCustomizationUUID())) {
975
976                 logger.debug("vfCustomizationUUID: " + vfCustomizationUUID
977                         + " matches vfNotificationResource CustomizationUUID");
978
979                 VnfResourceCustomization vnfResource = createVnfResource(nodeTemplate, toscaResourceStruct, service);
980
981                 Set<CvnfcCustomization> existingCvnfcSet = new HashSet<CvnfcCustomization>();
982                 Set<VnfcCustomization> existingVnfcSet = new HashSet<VnfcCustomization>();
983
984                 for (VfModuleStructure vfModuleStructure : vfResourceStructure.getVfModuleStructure()) {
985
986                     logger.debug("vfModuleStructure:" + vfModuleStructure.toString());
987                     List<org.onap.sdc.toscaparser.api.Group> vfGroups =
988                             toscaResourceStruct.getSdcCsarHelper().getVfModulesByVf(vfCustomizationUUID);
989                     IVfModuleData vfMetadata = vfModuleStructure.getVfModuleMetadata();
990
991                     logger.debug("Comparing Vf_Modules_Metadata CustomizationUUID : "
992                             + vfMetadata.getVfModuleModelCustomizationUUID());
993
994                     Optional<org.onap.sdc.toscaparser.api.Group> matchingObject = vfGroups.stream()
995                             .peek(group -> logger.debug("To Csar Group VFModuleModelCustomizationUUID "
996                                     + group.getMetadata().getValue("vfModuleModelCustomizationUUID")))
997                             .filter(group -> group.getMetadata().getValue("vfModuleModelCustomizationUUID")
998                                     .equals(vfMetadata.getVfModuleModelCustomizationUUID()))
999                             .findFirst();
1000                     if (matchingObject.isPresent()) {
1001                         VfModuleCustomization vfModuleCustomization = createVFModuleResource(matchingObject.get(),
1002                                 nodeTemplate, toscaResourceStruct, vfResourceStructure, vfMetadata, vnfResource,
1003                                 service, existingCvnfcSet, existingVnfcSet);
1004                         vfModuleCustomization.getVfModule().setVnfResources(vnfResource.getVnfResources());
1005                     } else
1006                         throw new Exception(
1007                                 "Cannot find matching VFModule Customization in Csar for Vf_Modules_Metadata: "
1008                                         + vfMetadata.getVfModuleModelCustomizationUUID());
1009
1010                 }
1011
1012
1013                 // Check for VNFC Instance Group info and add it if there is
1014                 List<Group> groupList =
1015                         toscaResourceStruct.getSdcCsarHelper().getGroupsOfOriginOfNodeTemplateByToscaGroupType(
1016                                 nodeTemplate, "org.openecomp.groups.VfcInstanceGroup");
1017
1018                 for (Group group : groupList) {
1019                     VnfcInstanceGroupCustomization vnfcInstanceGroupCustomization =
1020                             createVNFCInstanceGroup(nodeTemplate, group, vnfResource, toscaResourceStruct);
1021                     vnfcInstanceGroupCustomizationRepo.saveAndFlush(vnfcInstanceGroupCustomization);
1022                 }
1023
1024
1025                 service.getVnfCustomizations().add(vnfResource);
1026             } else {
1027                 logger.debug("Notification VF ResourceCustomizationUUID: "
1028                         + vfNotificationResource.getResourceCustomizationUUID() + " doesn't match "
1029                         + "Tosca VF Customization UUID: " + vfCustomizationUUID);
1030             }
1031         }
1032     }
1033
1034     public void processWatchdog(String distributionId, String servideUUID, Optional<String> distributionNotification,
1035             String consumerId) {
1036         WatchdogServiceModVerIdLookup modVerIdLookup =
1037                 new WatchdogServiceModVerIdLookup(distributionId, servideUUID, distributionNotification, consumerId);
1038         watchdogModVerIdLookupRepository.saveAndFlush(modVerIdLookup);
1039
1040         try {
1041
1042             WatchdogDistributionStatus distributionStatus = new WatchdogDistributionStatus(distributionId);
1043             watchdogDistributionStatusRepository.saveAndFlush(distributionStatus);
1044
1045         } catch (ObjectOptimisticLockingFailureException e) {
1046             logger.debug("ObjectOptimisticLockingFailureException in processWatchdog : " + e.toString());
1047             throw e;
1048         }
1049     }
1050
1051     protected void extractHeatInformation(ToscaResourceStructure toscaResourceStruct,
1052             VfResourceStructure vfResourceStructure) {
1053         for (VfModuleArtifact vfModuleArtifact : vfResourceStructure.getArtifactsMapByUUID().values()) {
1054
1055             switch (vfModuleArtifact.getArtifactInfo().getArtifactType()) {
1056                 case ASDCConfiguration.HEAT:
1057                 case ASDCConfiguration.HEAT_NESTED:
1058                     createHeatTemplateFromArtifact(vfResourceStructure, toscaResourceStruct, vfModuleArtifact);
1059                     break;
1060                 case ASDCConfiguration.HEAT_VOL:
1061                     createHeatTemplateFromArtifact(vfResourceStructure, toscaResourceStruct, vfModuleArtifact);
1062                     VfModuleArtifact envModuleArtifact =
1063                             getHeatEnvArtifactFromGeneratedArtifact(vfResourceStructure, vfModuleArtifact);
1064                     createHeatEnvFromArtifact(vfResourceStructure, envModuleArtifact);
1065                     break;
1066                 case ASDCConfiguration.HEAT_ENV:
1067                     createHeatEnvFromArtifact(vfResourceStructure, vfModuleArtifact);
1068                     break;
1069                 case ASDCConfiguration.HEAT_ARTIFACT:
1070                     createHeatFileFromArtifact(vfResourceStructure, vfModuleArtifact, toscaResourceStruct);
1071                     break;
1072                 case ASDCConfiguration.HEAT_NET:
1073                 case ASDCConfiguration.OTHER:
1074                     logger.warn("{} {} {} {}", MessageEnum.ASDC_ARTIFACT_TYPE_NOT_SUPPORT.toString(),
1075                             vfModuleArtifact.getArtifactInfo().getArtifactType() + "(Artifact Name:"
1076                                     + vfModuleArtifact.getArtifactInfo().getArtifactName() + ")",
1077                             ErrorCode.DataError.getValue(), "Artifact type not supported");
1078                     break;
1079                 default:
1080                     break;
1081
1082             }
1083         }
1084     }
1085
1086     protected VfModuleArtifact getHeatEnvArtifactFromGeneratedArtifact(VfResourceStructure vfResourceStructure,
1087             VfModuleArtifact vfModuleArtifact) {
1088         String artifactName = vfModuleArtifact.getArtifactInfo().getArtifactName();
1089         artifactName = artifactName.substring(0, artifactName.indexOf('.'));
1090         for (VfModuleArtifact moduleArtifact : vfResourceStructure.getArtifactsMapByUUID().values()) {
1091             if (moduleArtifact.getArtifactInfo().getArtifactName().contains(artifactName)
1092                     && moduleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_ENV)) {
1093                 return moduleArtifact;
1094             }
1095         }
1096         return null;
1097     }
1098
1099     public String verifyTheFilePrefixInArtifacts(String filebody, VfResourceStructure vfResourceStructure,
1100             List<String> listTypes) {
1101         String newFileBody = filebody;
1102         for (VfModuleArtifact moduleArtifact : vfResourceStructure.getArtifactsMapByUUID().values()) {
1103
1104             if (listTypes.contains(moduleArtifact.getArtifactInfo().getArtifactType())) {
1105
1106                 newFileBody =
1107                         verifyTheFilePrefixInString(newFileBody, moduleArtifact.getArtifactInfo().getArtifactName());
1108             }
1109         }
1110         return newFileBody;
1111     }
1112
1113     public String verifyTheFilePrefixInString(final String body, final String filenameToVerify) {
1114
1115         String needlePrefix = "file:///";
1116         String prefixedFilenameToVerify = needlePrefix + filenameToVerify;
1117
1118         if ((body == null) || (body.length() == 0) || (filenameToVerify == null) || (filenameToVerify.length() == 0)) {
1119             return body;
1120         }
1121
1122         StringBuilder sb = new StringBuilder(body.length());
1123
1124         int currentIndex = 0;
1125         int startIndex = 0;
1126
1127         while (currentIndex != -1) {
1128             startIndex = currentIndex;
1129             currentIndex = body.indexOf(prefixedFilenameToVerify, startIndex);
1130
1131             if (currentIndex == -1) {
1132                 break;
1133             }
1134             // We append from the startIndex up to currentIndex (start of File
1135             // Name)
1136             sb.append(body.substring(startIndex, currentIndex));
1137             sb.append(filenameToVerify);
1138
1139             currentIndex += prefixedFilenameToVerify.length();
1140         }
1141
1142         sb.append(body.substring(startIndex));
1143
1144         return sb.toString();
1145     }
1146
1147     protected void createHeatTemplateFromArtifact(VfResourceStructure vfResourceStructure,
1148             ToscaResourceStructure toscaResourceStruct, VfModuleArtifact vfModuleArtifact) {
1149
1150         HeatTemplate existingHeatTemplate =
1151                 heatRepo.findByArtifactUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1152
1153         if (existingHeatTemplate == null) {
1154             HeatTemplate heatTemplate = new HeatTemplate();
1155             List<String> typeList = new ArrayList<>();
1156             typeList.add(ASDCConfiguration.HEAT_NESTED);
1157             typeList.add(ASDCConfiguration.HEAT_ARTIFACT);
1158
1159             heatTemplate.setTemplateBody(
1160                     verifyTheFilePrefixInArtifacts(vfModuleArtifact.getResult(), vfResourceStructure, typeList));
1161             heatTemplate.setTemplateName(vfModuleArtifact.getArtifactInfo().getArtifactName());
1162
1163             if (vfModuleArtifact.getArtifactInfo().getArtifactTimeout() != null) {
1164                 heatTemplate.setTimeoutMinutes(vfModuleArtifact.getArtifactInfo().getArtifactTimeout());
1165             } else {
1166                 heatTemplate.setTimeoutMinutes(240);
1167             }
1168
1169             heatTemplate.setDescription(vfModuleArtifact.getArtifactInfo().getArtifactDescription());
1170             heatTemplate.setVersion(BigDecimalVersion
1171                     .castAndCheckNotificationVersionToString(vfModuleArtifact.getArtifactInfo().getArtifactVersion()));
1172             heatTemplate.setArtifactUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1173
1174             if (vfModuleArtifact.getArtifactInfo().getArtifactChecksum() != null) {
1175                 heatTemplate.setArtifactChecksum(vfModuleArtifact.getArtifactInfo().getArtifactChecksum());
1176             } else {
1177                 heatTemplate.setArtifactChecksum(MANUAL_RECORD);
1178             }
1179
1180             Set<HeatTemplateParam> heatParam = extractHeatTemplateParameters(vfModuleArtifact.getResult(),
1181                     vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1182             heatTemplate.setParameters(heatParam);
1183             vfModuleArtifact.setHeatTemplate(heatTemplate);
1184         } else {
1185             vfModuleArtifact.setHeatTemplate(existingHeatTemplate);
1186         }
1187     }
1188
1189     protected void createHeatEnvFromArtifact(VfResourceStructure vfResourceStructure,
1190             VfModuleArtifact vfModuleArtifact) {
1191
1192         HeatEnvironment existingHeatEnvironment =
1193                 heatEnvRepo.findByArtifactUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1194
1195         if (existingHeatEnvironment == null) {
1196             HeatEnvironment heatEnvironment = new HeatEnvironment();
1197             heatEnvironment.setName(vfModuleArtifact.getArtifactInfo().getArtifactName());
1198             List<String> typeList = new ArrayList<>();
1199             typeList.add(ASDCConfiguration.HEAT);
1200             typeList.add(ASDCConfiguration.HEAT_VOL);
1201             heatEnvironment.setEnvironment(
1202                     verifyTheFilePrefixInArtifacts(vfModuleArtifact.getResult(), vfResourceStructure, typeList));
1203             heatEnvironment.setDescription(vfModuleArtifact.getArtifactInfo().getArtifactDescription());
1204             heatEnvironment.setVersion(BigDecimalVersion
1205                     .castAndCheckNotificationVersionToString(vfModuleArtifact.getArtifactInfo().getArtifactVersion()));
1206             heatEnvironment.setArtifactUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1207
1208             if (vfModuleArtifact.getArtifactInfo().getArtifactChecksum() != null) {
1209                 heatEnvironment.setArtifactChecksum(vfModuleArtifact.getArtifactInfo().getArtifactChecksum());
1210             } else {
1211                 heatEnvironment.setArtifactChecksum(MANUAL_RECORD);
1212             }
1213             vfModuleArtifact.setHeatEnvironment(heatEnvironment);
1214         } else {
1215             vfModuleArtifact.setHeatEnvironment(existingHeatEnvironment);
1216         }
1217     }
1218
1219     protected void createHeatFileFromArtifact(VfResourceStructure vfResourceStructure,
1220             VfModuleArtifact vfModuleArtifact, ToscaResourceStructure toscaResourceStruct) {
1221
1222         HeatFiles existingHeatFiles =
1223                 heatFilesRepo.findByArtifactUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1224
1225         if (existingHeatFiles == null) {
1226             HeatFiles heatFile = new HeatFiles();
1227             heatFile.setAsdcUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1228             heatFile.setDescription(vfModuleArtifact.getArtifactInfo().getArtifactDescription());
1229             heatFile.setFileBody(vfModuleArtifact.getResult());
1230             heatFile.setFileName(vfModuleArtifact.getArtifactInfo().getArtifactName());
1231             heatFile.setVersion(BigDecimalVersion
1232                     .castAndCheckNotificationVersionToString(vfModuleArtifact.getArtifactInfo().getArtifactVersion()));
1233             toscaResourceStruct.setHeatFilesUUID(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1234             if (vfModuleArtifact.getArtifactInfo().getArtifactChecksum() != null) {
1235                 heatFile.setArtifactChecksum(vfModuleArtifact.getArtifactInfo().getArtifactChecksum());
1236             } else {
1237                 heatFile.setArtifactChecksum(MANUAL_RECORD);
1238             }
1239             vfModuleArtifact.setHeatFiles(heatFile);
1240         } else {
1241             vfModuleArtifact.setHeatFiles(existingHeatFiles);
1242         }
1243     }
1244
1245     protected Service createService(ToscaResourceStructure toscaResourceStructure,
1246             ResourceStructure resourceStructure) {
1247
1248         Metadata serviceMetadata = toscaResourceStructure.getServiceMetadata();
1249
1250         Service service = new Service();
1251
1252         if (serviceMetadata != null) {
1253
1254             if (toscaResourceStructure.getServiceVersion() != null) {
1255                 service.setModelVersion(toscaResourceStructure.getServiceVersion());
1256             }
1257
1258             service.setServiceType(serviceMetadata.getValue("serviceType"));
1259             service.setServiceRole(serviceMetadata.getValue("serviceRole"));
1260             service.setCategory(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_CATEGORY));
1261
1262             service.setDescription(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1263             service.setModelName(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1264             service.setModelUUID(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1265             service.setEnvironmentContext(serviceMetadata.getValue("environmentContext"));
1266
1267             if (resourceStructure != null)
1268                 service.setWorkloadContext(resourceStructure.getNotification().getWorkloadContext());
1269
1270             service.setModelInvariantUUID(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1271             service.setCsar(toscaResourceStructure.getCatalogToscaCsar());
1272         }
1273
1274
1275         toscaResourceStructure.setCatalogService(service);
1276         return service;
1277     }
1278
1279     protected ServiceProxyResourceCustomization createServiceProxy(NodeTemplate nodeTemplate, Service service,
1280             ToscaResourceStructure toscaResourceStructure) {
1281
1282         Metadata spMetadata = nodeTemplate.getMetaData();
1283
1284         ServiceProxyResourceCustomization spCustomizationResource = new ServiceProxyResourceCustomization();
1285
1286         Set<ServiceProxyResourceCustomization> serviceProxyCustomizationSet = new HashSet<>();
1287
1288         spCustomizationResource.setModelName(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1289         spCustomizationResource
1290                 .setModelInvariantUUID(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1291         spCustomizationResource.setModelUUID(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1292         spCustomizationResource.setModelVersion(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1293         spCustomizationResource.setDescription(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1294
1295         spCustomizationResource
1296                 .setModelCustomizationUUID(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1297         spCustomizationResource.setModelInstanceName(nodeTemplate.getName());
1298         spCustomizationResource.setToscaNodeType(nodeTemplate.getType());
1299
1300         String sourceServiceUUID = spMetadata.getValue("sourceModelUuid");
1301
1302         Service sourceService = serviceRepo.findOneByModelUUID(sourceServiceUUID);
1303
1304         spCustomizationResource.setSourceService(sourceService);
1305         spCustomizationResource.setToscaNodeType(nodeTemplate.getType());
1306         serviceProxyCustomizationSet.add(spCustomizationResource);
1307
1308
1309         toscaResourceStructure.setCatalogServiceProxyResourceCustomization(spCustomizationResource);
1310
1311         return spCustomizationResource;
1312     }
1313
1314     protected ConfigurationResourceCustomization createConfiguration(NodeTemplate nodeTemplate,
1315             ToscaResourceStructure toscaResourceStructure, ServiceProxyResourceCustomization spResourceCustomization,
1316             Service service) {
1317
1318         ConfigurationResourceCustomization configCustomizationResource = getConfigurationResourceCustomization(
1319                 nodeTemplate, toscaResourceStructure, spResourceCustomization, service);
1320
1321         ConfigurationResource configResource = getConfigurationResource(nodeTemplate);
1322
1323         Set<ConfigurationResourceCustomization> configResourceCustomizationSet = new HashSet<>();
1324
1325         configCustomizationResource.setConfigurationResource(configResource);
1326
1327         configResourceCustomizationSet.add(configCustomizationResource);
1328
1329         configResource.setConfigurationResourceCustomization(configResourceCustomizationSet);
1330
1331         toscaResourceStructure.setCatalogConfigurationResource(configResource);
1332
1333         toscaResourceStructure.setCatalogConfigurationResourceCustomization(configCustomizationResource);
1334
1335         return configCustomizationResource;
1336     }
1337
1338     protected ConfigurationResource createFabricConfiguration(NodeTemplate nodeTemplate,
1339             ToscaResourceStructure toscaResourceStructure) {
1340
1341         Metadata fabricMetadata = nodeTemplate.getMetaData();
1342
1343         ConfigurationResource configResource = new ConfigurationResource();
1344
1345         configResource.setModelName(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1346         configResource.setModelInvariantUUID(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1347         configResource.setModelUUID(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1348         configResource.setModelVersion(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1349         configResource.setDescription(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1350         configResource.setToscaNodeType(nodeTemplate.getType());
1351
1352         return configResource;
1353     }
1354
1355     protected void createToscaCsar(ToscaResourceStructure toscaResourceStructure) {
1356         ToscaCsar toscaCsar = new ToscaCsar();
1357         if (toscaResourceStructure.getToscaArtifact().getArtifactChecksum() != null) {
1358             toscaCsar.setArtifactChecksum(toscaResourceStructure.getToscaArtifact().getArtifactChecksum());
1359         } else {
1360             toscaCsar.setArtifactChecksum(MANUAL_RECORD);
1361         }
1362         toscaCsar.setArtifactUUID(toscaResourceStructure.getToscaArtifact().getArtifactUUID());
1363         toscaCsar.setName(toscaResourceStructure.getToscaArtifact().getArtifactName());
1364         toscaCsar.setVersion(toscaResourceStructure.getToscaArtifact().getArtifactVersion());
1365         toscaCsar.setDescription(toscaResourceStructure.getToscaArtifact().getArtifactDescription());
1366         toscaCsar.setUrl(toscaResourceStructure.getToscaArtifact().getArtifactURL());
1367
1368         toscaResourceStructure.setCatalogToscaCsar(toscaCsar);
1369     }
1370
1371     protected VnfcCustomization findExistingVfc(Set<VnfcCustomization> vnfcCustomizations, String customizationUUID) {
1372         VnfcCustomization vnfcCustomization = null;
1373         for (VnfcCustomization vnfcCustom : vnfcCustomizations) {
1374             if (vnfcCustom != null && vnfcCustom.getModelCustomizationUUID().equals(customizationUUID)) {
1375                 vnfcCustomization = vnfcCustom;
1376             }
1377         }
1378
1379         if (vnfcCustomization == null)
1380             vnfcCustomization = vnfcCustomizationRepo.findOneByModelCustomizationUUID(customizationUUID);
1381         // vnfcCustomization = new VnfcCustomization();
1382
1383         return vnfcCustomization;
1384     }
1385
1386     protected CvnfcCustomization findExistingCvfc(Set<CvnfcCustomization> cvnfcCustomizations,
1387             String customizationUUID) {
1388         CvnfcCustomization cvnfcCustomization = null;
1389         for (CvnfcCustomization cvnfcCustom : cvnfcCustomizations) {
1390             if (cvnfcCustom != null && cvnfcCustom.getModelCustomizationUUID().equals(customizationUUID)) {
1391                 cvnfcCustomization = cvnfcCustom;
1392             }
1393         }
1394
1395         if (cvnfcCustomization == null)
1396             cvnfcCustomization = cvnfcCustomizationRepo.findOneByModelCustomizationUUID(customizationUUID);
1397
1398         return cvnfcCustomization;
1399     }
1400
1401     protected NetworkResourceCustomization createNetwork(NodeTemplate networkNodeTemplate,
1402             ToscaResourceStructure toscaResourceStructure, HeatTemplate heatTemplate, String aicMax, String aicMin,
1403             Service service) {
1404
1405         NetworkResourceCustomization networkResourceCustomization =
1406                 networkCustomizationRepo.findOneByModelCustomizationUUID(
1407                         networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1408
1409         boolean networkUUIDsMatch = true;
1410         // Check to make sure the NetworkResourceUUID on the Customization record matches the NetworkResourceUUID from
1411         // the distribution.
1412         // If not we'll update the Customization record with latest from the distribution
1413         if (networkResourceCustomization != null) {
1414             String existingNetworkModelUUID = networkResourceCustomization.getNetworkResource().getModelUUID();
1415             String latestNetworkModelUUID =
1416                     networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID);
1417
1418             if (!existingNetworkModelUUID.equals(latestNetworkModelUUID)) {
1419                 networkUUIDsMatch = false;
1420             }
1421
1422         }
1423
1424         if (networkResourceCustomization != null && !networkUUIDsMatch) {
1425
1426             NetworkResource networkResource =
1427                     createNetworkResource(networkNodeTemplate, toscaResourceStructure, heatTemplate, aicMax, aicMin);
1428
1429             networkResourceCustomization.setNetworkResource(networkResource);
1430
1431             networkCustomizationRepo.saveAndFlush(networkResourceCustomization);
1432
1433
1434         } else if (networkResourceCustomization == null) {
1435             networkResourceCustomization =
1436                     createNetworkResourceCustomization(networkNodeTemplate, toscaResourceStructure);
1437
1438             NetworkResource networkResource = findExistingNetworkResource(service,
1439                     networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1440             if (networkResource == null)
1441                 networkResource = createNetworkResource(networkNodeTemplate, toscaResourceStructure, heatTemplate,
1442                         aicMax, aicMin);
1443
1444             networkResource.addNetworkResourceCustomization(networkResourceCustomization);
1445             networkResourceCustomization.setNetworkResource(networkResource);
1446         }
1447
1448         return networkResourceCustomization;
1449     }
1450
1451     protected NetworkResource findExistingNetworkResource(Service service, String modelUUID) {
1452         NetworkResource networkResource = null;
1453         for (NetworkResourceCustomization networkCustom : service.getNetworkCustomizations()) {
1454             if (networkCustom.getNetworkResource() != null
1455                     && networkCustom.getNetworkResource().getModelUUID().equals(modelUUID)) {
1456                 networkResource = networkCustom.getNetworkResource();
1457             }
1458         }
1459         if (networkResource == null)
1460             networkResource = networkRepo.findResourceByModelUUID(modelUUID);
1461
1462         return networkResource;
1463     }
1464
1465     protected NetworkResourceCustomization createNetworkResourceCustomization(NodeTemplate networkNodeTemplate,
1466             ToscaResourceStructure toscaResourceStructure) {
1467         NetworkResourceCustomization networkResourceCustomization = new NetworkResourceCustomization();
1468         networkResourceCustomization.setModelInstanceName(
1469                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
1470         networkResourceCustomization.setModelCustomizationUUID(
1471                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID)));
1472
1473         networkResourceCustomization.setNetworkTechnology(
1474                 testNull(toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1475                         SdcPropertyNames.PROPERTY_NAME_NETWORKTECHNOLOGY)));
1476         networkResourceCustomization.setNetworkType(testNull(toscaResourceStructure.getSdcCsarHelper()
1477                 .getNodeTemplatePropertyLeafValue(networkNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKTYPE)));
1478         networkResourceCustomization.setNetworkRole(testNull(toscaResourceStructure.getSdcCsarHelper()
1479                 .getNodeTemplatePropertyLeafValue(networkNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKROLE)));
1480         networkResourceCustomization.setNetworkScope(testNull(toscaResourceStructure.getSdcCsarHelper()
1481                 .getNodeTemplatePropertyLeafValue(networkNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKSCOPE)));
1482         return networkResourceCustomization;
1483     }
1484
1485     protected NetworkResource createNetworkResource(NodeTemplate networkNodeTemplate,
1486             ToscaResourceStructure toscaResourceStructure, HeatTemplate heatTemplate, String aicMax, String aicMin) {
1487         NetworkResource networkResource = new NetworkResource();
1488         String providerNetwork = toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(
1489                 networkNodeTemplate, SdcPropertyNames.PROPERTY_NAME_PROVIDERNETWORK_ISPROVIDERNETWORK);
1490
1491         if ("true".equalsIgnoreCase(providerNetwork)) {
1492             networkResource.setNeutronNetworkType(PROVIDER);
1493         } else {
1494             networkResource.setNeutronNetworkType(BASIC);
1495         }
1496
1497         networkResource.setModelName(
1498                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
1499
1500         networkResource.setModelInvariantUUID(
1501                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID)));
1502         networkResource.setModelUUID(
1503                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID)));
1504         networkResource.setModelVersion(
1505                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
1506
1507         networkResource.setAicVersionMax(aicMax);
1508         networkResource.setAicVersionMin(aicMin);
1509         networkResource.setToscaNodeType(networkNodeTemplate.getType());
1510         networkResource.setDescription(
1511                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
1512         networkResource.setOrchestrationMode(HEAT);
1513         networkResource.setHeatTemplate(heatTemplate);
1514         return networkResource;
1515     }
1516
1517     protected CollectionNetworkResourceCustomization createNetworkCollection(NodeTemplate networkNodeTemplate,
1518             ToscaResourceStructure toscaResourceStructure, Service service) {
1519
1520         CollectionNetworkResourceCustomization collectionNetworkResourceCustomization =
1521                 new CollectionNetworkResourceCustomization();
1522
1523         // **** Build Object to populate Collection_Resource table
1524         CollectionResource collectionResource = new CollectionResource();
1525
1526         collectionResource
1527                 .setModelName(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1528         collectionResource.setModelInvariantUUID(
1529                 networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1530         collectionResource
1531                 .setModelUUID(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1532         collectionResource
1533                 .setModelVersion(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1534         collectionResource
1535                 .setDescription(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1536         collectionResource.setToscaNodeType(networkNodeTemplate.getType());
1537
1538         toscaResourceStructure.setCatalogCollectionResource(collectionResource);
1539
1540         // **** Build object to populate Collection_Resource_Customization table
1541         NetworkCollectionResourceCustomization ncfc = new NetworkCollectionResourceCustomization();
1542
1543         ncfc.setFunction(toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1544                 "cr_function"));
1545         ncfc.setRole(toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1546                 "cr_role"));
1547         ncfc.setType(toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1548                 "cr_type"));
1549
1550         ncfc.setModelInstanceName(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1551         ncfc.setModelCustomizationUUID(
1552                 networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1553
1554         Set<CollectionNetworkResourceCustomization> networkResourceCustomizationSet = new HashSet<>();
1555         networkResourceCustomizationSet.add(collectionNetworkResourceCustomization);
1556
1557         ncfc.setNetworkResourceCustomization(networkResourceCustomizationSet);
1558
1559         ncfc.setCollectionResource(collectionResource);
1560         toscaResourceStructure.setCatalogCollectionResourceCustomization(ncfc);
1561
1562         // *** Build object to populate the Instance_Group table
1563         List<Group> groupList =
1564                 toscaResourceStructure.getSdcCsarHelper().getGroupsOfOriginOfNodeTemplateByToscaGroupType(
1565                         networkNodeTemplate, "org.openecomp.groups.NetworkCollection");
1566
1567         List<NetworkInstanceGroup> networkInstanceGroupList = new ArrayList<>();
1568
1569         List<CollectionResourceInstanceGroupCustomization> collectionResourceInstanceGroupCustomizationList =
1570                 new ArrayList<CollectionResourceInstanceGroupCustomization>();
1571
1572         for (Group group : groupList) {
1573
1574             NetworkInstanceGroup networkInstanceGroup = new NetworkInstanceGroup();
1575             Metadata instanceMetadata = group.getMetadata();
1576             networkInstanceGroup.setModelName(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1577             networkInstanceGroup
1578                     .setModelInvariantUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1579             networkInstanceGroup.setModelUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1580             networkInstanceGroup.setModelVersion(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1581             networkInstanceGroup.setToscaNodeType(group.getType());
1582             networkInstanceGroup.setRole(SubType.SUB_INTERFACE.toString()); // Set
1583             // Role
1584             networkInstanceGroup.setType(InstanceGroupType.L3_NETWORK); // Set
1585             // type
1586             networkInstanceGroup.setCollectionResource(collectionResource);
1587
1588             // ****Build object to populate
1589             // Collection_Resource_Instance_Group_Customization table
1590             CollectionResourceInstanceGroupCustomization crInstanceGroupCustomization =
1591                     new CollectionResourceInstanceGroupCustomization();
1592             crInstanceGroupCustomization.setInstanceGroup(networkInstanceGroup);
1593             crInstanceGroupCustomization.setModelUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1594             crInstanceGroupCustomization.setModelCustomizationUUID(
1595                     networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1596
1597             // Loop through the template policy to find the subinterface_network_quantity property name. Then extract
1598             // the value for it.
1599             List<Policy> policyList =
1600                     toscaResourceStructure.getSdcCsarHelper().getPoliciesOfOriginOfNodeTemplateByToscaPolicyType(
1601                             networkNodeTemplate, "org.openecomp.policies.scaling.Fixed");
1602
1603             if (policyList != null) {
1604                 for (Policy policy : policyList) {
1605                     for (String policyNetworkCollection : policy.getTargets()) {
1606
1607                         if (policyNetworkCollection.equalsIgnoreCase(group.getName())) {
1608
1609                             Map<String, Object> propMap = policy.getPolicyProperties();
1610
1611                             if (propMap.get("quantity") != null) {
1612
1613                                 String quantity = toscaResourceStructure.getSdcCsarHelper()
1614                                         .getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1615                                                 getPropertyInput(propMap.get("quantity").toString()));
1616
1617                                 if (quantity != null) {
1618                                     crInstanceGroupCustomization
1619                                             .setSubInterfaceNetworkQuantity(Integer.parseInt(quantity));
1620                                 }
1621
1622                             }
1623
1624                         }
1625                     }
1626                 }
1627             }
1628
1629             crInstanceGroupCustomization.setDescription(
1630                     toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1631                             instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME)
1632                                     + "_network_collection_description"));
1633             crInstanceGroupCustomization.setFunction(
1634                     toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1635                             instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME)
1636                                     + "_network_collection_function"));
1637             crInstanceGroupCustomization.setCollectionResourceCust(ncfc);
1638             collectionResourceInstanceGroupCustomizationList.add(crInstanceGroupCustomization);
1639
1640             networkInstanceGroup
1641                     .setCollectionInstanceGroupCustomizations(collectionResourceInstanceGroupCustomizationList);
1642
1643             networkInstanceGroupList.add(networkInstanceGroup);
1644
1645
1646             toscaResourceStructure.setCatalogNetworkInstanceGroup(networkInstanceGroupList);
1647
1648             List<NodeTemplate> vlNodeList = toscaResourceStructure.getSdcCsarHelper()
1649                     .getNodeTemplateBySdcType(networkNodeTemplate, SdcTypes.VL);
1650
1651             List<CollectionNetworkResourceCustomization> collectionNetworkResourceCustomizationList = new ArrayList<>();
1652
1653             // *****Build object to populate the NetworkResource table
1654             NetworkResource networkResource = new NetworkResource();
1655
1656             for (NodeTemplate vlNodeTemplate : vlNodeList) {
1657
1658                 String providerNetwork = toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(
1659                         vlNodeTemplate, SdcPropertyNames.PROPERTY_NAME_PROVIDERNETWORK_ISPROVIDERNETWORK);
1660
1661                 if ("true".equalsIgnoreCase(providerNetwork)) {
1662                     networkResource.setNeutronNetworkType(PROVIDER);
1663                 } else {
1664                     networkResource.setNeutronNetworkType(BASIC);
1665                 }
1666
1667                 networkResource
1668                         .setModelName(vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1669
1670                 networkResource.setModelInvariantUUID(
1671                         vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1672                 networkResource
1673                         .setModelUUID(vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1674                 networkResource
1675                         .setModelVersion(vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1676
1677                 networkResource.setAicVersionMax(
1678                         vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_MAXINSTANCES));
1679
1680                 TempNetworkHeatTemplateLookup tempNetworkLookUp =
1681                         tempNetworkLookupRepo.findFirstBynetworkResourceModelName(
1682                                 vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1683
1684                 if (tempNetworkLookUp != null) {
1685
1686                     HeatTemplate heatTemplate =
1687                             heatRepo.findByArtifactUuid(tempNetworkLookUp.getHeatTemplateArtifactUuid());
1688                     networkResource.setHeatTemplate(heatTemplate);
1689
1690                     networkResource.setAicVersionMin(tempNetworkLookUp.getAicVersionMin());
1691
1692                 }
1693
1694                 networkResource.setToscaNodeType(vlNodeTemplate.getType());
1695                 networkResource.setDescription(
1696                         vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1697                 networkResource.setOrchestrationMode(HEAT);
1698
1699                 // Build object to populate the
1700                 // Collection_Network_Resource_Customization table
1701                 for (NodeTemplate memberNode : group.getMemberNodes()) {
1702                     collectionNetworkResourceCustomization.setModelInstanceName(memberNode.getName());
1703                 }
1704
1705                 collectionNetworkResourceCustomization.setModelCustomizationUUID(
1706                         vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1707
1708                 collectionNetworkResourceCustomization.setNetworkTechnology(
1709                         toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(vlNodeTemplate,
1710                                 SdcPropertyNames.PROPERTY_NAME_NETWORKTECHNOLOGY));
1711                 collectionNetworkResourceCustomization.setNetworkType(toscaResourceStructure.getSdcCsarHelper()
1712                         .getNodeTemplatePropertyLeafValue(vlNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKTYPE));
1713                 collectionNetworkResourceCustomization.setNetworkRole(toscaResourceStructure.getSdcCsarHelper()
1714                         .getNodeTemplatePropertyLeafValue(vlNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKROLE));
1715                 collectionNetworkResourceCustomization.setNetworkScope(toscaResourceStructure.getSdcCsarHelper()
1716                         .getNodeTemplatePropertyLeafValue(vlNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKSCOPE));
1717                 collectionNetworkResourceCustomization.setInstanceGroup(networkInstanceGroup);
1718                 collectionNetworkResourceCustomization.setNetworkResource(networkResource);
1719                 collectionNetworkResourceCustomization.setNetworkResourceCustomization(ncfc);
1720
1721                 collectionNetworkResourceCustomizationList.add(collectionNetworkResourceCustomization);
1722             }
1723
1724         }
1725
1726         return collectionNetworkResourceCustomization;
1727     }
1728
1729     protected VnfcInstanceGroupCustomization createVNFCInstanceGroup(NodeTemplate vnfcNodeTemplate, Group group,
1730             VnfResourceCustomization vnfResourceCustomization, ToscaResourceStructure toscaResourceStructure) {
1731
1732         Metadata instanceMetadata = group.getMetadata();
1733
1734         InstanceGroup existingInstanceGroup =
1735                 instanceGroupRepo.findByModelUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1736
1737         VFCInstanceGroup vfcInstanceGroup = new VFCInstanceGroup();
1738
1739         if (existingInstanceGroup == null) {
1740             // Populate InstanceGroup
1741             vfcInstanceGroup.setModelName(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1742             vfcInstanceGroup
1743                     .setModelInvariantUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1744             vfcInstanceGroup.setModelUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1745             vfcInstanceGroup.setModelVersion(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1746             vfcInstanceGroup.setToscaNodeType(group.getType());
1747             vfcInstanceGroup.setRole("SUB-INTERFACE"); // Set Role
1748             vfcInstanceGroup.setType(InstanceGroupType.VNFC); // Set type
1749         } else {
1750             vfcInstanceGroup = (VFCInstanceGroup) existingInstanceGroup;
1751         }
1752
1753         // Populate VNFCInstanceGroupCustomization
1754         VnfcInstanceGroupCustomization vfcInstanceGroupCustom = new VnfcInstanceGroupCustomization();
1755
1756         vfcInstanceGroupCustom.setVnfResourceCust(vnfResourceCustomization);
1757         vnfResourceCustomization.getVnfcInstanceGroupCustomizations().add(vfcInstanceGroupCustom);
1758
1759         vfcInstanceGroupCustom.setInstanceGroup(vfcInstanceGroup);
1760         vfcInstanceGroup.getVnfcInstanceGroupCustomizations().add(vfcInstanceGroupCustom);
1761
1762         vfcInstanceGroupCustom.setDescription(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1763
1764         String getInputName = null;
1765         String groupProperty = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
1766                 "vfc_instance_group_function");
1767         if (groupProperty != null) {
1768             int getInputIndex = groupProperty.indexOf("{get_input=");
1769             if (getInputIndex > -1) {
1770                 getInputName = groupProperty.substring(getInputIndex + 11, groupProperty.length() - 1);
1771             }
1772         }
1773         vfcInstanceGroupCustom.setFunction(toscaResourceStructure.getSdcCsarHelper()
1774                 .getNodeTemplatePropertyLeafValue(vnfcNodeTemplate, getInputName));
1775         vfcInstanceGroupCustom.setInstanceGroup(vfcInstanceGroup);
1776
1777
1778         return vfcInstanceGroupCustom;
1779
1780     }
1781
1782     protected VfModuleCustomization createVFModuleResource(Group group, NodeTemplate vfTemplate,
1783             ToscaResourceStructure toscaResourceStructure, VfResourceStructure vfResourceStructure,
1784             IVfModuleData vfModuleData, VnfResourceCustomization vnfResource, Service service,
1785             Set<CvnfcCustomization> existingCvnfcSet, Set<VnfcCustomization> existingVnfcSet) {
1786
1787         VfModuleCustomization vfModuleCustomization =
1788                 findExistingVfModuleCustomization(vnfResource, vfModuleData.getVfModuleModelCustomizationUUID());
1789         if (vfModuleCustomization == null) {
1790             VfModule vfModule = findExistingVfModule(vnfResource,
1791                     vfTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELUUID));
1792             Metadata vfMetadata = group.getMetadata();
1793             if (vfModule == null)
1794                 vfModule = createVfModule(group, toscaResourceStructure, vfModuleData, vfMetadata);
1795
1796             vfModuleCustomization = createVfModuleCustomization(group, toscaResourceStructure, vfModule, vfModuleData);
1797             vfModuleCustomization.setVnfCustomization(vnfResource);
1798             setHeatInformationForVfModule(toscaResourceStructure, vfResourceStructure, vfModule, vfModuleCustomization,
1799                     vfMetadata);
1800             vfModuleCustomization.setVfModule(vfModule);
1801             vfModule.getVfModuleCustomization().add(vfModuleCustomization);
1802             vnfResource.getVfModuleCustomizations().add(vfModuleCustomization);
1803         } else {
1804             vfResourceStructure.setAlreadyDeployed(true);
1805         }
1806
1807         // ******************************************************************************************************************
1808         // * Extract VFC's and CVFC's then add them to VFModule
1809         // ******************************************************************************************************************
1810
1811         Set<CvnfcConfigurationCustomization> cvnfcConfigurationCustomizations =
1812                 new HashSet<CvnfcConfigurationCustomization>();
1813         Set<CvnfcCustomization> cvnfcCustomizations = new HashSet<CvnfcCustomization>();
1814         Set<VnfcCustomization> vnfcCustomizations = new HashSet<VnfcCustomization>();
1815
1816         // Only set the CVNFC if this vfModule group is a member of it.
1817         List<NodeTemplate> groupMembers =
1818                 toscaResourceStructure.getSdcCsarHelper().getMembersOfVfModule(vfTemplate, group);
1819         String vfModuleMemberName = null;
1820
1821         for (NodeTemplate node : groupMembers) {
1822             vfModuleMemberName = node.getName();
1823         }
1824
1825         // Extract CVFC lists
1826         List<NodeTemplate> cvfcList =
1827                 toscaResourceStructure.getSdcCsarHelper().getNodeTemplateBySdcType(vfTemplate, SdcTypes.CVFC);
1828
1829         for (NodeTemplate cvfcTemplate : cvfcList) {
1830             boolean cvnfcVfModuleNameMatch = false;
1831
1832             for (NodeTemplate node : groupMembers) {
1833                 vfModuleMemberName = node.getName();
1834
1835                 if (vfModuleMemberName.equalsIgnoreCase(cvfcTemplate.getName())) {
1836                     cvnfcVfModuleNameMatch = true;
1837                     break;
1838                 }
1839             }
1840
1841             if (vfModuleMemberName != null && cvnfcVfModuleNameMatch) {
1842
1843                 // Extract associated VFC - Should always be just one
1844                 List<NodeTemplate> vfcList =
1845                         toscaResourceStructure.getSdcCsarHelper().getNodeTemplateBySdcType(cvfcTemplate, SdcTypes.VFC);
1846
1847                 for (NodeTemplate vfcTemplate : vfcList) {
1848
1849                     VnfcCustomization vnfcCustomization = new VnfcCustomization();
1850                     VnfcCustomization existingVnfcCustomization = null;
1851
1852                     existingVnfcCustomization = findExistingVfc(existingVnfcSet,
1853                             vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1854
1855                     if (existingVnfcCustomization == null) {
1856                         vnfcCustomization = new VnfcCustomization();
1857                     } else {
1858                         vnfcCustomization = existingVnfcCustomization;
1859                     }
1860
1861                     // Only Add Abstract VNFC's to our DB, ignore all others
1862                     if (existingVnfcCustomization == null && vfcTemplate.getMetaData()
1863                             .getValue(SdcPropertyNames.PROPERTY_NAME_SUBCATEGORY).equalsIgnoreCase("Abstract")) {
1864                         vnfcCustomization.setModelCustomizationUUID(
1865                                 vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1866                         vnfcCustomization.setModelInstanceName(vfcTemplate.getName());
1867                         vnfcCustomization.setModelInvariantUUID(
1868                                 vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1869                         vnfcCustomization
1870                                 .setModelName(vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1871                         vnfcCustomization
1872                                 .setModelUUID(vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1873
1874                         vnfcCustomization.setModelVersion(
1875                                 testNull(vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
1876                         vnfcCustomization.setDescription(testNull(
1877                                 vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
1878                         vnfcCustomization.setToscaNodeType(testNull(vfcTemplate.getType()));
1879
1880                         vnfcCustomizations.add(vnfcCustomization);
1881                         existingVnfcSet.add(vnfcCustomization);
1882                     }
1883
1884                     // This check is needed incase the VFC subcategory is
1885                     // something other than Abstract. In that case we want to
1886                     // skip adding that record to our DB.
1887                     if (vnfcCustomization.getModelCustomizationUUID() != null) {
1888                         CvnfcCustomization cvnfcCustomization = new CvnfcCustomization();
1889                         cvnfcCustomization.setModelCustomizationUUID(
1890                                 cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1891                         cvnfcCustomization.setModelInstanceName(cvfcTemplate.getName());
1892                         cvnfcCustomization.setModelInvariantUUID(
1893                                 cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1894                         cvnfcCustomization
1895                                 .setModelName(cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1896                         cvnfcCustomization
1897                                 .setModelUUID(cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1898
1899                         cvnfcCustomization.setModelVersion(
1900                                 testNull(cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
1901                         cvnfcCustomization.setDescription(testNull(
1902                                 cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
1903                         cvnfcCustomization.setToscaNodeType(testNull(cvfcTemplate.getType()));
1904
1905                         if (existingVnfcCustomization != null) {
1906                             cvnfcCustomization.setVnfcCustomization(existingVnfcCustomization);
1907                         } else {
1908                             cvnfcCustomization.setVnfcCustomization(vnfcCustomization);
1909                         }
1910
1911                         cvnfcCustomization.setNfcFunction(toscaResourceStructure.getSdcCsarHelper()
1912                                 .getNodeTemplatePropertyLeafValue(cvfcTemplate, "nfc_function"));
1913                         cvnfcCustomization.setNfcNamingCode(toscaResourceStructure.getSdcCsarHelper()
1914                                 .getNodeTemplatePropertyLeafValue(cvfcTemplate, "nfc_naming_code"));
1915                         cvnfcCustomization.setVfModuleCustomization(vfModuleCustomization);
1916
1917                         cvnfcCustomizations.add(cvnfcCustomization);
1918                         existingCvnfcSet.add(cvnfcCustomization);
1919
1920                         // *****************************************************************************************************************************************
1921                         // * Extract Fabric Configuration
1922                         // *****************************************************************************************************************************************
1923
1924                         List<NodeTemplate> fabricConfigList = toscaResourceStructure.getSdcCsarHelper()
1925                                 .getNodeTemplateBySdcType(vfTemplate, SdcTypes.CONFIGURATION);
1926
1927                         for (NodeTemplate fabricTemplate : fabricConfigList) {
1928
1929                             ConfigurationResource fabricConfig = null;
1930
1931                             ConfigurationResource existingConfig = findExistingConfiguration(service,
1932                                     fabricTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1933
1934                             if (existingConfig == null) {
1935
1936                                 fabricConfig = createFabricConfiguration(fabricTemplate, toscaResourceStructure);
1937
1938                             } else {
1939                                 fabricConfig = existingConfig;
1940                             }
1941
1942                             CvnfcConfigurationCustomization cvnfcConfigurationCustomization =
1943                                     createCvnfcConfigurationCustomization(fabricTemplate, toscaResourceStructure,
1944                                             vnfResource, vfModuleCustomization, cvnfcCustomization, fabricConfig,
1945                                             vfTemplate, vfModuleMemberName);
1946                             cvnfcConfigurationCustomizations.add(cvnfcConfigurationCustomization);
1947
1948                             fabricConfig.setCvnfcConfigurationCustomization(cvnfcConfigurationCustomizations);
1949                         }
1950                         cvnfcCustomization.setCvnfcConfigurationCustomization(cvnfcConfigurationCustomizations);
1951                     }
1952
1953                 }
1954
1955             }
1956         }
1957         vfModuleCustomization.setCvnfcCustomization(cvnfcCustomizations);
1958
1959         return vfModuleCustomization;
1960     }
1961
1962     protected CvnfcConfigurationCustomization createCvnfcConfigurationCustomization(NodeTemplate fabricTemplate,
1963             ToscaResourceStructure toscaResourceStruct, VnfResourceCustomization vnfResource,
1964             VfModuleCustomization vfModuleCustomization, CvnfcCustomization cvnfcCustomization,
1965             ConfigurationResource configResource, NodeTemplate vfTemplate, String vfModuleMemberName) {
1966
1967         Metadata fabricMetadata = fabricTemplate.getMetaData();
1968
1969         CvnfcConfigurationCustomization cvnfcConfigurationCustomization = new CvnfcConfigurationCustomization();
1970
1971         cvnfcConfigurationCustomization.setConfigurationResource(configResource);
1972
1973         cvnfcConfigurationCustomization.setCvnfcCustomization(cvnfcCustomization);
1974
1975         cvnfcConfigurationCustomization
1976                 .setModelCustomizationUUID(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1977         cvnfcConfigurationCustomization.setModelInstanceName(fabricTemplate.getName());
1978
1979         List<Policy> policyList = toscaResourceStruct.getSdcCsarHelper()
1980                 .getPoliciesOfOriginOfNodeTemplateByToscaPolicyType(vfTemplate, "org.openecomp.policies.External");
1981
1982         if (policyList != null) {
1983             for (Policy policy : policyList) {
1984
1985                 for (String policyCvfcTarget : policy.getTargets()) {
1986
1987                     if (policyCvfcTarget.equalsIgnoreCase(vfModuleMemberName)) {
1988
1989                         Map<String, Object> propMap = policy.getPolicyProperties();
1990
1991                         if (propMap.get("type").toString().equalsIgnoreCase("Fabric Policy")) {
1992                             cvnfcConfigurationCustomization.setPolicyName(propMap.get("name").toString());
1993                         }
1994                     }
1995                 }
1996             }
1997         }
1998
1999         cvnfcConfigurationCustomization.setConfigurationFunction(
2000                 toscaResourceStruct.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(fabricTemplate, "function"));
2001         cvnfcConfigurationCustomization.setConfigurationRole(
2002                 toscaResourceStruct.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(fabricTemplate, "role"));
2003         cvnfcConfigurationCustomization.setConfigurationType(
2004                 toscaResourceStruct.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(fabricTemplate, "type"));
2005
2006         return cvnfcConfigurationCustomization;
2007     }
2008
2009     protected ConfigurationResource findExistingConfiguration(Service service, String modelUUID) {
2010         ConfigurationResource configResource = null;
2011         for (ConfigurationResourceCustomization configurationResourceCustom : service
2012                 .getConfigurationCustomizations()) {
2013             if (configurationResourceCustom.getConfigurationResource() != null
2014                     && configurationResourceCustom.getConfigurationResource().getModelUUID().equals(modelUUID)) {
2015                 configResource = configurationResourceCustom.getConfigurationResource();
2016             }
2017         }
2018
2019         return configResource;
2020     }
2021
2022     protected VfModuleCustomization findExistingVfModuleCustomization(VnfResourceCustomization vnfResource,
2023             String vfModuleModelCustomizationUUID) {
2024         VfModuleCustomization vfModuleCustomization = null;
2025         for (VfModuleCustomization vfModuleCustom : vnfResource.getVfModuleCustomizations()) {
2026             if (vfModuleCustom.getModelCustomizationUUID().equalsIgnoreCase(vfModuleModelCustomizationUUID)) {
2027                 vfModuleCustomization = vfModuleCustom;
2028             }
2029         }
2030         return vfModuleCustomization;
2031     }
2032
2033     protected VfModule findExistingVfModule(VnfResourceCustomization vnfResource, String modelUUID) {
2034         VfModule vfModule = null;
2035         for (VfModuleCustomization vfModuleCustom : vnfResource.getVfModuleCustomizations()) {
2036             if (vfModuleCustom.getVfModule() != null && vfModuleCustom.getVfModule().getModelUUID().equals(modelUUID)) {
2037                 vfModule = vfModuleCustom.getVfModule();
2038             }
2039         }
2040         if (vfModule == null)
2041             vfModule = vfModuleRepo.findByModelUUID(modelUUID);
2042
2043         return vfModule;
2044     }
2045
2046     protected VfModuleCustomization createVfModuleCustomization(Group group,
2047             ToscaResourceStructure toscaResourceStructure, VfModule vfModule, IVfModuleData vfModuleData) {
2048         VfModuleCustomization vfModuleCustomization = new VfModuleCustomization();
2049
2050         vfModuleCustomization.setModelCustomizationUUID(vfModuleData.getVfModuleModelCustomizationUUID());
2051
2052         vfModuleCustomization.setVfModule(vfModule);
2053
2054         String initialCount = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2055                 SdcPropertyNames.PROPERTY_NAME_INITIALCOUNT);
2056         if (initialCount != null && initialCount.length() > 0) {
2057             vfModuleCustomization.setInitialCount(Integer.valueOf(initialCount));
2058         }
2059
2060         vfModuleCustomization.setInitialCount(Integer.valueOf(toscaResourceStructure.getSdcCsarHelper()
2061                 .getGroupPropertyLeafValue(group, SdcPropertyNames.PROPERTY_NAME_INITIALCOUNT)));
2062
2063         String availabilityZoneCount = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2064                 SdcPropertyNames.PROPERTY_NAME_AVAILABILITYZONECOUNT);
2065         if (availabilityZoneCount != null && availabilityZoneCount.length() > 0) {
2066             vfModuleCustomization.setAvailabilityZoneCount(Integer.valueOf(availabilityZoneCount));
2067         }
2068
2069         vfModuleCustomization.setLabel(toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2070                 SdcPropertyNames.PROPERTY_NAME_VFMODULELABEL));
2071
2072         String maxInstances = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2073                 SdcPropertyNames.PROPERTY_NAME_MAXVFMODULEINSTANCES);
2074         if (maxInstances != null && maxInstances.length() > 0) {
2075             vfModuleCustomization.setMaxInstances(Integer.valueOf(maxInstances));
2076         }
2077
2078         String minInstances = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2079                 SdcPropertyNames.PROPERTY_NAME_MINVFMODULEINSTANCES);
2080         if (minInstances != null && minInstances.length() > 0) {
2081             vfModuleCustomization.setMinInstances(Integer.valueOf(minInstances));
2082         }
2083         return vfModuleCustomization;
2084     }
2085
2086     protected VfModule createVfModule(Group group, ToscaResourceStructure toscaResourceStructure,
2087             IVfModuleData vfModuleData, Metadata vfMetadata) {
2088         VfModule vfModule = new VfModule();
2089         String vfModuleModelUUID = vfModuleData.getVfModuleModelUUID();
2090
2091         if (vfModuleModelUUID == null) {
2092             vfModuleModelUUID = testNull(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2093                     SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELUUID));
2094         } else if (vfModuleModelUUID.indexOf('.') > -1) {
2095             vfModuleModelUUID = vfModuleModelUUID.substring(0, vfModuleModelUUID.indexOf('.'));
2096         }
2097
2098         vfModule.setModelInvariantUUID(testNull(toscaResourceStructure.getSdcCsarHelper()
2099                 .getMetadataPropertyValue(vfMetadata, SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELINVARIANTUUID)));
2100         vfModule.setModelName(testNull(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2101                 SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELNAME)));
2102         vfModule.setModelUUID(vfModuleModelUUID);
2103         vfModule.setModelVersion(testNull(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2104                 SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELVERSION)));
2105         vfModule.setDescription(testNull(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2106                 SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
2107
2108         String vfModuleType = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2109                 SdcPropertyNames.PROPERTY_NAME_VFMODULETYPE);
2110         if (vfModuleType != null && "Base".equalsIgnoreCase(vfModuleType)) {
2111             vfModule.setIsBase(true);
2112         } else {
2113             vfModule.setIsBase(false);
2114         }
2115         return vfModule;
2116     }
2117
2118     protected void setHeatInformationForVfModule(ToscaResourceStructure toscaResourceStructure,
2119             VfResourceStructure vfResourceStructure, VfModule vfModule, VfModuleCustomization vfModuleCustomization,
2120             Metadata vfMetadata) {
2121
2122         Optional<VfModuleStructure> matchingObject = vfResourceStructure.getVfModuleStructure().stream()
2123                 .filter(vfModuleStruct -> vfModuleStruct.getVfModuleMetadata().getVfModuleModelUUID()
2124                         .equalsIgnoreCase(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2125                                 SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELUUID)))
2126                 .findFirst();
2127
2128         if (matchingObject.isPresent()) {
2129             List<HeatFiles> heatFilesList = new ArrayList<>();
2130             List<HeatTemplate> volumeHeatChildTemplates = new ArrayList<HeatTemplate>();
2131             List<HeatTemplate> heatChildTemplates = new ArrayList<HeatTemplate>();
2132             HeatTemplate parentHeatTemplate = new HeatTemplate();
2133             String parentArtifactType = null;
2134             Set<String> artifacts = new HashSet<>(matchingObject.get().getVfModuleMetadata().getArtifacts());
2135             for (VfModuleArtifact vfModuleArtifact : vfResourceStructure.getArtifactsMapByUUID().values()) {
2136
2137                 List<HeatTemplate> childNestedHeatTemplates = new ArrayList<HeatTemplate>();
2138
2139                 if (artifacts.contains(vfModuleArtifact.getArtifactInfo().getArtifactUUID())) {
2140                     checkVfModuleArtifactType(vfModule, vfModuleCustomization, heatFilesList, vfModuleArtifact,
2141                             childNestedHeatTemplates, parentHeatTemplate, vfResourceStructure);
2142                 }
2143
2144                 if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_NESTED)) {
2145                     parentArtifactType = identifyParentOfNestedTemplate(matchingObject.get(), vfModuleArtifact);
2146
2147                     if (!childNestedHeatTemplates.isEmpty()) {
2148
2149                         if (parentArtifactType != null
2150                                 && parentArtifactType.equalsIgnoreCase(ASDCConfiguration.HEAT_VOL)) {
2151                             volumeHeatChildTemplates.add(childNestedHeatTemplates.get(0));
2152                         } else {
2153                             heatChildTemplates.add(childNestedHeatTemplates.get(0));
2154                         }
2155                     }
2156                 }
2157
2158             }
2159             if (!heatFilesList.isEmpty()) {
2160                 vfModule.setHeatFiles(heatFilesList);
2161             }
2162
2163
2164             // Set all Child Templates related to HEAT_VOLUME
2165             if (!volumeHeatChildTemplates.isEmpty()) {
2166                 if (vfModule.getVolumeHeatTemplate() != null) {
2167                     vfModule.getVolumeHeatTemplate().setChildTemplates(volumeHeatChildTemplates);
2168                 } else {
2169                     logger.debug("VolumeHeatTemplate not set in setHeatInformationForVfModule()");
2170                 }
2171             }
2172
2173             // Set all Child Templates related to HEAT
2174             if (!heatChildTemplates.isEmpty()) {
2175                 if (vfModule.getModuleHeatTemplate() != null) {
2176                     vfModule.getModuleHeatTemplate().setChildTemplates(heatChildTemplates);
2177                 } else {
2178                     logger.debug("ModuleHeatTemplate not set in setHeatInformationForVfModule()");
2179                 }
2180             }
2181         }
2182     }
2183
2184     protected void checkVfModuleArtifactType(VfModule vfModule, VfModuleCustomization vfModuleCustomization,
2185             List<HeatFiles> heatFilesList, VfModuleArtifact vfModuleArtifact, List<HeatTemplate> nestedHeatTemplates,
2186             HeatTemplate parentHeatTemplate, VfResourceStructure vfResourceStructure) {
2187         if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT)) {
2188             vfModuleArtifact.incrementDeployedInDB();
2189             vfModule.setModuleHeatTemplate(vfModuleArtifact.getHeatTemplate());
2190         } else if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_VOL)) {
2191             vfModule.setVolumeHeatTemplate(vfModuleArtifact.getHeatTemplate());
2192             VfModuleArtifact volVfModuleArtifact =
2193                     this.getHeatEnvArtifactFromGeneratedArtifact(vfResourceStructure, vfModuleArtifact);
2194             vfModuleCustomization.setVolumeHeatEnv(volVfModuleArtifact.getHeatEnvironment());
2195             vfModuleArtifact.incrementDeployedInDB();
2196         } else if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_ENV)) {
2197             if (vfModuleArtifact.getHeatEnvironment() != null) {
2198                 if (vfModuleArtifact.getHeatEnvironment().getName().contains("volume")) {
2199                     vfModuleCustomization.setVolumeHeatEnv(vfModuleArtifact.getHeatEnvironment());
2200                 } else {
2201                     vfModuleCustomization.setHeatEnvironment(vfModuleArtifact.getHeatEnvironment());
2202                 }
2203             }
2204             vfModuleArtifact.incrementDeployedInDB();
2205         } else if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_ARTIFACT)) {
2206             heatFilesList.add(vfModuleArtifact.getHeatFiles());
2207             vfModuleArtifact.incrementDeployedInDB();
2208         } else if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_NESTED)) {
2209             nestedHeatTemplates.add(vfModuleArtifact.getHeatTemplate());
2210             vfModuleArtifact.incrementDeployedInDB();
2211         }
2212     }
2213
2214     protected VnfResourceCustomization createVnfResource(NodeTemplate vfNodeTemplate,
2215             ToscaResourceStructure toscaResourceStructure, Service service) {
2216         VnfResourceCustomization vnfResourceCustomization = null;
2217         if (vnfResourceCustomization == null) {
2218             VnfResource vnfResource = findExistingVnfResource(service,
2219                     vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
2220
2221             if (vnfResource == null)
2222                 vnfResource = createVnfResource(vfNodeTemplate);
2223
2224             vnfResourceCustomization =
2225                     createVnfResourceCustomization(vfNodeTemplate, toscaResourceStructure, vnfResource);
2226             vnfResourceCustomization.setVnfResources(vnfResource);
2227             vnfResourceCustomization.setService(service);
2228             vnfResource.getVnfResourceCustomizations().add(vnfResourceCustomization);
2229
2230         }
2231         return vnfResourceCustomization;
2232     }
2233
2234     protected VnfResource findExistingVnfResource(Service service, String modelUUID) {
2235         VnfResource vnfResource = null;
2236         for (VnfResourceCustomization vnfResourceCustom : service.getVnfCustomizations()) {
2237             if (vnfResourceCustom.getVnfResources() != null
2238                     && vnfResourceCustom.getVnfResources().getModelUUID().equals(modelUUID)) {
2239                 vnfResource = vnfResourceCustom.getVnfResources();
2240             }
2241         }
2242         if (vnfResource == null)
2243             vnfResource = vnfRepo.findResourceByModelUUID(modelUUID);
2244
2245         return vnfResource;
2246     }
2247
2248     protected VnfResourceCustomization createVnfResourceCustomization(NodeTemplate vfNodeTemplate,
2249             ToscaResourceStructure toscaResourceStructure, VnfResource vnfResource) {
2250         VnfResourceCustomization vnfResourceCustomization = new VnfResourceCustomization();
2251         vnfResourceCustomization.setModelCustomizationUUID(
2252                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID)));
2253         vnfResourceCustomization.setModelInstanceName(vfNodeTemplate.getName());
2254
2255         vnfResourceCustomization.setNfFunction(testNull(toscaResourceStructure.getSdcCsarHelper()
2256                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFFUNCTION)));
2257         vnfResourceCustomization.setNfNamingCode(testNull(toscaResourceStructure.getSdcCsarHelper()
2258                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, "nf_naming_code")));
2259         vnfResourceCustomization.setNfRole(testNull(toscaResourceStructure.getSdcCsarHelper()
2260                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFROLE)));
2261         vnfResourceCustomization.setNfType(testNull(toscaResourceStructure.getSdcCsarHelper()
2262                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFTYPE)));
2263
2264         vnfResourceCustomization.setMultiStageDesign(toscaResourceStructure.getSdcCsarHelper()
2265                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, MULTI_STAGE_DESIGN));
2266
2267         vnfResourceCustomization.setBlueprintName(testNull(toscaResourceStructure.getSdcCsarHelper()
2268                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SDNC_MODEL_NAME)));
2269
2270         vnfResourceCustomization.setBlueprintVersion(testNull(toscaResourceStructure.getSdcCsarHelper()
2271                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SDNC_MODEL_VERSION)));
2272
2273         String skipPostInstConfText = toscaResourceStructure.getSdcCsarHelper()
2274                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SKIP_POST_INST_CONF);
2275         if (skipPostInstConfText != null) {
2276             vnfResourceCustomization.setSkipPostInstConf(Boolean.parseBoolean(skipPostInstConfText));
2277         }
2278
2279         vnfResourceCustomization.setVnfResources(vnfResource);
2280         vnfResourceCustomization.setAvailabilityZoneMaxCount(Integer.getInteger(
2281                 vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_AVAILABILITYZONECOUNT)));
2282
2283         CapabilityAssignments vnfCustomizationCapability =
2284                 toscaResourceStructure.getSdcCsarHelper().getCapabilitiesOf(vfNodeTemplate);
2285
2286         if (vnfCustomizationCapability != null) {
2287             CapabilityAssignment capAssign = vnfCustomizationCapability.getCapabilityByName(SCALABLE);
2288
2289             if (capAssign != null) {
2290                 vnfResourceCustomization.setMinInstances(Integer.getInteger(toscaResourceStructure.getSdcCsarHelper()
2291                         .getCapabilityPropertyLeafValue(capAssign, SdcPropertyNames.PROPERTY_NAME_MININSTANCES)));
2292                 vnfResourceCustomization.setMaxInstances(Integer.getInteger(toscaResourceStructure.getSdcCsarHelper()
2293                         .getCapabilityPropertyLeafValue(capAssign, SdcPropertyNames.PROPERTY_NAME_MAXINSTANCES)));
2294             }
2295
2296         }
2297
2298         toscaResourceStructure.setCatalogVnfResourceCustomization(vnfResourceCustomization);
2299
2300         return vnfResourceCustomization;
2301     }
2302
2303     protected VnfResource createVnfResource(NodeTemplate vfNodeTemplate) {
2304         VnfResource vnfResource = new VnfResource();
2305         vnfResource.setModelInvariantUUID(
2306                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID)));
2307         vnfResource.setModelName(testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
2308         vnfResource.setModelUUID(testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID)));
2309
2310         vnfResource.setModelVersion(
2311                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
2312         vnfResource.setDescription(
2313                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
2314         vnfResource.setOrchestrationMode(HEAT);
2315         vnfResource.setToscaNodeType(testNull(vfNodeTemplate.getType()));
2316         vnfResource.setAicVersionMax(
2317                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_MAXINSTANCES)));
2318         vnfResource.setAicVersionMin(
2319                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_MININSTANCES)));
2320         vnfResource.setCategory(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CATEGORY));
2321         vnfResource.setSubCategory(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_SUBCATEGORY));
2322
2323         return vnfResource;
2324     }
2325
2326     protected AllottedResourceCustomization createAllottedResource(NodeTemplate nodeTemplate,
2327             ToscaResourceStructure toscaResourceStructure, Service service) {
2328         AllottedResourceCustomization allottedResourceCustomization =
2329                 allottedCustomizationRepo.findOneByModelCustomizationUUID(
2330                         nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
2331
2332         if (allottedResourceCustomization == null) {
2333             AllottedResource allottedResource = findExistingAllottedResource(service,
2334                     nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
2335
2336             if (allottedResource == null)
2337                 allottedResource = createAR(nodeTemplate);
2338
2339             toscaResourceStructure.setAllottedResource(allottedResource);
2340             allottedResourceCustomization = createAllottedResourceCustomization(nodeTemplate, toscaResourceStructure);
2341             allottedResourceCustomization.setAllottedResource(allottedResource);
2342             allottedResource.getAllotedResourceCustomization().add(allottedResourceCustomization);
2343         }
2344         return allottedResourceCustomization;
2345     }
2346
2347     protected AllottedResource findExistingAllottedResource(Service service, String modelUUID) {
2348         AllottedResource allottedResource = null;
2349         for (AllottedResourceCustomization allottedResourceCustom : service.getAllottedCustomizations()) {
2350             if (allottedResourceCustom.getAllottedResource() != null
2351                     && allottedResourceCustom.getAllottedResource().getModelUUID().equals(modelUUID)) {
2352                 allottedResource = allottedResourceCustom.getAllottedResource();
2353             }
2354         }
2355         if (allottedResource == null)
2356             allottedResource = allottedRepo.findResourceByModelUUID(modelUUID);
2357
2358         return allottedResource;
2359     }
2360
2361     protected AllottedResourceCustomization createAllottedResourceCustomization(NodeTemplate nodeTemplate,
2362             ToscaResourceStructure toscaResourceStructure) {
2363         AllottedResourceCustomization allottedResourceCustomization = new AllottedResourceCustomization();
2364         allottedResourceCustomization.setModelCustomizationUUID(
2365                 testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID)));
2366         allottedResourceCustomization.setModelInstanceName(nodeTemplate.getName());
2367
2368
2369         allottedResourceCustomization.setNfFunction(testNull(toscaResourceStructure.getSdcCsarHelper()
2370                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFFUNCTION)));
2371         allottedResourceCustomization.setNfNamingCode(testNull(toscaResourceStructure.getSdcCsarHelper()
2372                 .getNodeTemplatePropertyLeafValue(nodeTemplate, "nf_naming_code")));
2373         allottedResourceCustomization.setNfRole(testNull(toscaResourceStructure.getSdcCsarHelper()
2374                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFROLE)));
2375         allottedResourceCustomization.setNfType(testNull(toscaResourceStructure.getSdcCsarHelper()
2376                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFTYPE)));
2377
2378         List<NodeTemplate> vfcNodes = toscaResourceStructure.getSdcCsarHelper()
2379                 .getVfcListByVf(allottedResourceCustomization.getModelCustomizationUUID());
2380
2381         if (vfcNodes != null) {
2382             for (NodeTemplate vfcNode : vfcNodes) {
2383
2384                 allottedResourceCustomization.setProvidingServiceModelUUID(toscaResourceStructure.getSdcCsarHelper()
2385                         .getNodeTemplatePropertyLeafValue(vfcNode, "providing_service_uuid"));
2386                 allottedResourceCustomization
2387                         .setProvidingServiceModelInvariantUUID(toscaResourceStructure.getSdcCsarHelper()
2388                                 .getNodeTemplatePropertyLeafValue(vfcNode, "providing_service_invariant_uuid"));
2389                 allottedResourceCustomization.setProvidingServiceModelName(toscaResourceStructure.getSdcCsarHelper()
2390                         .getNodeTemplatePropertyLeafValue(vfcNode, "providing_service_name"));
2391             }
2392         }
2393
2394
2395         CapabilityAssignments arCustomizationCapability =
2396                 toscaResourceStructure.getSdcCsarHelper().getCapabilitiesOf(nodeTemplate);
2397
2398         if (arCustomizationCapability != null) {
2399             CapabilityAssignment capAssign = arCustomizationCapability.getCapabilityByName(SCALABLE);
2400
2401             if (capAssign != null) {
2402                 allottedResourceCustomization.setMinInstances(
2403                         Integer.getInteger(toscaResourceStructure.getSdcCsarHelper().getCapabilityPropertyLeafValue(
2404                                 capAssign, SdcPropertyNames.PROPERTY_NAME_MININSTANCES)));
2405                 allottedResourceCustomization.setMaxInstances(
2406                         Integer.getInteger(toscaResourceStructure.getSdcCsarHelper().getCapabilityPropertyLeafValue(
2407                                 capAssign, SdcPropertyNames.PROPERTY_NAME_MAXINSTANCES)));
2408             }
2409         }
2410         return allottedResourceCustomization;
2411     }
2412
2413     protected AllottedResource createAR(NodeTemplate nodeTemplate) {
2414         AllottedResource allottedResource = new AllottedResource();
2415         allottedResource
2416                 .setModelUUID(testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID)));
2417         allottedResource.setModelInvariantUUID(
2418                 testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID)));
2419         allottedResource
2420                 .setModelName(testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
2421         allottedResource
2422                 .setModelVersion(testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
2423         allottedResource.setToscaNodeType(testNull(nodeTemplate.getType()));
2424         allottedResource.setSubcategory(
2425                 testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_SUBCATEGORY)));
2426         allottedResource
2427                 .setDescription(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
2428         return allottedResource;
2429     }
2430
2431     protected Set<HeatTemplateParam> extractHeatTemplateParameters(String yamlFile, String artifactUUID) {
2432         // Scan the payload downloadResult and extract the HeatTemplate
2433         // parameters
2434         YamlEditor yamlEditor = new YamlEditor(yamlFile.getBytes());
2435         return yamlEditor.getParameterList(artifactUUID);
2436     }
2437
2438     protected String testNull(Object object) {
2439
2440         if (object == null) {
2441             return null;
2442         } else if (object.equals("NULL")) {
2443             return null;
2444         } else if (object instanceof Integer) {
2445             return object.toString();
2446         } else if (object instanceof String) {
2447             return (String) object;
2448         } else {
2449             return "Type not recognized";
2450         }
2451     }
2452
2453     protected static String identifyParentOfNestedTemplate(VfModuleStructure vfModuleStructure,
2454             VfModuleArtifact heatNestedArtifact) {
2455
2456         if (vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT) != null && vfModuleStructure
2457                 .getArtifactsMap().get(ASDCConfiguration.HEAT).get(0).getArtifactInfo().getRelatedArtifacts() != null) {
2458             for (IArtifactInfo unknownArtifact : vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT).get(0)
2459                     .getArtifactInfo().getRelatedArtifacts()) {
2460                 if (heatNestedArtifact.getArtifactInfo().getArtifactUUID().equals(unknownArtifact.getArtifactUUID())) {
2461                     return ASDCConfiguration.HEAT;
2462                 }
2463
2464             }
2465         }
2466
2467         if (vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT_VOL) != null
2468                 && vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT_VOL).get(0).getArtifactInfo()
2469                         .getRelatedArtifacts() != null) {
2470             for (IArtifactInfo unknownArtifact : vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT_VOL)
2471                     .get(0).getArtifactInfo().getRelatedArtifacts()) {
2472                 if (heatNestedArtifact.getArtifactInfo().getArtifactUUID().equals(unknownArtifact.getArtifactUUID())) {
2473                     return ASDCConfiguration.HEAT_VOL;
2474                 }
2475
2476             }
2477         }
2478
2479         // Does not belong to anything
2480         return null;
2481
2482     }
2483
2484     protected static String createVNFName(VfResourceStructure vfResourceStructure) {
2485
2486         return vfResourceStructure.getNotification().getServiceName() + "/"
2487                 + vfResourceStructure.getResourceInstance().getResourceInstanceName();
2488     }
2489
2490     protected static String createVfModuleName(VfModuleStructure vfModuleStructure) {
2491
2492         return createVNFName(vfModuleStructure.getParentVfResource()) + "::"
2493                 + vfModuleStructure.getVfModuleMetadata().getVfModuleModelName();
2494     }
2495
2496     protected String getPropertyInput(String propertyName) {
2497
2498         String inputName = new String();
2499
2500         if (propertyName != null) {
2501             int getInputIndex = propertyName.indexOf("{get_input=");
2502             if (getInputIndex > -1) {
2503                 inputName = propertyName.substring(getInputIndex + 11, propertyName.length() - 1);
2504             }
2505         }
2506
2507         return inputName;
2508     }
2509
2510
2511     protected static Timestamp getCurrentTimeStamp() {
2512
2513         return new Timestamp(new Date().getTime());
2514     }
2515
2516 }
2517