Fix bugs and formatting issues
[dcaegen2/services/son-handler.git] / src / main / java / org / onap / dcaegen2 / services / sonhms / PmThread.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  son-handler
4  *  ================================================================================
5  *   Copyright (C) 2019 Wipro Limited.
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  *     ============LICENSE_END=========================================================
19  *  
20  *******************************************************************************/
21
22 package org.onap.dcaegen2.services.sonhms;
23
24 import fj.data.Either;
25
26 import org.onap.dcaegen2.services.sonhms.dmaap.PolicyDmaapClient;
27 import org.onap.dcaegen2.services.sonhms.model.PMNotification;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 public class PmThread implements Runnable {
32
33     private static Logger log = LoggerFactory.getLogger(PmThread.class);
34
35     private NewPmNotification newPmNotification;
36     
37
38     private DmaapNotificationsComponent dmaapNotificationsComponent;
39
40     private PmNotificationHandler pmNotificationHandler;
41
42     /**
43      * parameterized constructor.
44      */
45     public PmThread(NewPmNotification newPmNotification) {
46         super();
47         this.newPmNotification = newPmNotification;
48         dmaapNotificationsComponent = new DmaapNotificationsComponent();
49         pmNotificationHandler = new PmNotificationHandler(new PolicyDmaapClient());
50     }
51
52     @Override
53     public void run() {
54         log.info("PM thread starting ...");
55         // check for PM notifications
56         Boolean done = false;
57         while (!done) {
58             try {
59                 Thread.sleep(1000);
60                 if (newPmNotification.getNewNotif()) {
61                     log.info("New PM notification from Dmaap");
62                     Either<PMNotification, Integer> pmNotification = dmaapNotificationsComponent.getPmNotifications();
63                     if (pmNotification.isRight()) {
64                         if (pmNotification.right().value() == 400) {
65                             log.error("error parsing pm notifications");
66                         } else if (pmNotification.right().value() == 404) {
67                             log.info("Queue is empty");
68                             newPmNotification.setNewNotif(false);
69                         }
70                     } else if (pmNotification.isLeft()) {
71                         Configuration configuration = Configuration.getInstance();
72                         Boolean result = pmNotificationHandler.handlePmNotifications(pmNotification.left().value(),
73                                 configuration.getBadThreshold());
74                         log.info("pm notification handler result {}", result);
75                     }
76
77                 }
78             } catch (Exception e) {
79                 log.error("Exception in PM Thread ", e);
80                 done = true;
81             }
82         }
83
84     }
85
86 }