summaryrefslogtreecommitdiffstats
path: root/rulemgt/src/main/java/org/onap/holmes/rulemgt/send/RuleAllocation.java
blob: e69be5199531a6d8d338db24a9e1c12ec99ee3b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/**
 * Copyright 2017 ZTE Corporation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.onap.holmes.rulemgt.send;

import lombok.extern.slf4j.Slf4j;
import org.jvnet.hk2.annotations.Service;
import org.onap.holmes.common.api.entity.CorrelationRule;
import org.onap.holmes.common.exception.CorrelationException;
import org.onap.holmes.common.utils.DbDaoUtil;
import org.onap.holmes.rulemgt.bolt.enginebolt.EngineWrapper;
import org.onap.holmes.rulemgt.db.CorrelationRuleDao;
import org.onap.holmes.rulemgt.msb.EngineIpList;
import org.onap.holmes.rulemgt.wrapper.RuleQueryWrapper;
import org.onap.holmes.rulemgt.wrapper.RuleMgtWrapper;

import javax.annotation.PostConstruct;
import javax.inject.Inject;
import java.util.*;


@Service
@Slf4j
public class RuleAllocation {

    private final static int ENABLE = 1;

    @Inject
    private RuleMgtWrapper ruleMgtWrapper;
    @Inject
    private RuleQueryWrapper ruleQueryWrapper;
    @Inject
    private EngineWrapper engineWrapper;
    @Inject
    private EngineIpList engineIpList;
    @Inject
    private DbDaoUtil daoUtil;

    private CorrelationRuleDao correlationRuleDao;

    private int ruleCount;
    private int serviceCount;
    private List<String> temIpList = new ArrayList<>();
    private List<String> engineService = new ArrayList<>();
    private List<CorrelationRule> allRules = new ArrayList<>();

    @PostConstruct
    public void initDaoUtilAndEngineIp() throws Exception{
        correlationRuleDao = daoUtil.getJdbiDaoByOnDemand(CorrelationRuleDao.class);
        temIpList =  engineIpList.getServiceCount();
    }

    public void judgeAndAllocateRule(List<String> ipList)throws Exception{
        if(ipList != null) {
            engineService = ipList;
            serviceCount = ipList.size();
        }
        if(temIpList.size() < serviceCount){
            //extend
            List<CorrelationRule> deleteRule = calculateRule(temIpList);
            List<CorrelationRule> allocateRule =  calculateRule(temIpList);
            List<String> extendIp = extendCompareIp(engineService,temIpList);
            AllocateService(extendIp,allocateRule);
            deleteRuleFromFormerEngine(deleteRule,temIpList);

        } else if (temIpList.size() > serviceCount) {
            //destroy
            List<String> destroyIp = destroyCompareIp(engineService, temIpList);
            AllocateService(restIp(destroyIp), relocateRuleAfterDestroy(destroyIp));

        } else if(temIpList.size() == serviceCount) {
            temIpList = engineService;
            return;
        }
        temIpList = engineService;

    }


    // When the engine is expanding, the rules that need to be allocated are calculated.
    private List<CorrelationRule> calculateRule(List<String> oldIpList) throws Exception{
        allRules = ruleQueryWrapper.queryRuleByEnable(ENABLE);
        if(allRules != null) {
            ruleCount = allRules.size();
        }
        int count = ruleCount / serviceCount;
        int remainder = ruleCount % serviceCount;

        List<CorrelationRule> subRule = new ArrayList<>();
        for(String ip : oldIpList) {
            List<CorrelationRule> rules = ruleQueryWrapper.queryRuleByEngineInstance(ip);
            List<CorrelationRule> tem = rules.subList(count + (remainder-- / oldIpList.size()),rules.size());
            subRule.addAll(tem);
        }
        return subRule;
    }

    //Rules that need to be allocated after the engine is destroyed
    private List<CorrelationRule> relocateRuleAfterDestroy(List<String> destroyIpList) throws CorrelationException {
        List<CorrelationRule> rules = new ArrayList<>();
        try{
            if(destroyIpList != null){
                for(String ip : destroyIpList) {
                    rules.addAll(ruleQueryWrapper.queryRuleByEngineInstance(ip));
                }
            }
        }catch(CorrelationException e) {
            log.error("method relocateRuleAfterDestroy get data from DB failed !" +e.getMessage());
        }
        return rules;
    }

    //Extended IP
    private List<String> extendCompareIp(List<String> newList, List<String> oldList){
        List<String> extendIpList = new ArrayList<>();

        for( String ip :newList) {
            if(! oldList.contains(ip)) {
                extendIpList.add(ip);
            }
        }
        return extendIpList;
    }

    //Destroyed IP
    private List<String> destroyCompareIp(List<String> newList, List<String> oldList) {
        List<String> destroyIpList = new ArrayList<>();
        for(String ip : oldList) {
            if(!newList.contains(ip)) {
                destroyIpList.add(ip);
            }
        }
        return destroyIpList;
    }

    //Residual IP after destruction
    private List<String> restIp(List<String> destroyIp) {
        List<String> restIpList = new ArrayList<>();
        for(String ip : engineService) {
            if(!destroyIp.contains(ip)) {
                restIpList.add(ip);
            }
        }
        return restIpList;
    }

    public void AllocateService(List<String> extendIpList, List<CorrelationRule> subList) throws Exception{
        List<String> needIpList = getSortIp(extendIpList);

        for(int i=0,j=0;j < subList.size();i++,j++ ){
            int index = i % needIpList.size();
            String deployIp = needIpList.get(index);
            CorrelationRule rule = subList.get(j);
            rule.setEngineInstance(deployIp);
            allocateDeployRule(rule,deployIp);
        }
    }

    //The IP to be allocated is in ascending order, and the least is circulate.
    private List<String > getSortIp(List<String> ipList){
        List<CorrelationRule> ipRuleList  = new ArrayList<>();
        HashMap<String,String> hashMap = new HashMap();

        try{
            for(String ip : ipList){
                ipRuleList = ruleQueryWrapper.queryRuleByEngineInstance(ip);
                if(ipRuleList != null) {
                    hashMap.put(ip, String.valueOf(ipRuleList.size()));
                }
            }
        }catch (Exception e){
            log.error("getEngineIp4AddRule failed !" + e.getMessage());
        }

        List<Map.Entry<String, String>> list_Data = new ArrayList<Map.Entry<String, String>>(hashMap.entrySet());
        Collections.sort(list_Data, new Comparator<Map.Entry<String, String>>() {
            public int compare(Map.Entry<String, String> o1, Map.Entry<String, String> o2)
            {
                return o1.getValue().compareTo(o2.getValue());
            }
        });

        List<String> needList = new ArrayList<>();
        for(Map.Entry<String, String> map: list_Data) {
            String key = map.getKey();
            needList.add(key);
        }
        return needList;
    }

    private void allocateDeployRule(CorrelationRule rule, String ip) throws CorrelationException {
        try{
            ruleMgtWrapper.deployRule2Engine(rule,ip);
            correlationRuleDao.updateRule(rule);
        }catch (CorrelationException e){
            throw new CorrelationException("allocate Deploy Rule failed", e);
        }
    }

    private void deleteRuleFromFormerEngine(List<CorrelationRule> subRule, List<String> oldList) {
        try{
            for(String ip : oldList){
                for(CorrelationRule rule: subRule) {
                    if(ip.equals(rule.getEngineInstance())) {
                        engineWrapper.deleteRuleFromEngine(rule.getPackageName(),ip);
                    }
                }
            }
        }catch (CorrelationException e) {
            log.error("When the engine is extended, deleting rule failed" +e.getMessage());
        }

    }

}