Update Holmes related feature
[clamp.git] / src / main / java / org / onap / clamp / clds / client / OperationalPolicyDelegate.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 package org.onap.clamp.clds.client;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28
29 import java.io.IOException;
30 import java.util.Map;
31
32 import org.camunda.bpm.engine.delegate.DelegateExecution;
33 import org.camunda.bpm.engine.delegate.JavaDelegate;
34 import org.onap.clamp.clds.client.req.OperationalPolicyReq;
35 import org.onap.clamp.clds.model.prop.ModelProperties;
36 import org.onap.clamp.clds.model.prop.Policy;
37 import org.onap.clamp.clds.model.prop.PolicyChain;
38 import org.onap.clamp.clds.model.refprop.RefProp;
39 import org.onap.clamp.clds.util.LoggingUtils;
40 import org.onap.policy.api.AttributeType;
41 import org.onap.policy.api.PolicyEngineException;
42 import org.onap.policy.controlloop.policy.builder.BuilderException;
43 import org.springframework.beans.factory.annotation.Autowired;
44
45 /**
46  * Send Operational Policy info to policy api. It uses the policy code to define
47  * the model and communicate with it. See also the PolicyClient class.
48  * 
49  */
50 public class OperationalPolicyDelegate implements JavaDelegate {
51     protected static final EELFLogger logger        = EELFManager.getInstance()
52             .getLogger(OperationalPolicyDelegate.class);
53     protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
54
55     /**
56      * Automatically injected by Spring, define in CldsConfiguration as a bean.
57      */
58     @Autowired
59     private PolicyClient              policyClient;
60
61     /**
62      * Automatically injected by Spring, define in CldsConfiguration as a bean.
63      */
64     @Autowired
65     private RefProp                   refProp;
66
67     /**
68      * Perform activity. Send Operational Policy info to policy api.
69      *
70      * @param execution
71      *            The DelegateExecution
72      * @throws BuilderException
73      *             In case of issues with OperationalPolicyReq
74      * @throws IOException
75      *             In case of issues with the stream
76      * @throws PolicyEngineException
77      *             In case of issues with the PolicyEngine creation
78      */
79     @Override
80     public void execute(DelegateExecution execution) throws IOException, BuilderException, PolicyEngineException {
81         String responseMessage = null;
82         String operationalPolicyRequestUuid = null;
83         ModelProperties prop = ModelProperties.create(execution);
84         Policy policy = prop.getType(Policy.class);
85         if (policy.isFound()) {
86             for (PolicyChain policyChain : prop.getType(Policy.class).getPolicyChains()) {
87                 operationalPolicyRequestUuid = LoggingUtils.getRequestId();
88                 Map<AttributeType, Map<String, String>> attributes = OperationalPolicyReq.formatAttributes(refProp,
89                         prop, prop.getType(Policy.class).getId(), policyChain);
90                 responseMessage = policyClient.sendBrmsPolicy(attributes, prop, operationalPolicyRequestUuid);
91             }
92             if (responseMessage != null) {
93                 execution.setVariable("operationalPolicyResponseMessage", responseMessage.getBytes());
94             }
95         }
96     }
97
98 }