Check if InstanceGroup modelUUID already exists
[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         }
1185     }
1186
1187     protected void createHeatEnvFromArtifact(VfResourceStructure vfResourceStructure,
1188             VfModuleArtifact vfModuleArtifact) {
1189
1190         HeatEnvironment existingHeatEnvironment =
1191                 heatEnvRepo.findByArtifactUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1192
1193         if (existingHeatEnvironment == null) {
1194             HeatEnvironment heatEnvironment = new HeatEnvironment();
1195             heatEnvironment.setName(vfModuleArtifact.getArtifactInfo().getArtifactName());
1196             List<String> typeList = new ArrayList<>();
1197             typeList.add(ASDCConfiguration.HEAT);
1198             typeList.add(ASDCConfiguration.HEAT_VOL);
1199             heatEnvironment.setEnvironment(
1200                     verifyTheFilePrefixInArtifacts(vfModuleArtifact.getResult(), vfResourceStructure, typeList));
1201             heatEnvironment.setDescription(vfModuleArtifact.getArtifactInfo().getArtifactDescription());
1202             heatEnvironment.setVersion(BigDecimalVersion
1203                     .castAndCheckNotificationVersionToString(vfModuleArtifact.getArtifactInfo().getArtifactVersion()));
1204             heatEnvironment.setArtifactUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1205
1206             if (vfModuleArtifact.getArtifactInfo().getArtifactChecksum() != null) {
1207                 heatEnvironment.setArtifactChecksum(vfModuleArtifact.getArtifactInfo().getArtifactChecksum());
1208             } else {
1209                 heatEnvironment.setArtifactChecksum(MANUAL_RECORD);
1210             }
1211             vfModuleArtifact.setHeatEnvironment(heatEnvironment);
1212         }
1213     }
1214
1215     protected void createHeatFileFromArtifact(VfResourceStructure vfResourceStructure,
1216             VfModuleArtifact vfModuleArtifact, ToscaResourceStructure toscaResourceStruct) {
1217
1218         HeatFiles existingHeatFiles =
1219                 heatFilesRepo.findByArtifactUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1220
1221         if (existingHeatFiles == null) {
1222             HeatFiles heatFile = new HeatFiles();
1223             heatFile.setAsdcUuid(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1224             heatFile.setDescription(vfModuleArtifact.getArtifactInfo().getArtifactDescription());
1225             heatFile.setFileBody(vfModuleArtifact.getResult());
1226             heatFile.setFileName(vfModuleArtifact.getArtifactInfo().getArtifactName());
1227             heatFile.setVersion(BigDecimalVersion
1228                     .castAndCheckNotificationVersionToString(vfModuleArtifact.getArtifactInfo().getArtifactVersion()));
1229             toscaResourceStruct.setHeatFilesUUID(vfModuleArtifact.getArtifactInfo().getArtifactUUID());
1230             if (vfModuleArtifact.getArtifactInfo().getArtifactChecksum() != null) {
1231                 heatFile.setArtifactChecksum(vfModuleArtifact.getArtifactInfo().getArtifactChecksum());
1232             } else {
1233                 heatFile.setArtifactChecksum(MANUAL_RECORD);
1234             }
1235             vfModuleArtifact.setHeatFiles(heatFile);
1236
1237         }
1238     }
1239
1240     protected Service createService(ToscaResourceStructure toscaResourceStructure,
1241             ResourceStructure resourceStructure) {
1242
1243         Metadata serviceMetadata = toscaResourceStructure.getServiceMetadata();
1244
1245         Service service = new Service();
1246
1247         if (serviceMetadata != null) {
1248
1249             if (toscaResourceStructure.getServiceVersion() != null) {
1250                 service.setModelVersion(toscaResourceStructure.getServiceVersion());
1251             }
1252
1253             service.setServiceType(serviceMetadata.getValue("serviceType"));
1254             service.setServiceRole(serviceMetadata.getValue("serviceRole"));
1255             service.setCategory(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_CATEGORY));
1256
1257             service.setDescription(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1258             service.setModelName(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1259             service.setModelUUID(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1260             service.setEnvironmentContext(serviceMetadata.getValue("environmentContext"));
1261
1262             if (resourceStructure != null)
1263                 service.setWorkloadContext(resourceStructure.getNotification().getWorkloadContext());
1264
1265             service.setModelInvariantUUID(serviceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1266             service.setCsar(toscaResourceStructure.getCatalogToscaCsar());
1267         }
1268
1269
1270         toscaResourceStructure.setCatalogService(service);
1271         return service;
1272     }
1273
1274     protected ServiceProxyResourceCustomization createServiceProxy(NodeTemplate nodeTemplate, Service service,
1275             ToscaResourceStructure toscaResourceStructure) {
1276
1277         Metadata spMetadata = nodeTemplate.getMetaData();
1278
1279         ServiceProxyResourceCustomization spCustomizationResource = new ServiceProxyResourceCustomization();
1280
1281         Set<ServiceProxyResourceCustomization> serviceProxyCustomizationSet = new HashSet<>();
1282
1283         spCustomizationResource.setModelName(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1284         spCustomizationResource
1285                 .setModelInvariantUUID(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1286         spCustomizationResource.setModelUUID(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1287         spCustomizationResource.setModelVersion(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1288         spCustomizationResource.setDescription(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1289
1290         spCustomizationResource
1291                 .setModelCustomizationUUID(spMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1292         spCustomizationResource.setModelInstanceName(nodeTemplate.getName());
1293         spCustomizationResource.setToscaNodeType(nodeTemplate.getType());
1294
1295         String sourceServiceUUID = spMetadata.getValue("sourceModelUuid");
1296
1297         Service sourceService = serviceRepo.findOneByModelUUID(sourceServiceUUID);
1298
1299         spCustomizationResource.setSourceService(sourceService);
1300         spCustomizationResource.setToscaNodeType(nodeTemplate.getType());
1301         serviceProxyCustomizationSet.add(spCustomizationResource);
1302
1303
1304         toscaResourceStructure.setCatalogServiceProxyResourceCustomization(spCustomizationResource);
1305
1306         return spCustomizationResource;
1307     }
1308
1309     protected ConfigurationResourceCustomization createConfiguration(NodeTemplate nodeTemplate,
1310             ToscaResourceStructure toscaResourceStructure, ServiceProxyResourceCustomization spResourceCustomization,
1311             Service service) {
1312
1313         ConfigurationResourceCustomization configCustomizationResource = getConfigurationResourceCustomization(
1314                 nodeTemplate, toscaResourceStructure, spResourceCustomization, service);
1315
1316         ConfigurationResource configResource = getConfigurationResource(nodeTemplate);
1317
1318         Set<ConfigurationResourceCustomization> configResourceCustomizationSet = new HashSet<>();
1319
1320         configCustomizationResource.setConfigurationResource(configResource);
1321
1322         configResourceCustomizationSet.add(configCustomizationResource);
1323
1324         configResource.setConfigurationResourceCustomization(configResourceCustomizationSet);
1325
1326         toscaResourceStructure.setCatalogConfigurationResource(configResource);
1327
1328         toscaResourceStructure.setCatalogConfigurationResourceCustomization(configCustomizationResource);
1329
1330         return configCustomizationResource;
1331     }
1332
1333     protected ConfigurationResource createFabricConfiguration(NodeTemplate nodeTemplate,
1334             ToscaResourceStructure toscaResourceStructure) {
1335
1336         Metadata fabricMetadata = nodeTemplate.getMetaData();
1337
1338         ConfigurationResource configResource = new ConfigurationResource();
1339
1340         configResource.setModelName(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1341         configResource.setModelInvariantUUID(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1342         configResource.setModelUUID(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1343         configResource.setModelVersion(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1344         configResource.setDescription(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1345         configResource.setToscaNodeType(nodeTemplate.getType());
1346
1347         return configResource;
1348     }
1349
1350     protected void createToscaCsar(ToscaResourceStructure toscaResourceStructure) {
1351         ToscaCsar toscaCsar = new ToscaCsar();
1352         if (toscaResourceStructure.getToscaArtifact().getArtifactChecksum() != null) {
1353             toscaCsar.setArtifactChecksum(toscaResourceStructure.getToscaArtifact().getArtifactChecksum());
1354         } else {
1355             toscaCsar.setArtifactChecksum(MANUAL_RECORD);
1356         }
1357         toscaCsar.setArtifactUUID(toscaResourceStructure.getToscaArtifact().getArtifactUUID());
1358         toscaCsar.setName(toscaResourceStructure.getToscaArtifact().getArtifactName());
1359         toscaCsar.setVersion(toscaResourceStructure.getToscaArtifact().getArtifactVersion());
1360         toscaCsar.setDescription(toscaResourceStructure.getToscaArtifact().getArtifactDescription());
1361         toscaCsar.setUrl(toscaResourceStructure.getToscaArtifact().getArtifactURL());
1362
1363         toscaResourceStructure.setCatalogToscaCsar(toscaCsar);
1364     }
1365
1366     protected VnfcCustomization findExistingVfc(Set<VnfcCustomization> vnfcCustomizations, String customizationUUID) {
1367         VnfcCustomization vnfcCustomization = null;
1368         for (VnfcCustomization vnfcCustom : vnfcCustomizations) {
1369             if (vnfcCustom != null && vnfcCustom.getModelCustomizationUUID().equals(customizationUUID)) {
1370                 vnfcCustomization = vnfcCustom;
1371             }
1372         }
1373
1374         if (vnfcCustomization == null)
1375             vnfcCustomization = vnfcCustomizationRepo.findOneByModelCustomizationUUID(customizationUUID);
1376         // vnfcCustomization = new VnfcCustomization();
1377
1378         return vnfcCustomization;
1379     }
1380
1381     protected CvnfcCustomization findExistingCvfc(Set<CvnfcCustomization> cvnfcCustomizations,
1382             String customizationUUID) {
1383         CvnfcCustomization cvnfcCustomization = null;
1384         for (CvnfcCustomization cvnfcCustom : cvnfcCustomizations) {
1385             if (cvnfcCustom != null && cvnfcCustom.getModelCustomizationUUID().equals(customizationUUID)) {
1386                 cvnfcCustomization = cvnfcCustom;
1387             }
1388         }
1389
1390         if (cvnfcCustomization == null)
1391             cvnfcCustomization = cvnfcCustomizationRepo.findOneByModelCustomizationUUID(customizationUUID);
1392
1393         return cvnfcCustomization;
1394     }
1395
1396     protected NetworkResourceCustomization createNetwork(NodeTemplate networkNodeTemplate,
1397             ToscaResourceStructure toscaResourceStructure, HeatTemplate heatTemplate, String aicMax, String aicMin,
1398             Service service) {
1399
1400         NetworkResourceCustomization networkResourceCustomization =
1401                 networkCustomizationRepo.findOneByModelCustomizationUUID(
1402                         networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1403
1404         boolean networkUUIDsMatch = true;
1405         // Check to make sure the NetworkResourceUUID on the Customization record matches the NetworkResourceUUID from
1406         // the distribution.
1407         // If not we'll update the Customization record with latest from the distribution
1408         if (networkResourceCustomization != null) {
1409             String existingNetworkModelUUID = networkResourceCustomization.getNetworkResource().getModelUUID();
1410             String latestNetworkModelUUID =
1411                     networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID);
1412
1413             if (!existingNetworkModelUUID.equals(latestNetworkModelUUID)) {
1414                 networkUUIDsMatch = false;
1415             }
1416
1417         }
1418
1419         if (networkResourceCustomization != null && !networkUUIDsMatch) {
1420
1421             NetworkResource networkResource =
1422                     createNetworkResource(networkNodeTemplate, toscaResourceStructure, heatTemplate, aicMax, aicMin);
1423
1424             networkResourceCustomization.setNetworkResource(networkResource);
1425
1426             networkCustomizationRepo.saveAndFlush(networkResourceCustomization);
1427
1428
1429         } else if (networkResourceCustomization == null) {
1430             networkResourceCustomization =
1431                     createNetworkResourceCustomization(networkNodeTemplate, toscaResourceStructure);
1432
1433             NetworkResource networkResource = findExistingNetworkResource(service,
1434                     networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1435             if (networkResource == null)
1436                 networkResource = createNetworkResource(networkNodeTemplate, toscaResourceStructure, heatTemplate,
1437                         aicMax, aicMin);
1438
1439             networkResource.addNetworkResourceCustomization(networkResourceCustomization);
1440             networkResourceCustomization.setNetworkResource(networkResource);
1441         }
1442
1443         return networkResourceCustomization;
1444     }
1445
1446     protected NetworkResource findExistingNetworkResource(Service service, String modelUUID) {
1447         NetworkResource networkResource = null;
1448         for (NetworkResourceCustomization networkCustom : service.getNetworkCustomizations()) {
1449             if (networkCustom.getNetworkResource() != null
1450                     && networkCustom.getNetworkResource().getModelUUID().equals(modelUUID)) {
1451                 networkResource = networkCustom.getNetworkResource();
1452             }
1453         }
1454         if (networkResource == null)
1455             networkResource = networkRepo.findResourceByModelUUID(modelUUID);
1456
1457         return networkResource;
1458     }
1459
1460     protected NetworkResourceCustomization createNetworkResourceCustomization(NodeTemplate networkNodeTemplate,
1461             ToscaResourceStructure toscaResourceStructure) {
1462         NetworkResourceCustomization networkResourceCustomization = new NetworkResourceCustomization();
1463         networkResourceCustomization.setModelInstanceName(
1464                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
1465         networkResourceCustomization.setModelCustomizationUUID(
1466                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID)));
1467
1468         networkResourceCustomization.setNetworkTechnology(
1469                 testNull(toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1470                         SdcPropertyNames.PROPERTY_NAME_NETWORKTECHNOLOGY)));
1471         networkResourceCustomization.setNetworkType(testNull(toscaResourceStructure.getSdcCsarHelper()
1472                 .getNodeTemplatePropertyLeafValue(networkNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKTYPE)));
1473         networkResourceCustomization.setNetworkRole(testNull(toscaResourceStructure.getSdcCsarHelper()
1474                 .getNodeTemplatePropertyLeafValue(networkNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKROLE)));
1475         networkResourceCustomization.setNetworkScope(testNull(toscaResourceStructure.getSdcCsarHelper()
1476                 .getNodeTemplatePropertyLeafValue(networkNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKSCOPE)));
1477         return networkResourceCustomization;
1478     }
1479
1480     protected NetworkResource createNetworkResource(NodeTemplate networkNodeTemplate,
1481             ToscaResourceStructure toscaResourceStructure, HeatTemplate heatTemplate, String aicMax, String aicMin) {
1482         NetworkResource networkResource = new NetworkResource();
1483         String providerNetwork = toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(
1484                 networkNodeTemplate, SdcPropertyNames.PROPERTY_NAME_PROVIDERNETWORK_ISPROVIDERNETWORK);
1485
1486         if ("true".equalsIgnoreCase(providerNetwork)) {
1487             networkResource.setNeutronNetworkType(PROVIDER);
1488         } else {
1489             networkResource.setNeutronNetworkType(BASIC);
1490         }
1491
1492         networkResource.setModelName(
1493                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
1494
1495         networkResource.setModelInvariantUUID(
1496                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID)));
1497         networkResource.setModelUUID(
1498                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID)));
1499         networkResource.setModelVersion(
1500                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
1501
1502         networkResource.setAicVersionMax(aicMax);
1503         networkResource.setAicVersionMin(aicMin);
1504         networkResource.setToscaNodeType(networkNodeTemplate.getType());
1505         networkResource.setDescription(
1506                 testNull(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
1507         networkResource.setOrchestrationMode(HEAT);
1508         networkResource.setHeatTemplate(heatTemplate);
1509         return networkResource;
1510     }
1511
1512     protected CollectionNetworkResourceCustomization createNetworkCollection(NodeTemplate networkNodeTemplate,
1513             ToscaResourceStructure toscaResourceStructure, Service service) {
1514
1515         CollectionNetworkResourceCustomization collectionNetworkResourceCustomization =
1516                 new CollectionNetworkResourceCustomization();
1517
1518         // **** Build Object to populate Collection_Resource table
1519         CollectionResource collectionResource = new CollectionResource();
1520
1521         collectionResource
1522                 .setModelName(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1523         collectionResource.setModelInvariantUUID(
1524                 networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1525         collectionResource
1526                 .setModelUUID(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1527         collectionResource
1528                 .setModelVersion(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1529         collectionResource
1530                 .setDescription(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1531         collectionResource.setToscaNodeType(networkNodeTemplate.getType());
1532
1533         toscaResourceStructure.setCatalogCollectionResource(collectionResource);
1534
1535         // **** Build object to populate Collection_Resource_Customization table
1536         NetworkCollectionResourceCustomization ncfc = new NetworkCollectionResourceCustomization();
1537
1538         ncfc.setFunction(toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1539                 "cr_function"));
1540         ncfc.setRole(toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1541                 "cr_role"));
1542         ncfc.setType(toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1543                 "cr_type"));
1544
1545         ncfc.setModelInstanceName(networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1546         ncfc.setModelCustomizationUUID(
1547                 networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1548
1549         Set<CollectionNetworkResourceCustomization> networkResourceCustomizationSet = new HashSet<>();
1550         networkResourceCustomizationSet.add(collectionNetworkResourceCustomization);
1551
1552         ncfc.setNetworkResourceCustomization(networkResourceCustomizationSet);
1553
1554         ncfc.setCollectionResource(collectionResource);
1555         toscaResourceStructure.setCatalogCollectionResourceCustomization(ncfc);
1556
1557         // *** Build object to populate the Instance_Group table
1558         List<Group> groupList =
1559                 toscaResourceStructure.getSdcCsarHelper().getGroupsOfOriginOfNodeTemplateByToscaGroupType(
1560                         networkNodeTemplate, "org.openecomp.groups.NetworkCollection");
1561
1562         List<NetworkInstanceGroup> networkInstanceGroupList = new ArrayList<>();
1563
1564         List<CollectionResourceInstanceGroupCustomization> collectionResourceInstanceGroupCustomizationList =
1565                 new ArrayList<CollectionResourceInstanceGroupCustomization>();
1566
1567         for (Group group : groupList) {
1568
1569             NetworkInstanceGroup networkInstanceGroup = new NetworkInstanceGroup();
1570             Metadata instanceMetadata = group.getMetadata();
1571             networkInstanceGroup.setModelName(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1572             networkInstanceGroup
1573                     .setModelInvariantUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1574             networkInstanceGroup.setModelUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1575             networkInstanceGroup.setModelVersion(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1576             networkInstanceGroup.setToscaNodeType(group.getType());
1577             networkInstanceGroup.setRole(SubType.SUB_INTERFACE.toString()); // Set
1578             // Role
1579             networkInstanceGroup.setType(InstanceGroupType.L3_NETWORK); // Set
1580             // type
1581             networkInstanceGroup.setCollectionResource(collectionResource);
1582
1583             // ****Build object to populate
1584             // Collection_Resource_Instance_Group_Customization table
1585             CollectionResourceInstanceGroupCustomization crInstanceGroupCustomization =
1586                     new CollectionResourceInstanceGroupCustomization();
1587             crInstanceGroupCustomization.setInstanceGroup(networkInstanceGroup);
1588             crInstanceGroupCustomization.setModelUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1589             crInstanceGroupCustomization.setModelCustomizationUUID(
1590                     networkNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1591
1592             // Loop through the template policy to find the subinterface_network_quantity property name. Then extract
1593             // the value for it.
1594             List<Policy> policyList =
1595                     toscaResourceStructure.getSdcCsarHelper().getPoliciesOfOriginOfNodeTemplateByToscaPolicyType(
1596                             networkNodeTemplate, "org.openecomp.policies.scaling.Fixed");
1597
1598             if (policyList != null) {
1599                 for (Policy policy : policyList) {
1600                     for (String policyNetworkCollection : policy.getTargets()) {
1601
1602                         if (policyNetworkCollection.equalsIgnoreCase(group.getName())) {
1603
1604                             Map<String, Object> propMap = policy.getPolicyProperties();
1605
1606                             if (propMap.get("quantity") != null) {
1607
1608                                 String quantity = toscaResourceStructure.getSdcCsarHelper()
1609                                         .getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1610                                                 getPropertyInput(propMap.get("quantity").toString()));
1611
1612                                 if (quantity != null) {
1613                                     crInstanceGroupCustomization
1614                                             .setSubInterfaceNetworkQuantity(Integer.parseInt(quantity));
1615                                 }
1616
1617                             }
1618
1619                         }
1620                     }
1621                 }
1622             }
1623
1624             crInstanceGroupCustomization.setDescription(
1625                     toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1626                             instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME)
1627                                     + "_network_collection_description"));
1628             crInstanceGroupCustomization.setFunction(
1629                     toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(networkNodeTemplate,
1630                             instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME)
1631                                     + "_network_collection_function"));
1632             crInstanceGroupCustomization.setCollectionResourceCust(ncfc);
1633             collectionResourceInstanceGroupCustomizationList.add(crInstanceGroupCustomization);
1634
1635             networkInstanceGroup
1636                     .setCollectionInstanceGroupCustomizations(collectionResourceInstanceGroupCustomizationList);
1637
1638             networkInstanceGroupList.add(networkInstanceGroup);
1639
1640
1641             toscaResourceStructure.setCatalogNetworkInstanceGroup(networkInstanceGroupList);
1642
1643             List<NodeTemplate> vlNodeList = toscaResourceStructure.getSdcCsarHelper()
1644                     .getNodeTemplateBySdcType(networkNodeTemplate, SdcTypes.VL);
1645
1646             List<CollectionNetworkResourceCustomization> collectionNetworkResourceCustomizationList = new ArrayList<>();
1647
1648             // *****Build object to populate the NetworkResource table
1649             NetworkResource networkResource = new NetworkResource();
1650
1651             for (NodeTemplate vlNodeTemplate : vlNodeList) {
1652
1653                 String providerNetwork = toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(
1654                         vlNodeTemplate, SdcPropertyNames.PROPERTY_NAME_PROVIDERNETWORK_ISPROVIDERNETWORK);
1655
1656                 if ("true".equalsIgnoreCase(providerNetwork)) {
1657                     networkResource.setNeutronNetworkType(PROVIDER);
1658                 } else {
1659                     networkResource.setNeutronNetworkType(BASIC);
1660                 }
1661
1662                 networkResource
1663                         .setModelName(vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1664
1665                 networkResource.setModelInvariantUUID(
1666                         vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1667                 networkResource
1668                         .setModelUUID(vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1669                 networkResource
1670                         .setModelVersion(vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1671
1672                 networkResource.setAicVersionMax(
1673                         vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_MAXINSTANCES));
1674
1675                 TempNetworkHeatTemplateLookup tempNetworkLookUp =
1676                         tempNetworkLookupRepo.findFirstBynetworkResourceModelName(
1677                                 vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1678
1679                 if (tempNetworkLookUp != null) {
1680
1681                     HeatTemplate heatTemplate =
1682                             heatRepo.findByArtifactUuid(tempNetworkLookUp.getHeatTemplateArtifactUuid());
1683                     networkResource.setHeatTemplate(heatTemplate);
1684
1685                     networkResource.setAicVersionMin(tempNetworkLookUp.getAicVersionMin());
1686
1687                 }
1688
1689                 networkResource.setToscaNodeType(vlNodeTemplate.getType());
1690                 networkResource.setDescription(
1691                         vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1692                 networkResource.setOrchestrationMode(HEAT);
1693
1694                 // Build object to populate the
1695                 // Collection_Network_Resource_Customization table
1696                 for (NodeTemplate memberNode : group.getMemberNodes()) {
1697                     collectionNetworkResourceCustomization.setModelInstanceName(memberNode.getName());
1698                 }
1699
1700                 collectionNetworkResourceCustomization.setModelCustomizationUUID(
1701                         vlNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1702
1703                 collectionNetworkResourceCustomization.setNetworkTechnology(
1704                         toscaResourceStructure.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(vlNodeTemplate,
1705                                 SdcPropertyNames.PROPERTY_NAME_NETWORKTECHNOLOGY));
1706                 collectionNetworkResourceCustomization.setNetworkType(toscaResourceStructure.getSdcCsarHelper()
1707                         .getNodeTemplatePropertyLeafValue(vlNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKTYPE));
1708                 collectionNetworkResourceCustomization.setNetworkRole(toscaResourceStructure.getSdcCsarHelper()
1709                         .getNodeTemplatePropertyLeafValue(vlNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKROLE));
1710                 collectionNetworkResourceCustomization.setNetworkScope(toscaResourceStructure.getSdcCsarHelper()
1711                         .getNodeTemplatePropertyLeafValue(vlNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NETWORKSCOPE));
1712                 collectionNetworkResourceCustomization.setInstanceGroup(networkInstanceGroup);
1713                 collectionNetworkResourceCustomization.setNetworkResource(networkResource);
1714                 collectionNetworkResourceCustomization.setNetworkResourceCustomization(ncfc);
1715
1716                 collectionNetworkResourceCustomizationList.add(collectionNetworkResourceCustomization);
1717             }
1718
1719         }
1720
1721         return collectionNetworkResourceCustomization;
1722     }
1723
1724     protected VnfcInstanceGroupCustomization createVNFCInstanceGroup(NodeTemplate vnfcNodeTemplate, Group group,
1725             VnfResourceCustomization vnfResourceCustomization, ToscaResourceStructure toscaResourceStructure) {
1726
1727         Metadata instanceMetadata = group.getMetadata();
1728
1729         InstanceGroup existingInstanceGroup =
1730                 instanceGroupRepo.findByModelUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1731
1732         VFCInstanceGroup vfcInstanceGroup = new VFCInstanceGroup();
1733
1734         if (existingInstanceGroup == null) {
1735             // Populate InstanceGroup
1736             vfcInstanceGroup.setModelName(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1737             vfcInstanceGroup
1738                     .setModelInvariantUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1739             vfcInstanceGroup.setModelUUID(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1740             vfcInstanceGroup.setModelVersion(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_VERSION));
1741             vfcInstanceGroup.setToscaNodeType(group.getType());
1742             vfcInstanceGroup.setRole("SUB-INTERFACE"); // Set Role
1743             vfcInstanceGroup.setType(InstanceGroupType.VNFC); // Set type
1744         } else {
1745             vfcInstanceGroup = (VFCInstanceGroup) existingInstanceGroup;
1746         }
1747
1748         // Populate VNFCInstanceGroupCustomization
1749         VnfcInstanceGroupCustomization vfcInstanceGroupCustom = new VnfcInstanceGroupCustomization();
1750
1751         vfcInstanceGroupCustom.setVnfResourceCust(vnfResourceCustomization);
1752         vnfResourceCustomization.getVnfcInstanceGroupCustomizations().add(vfcInstanceGroupCustom);
1753
1754         vfcInstanceGroupCustom.setInstanceGroup(vfcInstanceGroup);
1755         vfcInstanceGroup.getVnfcInstanceGroupCustomizations().add(vfcInstanceGroupCustom);
1756
1757         vfcInstanceGroupCustom.setDescription(instanceMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
1758
1759         String getInputName = null;
1760         String groupProperty = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
1761                 "vfc_instance_group_function");
1762         if (groupProperty != null) {
1763             int getInputIndex = groupProperty.indexOf("{get_input=");
1764             if (getInputIndex > -1) {
1765                 getInputName = groupProperty.substring(getInputIndex + 11, groupProperty.length() - 1);
1766             }
1767         }
1768         vfcInstanceGroupCustom.setFunction(toscaResourceStructure.getSdcCsarHelper()
1769                 .getNodeTemplatePropertyLeafValue(vnfcNodeTemplate, getInputName));
1770         vfcInstanceGroupCustom.setInstanceGroup(vfcInstanceGroup);
1771
1772
1773         return vfcInstanceGroupCustom;
1774
1775     }
1776
1777     protected VfModuleCustomization createVFModuleResource(Group group, NodeTemplate vfTemplate,
1778             ToscaResourceStructure toscaResourceStructure, VfResourceStructure vfResourceStructure,
1779             IVfModuleData vfModuleData, VnfResourceCustomization vnfResource, Service service,
1780             Set<CvnfcCustomization> existingCvnfcSet, Set<VnfcCustomization> existingVnfcSet) {
1781
1782         VfModuleCustomization vfModuleCustomization =
1783                 findExistingVfModuleCustomization(vnfResource, vfModuleData.getVfModuleModelCustomizationUUID());
1784         if (vfModuleCustomization == null) {
1785             VfModule vfModule = findExistingVfModule(vnfResource,
1786                     vfTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELUUID));
1787             Metadata vfMetadata = group.getMetadata();
1788             if (vfModule == null)
1789                 vfModule = createVfModule(group, toscaResourceStructure, vfModuleData, vfMetadata);
1790
1791             vfModuleCustomization = createVfModuleCustomization(group, toscaResourceStructure, vfModule, vfModuleData);
1792             vfModuleCustomization.setVnfCustomization(vnfResource);
1793             setHeatInformationForVfModule(toscaResourceStructure, vfResourceStructure, vfModule, vfModuleCustomization,
1794                     vfMetadata);
1795             vfModuleCustomization.setVfModule(vfModule);
1796             vfModule.getVfModuleCustomization().add(vfModuleCustomization);
1797             vnfResource.getVfModuleCustomizations().add(vfModuleCustomization);
1798         } else {
1799             vfResourceStructure.setAlreadyDeployed(true);
1800         }
1801
1802         // ******************************************************************************************************************
1803         // * Extract VFC's and CVFC's then add them to VFModule
1804         // ******************************************************************************************************************
1805
1806         Set<CvnfcConfigurationCustomization> cvnfcConfigurationCustomizations =
1807                 new HashSet<CvnfcConfigurationCustomization>();
1808         Set<CvnfcCustomization> cvnfcCustomizations = new HashSet<CvnfcCustomization>();
1809         Set<VnfcCustomization> vnfcCustomizations = new HashSet<VnfcCustomization>();
1810
1811         // Only set the CVNFC if this vfModule group is a member of it.
1812         List<NodeTemplate> groupMembers =
1813                 toscaResourceStructure.getSdcCsarHelper().getMembersOfVfModule(vfTemplate, group);
1814         String vfModuleMemberName = null;
1815
1816         for (NodeTemplate node : groupMembers) {
1817             vfModuleMemberName = node.getName();
1818         }
1819
1820         // Extract CVFC lists
1821         List<NodeTemplate> cvfcList =
1822                 toscaResourceStructure.getSdcCsarHelper().getNodeTemplateBySdcType(vfTemplate, SdcTypes.CVFC);
1823
1824         for (NodeTemplate cvfcTemplate : cvfcList) {
1825             boolean cvnfcVfModuleNameMatch = false;
1826
1827             for (NodeTemplate node : groupMembers) {
1828                 vfModuleMemberName = node.getName();
1829
1830                 if (vfModuleMemberName.equalsIgnoreCase(cvfcTemplate.getName())) {
1831                     cvnfcVfModuleNameMatch = true;
1832                     break;
1833                 }
1834             }
1835
1836             if (vfModuleMemberName != null && cvnfcVfModuleNameMatch) {
1837
1838                 // Extract associated VFC - Should always be just one
1839                 List<NodeTemplate> vfcList =
1840                         toscaResourceStructure.getSdcCsarHelper().getNodeTemplateBySdcType(cvfcTemplate, SdcTypes.VFC);
1841
1842                 for (NodeTemplate vfcTemplate : vfcList) {
1843
1844                     VnfcCustomization vnfcCustomization = new VnfcCustomization();
1845                     VnfcCustomization existingVnfcCustomization = null;
1846
1847                     existingVnfcCustomization = findExistingVfc(existingVnfcSet,
1848                             vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1849
1850                     if (existingVnfcCustomization == null) {
1851                         vnfcCustomization = new VnfcCustomization();
1852                     } else {
1853                         vnfcCustomization = existingVnfcCustomization;
1854                     }
1855
1856                     // Only Add Abstract VNFC's to our DB, ignore all others
1857                     if (existingVnfcCustomization == null && vfcTemplate.getMetaData()
1858                             .getValue(SdcPropertyNames.PROPERTY_NAME_SUBCATEGORY).equalsIgnoreCase("Abstract")) {
1859                         vnfcCustomization.setModelCustomizationUUID(
1860                                 vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1861                         vnfcCustomization.setModelInstanceName(vfcTemplate.getName());
1862                         vnfcCustomization.setModelInvariantUUID(
1863                                 vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1864                         vnfcCustomization
1865                                 .setModelName(vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1866                         vnfcCustomization
1867                                 .setModelUUID(vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1868
1869                         vnfcCustomization.setModelVersion(
1870                                 testNull(vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
1871                         vnfcCustomization.setDescription(testNull(
1872                                 vfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
1873                         vnfcCustomization.setToscaNodeType(testNull(vfcTemplate.getType()));
1874
1875                         vnfcCustomizations.add(vnfcCustomization);
1876                         existingVnfcSet.add(vnfcCustomization);
1877                     }
1878
1879                     // This check is needed incase the VFC subcategory is
1880                     // something other than Abstract. In that case we want to
1881                     // skip adding that record to our DB.
1882                     if (vnfcCustomization.getModelCustomizationUUID() != null) {
1883                         CvnfcCustomization cvnfcCustomization = new CvnfcCustomization();
1884                         cvnfcCustomization.setModelCustomizationUUID(
1885                                 cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1886                         cvnfcCustomization.setModelInstanceName(cvfcTemplate.getName());
1887                         cvnfcCustomization.setModelInvariantUUID(
1888                                 cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID));
1889                         cvnfcCustomization
1890                                 .setModelName(cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME));
1891                         cvnfcCustomization
1892                                 .setModelUUID(cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1893
1894                         cvnfcCustomization.setModelVersion(
1895                                 testNull(cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
1896                         cvnfcCustomization.setDescription(testNull(
1897                                 cvfcTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
1898                         cvnfcCustomization.setToscaNodeType(testNull(cvfcTemplate.getType()));
1899
1900                         if (existingVnfcCustomization != null) {
1901                             cvnfcCustomization.setVnfcCustomization(existingVnfcCustomization);
1902                         } else {
1903                             cvnfcCustomization.setVnfcCustomization(vnfcCustomization);
1904                         }
1905
1906                         cvnfcCustomization.setNfcFunction(toscaResourceStructure.getSdcCsarHelper()
1907                                 .getNodeTemplatePropertyLeafValue(cvfcTemplate, "nfc_function"));
1908                         cvnfcCustomization.setNfcNamingCode(toscaResourceStructure.getSdcCsarHelper()
1909                                 .getNodeTemplatePropertyLeafValue(cvfcTemplate, "nfc_naming_code"));
1910                         cvnfcCustomization.setVfModuleCustomization(vfModuleCustomization);
1911
1912                         cvnfcCustomizations.add(cvnfcCustomization);
1913                         existingCvnfcSet.add(cvnfcCustomization);
1914
1915                         // *****************************************************************************************************************************************
1916                         // * Extract Fabric Configuration
1917                         // *****************************************************************************************************************************************
1918
1919                         List<NodeTemplate> fabricConfigList = toscaResourceStructure.getSdcCsarHelper()
1920                                 .getNodeTemplateBySdcType(vfTemplate, SdcTypes.CONFIGURATION);
1921
1922                         for (NodeTemplate fabricTemplate : fabricConfigList) {
1923
1924                             ConfigurationResource fabricConfig = null;
1925
1926                             ConfigurationResource existingConfig = findExistingConfiguration(service,
1927                                     fabricTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
1928
1929                             if (existingConfig == null) {
1930
1931                                 fabricConfig = createFabricConfiguration(fabricTemplate, toscaResourceStructure);
1932
1933                             } else {
1934                                 fabricConfig = existingConfig;
1935                             }
1936
1937                             CvnfcConfigurationCustomization cvnfcConfigurationCustomization =
1938                                     createCvnfcConfigurationCustomization(fabricTemplate, toscaResourceStructure,
1939                                             vnfResource, vfModuleCustomization, cvnfcCustomization, fabricConfig,
1940                                             vfTemplate, vfModuleMemberName);
1941                             cvnfcConfigurationCustomizations.add(cvnfcConfigurationCustomization);
1942
1943                             fabricConfig.setCvnfcConfigurationCustomization(cvnfcConfigurationCustomizations);
1944                         }
1945                         cvnfcCustomization.setCvnfcConfigurationCustomization(cvnfcConfigurationCustomizations);
1946                     }
1947
1948                 }
1949
1950             }
1951         }
1952         vfModuleCustomization.setCvnfcCustomization(cvnfcCustomizations);
1953
1954         return vfModuleCustomization;
1955     }
1956
1957     protected CvnfcConfigurationCustomization createCvnfcConfigurationCustomization(NodeTemplate fabricTemplate,
1958             ToscaResourceStructure toscaResourceStruct, VnfResourceCustomization vnfResource,
1959             VfModuleCustomization vfModuleCustomization, CvnfcCustomization cvnfcCustomization,
1960             ConfigurationResource configResource, NodeTemplate vfTemplate, String vfModuleMemberName) {
1961
1962         Metadata fabricMetadata = fabricTemplate.getMetaData();
1963
1964         CvnfcConfigurationCustomization cvnfcConfigurationCustomization = new CvnfcConfigurationCustomization();
1965
1966         cvnfcConfigurationCustomization.setConfigurationResource(configResource);
1967
1968         cvnfcConfigurationCustomization.setCvnfcCustomization(cvnfcCustomization);
1969
1970         cvnfcConfigurationCustomization
1971                 .setModelCustomizationUUID(fabricMetadata.getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
1972         cvnfcConfigurationCustomization.setModelInstanceName(fabricTemplate.getName());
1973
1974         List<Policy> policyList = toscaResourceStruct.getSdcCsarHelper()
1975                 .getPoliciesOfOriginOfNodeTemplateByToscaPolicyType(vfTemplate, "org.openecomp.policies.External");
1976
1977         if (policyList != null) {
1978             for (Policy policy : policyList) {
1979
1980                 for (String policyCvfcTarget : policy.getTargets()) {
1981
1982                     if (policyCvfcTarget.equalsIgnoreCase(vfModuleMemberName)) {
1983
1984                         Map<String, Object> propMap = policy.getPolicyProperties();
1985
1986                         if (propMap.get("type").toString().equalsIgnoreCase("Fabric Policy")) {
1987                             cvnfcConfigurationCustomization.setPolicyName(propMap.get("name").toString());
1988                         }
1989                     }
1990                 }
1991             }
1992         }
1993
1994         cvnfcConfigurationCustomization.setConfigurationFunction(
1995                 toscaResourceStruct.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(fabricTemplate, "function"));
1996         cvnfcConfigurationCustomization.setConfigurationRole(
1997                 toscaResourceStruct.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(fabricTemplate, "role"));
1998         cvnfcConfigurationCustomization.setConfigurationType(
1999                 toscaResourceStruct.getSdcCsarHelper().getNodeTemplatePropertyLeafValue(fabricTemplate, "type"));
2000
2001         return cvnfcConfigurationCustomization;
2002     }
2003
2004     protected ConfigurationResource findExistingConfiguration(Service service, String modelUUID) {
2005         ConfigurationResource configResource = null;
2006         for (ConfigurationResourceCustomization configurationResourceCustom : service
2007                 .getConfigurationCustomizations()) {
2008             if (configurationResourceCustom.getConfigurationResource() != null
2009                     && configurationResourceCustom.getConfigurationResource().getModelUUID().equals(modelUUID)) {
2010                 configResource = configurationResourceCustom.getConfigurationResource();
2011             }
2012         }
2013
2014         return configResource;
2015     }
2016
2017     protected VfModuleCustomization findExistingVfModuleCustomization(VnfResourceCustomization vnfResource,
2018             String vfModuleModelCustomizationUUID) {
2019         VfModuleCustomization vfModuleCustomization = null;
2020         for (VfModuleCustomization vfModuleCustom : vnfResource.getVfModuleCustomizations()) {
2021             if (vfModuleCustom.getModelCustomizationUUID().equalsIgnoreCase(vfModuleModelCustomizationUUID)) {
2022                 vfModuleCustomization = vfModuleCustom;
2023             }
2024         }
2025         return vfModuleCustomization;
2026     }
2027
2028     protected VfModule findExistingVfModule(VnfResourceCustomization vnfResource, String modelUUID) {
2029         VfModule vfModule = null;
2030         for (VfModuleCustomization vfModuleCustom : vnfResource.getVfModuleCustomizations()) {
2031             if (vfModuleCustom.getVfModule() != null && vfModuleCustom.getVfModule().getModelUUID().equals(modelUUID)) {
2032                 vfModule = vfModuleCustom.getVfModule();
2033             }
2034         }
2035         if (vfModule == null)
2036             vfModule = vfModuleRepo.findByModelUUID(modelUUID);
2037
2038         return vfModule;
2039     }
2040
2041     protected VfModuleCustomization createVfModuleCustomization(Group group,
2042             ToscaResourceStructure toscaResourceStructure, VfModule vfModule, IVfModuleData vfModuleData) {
2043         VfModuleCustomization vfModuleCustomization = new VfModuleCustomization();
2044
2045         vfModuleCustomization.setModelCustomizationUUID(vfModuleData.getVfModuleModelCustomizationUUID());
2046
2047         vfModuleCustomization.setVfModule(vfModule);
2048
2049         String initialCount = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2050                 SdcPropertyNames.PROPERTY_NAME_INITIALCOUNT);
2051         if (initialCount != null && initialCount.length() > 0) {
2052             vfModuleCustomization.setInitialCount(Integer.valueOf(initialCount));
2053         }
2054
2055         vfModuleCustomization.setInitialCount(Integer.valueOf(toscaResourceStructure.getSdcCsarHelper()
2056                 .getGroupPropertyLeafValue(group, SdcPropertyNames.PROPERTY_NAME_INITIALCOUNT)));
2057
2058         String availabilityZoneCount = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2059                 SdcPropertyNames.PROPERTY_NAME_AVAILABILITYZONECOUNT);
2060         if (availabilityZoneCount != null && availabilityZoneCount.length() > 0) {
2061             vfModuleCustomization.setAvailabilityZoneCount(Integer.valueOf(availabilityZoneCount));
2062         }
2063
2064         vfModuleCustomization.setLabel(toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2065                 SdcPropertyNames.PROPERTY_NAME_VFMODULELABEL));
2066
2067         String maxInstances = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2068                 SdcPropertyNames.PROPERTY_NAME_MAXVFMODULEINSTANCES);
2069         if (maxInstances != null && maxInstances.length() > 0) {
2070             vfModuleCustomization.setMaxInstances(Integer.valueOf(maxInstances));
2071         }
2072
2073         String minInstances = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2074                 SdcPropertyNames.PROPERTY_NAME_MINVFMODULEINSTANCES);
2075         if (minInstances != null && minInstances.length() > 0) {
2076             vfModuleCustomization.setMinInstances(Integer.valueOf(minInstances));
2077         }
2078         return vfModuleCustomization;
2079     }
2080
2081     protected VfModule createVfModule(Group group, ToscaResourceStructure toscaResourceStructure,
2082             IVfModuleData vfModuleData, Metadata vfMetadata) {
2083         VfModule vfModule = new VfModule();
2084         String vfModuleModelUUID = vfModuleData.getVfModuleModelUUID();
2085
2086         if (vfModuleModelUUID == null) {
2087             vfModuleModelUUID = testNull(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2088                     SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELUUID));
2089         } else if (vfModuleModelUUID.indexOf('.') > -1) {
2090             vfModuleModelUUID = vfModuleModelUUID.substring(0, vfModuleModelUUID.indexOf('.'));
2091         }
2092
2093         vfModule.setModelInvariantUUID(testNull(toscaResourceStructure.getSdcCsarHelper()
2094                 .getMetadataPropertyValue(vfMetadata, SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELINVARIANTUUID)));
2095         vfModule.setModelName(testNull(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2096                 SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELNAME)));
2097         vfModule.setModelUUID(vfModuleModelUUID);
2098         vfModule.setModelVersion(testNull(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2099                 SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELVERSION)));
2100         vfModule.setDescription(testNull(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2101                 SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
2102
2103         String vfModuleType = toscaResourceStructure.getSdcCsarHelper().getGroupPropertyLeafValue(group,
2104                 SdcPropertyNames.PROPERTY_NAME_VFMODULETYPE);
2105         if (vfModuleType != null && "Base".equalsIgnoreCase(vfModuleType)) {
2106             vfModule.setIsBase(true);
2107         } else {
2108             vfModule.setIsBase(false);
2109         }
2110         return vfModule;
2111     }
2112
2113     protected void setHeatInformationForVfModule(ToscaResourceStructure toscaResourceStructure,
2114             VfResourceStructure vfResourceStructure, VfModule vfModule, VfModuleCustomization vfModuleCustomization,
2115             Metadata vfMetadata) {
2116
2117         Optional<VfModuleStructure> matchingObject = vfResourceStructure.getVfModuleStructure().stream()
2118                 .filter(vfModuleStruct -> vfModuleStruct.getVfModuleMetadata().getVfModuleModelUUID()
2119                         .equalsIgnoreCase(toscaResourceStructure.getSdcCsarHelper().getMetadataPropertyValue(vfMetadata,
2120                                 SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELUUID)))
2121                 .findFirst();
2122
2123         if (matchingObject.isPresent()) {
2124             List<HeatFiles> heatFilesList = new ArrayList<>();
2125             List<HeatTemplate> volumeHeatChildTemplates = new ArrayList<HeatTemplate>();
2126             List<HeatTemplate> heatChildTemplates = new ArrayList<HeatTemplate>();
2127             HeatTemplate parentHeatTemplate = new HeatTemplate();
2128             String parentArtifactType = null;
2129             Set<String> artifacts = new HashSet<>(matchingObject.get().getVfModuleMetadata().getArtifacts());
2130             for (VfModuleArtifact vfModuleArtifact : vfResourceStructure.getArtifactsMapByUUID().values()) {
2131
2132                 List<HeatTemplate> childNestedHeatTemplates = new ArrayList<HeatTemplate>();
2133
2134                 if (artifacts.contains(vfModuleArtifact.getArtifactInfo().getArtifactUUID())) {
2135                     checkVfModuleArtifactType(vfModule, vfModuleCustomization, heatFilesList, vfModuleArtifact,
2136                             childNestedHeatTemplates, parentHeatTemplate, vfResourceStructure);
2137                 }
2138
2139                 if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_NESTED)) {
2140                     parentArtifactType = identifyParentOfNestedTemplate(matchingObject.get(), vfModuleArtifact);
2141
2142                     if (!childNestedHeatTemplates.isEmpty()) {
2143
2144                         if (parentArtifactType != null
2145                                 && parentArtifactType.equalsIgnoreCase(ASDCConfiguration.HEAT_VOL)) {
2146                             volumeHeatChildTemplates.add(childNestedHeatTemplates.get(0));
2147                         } else {
2148                             heatChildTemplates.add(childNestedHeatTemplates.get(0));
2149                         }
2150                     }
2151                 }
2152
2153             }
2154             if (!heatFilesList.isEmpty()) {
2155                 vfModule.setHeatFiles(heatFilesList);
2156             }
2157
2158
2159             // Set all Child Templates related to HEAT_VOLUME
2160             if (!volumeHeatChildTemplates.isEmpty()) {
2161                 if (vfModule.getVolumeHeatTemplate() != null) {
2162                     vfModule.getVolumeHeatTemplate().setChildTemplates(volumeHeatChildTemplates);
2163                 } else {
2164                     logger.debug("VolumeHeatTemplate not set in setHeatInformationForVfModule()");
2165                 }
2166             }
2167
2168             // Set all Child Templates related to HEAT
2169             if (!heatChildTemplates.isEmpty()) {
2170                 if (vfModule.getModuleHeatTemplate() != null) {
2171                     vfModule.getModuleHeatTemplate().setChildTemplates(heatChildTemplates);
2172                 } else {
2173                     logger.debug("ModuleHeatTemplate not set in setHeatInformationForVfModule()");
2174                 }
2175             }
2176         }
2177     }
2178
2179     protected void checkVfModuleArtifactType(VfModule vfModule, VfModuleCustomization vfModuleCustomization,
2180             List<HeatFiles> heatFilesList, VfModuleArtifact vfModuleArtifact, List<HeatTemplate> nestedHeatTemplates,
2181             HeatTemplate parentHeatTemplate, VfResourceStructure vfResourceStructure) {
2182         if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT)) {
2183             vfModuleArtifact.incrementDeployedInDB();
2184             vfModule.setModuleHeatTemplate(vfModuleArtifact.getHeatTemplate());
2185         } else if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_VOL)) {
2186             vfModule.setVolumeHeatTemplate(vfModuleArtifact.getHeatTemplate());
2187             VfModuleArtifact volVfModuleArtifact =
2188                     this.getHeatEnvArtifactFromGeneratedArtifact(vfResourceStructure, vfModuleArtifact);
2189             vfModuleCustomization.setVolumeHeatEnv(volVfModuleArtifact.getHeatEnvironment());
2190             vfModuleArtifact.incrementDeployedInDB();
2191         } else if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_ENV)) {
2192             if (vfModuleArtifact.getHeatEnvironment() != null) {
2193                 if (vfModuleArtifact.getHeatEnvironment().getName().contains("volume")) {
2194                     vfModuleCustomization.setVolumeHeatEnv(vfModuleArtifact.getHeatEnvironment());
2195                 } else {
2196                     vfModuleCustomization.setHeatEnvironment(vfModuleArtifact.getHeatEnvironment());
2197                 }
2198             }
2199             vfModuleArtifact.incrementDeployedInDB();
2200         } else if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_ARTIFACT)) {
2201             heatFilesList.add(vfModuleArtifact.getHeatFiles());
2202             vfModuleArtifact.incrementDeployedInDB();
2203         } else if (vfModuleArtifact.getArtifactInfo().getArtifactType().equals(ASDCConfiguration.HEAT_NESTED)) {
2204             nestedHeatTemplates.add(vfModuleArtifact.getHeatTemplate());
2205             vfModuleArtifact.incrementDeployedInDB();
2206         }
2207     }
2208
2209     protected VnfResourceCustomization createVnfResource(NodeTemplate vfNodeTemplate,
2210             ToscaResourceStructure toscaResourceStructure, Service service) {
2211         VnfResourceCustomization vnfResourceCustomization = null;
2212         if (vnfResourceCustomization == null) {
2213             VnfResource vnfResource = findExistingVnfResource(service,
2214                     vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
2215
2216             if (vnfResource == null)
2217                 vnfResource = createVnfResource(vfNodeTemplate);
2218
2219             vnfResourceCustomization =
2220                     createVnfResourceCustomization(vfNodeTemplate, toscaResourceStructure, vnfResource);
2221             vnfResourceCustomization.setVnfResources(vnfResource);
2222             vnfResourceCustomization.setService(service);
2223             vnfResource.getVnfResourceCustomizations().add(vnfResourceCustomization);
2224
2225         }
2226         return vnfResourceCustomization;
2227     }
2228
2229     protected VnfResource findExistingVnfResource(Service service, String modelUUID) {
2230         VnfResource vnfResource = null;
2231         for (VnfResourceCustomization vnfResourceCustom : service.getVnfCustomizations()) {
2232             if (vnfResourceCustom.getVnfResources() != null
2233                     && vnfResourceCustom.getVnfResources().getModelUUID().equals(modelUUID)) {
2234                 vnfResource = vnfResourceCustom.getVnfResources();
2235             }
2236         }
2237         if (vnfResource == null)
2238             vnfResource = vnfRepo.findResourceByModelUUID(modelUUID);
2239
2240         return vnfResource;
2241     }
2242
2243     protected VnfResourceCustomization createVnfResourceCustomization(NodeTemplate vfNodeTemplate,
2244             ToscaResourceStructure toscaResourceStructure, VnfResource vnfResource) {
2245         VnfResourceCustomization vnfResourceCustomization = new VnfResourceCustomization();
2246         vnfResourceCustomization.setModelCustomizationUUID(
2247                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID)));
2248         vnfResourceCustomization.setModelInstanceName(vfNodeTemplate.getName());
2249
2250         vnfResourceCustomization.setNfFunction(testNull(toscaResourceStructure.getSdcCsarHelper()
2251                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFFUNCTION)));
2252         vnfResourceCustomization.setNfNamingCode(testNull(toscaResourceStructure.getSdcCsarHelper()
2253                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, "nf_naming_code")));
2254         vnfResourceCustomization.setNfRole(testNull(toscaResourceStructure.getSdcCsarHelper()
2255                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFROLE)));
2256         vnfResourceCustomization.setNfType(testNull(toscaResourceStructure.getSdcCsarHelper()
2257                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFTYPE)));
2258
2259         vnfResourceCustomization.setMultiStageDesign(toscaResourceStructure.getSdcCsarHelper()
2260                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, MULTI_STAGE_DESIGN));
2261
2262         vnfResourceCustomization.setBlueprintName(testNull(toscaResourceStructure.getSdcCsarHelper()
2263                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SDNC_MODEL_NAME)));
2264
2265         vnfResourceCustomization.setBlueprintVersion(testNull(toscaResourceStructure.getSdcCsarHelper()
2266                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SDNC_MODEL_VERSION)));
2267
2268         String skipPostInstConfText = toscaResourceStructure.getSdcCsarHelper()
2269                 .getNodeTemplatePropertyLeafValue(vfNodeTemplate, SKIP_POST_INST_CONF);
2270         if (skipPostInstConfText != null) {
2271             vnfResourceCustomization.setSkipPostInstConf(Boolean.parseBoolean(skipPostInstConfText));
2272         }
2273
2274         vnfResourceCustomization.setVnfResources(vnfResource);
2275         vnfResourceCustomization.setAvailabilityZoneMaxCount(Integer.getInteger(
2276                 vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_AVAILABILITYZONECOUNT)));
2277
2278         CapabilityAssignments vnfCustomizationCapability =
2279                 toscaResourceStructure.getSdcCsarHelper().getCapabilitiesOf(vfNodeTemplate);
2280
2281         if (vnfCustomizationCapability != null) {
2282             CapabilityAssignment capAssign = vnfCustomizationCapability.getCapabilityByName(SCALABLE);
2283
2284             if (capAssign != null) {
2285                 vnfResourceCustomization.setMinInstances(Integer.getInteger(toscaResourceStructure.getSdcCsarHelper()
2286                         .getCapabilityPropertyLeafValue(capAssign, SdcPropertyNames.PROPERTY_NAME_MININSTANCES)));
2287                 vnfResourceCustomization.setMaxInstances(Integer.getInteger(toscaResourceStructure.getSdcCsarHelper()
2288                         .getCapabilityPropertyLeafValue(capAssign, SdcPropertyNames.PROPERTY_NAME_MAXINSTANCES)));
2289             }
2290
2291         }
2292
2293         toscaResourceStructure.setCatalogVnfResourceCustomization(vnfResourceCustomization);
2294
2295         return vnfResourceCustomization;
2296     }
2297
2298     protected VnfResource createVnfResource(NodeTemplate vfNodeTemplate) {
2299         VnfResource vnfResource = new VnfResource();
2300         vnfResource.setModelInvariantUUID(
2301                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID)));
2302         vnfResource.setModelName(testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
2303         vnfResource.setModelUUID(testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID)));
2304
2305         vnfResource.setModelVersion(
2306                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
2307         vnfResource.setDescription(
2308                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION)));
2309         vnfResource.setOrchestrationMode(HEAT);
2310         vnfResource.setToscaNodeType(testNull(vfNodeTemplate.getType()));
2311         vnfResource.setAicVersionMax(
2312                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_MAXINSTANCES)));
2313         vnfResource.setAicVersionMin(
2314                 testNull(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_MININSTANCES)));
2315         vnfResource.setCategory(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CATEGORY));
2316         vnfResource.setSubCategory(vfNodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_SUBCATEGORY));
2317
2318         return vnfResource;
2319     }
2320
2321     protected AllottedResourceCustomization createAllottedResource(NodeTemplate nodeTemplate,
2322             ToscaResourceStructure toscaResourceStructure, Service service) {
2323         AllottedResourceCustomization allottedResourceCustomization =
2324                 allottedCustomizationRepo.findOneByModelCustomizationUUID(
2325                         nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID));
2326
2327         if (allottedResourceCustomization == null) {
2328             AllottedResource allottedResource = findExistingAllottedResource(service,
2329                     nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID));
2330
2331             if (allottedResource == null)
2332                 allottedResource = createAR(nodeTemplate);
2333
2334             toscaResourceStructure.setAllottedResource(allottedResource);
2335             allottedResourceCustomization = createAllottedResourceCustomization(nodeTemplate, toscaResourceStructure);
2336             allottedResourceCustomization.setAllottedResource(allottedResource);
2337             allottedResource.getAllotedResourceCustomization().add(allottedResourceCustomization);
2338         }
2339         return allottedResourceCustomization;
2340     }
2341
2342     protected AllottedResource findExistingAllottedResource(Service service, String modelUUID) {
2343         AllottedResource allottedResource = null;
2344         for (AllottedResourceCustomization allottedResourceCustom : service.getAllottedCustomizations()) {
2345             if (allottedResourceCustom.getAllottedResource() != null
2346                     && allottedResourceCustom.getAllottedResource().getModelUUID().equals(modelUUID)) {
2347                 allottedResource = allottedResourceCustom.getAllottedResource();
2348             }
2349         }
2350         if (allottedResource == null)
2351             allottedResource = allottedRepo.findResourceByModelUUID(modelUUID);
2352
2353         return allottedResource;
2354     }
2355
2356     protected AllottedResourceCustomization createAllottedResourceCustomization(NodeTemplate nodeTemplate,
2357             ToscaResourceStructure toscaResourceStructure) {
2358         AllottedResourceCustomization allottedResourceCustomization = new AllottedResourceCustomization();
2359         allottedResourceCustomization.setModelCustomizationUUID(
2360                 testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID)));
2361         allottedResourceCustomization.setModelInstanceName(nodeTemplate.getName());
2362
2363
2364         allottedResourceCustomization.setNfFunction(testNull(toscaResourceStructure.getSdcCsarHelper()
2365                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFFUNCTION)));
2366         allottedResourceCustomization.setNfNamingCode(testNull(toscaResourceStructure.getSdcCsarHelper()
2367                 .getNodeTemplatePropertyLeafValue(nodeTemplate, "nf_naming_code")));
2368         allottedResourceCustomization.setNfRole(testNull(toscaResourceStructure.getSdcCsarHelper()
2369                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFROLE)));
2370         allottedResourceCustomization.setNfType(testNull(toscaResourceStructure.getSdcCsarHelper()
2371                 .getNodeTemplatePropertyLeafValue(nodeTemplate, SdcPropertyNames.PROPERTY_NAME_NFTYPE)));
2372
2373         List<NodeTemplate> vfcNodes = toscaResourceStructure.getSdcCsarHelper()
2374                 .getVfcListByVf(allottedResourceCustomization.getModelCustomizationUUID());
2375
2376         if (vfcNodes != null) {
2377             for (NodeTemplate vfcNode : vfcNodes) {
2378
2379                 allottedResourceCustomization.setProvidingServiceModelUUID(toscaResourceStructure.getSdcCsarHelper()
2380                         .getNodeTemplatePropertyLeafValue(vfcNode, "providing_service_uuid"));
2381                 allottedResourceCustomization
2382                         .setProvidingServiceModelInvariantUUID(toscaResourceStructure.getSdcCsarHelper()
2383                                 .getNodeTemplatePropertyLeafValue(vfcNode, "providing_service_invariant_uuid"));
2384                 allottedResourceCustomization.setProvidingServiceModelName(toscaResourceStructure.getSdcCsarHelper()
2385                         .getNodeTemplatePropertyLeafValue(vfcNode, "providing_service_name"));
2386             }
2387         }
2388
2389
2390         CapabilityAssignments arCustomizationCapability =
2391                 toscaResourceStructure.getSdcCsarHelper().getCapabilitiesOf(nodeTemplate);
2392
2393         if (arCustomizationCapability != null) {
2394             CapabilityAssignment capAssign = arCustomizationCapability.getCapabilityByName(SCALABLE);
2395
2396             if (capAssign != null) {
2397                 allottedResourceCustomization.setMinInstances(
2398                         Integer.getInteger(toscaResourceStructure.getSdcCsarHelper().getCapabilityPropertyLeafValue(
2399                                 capAssign, SdcPropertyNames.PROPERTY_NAME_MININSTANCES)));
2400                 allottedResourceCustomization.setMaxInstances(
2401                         Integer.getInteger(toscaResourceStructure.getSdcCsarHelper().getCapabilityPropertyLeafValue(
2402                                 capAssign, SdcPropertyNames.PROPERTY_NAME_MAXINSTANCES)));
2403             }
2404         }
2405         return allottedResourceCustomization;
2406     }
2407
2408     protected AllottedResource createAR(NodeTemplate nodeTemplate) {
2409         AllottedResource allottedResource = new AllottedResource();
2410         allottedResource
2411                 .setModelUUID(testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_UUID)));
2412         allottedResource.setModelInvariantUUID(
2413                 testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID)));
2414         allottedResource
2415                 .setModelName(testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_NAME)));
2416         allottedResource
2417                 .setModelVersion(testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_VERSION)));
2418         allottedResource.setToscaNodeType(testNull(nodeTemplate.getType()));
2419         allottedResource.setSubcategory(
2420                 testNull(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_SUBCATEGORY)));
2421         allottedResource
2422                 .setDescription(nodeTemplate.getMetaData().getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION));
2423         return allottedResource;
2424     }
2425
2426     protected Set<HeatTemplateParam> extractHeatTemplateParameters(String yamlFile, String artifactUUID) {
2427         // Scan the payload downloadResult and extract the HeatTemplate
2428         // parameters
2429         YamlEditor yamlEditor = new YamlEditor(yamlFile.getBytes());
2430         return yamlEditor.getParameterList(artifactUUID);
2431     }
2432
2433     protected String testNull(Object object) {
2434
2435         if (object == null) {
2436             return null;
2437         } else if (object.equals("NULL")) {
2438             return null;
2439         } else if (object instanceof Integer) {
2440             return object.toString();
2441         } else if (object instanceof String) {
2442             return (String) object;
2443         } else {
2444             return "Type not recognized";
2445         }
2446     }
2447
2448     protected static String identifyParentOfNestedTemplate(VfModuleStructure vfModuleStructure,
2449             VfModuleArtifact heatNestedArtifact) {
2450
2451         if (vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT) != null && vfModuleStructure
2452                 .getArtifactsMap().get(ASDCConfiguration.HEAT).get(0).getArtifactInfo().getRelatedArtifacts() != null) {
2453             for (IArtifactInfo unknownArtifact : vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT).get(0)
2454                     .getArtifactInfo().getRelatedArtifacts()) {
2455                 if (heatNestedArtifact.getArtifactInfo().getArtifactUUID().equals(unknownArtifact.getArtifactUUID())) {
2456                     return ASDCConfiguration.HEAT;
2457                 }
2458
2459             }
2460         }
2461
2462         if (vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT_VOL) != null
2463                 && vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT_VOL).get(0).getArtifactInfo()
2464                         .getRelatedArtifacts() != null) {
2465             for (IArtifactInfo unknownArtifact : vfModuleStructure.getArtifactsMap().get(ASDCConfiguration.HEAT_VOL)
2466                     .get(0).getArtifactInfo().getRelatedArtifacts()) {
2467                 if (heatNestedArtifact.getArtifactInfo().getArtifactUUID().equals(unknownArtifact.getArtifactUUID())) {
2468                     return ASDCConfiguration.HEAT_VOL;
2469                 }
2470
2471             }
2472         }
2473
2474         // Does not belong to anything
2475         return null;
2476
2477     }
2478
2479     protected static String createVNFName(VfResourceStructure vfResourceStructure) {
2480
2481         return vfResourceStructure.getNotification().getServiceName() + "/"
2482                 + vfResourceStructure.getResourceInstance().getResourceInstanceName();
2483     }
2484
2485     protected static String createVfModuleName(VfModuleStructure vfModuleStructure) {
2486
2487         return createVNFName(vfModuleStructure.getParentVfResource()) + "::"
2488                 + vfModuleStructure.getVfModuleMetadata().getVfModuleModelName();
2489     }
2490
2491     protected String getPropertyInput(String propertyName) {
2492
2493         String inputName = new String();
2494
2495         if (propertyName != null) {
2496             int getInputIndex = propertyName.indexOf("{get_input=");
2497             if (getInputIndex > -1) {
2498                 inputName = propertyName.substring(getInputIndex + 11, propertyName.length() - 1);
2499             }
2500         }
2501
2502         return inputName;
2503     }
2504
2505
2506     protected static Timestamp getCurrentTimeStamp() {
2507
2508         return new Timestamp(new Date().getTime());
2509     }
2510
2511 }
2512