8ffccbef27f11a93561f10b5164f4264cedf4709
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / comm / XacmlPdpHearbeatPublisher.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pdpx.main.comm;
22
23 import java.util.Timer;
24 import java.util.TimerTask;
25 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClient;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 public class XacmlPdpHearbeatPublisher extends TimerTask {
30
31     private static final Logger LOGGER = LoggerFactory.getLogger(XacmlPdpHearbeatPublisher.class);
32
33     private Timer timer;
34     private XacmlPdpMessage heartbeatMessage;
35     private static TopicSinkClient topicSinkClient;
36     private static volatile  boolean alive = false;
37
38     /**
39      * Constructor for instantiating XacmlPdpPublisher.
40      *
41      * @param message of the PDP
42      * @param topicSinkClient used to send heartbeat message
43      */
44     public XacmlPdpHearbeatPublisher(TopicSinkClient topicSinkClient, XacmlPdpMessage message ) {
45         this.topicSinkClient = topicSinkClient;
46         this.heartbeatMessage = message;
47         timer = new Timer(false);
48         timer.scheduleAtFixedRate(this, 0, 60000); // time interval temp hard coded now but will be parameterized
49         setAlive(true);
50     }
51
52     @Override
53     public void run() {
54         topicSinkClient.send(heartbeatMessage.formatPdpStatusMessage());
55         LOGGER.info("Sending Xacml PDP heartbeat to the PAP");
56     }
57
58     /**
59      * Method to terminate the heartbeat.
60      */
61     public void terminate() {
62         timer.cancel();
63         timer.purge();
64         setAlive(false);
65     }
66
67     public static boolean isAlive() {
68         return alive;
69     }
70
71     public void setAlive(boolean alive) {
72         this.alive = alive;
73     }
74 }