Remove jackson from feature-pooling-dmaap
[policy/drools-pdp.git] / feature-pooling-dmaap / src / main / java / org / onap / policy / drools / pooling / message / Leader.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2018-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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.drools.pooling.message;
22
23 import org.onap.policy.drools.pooling.PoolingFeatureException;
24
25 /**
26  * Indicates that the "source" of this message is now the "lead" host.
27  */
28 public class Leader extends MessageWithAssignments {
29
30     /**
31      * Constructor.
32      */
33     public Leader() {
34         super();
35     }
36
37     /**
38      * Constructor.
39      * 
40      * @param source host on which the message originated
41      * @param assignments assignments
42      */
43     public Leader(String source, BucketAssignments assignments) {
44         super(source, assignments);
45     }
46
47     /**
48      * Also verifies that buckets have been assigned and that the source is
49      * indeed the leader.
50      */
51     @Override
52     public void checkValidity() throws PoolingFeatureException {
53
54         super.checkValidity();
55
56         BucketAssignments assignments = getAssignments();
57         if (assignments == null) {
58             throw new PoolingFeatureException("missing message bucket assignments");
59         }
60
61         String leader = getSource();
62         
63         if (!assignments.hasAssignment(leader)) {
64             throw new PoolingFeatureException("leader " + leader + " has no bucket assignments");            
65         }
66         
67         for (String host : assignments.getHostArray()) {
68             if (host.compareTo(leader) < 0) {
69                 throw new PoolingFeatureException("invalid leader " + leader + ", should be " + host);
70             }
71         }
72     }
73
74 }