2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2019-2021 Nordix Foundation.
4 * Modifications Copyright (C) 2021 Bell Canada. All rights reserved.
5 * ================================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.services.onappf.handler;
24 import java.util.ArrayList;
25 import java.util.Collections;
26 import java.util.HashSet;
27 import java.util.List;
29 import java.util.stream.Collectors;
30 import org.onap.policy.apex.service.engine.main.ApexPolicyStatisticsManager;
31 import org.onap.policy.apex.services.onappf.ApexStarterConstants;
32 import org.onap.policy.apex.services.onappf.comm.PdpStatusPublisher;
33 import org.onap.policy.apex.services.onappf.exception.ApexStarterException;
34 import org.onap.policy.common.endpoints.event.comm.TopicSink;
35 import org.onap.policy.common.utils.services.Registry;
36 import org.onap.policy.models.pdp.concepts.PdpResponseDetails;
37 import org.onap.policy.models.pdp.concepts.PdpStatus;
38 import org.onap.policy.models.pdp.concepts.PdpUpdate;
39 import org.onap.policy.models.pdp.enums.PdpResponseStatus;
40 import org.onap.policy.models.pdp.enums.PdpState;
41 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
42 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
43 import org.slf4j.Logger;
44 import org.slf4j.LoggerFactory;
47 * This class supports the handling of pdp update messages.
49 * @author Ajith Sreekumar (ajith.sreekumar@est.tech)
51 public class PdpUpdateMessageHandler {
53 private static final Logger LOGGER = LoggerFactory.getLogger(PdpUpdateMessageHandler.class);
56 * Method which handles a pdp update event from PAP.
58 * @param pdpUpdateMsg pdp update message
60 public void handlePdpUpdateEvent(final PdpUpdate pdpUpdateMsg) {
61 final PdpMessageHandler pdpMessageHandler = new PdpMessageHandler();
62 final PdpStatus pdpStatusContext = Registry.get(ApexStarterConstants.REG_PDP_STATUS_OBJECT, PdpStatus.class);
63 PdpResponseDetails pdpResponseDetails = null;
64 if (pdpUpdateMsg.appliesTo(pdpStatusContext.getName(), pdpStatusContext.getPdpGroup(),
65 pdpStatusContext.getPdpSubgroup())) {
66 if (checkIfAlreadyHandled(pdpUpdateMsg, pdpStatusContext)) {
67 pdpResponseDetails = pdpMessageHandler.createPdpResonseDetails(pdpUpdateMsg.getRequestId(),
68 PdpResponseStatus.SUCCESS, "Pdp already updated");
70 pdpResponseDetails = handlePdpUpdate(pdpUpdateMsg, pdpMessageHandler, pdpStatusContext);
72 final PdpStatusPublisher pdpStatusPublisherTemp =
73 Registry.get(ApexStarterConstants.REG_PDP_STATUS_PUBLISHER);
74 final PdpStatus pdpStatus = pdpMessageHandler.createPdpStatusFromContext();
75 pdpStatus.setResponse(pdpResponseDetails);
76 pdpStatus.setDescription("Pdp status response message for PdpUpdate");
77 pdpStatusPublisherTemp.send(pdpStatus);
82 * Method to do pdp update.
84 * @param pdpUpdateMsg the pdp update message
85 * @param pdpMessageHandler the message handler
86 * @param pdpStatusContext the pdp status in memory
87 * @return pdpResponseDetails the pdp response
89 private PdpResponseDetails handlePdpUpdate(final PdpUpdate pdpUpdateMsg, final PdpMessageHandler pdpMessageHandler,
90 final PdpStatus pdpStatusContext) {
91 PdpResponseDetails pdpResponseDetails = null;
92 final PdpStatusPublisher pdpStatusPublisher = Registry.get(ApexStarterConstants.REG_PDP_STATUS_PUBLISHER);
93 if (null != pdpUpdateMsg.getPdpHeartbeatIntervalMs() && pdpUpdateMsg.getPdpHeartbeatIntervalMs() > 0
94 && pdpStatusPublisher.getInterval() != pdpUpdateMsg.getPdpHeartbeatIntervalMs()) {
95 updateInterval(pdpUpdateMsg.getPdpHeartbeatIntervalMs());
97 pdpStatusContext.setPdpGroup(pdpUpdateMsg.getPdpGroup());
98 pdpStatusContext.setPdpSubgroup(pdpUpdateMsg.getPdpSubgroup());
99 @SuppressWarnings("unchecked")
100 List<ToscaPolicy> policies = Registry.getOrDefault(ApexStarterConstants.REG_APEX_TOSCA_POLICY_LIST,
101 List.class, new ArrayList<>());
102 policies.addAll(pdpUpdateMsg.getPoliciesToBeDeployed());
103 Set<ToscaConceptIdentifier> policiesInDeployment = policies.stream().map(ToscaPolicy::getIdentifier)
104 .collect(Collectors.toSet());
105 policiesInDeployment.removeAll(pdpUpdateMsg.getPoliciesToBeUndeployed());
106 pdpStatusContext.setPolicies(new ArrayList<>(policiesInDeployment));
107 Registry.registerOrReplace(ApexStarterConstants.REG_APEX_TOSCA_POLICY_LIST,
109 if (pdpStatusContext.getState().equals(PdpState.ACTIVE)) {
110 pdpResponseDetails = startOrStopApexEngineBasedOnPolicies(pdpUpdateMsg, pdpMessageHandler);
112 ApexEngineHandler apexEngineHandler =
113 Registry.getOrDefault(ApexStarterConstants.REG_APEX_ENGINE_HANDLER, ApexEngineHandler.class, null);
114 // in hearbeat while in active state, only the policies which are running should be there.
115 // if some policy fails, that shouldn't go in the heartbeat.
116 // If no policies are running, then the policy list in the heartbeat can be empty
117 if (null != apexEngineHandler && apexEngineHandler.isApexEngineRunning()) {
118 pdpStatusContext.setPolicies(apexEngineHandler.getRunningPolicies());
120 pdpStatusContext.setPolicies(Collections.emptyList());
123 if (null == pdpResponseDetails) {
124 pdpResponseDetails = pdpMessageHandler.createPdpResonseDetails(pdpUpdateMsg.getRequestId(),
125 PdpResponseStatus.SUCCESS, "Pdp update successful.");
127 return pdpResponseDetails;
131 * Method to start or stop apex engine based on the list of policies received from pap. When current state is
132 * active, if PAP sends PdpUpdate with empty policies list, stop apex engine, or, if there is a change in policies,
133 * stop the current running policies and the deploy the new ones.
135 * @param pdpUpdateMsg the pdp update message from pap
136 * @param pdpMessageHandler pdp message handler
137 * @return pdpResponseDetails the pdp response
139 private PdpResponseDetails startOrStopApexEngineBasedOnPolicies(final PdpUpdate pdpUpdateMsg,
140 final PdpMessageHandler pdpMessageHandler) {
141 PdpResponseDetails pdpResponseDetails = null;
142 ApexEngineHandler apexEngineHandler = null;
144 apexEngineHandler = Registry.get(ApexStarterConstants.REG_APEX_ENGINE_HANDLER);
145 } catch (final IllegalArgumentException e) {
146 LOGGER.debug("ApenEngineHandler not in registry.", e);
148 if (null != apexEngineHandler
149 && pdpUpdateMsg.getPoliciesToBeUndeployed().containsAll(apexEngineHandler.getRunningPolicies())
150 && pdpUpdateMsg.getPoliciesToBeDeployed().isEmpty()) {
151 pdpResponseDetails = stopApexEngineBasedOnPolicies(pdpUpdateMsg, pdpMessageHandler, apexEngineHandler);
153 pdpResponseDetails = startApexEngineBasedOnPolicies(pdpUpdateMsg, pdpMessageHandler, apexEngineHandler);
155 return pdpResponseDetails;
158 private PdpResponseDetails stopApexEngineBasedOnPolicies(final PdpUpdate pdpUpdateMsg,
159 final PdpMessageHandler pdpMessageHandler, ApexEngineHandler apexEngineHandler) {
160 PdpResponseDetails pdpResponseDetails = null;
161 if (null != apexEngineHandler && apexEngineHandler.isApexEngineRunning()) {
163 apexEngineHandler.shutdown();
164 pdpResponseDetails = pdpMessageHandler.createPdpResonseDetails(pdpUpdateMsg.getRequestId(),
165 PdpResponseStatus.SUCCESS, "Pdp update successful. No policies are running.");
166 } catch (final ApexStarterException e) {
167 LOGGER.error("Pdp update failed as the policies couldn't be undeployed.", e);
168 pdpResponseDetails = pdpMessageHandler.createPdpResonseDetails(pdpUpdateMsg.getRequestId(),
169 PdpResponseStatus.FAIL, "Pdp update failed as the policies couldn't be undeployed.");
172 return pdpResponseDetails;
175 private PdpResponseDetails startApexEngineBasedOnPolicies(final PdpUpdate pdpUpdateMsg,
176 final PdpMessageHandler pdpMessageHandler, ApexEngineHandler apexEngineHandler) {
177 PdpResponseDetails pdpResponseDetails = null;
180 if (null != apexEngineHandler && apexEngineHandler.isApexEngineRunning()) {
181 apexEngineHandler.updateApexEngine(pdpUpdateMsg.getPoliciesToBeDeployed(),
182 pdpUpdateMsg.getPoliciesToBeUndeployed());
184 apexEngineHandler = new ApexEngineHandler(pdpUpdateMsg.getPoliciesToBeDeployed());
185 Registry.registerOrReplace(ApexStarterConstants.REG_APEX_ENGINE_HANDLER, apexEngineHandler);
187 if (apexEngineHandler.isApexEngineRunning()) {
189 populateResponseForEngineInitiation(pdpUpdateMsg, pdpMessageHandler, apexEngineHandler);
191 pdpResponseDetails = pdpMessageHandler.createPdpResonseDetails(pdpUpdateMsg.getRequestId(),
192 PdpResponseStatus.FAIL, "Apex engine failed to start.");
194 } catch (final ApexStarterException e) {
195 LOGGER.error("Apex engine service running failed. ", e);
196 pdpResponseDetails = pdpMessageHandler.createPdpResonseDetails(pdpUpdateMsg.getRequestId(),
197 PdpResponseStatus.FAIL, "Apex engine service running failed. " + e.getMessage());
199 final ApexPolicyStatisticsManager apexPolicyStatisticsManager =
200 ApexPolicyStatisticsManager.getInstanceFromRegistry();
201 if (apexPolicyStatisticsManager != null) {
202 apexPolicyStatisticsManager
203 .updatePolicyDeployCounter(pdpResponseDetails.getResponseStatus() == PdpResponseStatus.SUCCESS);
205 return pdpResponseDetails;
208 private PdpResponseDetails populateResponseForEngineInitiation(final PdpUpdate pdpUpdateMsg,
209 final PdpMessageHandler pdpMessageHandler, ApexEngineHandler apexEngineHandler) {
210 PdpResponseDetails pdpResponseDetails;
211 Set<ToscaConceptIdentifier> runningPolicies = new HashSet<>(apexEngineHandler.getRunningPolicies());
212 List<ToscaConceptIdentifier> policiesToBeDeployed =
213 pdpMessageHandler.getToscaPolicyIdentifiers(pdpUpdateMsg.getPoliciesToBeDeployed());
214 List<ToscaConceptIdentifier> policiesToBeUndeployed = pdpUpdateMsg.getPoliciesToBeUndeployed();
215 if (runningPolicies.containsAll(policiesToBeDeployed)
216 && !containsAny(runningPolicies, policiesToBeUndeployed)) {
217 StringBuilder message = new StringBuilder("Apex engine started. ");
218 if (!policiesToBeDeployed.isEmpty()) {
219 message.append("Deployed policies are: ");
220 for (ToscaConceptIdentifier policy : policiesToBeDeployed) {
221 message.append(policy.getName()).append(":").append(policy.getVersion()).append(" ");
224 if (!policiesToBeUndeployed.isEmpty()) {
225 message.append("Undeployed policies are: ");
226 for (ToscaConceptIdentifier policy : policiesToBeUndeployed) {
227 message.append(policy.getName()).append(":").append(policy.getVersion()).append(" ");
230 pdpResponseDetails = pdpMessageHandler.createPdpResonseDetails(pdpUpdateMsg.getRequestId(),
231 PdpResponseStatus.SUCCESS, message.toString());
233 StringBuilder message =
234 new StringBuilder("Apex engine started. But, only the following polices are running - ");
235 for (ToscaConceptIdentifier policy : runningPolicies) {
236 message.append(policy.getName()).append(":").append(policy.getVersion()).append(" ");
238 message.append(". Other policies failed execution. Please see the logs for more details.");
239 pdpResponseDetails = pdpMessageHandler.createPdpResonseDetails(pdpUpdateMsg.getRequestId(),
240 PdpResponseStatus.SUCCESS, message.toString());
242 return pdpResponseDetails;
246 * Method checks if the Pdp update message is already handled by checking the values in the context.
248 * @param pdpUpdateMsg pdp update message received from pap
249 * @param pdpStatusContext values saved in context memory
250 * @return boolean flag which tells if the information is same or not
252 private boolean checkIfAlreadyHandled(final PdpUpdate pdpUpdateMsg, final PdpStatus pdpStatusContext) {
253 return null != pdpStatusContext.getPdpGroup()
254 && pdpStatusContext.getPdpGroup().equals(pdpUpdateMsg.getPdpGroup())
255 && null != pdpStatusContext.getPdpSubgroup()
256 && pdpStatusContext.getPdpSubgroup().equals(pdpUpdateMsg.getPdpSubgroup())
257 && null != pdpStatusContext.getPolicies()
258 && pdpStatusContext.getPolicies()
259 .containsAll(new PdpMessageHandler().getToscaPolicyIdentifiers(pdpUpdateMsg.getPoliciesToBeDeployed()))
260 && !containsAny(new HashSet<>(pdpStatusContext.getPolicies()), pdpUpdateMsg.getPoliciesToBeUndeployed());
264 * Method to update the time interval used by the timer task.
266 * @param interval time interval received in the pdp update message from pap
268 public void updateInterval(final long interval) {
269 final PdpStatusPublisher pdpStatusPublisher = Registry.get(ApexStarterConstants.REG_PDP_STATUS_PUBLISHER);
270 pdpStatusPublisher.terminate();
271 final List<TopicSink> topicSinks = Registry.get(ApexStarterConstants.REG_APEX_PDP_TOPIC_SINKS);
272 Registry.registerOrReplace(ApexStarterConstants.REG_PDP_STATUS_PUBLISHER,
273 new PdpStatusPublisher(topicSinks, interval));
277 * Checks if one list contains any element of another.
279 * @param listToCheckWith list to check contents of
280 * @param listToCheckAgainst list to check against other list for similarities
281 * @return boolean flag which tells if lists share same elements or not
283 private boolean containsAny(Set<ToscaConceptIdentifier> listToCheckWith,
284 List<ToscaConceptIdentifier> listToCheckAgainst) {
285 return listToCheckAgainst.stream().anyMatch(listToCheckWith::contains);