Changes to handle PDPX deploy/undeploy
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / comm / XacmlPdpMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pdpx.main.comm;
24
25 import org.onap.policy.common.utils.network.NetworkUtil;
26 import org.onap.policy.models.pdp.concepts.PdpStateChange;
27 import org.onap.policy.models.pdp.concepts.PdpStatus;
28 import org.onap.policy.models.pdp.concepts.PdpUpdate;
29 import org.onap.policy.models.pdp.enums.PdpHealthStatus;
30 import org.onap.policy.models.pdp.enums.PdpState;
31 import org.onap.policy.pdpx.main.rest.XacmlPdpApplicationManager;
32 import org.onap.policy.pdpx.main.startstop.XacmlPdpActivator;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36 public class XacmlPdpMessage {
37
38     // The logger for this class
39     private static final Logger LOGGER = LoggerFactory.getLogger(XacmlPdpMessage.class);
40
41     /**
42      * Method used to format the status message.
43      *
44      * @param state of the PDP
45      * @return status message of the PDP
46      */
47     public PdpStatus formatStatusMessage(PdpState state) {
48         PdpStatus status = new PdpStatus();
49         status.setName(NetworkUtil.getHostname());
50
51         if (XacmlPdpActivator.getCurrent().isAlive()) {
52             status.setHealthy(PdpHealthStatus.HEALTHY);
53         } else {
54             status.setHealthy(PdpHealthStatus.NOT_HEALTHY);
55         }
56
57         status.setPdpType("xacml");
58         status.setState(state);
59         status.setSupportedPolicyTypes(XacmlPdpApplicationManager.getToscaPolicyTypeIdents());
60
61         LOGGER.debug("formatStatusMessage state {} status{}", state, status);
62
63         return status;
64
65     }
66
67     /**
68      * Method used to format the heartbeat status message.
69      *
70      * @param message PdpStateChange message received from the PAP
71      * @return status message of the PDP
72      */
73     public PdpStatus formatHeartbeatMessage(PdpStateChange message) {
74         PdpStatus status = new PdpStatus();
75         status.setName(NetworkUtil.getHostname());
76
77         if (XacmlPdpActivator.getCurrent().isAlive()) {
78             status.setHealthy(PdpHealthStatus.HEALTHY);
79         } else {
80             status.setHealthy(PdpHealthStatus.NOT_HEALTHY);
81         }
82
83         status.setPdpType("xacml");
84         status.setState(message.getState());
85         status.setPdpGroup(message.getPdpGroup());
86         status.setPdpSubgroup(message.getPdpSubgroup());
87         status.setSupportedPolicyTypes(XacmlPdpApplicationManager.getToscaPolicyTypeIdents());
88
89         return status;
90     }
91
92     /**
93      * Method used to format the PdpUpdate message.
94      *
95      * @param message PdpUpdate message that was received from the PAP
96      * @return status message of the PDP
97      */
98     public PdpStatus formatPdpUpdateMessage(PdpUpdate message, PdpState state) {
99         PdpStatus status = new PdpStatus();
100         status.setName(NetworkUtil.getHostname());
101
102         if (XacmlPdpActivator.getCurrent().isAlive()) {
103             status.setHealthy(PdpHealthStatus.HEALTHY);
104         } else {
105             status.setHealthy(PdpHealthStatus.NOT_HEALTHY);
106         }
107
108         status.setPdpType("xacml");
109         status.setState(state);
110         status.setPdpGroup(message.getPdpGroup());
111         status.setPdpSubgroup(message.getPdpSubgroup());
112         status.setSupportedPolicyTypes(XacmlPdpApplicationManager.getToscaPolicyTypeIdents());
113         status.setPolicies(XacmlPdpApplicationManager.getToscaPolicyIdentifiers());
114
115         return status;
116     }
117 }