Drools support for kafka topics
[policy/drools-pdp.git] / feature-pooling-dmaap / src / main / java / org / onap / policy / drools / pooling / state / InactiveState.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2018 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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.drools.pooling.state;
22
23 import org.onap.policy.drools.pooling.PoolingManager;
24 import org.onap.policy.drools.pooling.message.Leader;
25 import org.onap.policy.drools.pooling.message.Query;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 /**
30  * The inactive state. In this state, we just wait a bit and then try to re-activate. In
31  * the meantime, all messages are ignored.
32  */
33 public class InactiveState extends State {
34
35     private static final Logger logger = LoggerFactory.getLogger(InactiveState.class);
36
37     /**
38      * Constructor.
39      * 
40      * @param mgr pooling manager
41      */
42     public InactiveState(PoolingManager mgr) {
43         super(mgr);
44     }
45
46     @Override
47     public void start() {
48         super.start();
49         schedule(getProperties().getReactivateMs(), this::goStart);
50     }
51
52     @Override
53     public State process(Leader msg) {
54         if (isValid(msg)) {
55             logger.info("received Leader message from {} on topic {}", msg.getSource(), getTopic());
56             return goActive(msg.getAssignments());
57         }
58
59         return null;
60     }
61
62     /**
63      * Generates an Identification message and goes to the query state.
64      */
65     @Override
66     public State process(Query msg) {
67         logger.info("received Query message on topic {}", getTopic());
68         publish(makeIdentification());
69         return goQuery();
70     }
71
72     /**
73      * Remains in this state, without resetting any timers.
74      */
75     @Override
76     protected State goInactive() {
77         return null;
78     }
79
80 }