06fbedffef738349f6d90dca5ae6bc0664fc5ecb
[sdnc/core.git] / sli / provider / src / main / java / org / openecomp / sdnc / sli / provider / RecordNodeExecutor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                         reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.sdnc.sli.provider;
23
24 import java.util.HashMap;
25 import java.util.Iterator;
26 import java.util.Map;
27 import java.util.Set;
28
29 import org.openecomp.sdnc.sli.SvcLogicContext;
30 import org.openecomp.sdnc.sli.SvcLogicException;
31 import org.openecomp.sdnc.sli.SvcLogicExpression;
32 import org.openecomp.sdnc.sli.SvcLogicNode;
33 import org.openecomp.sdnc.sli.SvcLogicRecorder;
34 import org.osgi.framework.BundleContext;
35 import org.osgi.framework.FrameworkUtil;
36 import org.osgi.framework.ServiceReference;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39
40 public class RecordNodeExecutor extends SvcLogicNodeExecutor {
41
42         private static final Logger LOG = LoggerFactory
43                         .getLogger(RecordNodeExecutor.class);
44         
45         @Override
46         public SvcLogicNode execute(SvcLogicServiceImpl svc, SvcLogicNode node,
47                         SvcLogicContext ctx) throws SvcLogicException {
48
49                 String plugin = SvcLogicExpressionResolver.evaluate(
50                                 node.getAttribute("plugin"), node, ctx);
51                 String outValue = "failure";
52
53                 if (LOG.isDebugEnabled()) {
54                         LOG.debug(node.getNodeType()
55                                         + " node encountered - looking for recorder class "
56                                         + plugin);
57                 }
58
59                 Map<String, String> parmMap = new HashMap<String, String>();
60
61                 Set<Map.Entry<String, SvcLogicExpression>> parmSet = node
62                                 .getParameterSet();
63                 boolean hasParms = false;
64
65                 for (Iterator<Map.Entry<String, SvcLogicExpression>> iter = parmSet
66                                 .iterator(); iter.hasNext();) {
67                         hasParms = true;
68                         Map.Entry<String, SvcLogicExpression> curEnt = iter.next();
69                         String curName = curEnt.getKey();
70                         SvcLogicExpression curExpr = curEnt.getValue();
71                         String curExprValue = SvcLogicExpressionResolver.evaluate(curExpr,
72                                         node, ctx);
73
74                         if (LOG.isDebugEnabled()) {
75                                 LOG.debug("executeRecordNode : parameter " + curName + " = "
76                                                 + curExpr + " => " + curExprValue);
77                         }
78                         parmMap.put(curName, curExprValue);
79                 }
80
81                 BundleContext bctx = FrameworkUtil.getBundle(this.getClass())
82                                 .getBundleContext();
83
84                 ServiceReference sref = bctx.getServiceReference(plugin);
85
86                 if (sref != null) {
87                         SvcLogicRecorder recorder = (SvcLogicRecorder) bctx
88                                         .getService(sref);
89
90                         if (recorder != null) {
91
92                                 try {
93                                         recorder.record(parmMap);
94                                 } catch (SvcLogicException e) {
95                                         LOG.error("Caught exception from recorder plugin", e);
96                                         outValue = "failure";
97                                 }
98                         } else {
99                                 LOG.warn("Could not find SvcLogicRecorder object for plugin "
100                                                 + plugin);
101                         }
102                 } else {
103                         LOG.warn("Cound not find service reference for plugin " + plugin);
104                 }
105
106                 SvcLogicNode nextNode = node.getOutcomeValue(outValue);
107                 if (nextNode != null) {
108                         if (LOG.isDebugEnabled()) {
109                                 LOG.debug("about to execute " + outValue + " branch");
110                         }
111                         return (nextNode);
112                 }
113
114                 nextNode = node.getOutcomeValue("Other");
115                 if (nextNode != null) {
116                         if (LOG.isDebugEnabled()) {
117                                 LOG.debug("about to execute Other branch");
118                         }
119                 } else {
120                         if (LOG.isDebugEnabled()) {
121                                 LOG.debug("no failure or Other branch found");
122                         }
123                 }
124                 return (nextNode);
125         }
126
127
128
129 }