FIX ALL POSSIBLE SONAR ISSUES IN HOLMES
[holmes/engine-management.git] / engine-d / src / main / java / org / onap / holmes / engine / dmaap / SubscriberAction.java
1 /*
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.holmes.engine.dmaap;
17
18 import java.util.HashMap;
19 import java.util.Iterator;
20 import java.util.Map;
21 import javax.annotation.PreDestroy;
22 import javax.inject.Inject;
23 import lombok.extern.slf4j.Slf4j;
24 import org.jvnet.hk2.annotations.Service;
25 import org.onap.holmes.common.utils.DbDaoUtil;
26 import org.onap.holmes.dsa.dmaappolling.Subscriber;
27 import org.onap.holmes.engine.db.AlarmInfoDao;
28 import org.onap.holmes.engine.manager.DroolsEngine;
29
30 @Service
31 @Slf4j
32 public class SubscriberAction {
33
34     @Inject
35     private DroolsEngine droolsEngine;
36     @Inject
37     private DbDaoUtil daoUtil;
38     private HashMap<String, DMaaPAlarmPolling> pollingTasks = new HashMap<>();
39
40     public synchronized void addSubscriber(Subscriber subscriber) {
41         String topic = subscriber.getTopic();
42         if (topic != null && !pollingTasks.containsKey(topic)) {
43             AlarmInfoDao alarmInfoDao = daoUtil.getJdbiDaoByOnDemand(AlarmInfoDao.class);
44             DMaaPAlarmPolling pollingTask = new DMaaPAlarmPolling(subscriber, droolsEngine, alarmInfoDao);
45             Thread thread = new Thread(pollingTask);
46             thread.start();
47             pollingTasks.put(topic, pollingTask);
48             log.info("Subscribe to topic: " + subscriber.getUrl());
49         }
50     }
51
52     public synchronized void removeSubscriber(Subscriber subscriber) {
53         String topic = subscriber.getTopic();
54         if (topic != null && pollingTasks.containsKey(topic)) {
55             pollingTasks.get(topic).stopTask();
56             pollingTasks.remove(topic);
57         }
58         log.info("Topic unsubscribed: " + subscriber.getUrl());
59     }
60
61     @PreDestroy
62     public void stopPollingTasks() {
63         Iterator iterator = pollingTasks.entrySet().iterator();
64         while (iterator.hasNext()) {
65             Map.Entry entry = (Map.Entry)iterator.next();
66             String key = (String) entry.getKey();
67             pollingTasks.get(key).stopTask();
68         }
69         pollingTasks.clear();
70     }
71 }