f8595fff25afe7c0a7c1f26b7a993470bda1db0c
[ccsdk/sli/core.git] / sli / provider-base / src / main / java / org / onap / ccsdk / sli / core / sli / provider / base / SaveNodeExecutor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : CCSDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Modifications Copyright (C) 2018 IBM.
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.ccsdk.sli.core.sli.provider.base;
25
26 import java.util.HashMap;
27 import java.util.Iterator;
28 import java.util.Map;
29 import java.util.Set;
30 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
31 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
32 import org.onap.ccsdk.sli.core.sli.SvcLogicExpression;
33 import org.onap.ccsdk.sli.core.sli.SvcLogicNode;
34 import org.onap.ccsdk.sli.core.sli.SvcLogicResource;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37
38 public class SaveNodeExecutor extends AbstractSvcLogicNodeExecutor {
39
40     private static final Logger LOG = LoggerFactory.getLogger(SaveNodeExecutor.class);
41     private static final String FAILURE= "failure";
42
43     @Override
44     public SvcLogicNode execute(SvcLogicServiceBase svc, SvcLogicNode node, SvcLogicContext ctx)
45             throws SvcLogicException {
46
47         String plugin = SvcLogicExpressionResolver.evaluate(node.getAttribute("plugin"), node, ctx);
48         String resourceType = SvcLogicExpressionResolver.evaluate(node.getAttribute("resource"), node, ctx);
49         String key = SvcLogicExpressionResolver.evaluateAsKey(node.getAttribute("key"), node, ctx);
50         String forceStr = SvcLogicExpressionResolver.evaluate(node.getAttribute("force"), node, ctx);
51         String localOnlyStr = SvcLogicExpressionResolver.evaluate(node.getAttribute("local-only"), node, ctx);
52         String pfx = SvcLogicExpressionResolver.evaluate(node.getAttribute("pfx"), node, ctx);
53
54         boolean force = "true".equalsIgnoreCase(forceStr);
55         boolean localOnly = "true".equalsIgnoreCase(localOnlyStr);
56
57         Map<String, String> parmMap = new HashMap<>();
58
59         Set<Map.Entry<String, SvcLogicExpression>> parmSet = node.getParameterSet();
60         boolean hasParms = false;
61
62         for (Iterator<Map.Entry<String, SvcLogicExpression>> iter = parmSet.iterator(); iter.hasNext();) {
63             hasParms = true;
64             Map.Entry<String, SvcLogicExpression> curEnt = iter.next();
65             String curName = curEnt.getKey();
66             SvcLogicExpression curExpr = curEnt.getValue();
67             if (curExpr != null) {
68                 String curExprValue = SvcLogicExpressionResolver.evaluate(curExpr, node, ctx);
69
70                 LOG.debug("Parameter " + curName + " = " + curExpr.asParsedExpr() + " resolves to " + curExprValue);
71
72                 parmMap.put(curName, curExprValue);
73             }
74         }
75
76         String outValue = FAILURE;
77
78         if (LOG.isDebugEnabled()) {
79             LOG.debug("save node encountered - looking for resource class " + plugin);
80         }
81
82
83
84         SvcLogicResource resourcePlugin = getSvcLogicResource(plugin);
85
86         if (resourcePlugin != null) {
87
88             try {
89                 switch (resourcePlugin.save(resourceType, force, localOnly, key, parmMap, pfx, ctx)) {
90                     case SUCCESS:
91                         outValue = "success";
92                         break;
93                     case NOT_FOUND:
94                         outValue = "not-found";
95                         break;
96                     case FAILURE:
97                     default:
98                         outValue = FAILURE;
99                 }
100             } catch (SvcLogicException e) {
101                 LOG.error("Caught exception from resource plugin", e);
102                 outValue = FAILURE;
103             }
104         } else {
105             LOG.warn("Could not find SvcLogicResource object for plugin " + plugin);
106         }
107         return (getNextNode(node, outValue));
108     }
109
110 }