Java style clean-up for AAIService.java
[appc.git] / appc-outbound / appc-aai-client / provider / src / main / java / org / onap / appc / aai / client / aai / AaiService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.aai.client.aai;
26
27 import java.util.ArrayList;
28 import java.util.HashMap;
29 import java.util.List;
30 import java.util.Map;
31 import org.apache.commons.lang3.StringUtils;
32 import org.apache.commons.lang3.math.NumberUtils;
33 import org.onap.appc.aai.client.AppcAaiClientConstant;
34 import org.onap.ccsdk.sli.adaptors.aai.AAIClient;
35 import org.onap.ccsdk.sli.adaptors.aai.AAIService;
36 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
37 import org.onap.ccsdk.sli.core.sli.SvcLogicResource;
38 import org.osgi.framework.BundleContext;
39 import org.osgi.framework.FrameworkUtil;
40 import org.osgi.framework.ServiceReference;
41 import com.att.eelf.configuration.EELFLogger;
42 import com.att.eelf.configuration.EELFManager;
43
44 public class AaiService {
45
46     private static final EELFLogger log = EELFManager.getInstance().getLogger(AaiService.class);
47     private AAIClient aaiClient;
48
49     public AaiService(AAIClient aaiClient) {
50         this.aaiClient = aaiClient;
51     }
52
53     public AaiService() {
54         BundleContext bctx = FrameworkUtil.getBundle(this.getClass()).getBundleContext();
55         ServiceReference sref = bctx.getServiceReference(AAIService.class);
56         aaiClient = (AAIClient) bctx.getService(sref);
57     }
58
59     public void getGenericVnfInfo(Map<String, String> params, SvcLogicContext ctx) throws Exception {
60
61         String vnfId = params.get("vnfId");
62         if (StringUtils.isBlank(vnfId)) {
63             throw new Exception("VnfId is missing");
64         }
65         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
66         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
67         String resourceKey = "generic-vnf.vnf-id = '" + vnfId + "'";
68         String resourceType = "generic-vnf";
69         String queryPrefix = "vnfInfo";
70         SvcLogicContext vnfCtx = readResource(resourceKey, queryPrefix, resourceType);
71
72         ctx.setAttribute(prefix + "vnf.vnf-name", vnfCtx.getAttribute("vnfInfo.vnf-name"));
73         ctx.setAttribute(prefix + "vnf.vnf-type", vnfCtx.getAttribute("vnfInfo.vnf-type"));
74         ctx.setAttribute(prefix + "vnf.prov-status", vnfCtx.getAttribute("vnfInfo.prov-status"));
75         ctx.setAttribute(prefix + "vnf.orchestration-status", vnfCtx.getAttribute("vnfInfo.orchestration-status"));
76         ctx.setAttribute(prefix + "vnf.ipv4-oam-address", vnfCtx.getAttribute("vnfInfo.ipv4-oam-address"));
77
78         int vmCount = 0;
79         String relLen = vnfCtx.getAttribute("vnfInfo.relationship-list.relationship_length");
80         int relationshipLength = 0;
81         if (relLen != null) {
82             relationshipLength = Integer.parseInt(relLen);
83         }
84         log.info("RELLEN " + relationshipLength);
85         for (int i = 0; i < relationshipLength; i++) {
86             String vserverId = getRelationshipValue(i, vnfCtx, "vserver", "vserver.vserver-id", "vnfInfo");
87             String tenantId = getRelationshipValue(i, vnfCtx, "vserver", "tenant.tenant-id", "vnfInfo");
88             String cloudOwner = getRelationshipValue(i, vnfCtx, "vserver", "cloud-region.cloud-owner", "vnfInfo");
89             String cloudRegionId =
90                     getRelationshipValue(i, vnfCtx, "vserver", "cloud-region.cloud-region-id", "vnfInfo");
91             if (vserverId != null) {
92                 log.info("VSERVER KEYS " + vserverId + " " + tenantId + " " + cloudOwner + " " + cloudRegionId);
93                 String vnfPrefix = prefix + "vm[" + vmCount + "].";
94                 ctx.setAttribute(vnfPrefix + "vserver-id", vserverId);
95                 ctx.setAttribute(vnfPrefix + "tenant-id", tenantId);
96                 ctx.setAttribute(vnfPrefix + "cloud-owner", cloudOwner);
97                 ctx.setAttribute(vnfPrefix + "cloud-region-id", cloudRegionId);
98                 vmCount++;
99             }
100         }
101         ctx.setAttribute(prefix + "vm-count", String.valueOf(vmCount));
102         log.info("VMCOUNT FROM VNF INFO " + ctx.getAttribute(prefix + "vm-count"));
103     }
104
105     public void getVMInfo(Map<String, String> params, SvcLogicContext ctx) throws Exception {
106         log.info("Received getVmInfo call with params : " + params);
107         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
108         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
109         int vnfcCount = 0;
110         ctx.setAttribute(prefix + "vm.vnfc-count", String.valueOf(vnfcCount)); // Incase no vnfcs are found
111         String vserverId = params.get("vserverId");
112         if (StringUtils.isBlank(vserverId)) {
113             throw new Exception("VServerId is missing");
114         }
115         String tenantId = params.get("tenantId");
116         if (StringUtils.isBlank(tenantId)) {
117             throw new Exception("TenantId is missing");
118         }
119         String cloudOwner = params.get("cloudOwner");
120         if (StringUtils.isBlank(cloudOwner)) {
121             throw new Exception("Cloud Owner is missing");
122         }
123         String cloudRegionId = params.get("cloudRegionId");
124         if (StringUtils.isBlank(cloudRegionId)) {
125             throw new Exception("Cloud region Id is missing");
126         }
127         String resourceKey = "vserver.vserver-id = '" + vserverId + "' AND tenant.tenant-id = '" + tenantId
128                 + "' AND cloud-region.cloud-owner = '" + cloudOwner + "' AND cloud-region.cloud-region-id = '"
129                 + cloudRegionId + "'";
130         String queryPrefix = "vmInfo";
131         String resourceType = "vserver";
132         SvcLogicContext vmCtx = readResource(resourceKey, queryPrefix, resourceType);
133
134         ctx.setAttribute(prefix + "vm.prov-status", vmCtx.getAttribute("vmInfo.prov-status"));
135         ctx.setAttribute(prefix + "vm.vserver-name", vmCtx.getAttribute("vmInfo.vserver-name"));
136
137         String relLen = vmCtx.getAttribute("vmInfo.relationship-list.relationship_length");
138         int relationshipLength = 0;
139         if (relLen != null) {
140             relationshipLength = Integer.parseInt(relLen);
141         }
142         log.info("RELLEN" + relationshipLength);
143         for (int i = 0; i < relationshipLength; i++) {
144             String vfModuleId = getRelationshipValue(i, vmCtx, "vf-module", "vf-module.vf-module-id", "vmInfo");
145             if (vfModuleId != null)
146                 ctx.setAttribute(prefix + "vm.vf-module-id", vfModuleId);
147
148             String vnfcName = getRelationshipValue(i, vmCtx, "vnfc", "vnfc.vnfc-name", "vmInfo");
149             if (vnfcName != null) {
150                 ctx.setAttribute(prefix + "vm.vnfc[" + vnfcCount + "].vnfc-name", vnfcName);
151                 vnfcCount++;
152             }
153
154         } // relationshipLength
155         ctx.setAttribute(prefix + "vm.vnfc-count", String.valueOf(vnfcCount));
156         log.info("VSERVERNAME " + ctx.getAttribute(prefix + "vm.vserver-name") + " HAS NUM VNFCS = "
157                 + ctx.getAttribute(prefix + "vm.vnfc-count"));
158     }
159
160     private String getRelationshipValue(int i, SvcLogicContext ctx, String relatedTo, String relationshipKey,
161             String prefix) throws Exception {
162
163         if (relatedTo.equals(ctx.getAttribute(prefix + ".relationship-list.relationship[" + i + "].related-to"))) {
164             log.info("RELATEDTO " + relatedTo);
165             int relationshipDataLength = 0;
166             String relDataLen =
167                     ctx.getAttribute(prefix + ".relationship-list.relationship[" + i + "].relationship-data_length");
168             if (relDataLen != null) {
169                 relationshipDataLength = Integer.parseInt(relDataLen);
170             }
171
172             for (int j = 0; j < relationshipDataLength; j++) {
173
174                 String key = ctx.getAttribute(prefix + ".relationship-list.relationship[" + i + "].relationship-data["
175                         + j + "].relationship-key");
176
177                 String value = ctx.getAttribute(prefix + ".relationship-list.relationship[" + i + "].relationship-data["
178                         + j + "].relationship-value");
179
180                 log.info("GENERIC KEY " + key);
181                 log.info("GENERIC VALUE " + value);
182
183                 if (relationshipKey.equals(key)) {
184                     return value;
185                 }
186
187             } // relationshipDataLength
188         } // if related-To
189
190         return null;
191     }
192
193     public void getVnfcInfo(Map<String, String> params, SvcLogicContext ctx) throws Exception {
194         log.info("Received getVnfc call with params : " + params);
195
196         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
197         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
198
199         String vnfcName = params.get("vnfcName");
200         if (StringUtils.isBlank(vnfcName)) {
201             throw new Exception("Vnfc Name is missing");
202         }
203
204         String resourceKey = "vnfc.vnfc-name = '" + vnfcName + "'";
205         String queryPrefix = "vnfcInfo";
206         String resourceType = "vnfc";
207         SvcLogicContext vnfcCtx = readResource(resourceKey, queryPrefix, resourceType);
208
209         // Changes for US 315820 for 1710 vnfc-type renamed to nfc-function,vnfc-function-code renamed to
210         // nfc-naming-code
211
212         ctx.setAttribute(prefix + "vnfc.vnfc-type", vnfcCtx.getAttribute("vnfcInfo.nfc-function"));
213         ctx.setAttribute(prefix + "vnfc.vnfc-function-code", vnfcCtx.getAttribute("vnfcInfo.nfc-naming-code"));
214         ctx.setAttribute(prefix + "vnfc.group-notation", vnfcCtx.getAttribute("vnfcInfo.group-notation"));
215         ctx.setAttribute(prefix + "vnfc.ipaddress-v4-oam-vip", vnfcCtx.getAttribute("vnfcInfo.ipaddress-v4-oam-vip"));
216
217     }
218
219     public void insertVnfcs(Map<String, String> params, SvcLogicContext ctx, int vnfcRefLen, int vmCount)
220             throws Exception {
221         log.info("Received insertVnfcs call with params : " + params);
222
223         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
224
225         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
226         int vnfcRefIndx = 0;
227         log.debug("vnfcRefIndx" + vnfcRefIndx);
228         for (int i = 0; i < vmCount; i++) {
229             String aaiRefKey = prefix + "vm[" + i + "].";
230
231             log.info("VNFCNAME IN INSERTVNFCS " + ctx.getAttribute(aaiRefKey + "vnfc-name"));
232             String vnfcNameAAI = ctx.getAttribute(aaiRefKey + "vnfc-name");
233
234             // Get Vnfc_reference data from the table
235             String vnfcRefKey = "vnfcReference[" + vnfcRefIndx + "].";
236
237             log.info("VNFCREFKEY " + vnfcRefKey);
238             log.info("AAIREFKEY " + aaiRefKey);
239
240             String groupNotationType = ctx.getAttribute(vnfcRefKey + "GROUP-NOTATION-TYPE");
241             String groupNotationValue = ctx.getAttribute(vnfcRefKey + "GROUP-NOTATION-VALUE");
242             String vnfcType = ctx.getAttribute(vnfcRefKey + "VNFC-TYPE");
243             String vnfcFuncCode = ctx.getAttribute(vnfcRefKey + "VNFC-FUNCTION-CODE");
244             String populateIpAddressV4OamVip = ctx.getAttribute(vnfcRefKey + "IPADDRESS-V4-OAM-VIP");
245
246             // Get vnfc Data to be added
247             String vserverName = ctx.getAttribute(aaiRefKey + "vserver-name");
248             String vnfcName = vserverName + vnfcFuncCode + "001";
249             String groupNotation = getGroupNotation(groupNotationType, groupNotationValue, vnfcName, vserverName,
250                     prefix, ctx, vnfcType);
251
252             String ipAddressV4OamVip = null;
253             if ("Y".equals(populateIpAddressV4OamVip)) {
254                 ipAddressV4OamVip = ctx.getAttribute("vnf-host-ip-address"); // from input
255             }
256             Map<String, String> vnfcParams =
257                     populateVnfcParams(ctx, aaiRefKey, ipAddressV4OamVip, groupNotation, vnfcType, vnfcFuncCode);
258
259             log.info("Vnfc name from AAI: " + vnfcNameAAI);
260             log.info("Vnfc name generated: " + vnfcName);
261
262             if (StringUtils.isNotBlank(vnfcNameAAI)) {
263                 if (vnfcName.equalsIgnoreCase(vnfcNameAAI)) {
264                     updateVnfcStatus(vnfcNameAAI, params, prefix);
265                     vnfcRefIndx++;
266                 }
267                 continue;
268             }
269             vnfcRefIndx++;
270             addVnfc(vnfcName, vnfcParams, prefix);
271
272             // Add VNFC Info to context for current added VNFC
273             ctx.setAttribute(aaiRefKey + "vnfc-name", vnfcName);
274             ctx.setAttribute(aaiRefKey + "vnfc-type", vnfcType);
275             ctx.setAttribute(aaiRefKey + "vnfc-function-code", vnfcFuncCode);
276             ctx.setAttribute(aaiRefKey + "group-notation", groupNotation);
277         }
278     }
279
280     public List<String> getVnfcData(Map<String, String> params, SvcLogicContext ctx, int vnfcRefLen, int vmCount)
281             throws Exception {
282
283         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
284         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
285         List<String> vnfcNames = new ArrayList<String>();
286         int vnfcRefIndx = -1;
287         for (int i = 0; i < vmCount; i++) {
288             String aaiRefKey = prefix + "vm[" + i + "].";
289             log.info("VNFCNAME IN INSERTVNFCS " + ctx.getAttribute(aaiRefKey + "vnfc-name"));
290             if (ctx.getAttribute(aaiRefKey + "vnfc-name") != null) {
291                 continue;
292             } else {
293                 vnfcRefIndx++;
294             }
295             String vnfcRefKey = "vnfcReference[" + vnfcRefIndx + "].";
296             log.info("VNFCREFKEY " + vnfcRefKey);
297             log.info("AAIREFKEY " + aaiRefKey);
298             String vnfcFuncCode = ctx.getAttribute(vnfcRefKey + "VNFC-FUNCTION-CODE");
299
300             // Get vnfc Data to be added
301             String vserverName = ctx.getAttribute(aaiRefKey + "vserver-name");
302             String vnfcName = vserverName + vnfcFuncCode + "001";
303
304
305             vnfcNames.add(vnfcName);
306         }
307
308         return vnfcNames;
309     }
310
311     private Map<String, String> populateVnfcParams(SvcLogicContext ctx, String aaiRefKey, String ipAddressV4OamVip,
312             String groupNotation, String vnfcType, String vnfcFuncCode) throws Exception {
313
314         Map<String, String> vnfcParams = new HashMap<String, String>();
315
316         // Changes for vnfc-type renamed to nfc-function,vnfc-function-code renamed to
317         // nfc-naming-code
318         vnfcParams.put("nfc-naming-code", vnfcFuncCode);
319         vnfcParams.put("nfc-function", vnfcType);
320         vnfcParams.put("ipaddress-v4-oam-vip", ipAddressV4OamVip);
321         vnfcParams.put("prov-status", "NVTPROV");
322         vnfcParams.put("orchestration-status", "CONFIGURED");
323         vnfcParams.put("in-maint", "false");
324         vnfcParams.put("is-closed-loop", "false");
325         vnfcParams.put("group-notation", groupNotation);
326         vnfcParams.put("relationship-list.relationship[0].related-to", "vserver");
327         vnfcParams.put("relationship-list.relationship[0].relationship-data[0].relationship-key", "vserver.vserver-id");
328         vnfcParams.put("relationship-list.relationship[0].relationship-data[0].relationship-value",
329                 ctx.getAttribute(aaiRefKey + "vserver-id"));
330         vnfcParams.put("relationship-list.relationship[0].relationship-data[1].relationship-key", "tenant.tenant-id");
331         vnfcParams.put("relationship-list.relationship[0].relationship-data[1].relationship-value",
332                 ctx.getAttribute(aaiRefKey + "tenant-id"));
333         vnfcParams.put("relationship-list.relationship[0].relationship-data[2].relationship-key",
334                 "cloud-region.cloud-owner");
335         vnfcParams.put("relationship-list.relationship[0].relationship-data[2].relationship-value",
336                 ctx.getAttribute(aaiRefKey + "cloud-owner"));
337         vnfcParams.put("relationship-list.relationship[0].relationship-data[3].relationship-key",
338                 "cloud-region.cloud-region-id");
339         vnfcParams.put("relationship-list.relationship[0].relationship-data[3].relationship-value",
340                 ctx.getAttribute(aaiRefKey + "cloud-region-id"));
341         vnfcParams.put("relationship-list.relationship[1].related-to", "generic-vnf");
342         vnfcParams.put("relationship-list.relationship[1].relationship-data[0].relationship-key", "generic-vnf.vnf-id");
343         vnfcParams.put("relationship-list.relationship[1].relationship-data[0].relationship-value",
344                 ctx.getAttribute("vnf-id"));
345         vnfcParams.put("relationship-list.relationship[2].related-to", "vf-module");
346         vnfcParams.put("relationship-list.relationship[2].relationship-data[0].relationship-key", "generic-vnf.vnf-id");
347         vnfcParams.put("relationship-list.relationship[2].relationship-data[0].relationship-value",
348                 ctx.getAttribute("vnf-id"));
349         vnfcParams.put("relationship-list.relationship[2].relationship-data[1].relationship-key",
350                 "vf-module.vf-module-id");
351         vnfcParams.put("relationship-list.relationship[2].relationship-data[1].relationship-value",
352                 ctx.getAttribute(aaiRefKey + "vf-module-id"));
353
354         return vnfcParams;
355     }
356
357     public void addVnfc(String vnfcName, Map<String, String> params, String prefix) throws Exception {
358         log.info("Received addVnfc call with vnfcName : " + vnfcName);
359         log.info("Received addVnfc call with params : " + params);
360         String resourceKey = "vnfc.vnfc-name = '" + vnfcName + "'";
361         log.info("Received addVnfc call with resourceKey : " + resourceKey);
362
363         SvcLogicContext vnfcCtx = new SvcLogicContext();
364         SvcLogicResource.QueryStatus response =
365                 aaiClient.save("vnfc", true, false, resourceKey, params, prefix, vnfcCtx);
366
367         if (SvcLogicResource.QueryStatus.SUCCESS.equals(response)) {
368             log.info("Added VNFC SUCCESSFULLY " + vnfcName);
369         } else if (SvcLogicResource.QueryStatus.FAILURE.equals(response)) {
370             throw new Exception("VNFC Add failed for for vnfc_name " + vnfcName);
371         }
372     }
373
374     public String getGroupNotation(String groupNotationType, String groupNotationValue, String vnfcName,
375             String vserverName, String prefix, SvcLogicContext ctx, String vnfcRefVnfcType) throws Exception {
376
377         String grpNotation = null;
378
379         if ("fixed-value".equals(groupNotationType)) {
380             grpNotation = groupNotationValue;
381         } else if ("first-vnfc-name".equals(groupNotationType)) {
382
383             /*
384              * If the group-notation-type value = ?first-vnfc-name?,
385              * then populate the group-notation value with the concatenation of
386              * [vnfc name associated with the first vnfc for the vnfc-type (e.g., *******)]
387              * and [the value in group-notation-value (e.g., pair)].
388              * There may be several vnfc-types associated with the VM?s.
389              */
390             /* Vnfc-type should be from refrence data */
391
392             /* vDBE has 2 VNFCs with same VNFC type . The pair name should be same for both . */
393             /*
394              * When first VNFC is added details should be added to context so FirstVnfcName doesnt return null second
395              * time.
396              */
397             String tmpVnfcName = getFirstVnfcNameForVnfcType(ctx, prefix, vnfcRefVnfcType);
398
399             log.info("RETURNED FIRSTVNFCNAME" + tmpVnfcName);
400             log.info("CURRENTVNFCNAME" + vnfcName);
401             if (tmpVnfcName == null) {
402                 log.info("CURRENTVNFCNAME" + vnfcName);
403                 // No Vnfcs currently exist. Use Current vnfcName
404                 grpNotation = vnfcName + groupNotationValue;
405             } else {
406                 grpNotation = tmpVnfcName + groupNotationValue;
407             }
408         } else if ("relative-value".equals(groupNotationType)) {
409
410             /*
411              * If the group-notation-type = ?relative-value?, then find the group-notation value
412              * from the prior vnfc (where prior means the vnfc with where the last three digits of the
413              * vm-name is one lower than the current one; note that this vnfc may have been previously configured.)
414              * 1. If the group-notation-value = next, then add 1 to the group-notation value from the prior vnfc and use
415              * this value
416              * 2. If the group-notation-value = same, then use the group-notation-value from the prior vnfc record
417              */
418
419             // next and same cant be defined for first VM. if next will not generate grpNotation if Prior is not a
420             // number
421             String tmpVserverName = null;
422             if (vserverName != null) {
423
424                 String vmNamePrefix = vserverName.substring(0, vserverName.length() - 3);
425
426                 String lastThreeChars = vserverName.substring(vserverName.length() - 3);
427
428                 if (NumberUtils.isDigits(lastThreeChars)) {
429                     int vmNum = Integer.parseInt(lastThreeChars) - 1;
430                     String formatted = String.format("%03d", vmNum);
431
432                     log.info("FORMATTED " + formatted);
433
434                     tmpVserverName = vmNamePrefix + formatted;
435
436                     String priorGroupNotation = getGroupNotationForVServer(ctx, prefix, tmpVserverName);
437
438                     if ("same".equals(groupNotationValue)) {
439                         grpNotation = priorGroupNotation;
440                     } else if ("next".equals(groupNotationValue)) {
441                         if (priorGroupNotation != null && NumberUtils.isDigits(priorGroupNotation)) {
442                             int nextGrpNotation = Integer.parseInt(priorGroupNotation) + 1;
443                             grpNotation = String.valueOf(nextGrpNotation);
444                         }
445                     }
446                 }
447             }
448         }
449
450         log.info("RETURNED GROUPNOTATION " + grpNotation);
451         return grpNotation;
452     }
453
454     public String getGroupNotationForVServer(SvcLogicContext ctx, String prefix, String vserverName) {
455
456         String vmCountStr = ctx.getAttribute(prefix + "vnf.vm-count");
457
458         if (vmCountStr == null) {
459             return null;
460         }
461
462         int vmCount = Integer.valueOf(vmCountStr);
463         for (int i = 0; i < vmCount; i++) {
464
465             String tmpVserver = ctx.getAttribute(prefix + "vm[" + i + "].vserver-name");
466
467             if (vserverName.equals(tmpVserver)) {
468                 return ctx.getAttribute(prefix + "vm[" + i + "].group-notation");
469             }
470         } // vmCount
471
472         return null;
473     }
474
475     public String getFirstVnfcNameForVnfcType(SvcLogicContext ctx, String prefix, String vnfcRefVnfcType) {
476
477         String vmCountStr = ctx.getAttribute(prefix + "vnf.vm-count");
478
479         if (vmCountStr == null) {
480             return null;
481         }
482
483         int vmCount = Integer.valueOf(vmCountStr);
484         for (int i = 0; i < vmCount; i++) {
485
486             String tmpvnfcType = ctx.getAttribute(prefix + "vm[" + i + "].vnfc-type");
487
488             if (vnfcRefVnfcType.equals(tmpvnfcType)) {
489                 return ctx.getAttribute(prefix + "vm[" + i + "].vnfc-name");
490             }
491         } // vmCount
492         return null;
493     }
494
495     public void updateVServerStatus(Map<String, String> params, SvcLogicContext ctx, int vmCount) throws Exception {
496         log.info("Received updateVServerStatus call with params : " + params);
497
498         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
499
500         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
501         Map<String, String> vServerParams = new HashMap<String, String>();
502
503         // TODO - Should this just update prov-status or both? What about generic-vnf status? Will that be updated by
504         // Dispatcher?
505
506         vServerParams.put("prov-status", "NVTPROV");
507
508         for (int i = 0; i < vmCount; i++) {
509             String aaiRefKey = prefix + "vm[" + i + "].";
510
511             log.info("VNFCNAME IN UpdateVServer " + ctx.getAttribute(aaiRefKey + "vnfc-name"));
512
513             if (ctx.getAttribute(aaiRefKey + "vnfc-name") != null) {
514                 continue;
515             }
516
517             String resourceKey = "vserver.vserver-id = '" + ctx.getAttribute(aaiRefKey + "vserver-id") + "'"
518                     + " AND tenant.tenant-id = '" + ctx.getAttribute(aaiRefKey + "tenant-id") + "'"
519                     + " AND cloud-region.cloud-owner = '" + ctx.getAttribute(aaiRefKey + "cloud-owner") + "'"
520                     + " AND cloud-region.cloud-region-id = '" + ctx.getAttribute(aaiRefKey + "cloud-region-id") + "'";
521
522             updateResource("vserver", resourceKey, vServerParams);
523         }
524     }
525
526     public void updateVnfStatus(Map<String, String> params, SvcLogicContext ctx) throws Exception {
527         log.info("Received updateVnfStatus call with params : " + params);
528
529         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
530
531         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
532
533         Map<String, String> vnfParams = new HashMap<String, String>();
534
535         // TODO - Should this just update prov-status or both? What about generic-vnf status? Will that be updated by
536         // Dispatcher?
537
538         vnfParams.put("prov-status", "NVTPROV");
539
540         String resourceKey = "generic-vnf.vnf-id = '" + ctx.getAttribute("vnf-id") + "'";
541
542         updateResource("generic-vnf", resourceKey, vnfParams);
543     }
544
545     public void updateResource(String resource, String resourceKey, Map<String, String> params) throws Exception {
546
547         log.info("Received updateResource call with Key : " + resourceKey);
548
549         SvcLogicContext ctx = new SvcLogicContext();
550         SvcLogicResource.QueryStatus response = aaiClient.update(resource, resourceKey, params, "tmp.update", ctx);
551
552         if (SvcLogicResource.QueryStatus.SUCCESS.equals(response)) {
553             log.info("Updated " + resource + " SUCCESSFULLY for " + resourceKey);
554
555         } else if (SvcLogicResource.QueryStatus.FAILURE.equals(response)) {
556             throw new Exception(resource + " Update failed for " + resourceKey);
557         }
558     }
559
560     public SvcLogicContext readResource(String query, String prefix, String resourceType) throws Exception {
561         SvcLogicContext resourceContext = new SvcLogicContext();
562
563         SvcLogicResource.QueryStatus response =
564                 aaiClient.query(resourceType, false, null, query, prefix, null, resourceContext);
565         log.info("AAIResponse: " + response.toString());
566         if (!SvcLogicResource.QueryStatus.SUCCESS.equals(response)) {
567             throw new Exception("Error Retrieving " + resourceType + " from A&AI");
568         }
569
570         return resourceContext;
571     }
572
573     // Added for Backward Compatibility
574
575     public void checkAndUpdateVnfc(Map<String, String> params, SvcLogicContext ctx, int vnfcRefLen, int vmCount)
576             throws Exception {
577         log.info("Received checkAndUpdateVnfcStatus call with params : " + params);
578
579         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
580
581         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
582
583         for (int i = 0; i < vmCount; i++) {
584             String aaiRefKey = prefix + "vm[" + i + "].";
585
586             log.info("VNFCNAME IN INSERTVNFCS " + aaiRefKey + "vnfc-name:" + ctx.getAttribute(aaiRefKey + "vnfc-name"));
587
588             String vnfcNameAai = ctx.getAttribute(aaiRefKey + "vnfc-name");
589
590             if (StringUtils.isNotBlank(vnfcNameAai)) {
591                 // Get Vnfc_reference data
592                 for (int vnfcRefIndx = 0; vnfcRefIndx < vnfcRefLen; vnfcRefIndx++) {
593
594                     String vnfcRefKey = "vnfcReference[" + vnfcRefIndx + "].";
595
596                     log.info("VNFCREFKEY " + vnfcRefKey);
597                     log.info("AAIREFKEY " + aaiRefKey);
598
599                     String vnfcFuncCode = ctx.getAttribute(vnfcRefKey + "VNFC-FUNCTION-CODE");
600                     String vserverName = ctx.getAttribute(aaiRefKey + "vserver-name");
601                     String vnfcNameReference = vserverName + vnfcFuncCode + "001";
602
603                     if (vnfcNameAai.equals(vnfcNameReference)) {
604                         updateVnfcStatus(vnfcNameAai, params, prefix);
605                     }
606                 }
607             }
608         }
609     }
610
611     public void updateVnfcStatus(String vnfcName, Map<String, String> params, String prefix) throws Exception {
612
613         log.info("Received updateVnfcStatus call with vnfcName : " + vnfcName);
614         log.info("Received updateVnfcStatus call with params : " + params);
615
616         String resourceKey = "vnfc.vnfc-name = '" + vnfcName + "'";
617         log.info("Received updateVnfcStatus call with resourceKey : " + resourceKey);
618
619         Map<String, String> vnfcParams = new HashMap<String, String>();
620         vnfcParams.put("prov-status", "NVTPROV");
621         vnfcParams.put("orchestration-status", "CONFIGURED");
622
623         log.info("In updateVnfcStatus call with vnfcParams : " + vnfcParams);
624
625         updateResource("vnfc", resourceKey, vnfcParams);
626
627         log.info("End of updateVnfcStatus");
628     }
629
630     public void updateVnfStatusWithOAMAddress(Map<String, String> params, SvcLogicContext ctx) throws Exception {
631         log.info("Received updateVnfStatusWithOAMAddress call with params : " + params);
632
633         String prefix = params.get(AppcAaiClientConstant.INPUT_PARAM_RESPONSE_PREFIX);
634         String ipAddress = ctx.getAttribute("vnf-host-ip-address");
635         log.debug("Vnf-host-ip-address" + ipAddress);
636
637         prefix = StringUtils.isNotBlank(prefix) ? (prefix + ".") : "";
638
639         Map<String, String> vnfParams = new HashMap<String, String>();
640
641         vnfParams.put("ipv4-oam-address", ipAddress);
642
643         String resourceKey = "generic-vnf.vnf-id = '" + ctx.getAttribute("vnf-id") + "'";
644
645         updateResource("generic-vnf", resourceKey, vnfParams);
646     }
647 }