aboutsummaryrefslogtreecommitdiffstats
path: root/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/queue/ServiceListConsumer.java
blob: c673d78667229ae54819c8cfeac73a7f84546fc2 (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
/*******************************************************************************
 * Copyright 2016-2017 ZTE, Inc. and others.
 * 
 * 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.msb.apiroute.wrapper.queue;

import java.io.IOException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.apache.http.HttpEntity;
import org.onap.msb.apiroute.SyncDataManager;
import org.onap.msb.apiroute.wrapper.MicroServiceWrapper;
import org.onap.msb.apiroute.wrapper.util.CommonUtil;
import org.onap.msb.apiroute.wrapper.util.ServiceFilter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;


public class ServiceListConsumer implements Runnable {

    private static final Logger LOGGER = LoggerFactory.getLogger(ServiceListConsumer.class);

    private boolean isRunning = true;

    private int index;


    public ServiceListConsumer() {
        this.index = 0;
    }

    public void run() {
        LOGGER.info("run ServiceList Consumer Thread [" + index + "]");

        while (isRunning) {
            try {
                // 取最新一条记录
                ServiceData<HttpEntity> serviceData = QueueManager.getInstance().takeFromServiceListQueue(index);
                LOGGER.debug("ServiceList Consumer Thread [" + index
                                + "]  take out serviceData from Queue successfully");

                HttpEntity newValues = serviceData.getData();

                Set<String> newServiceNameList = filterServiceList(newValues);

                if (ServiceListCache.getLatestServiceNamelist().size() == 0) {
                    boolean initSuccess = initServiceList(newServiceNameList);
                    if (initSuccess) {
                        ServiceListCache.setLatestServiceNamelist(newServiceNameList);
                    }
                } else {
                    updateServiceList(newServiceNameList);
                    ServiceListCache.setLatestServiceNamelist(newServiceNameList);
                }


            } catch (Exception e) {
                LOGGER.error("ServiceListConsumer throw  Exception: ", e);
            }
        }
    }

    private void startWatchService(String serviceName) {
        // start to Watch service nodes

        SyncDataManager.startWatchService(serviceName);
    }

    private void updateServiceList(Set<String> newServiceNameList) {
        Set<String> registerServiceNameList =
                        CommonUtil.getDiffrent(ServiceListCache.getLatestServiceNamelist(), newServiceNameList);

        if (registerServiceNameList.size() > 0) {
            LOGGER.info("***need to start Watch Service num from consul :" + registerServiceNameList.size());

            for (String serviceName : registerServiceNameList) {
                startWatchService(serviceName);
            }
        }
    }

    private boolean initServiceList(Set<String> newServiceNameList) {
        LOGGER.info("***start to initialize  service List when System startup ***");

        Set<String> dbServiceNameList = MicroServiceWrapper.getInstance().getAllMicroServiceKey();

        if (dbServiceNameList == null) {
            LOGGER.error("init ServiceList from redis fail ");
            return false;
        }


        // 对比删除redis脏数据
        Set<String> delServiceNameList = CommonUtil.getDiffrent(newServiceNameList, dbServiceNameList);

        LOGGER.info("***need to delete Service num from redis :" + delServiceNameList.size());
        for (String serviceName : delServiceNameList) {
            try {
                MicroServiceWrapper.getInstance().deleteMicroService4AllVersion(serviceName);
                LOGGER.info("delete MicroService success from initialize:[serviceName]" + serviceName);

            } catch (Exception e) {
                LOGGER.error("initialize serviceList :Delete MicroServiceInfo serviceName:" + serviceName + " FAIL : ",
                                e);
            }
        }

        // 启动同步开启监听全部服务列表
        LOGGER.info("***need to start Watch Service num from initialize :" + newServiceNameList.size());

        for (String serviceName : newServiceNameList) {
            startWatchService(serviceName);
        }

        return true;

    }

    /*
     * private ImmutableSet<String> filterServiceList( final Map<String, List<String>> serviceList)
     * { if (serviceList == null || serviceList.isEmpty()) { return ImmutableSet.of(); }
     * 
     * final ImmutableSet.Builder<String> builder = ImmutableSet.builder();
     * 
     * for (Map.Entry<String, List<String>> entry : serviceList.entrySet()) {
     * 
     * String key = entry.getKey(); if (key != null && !"consul".equals(key)) {
     * 
     * List<String> value = entry.getValue(); if
     * (ServiceFilter.getInstance().isFilterService(value)) { builder.add(key); } } }
     * 
     * LOGGER.info("consul all service num:" + serviceList.size());
     * LOGGER.info("consul filter service num:" + builder.build().size());
     * 
     * return builder.build(); }
     */
    private Set<String> filterServiceList(final HttpEntity serviceList) {

        if (serviceList == null || serviceList.getContentLength() == 0) {
            return new HashSet<String>();
        }

        final Set<String> builder = new HashSet<String>();

        JsonFactory f = new JsonFactory();
        JsonParser jp = null;
        List<String> tagList = null;
        int inputServiceNum = 0;
        try {
            jp = f.createParser(serviceList.getContent());
            jp.nextToken();
            while (jp.nextToken() != JsonToken.END_OBJECT) {
                String serviceName = jp.getCurrentName();
                inputServiceNum++;
                jp.nextToken();
                tagList = new ArrayList<>();
                while (jp.nextToken() != JsonToken.END_ARRAY) {
                    tagList.add(jp.getText());
                }

                if (serviceName != null && !"consul".equals(serviceName)) {
                    if (ServiceFilter.getInstance().isFilterService(tagList)) {
                        builder.add(serviceName);
                    }
                }
            }
        } catch (IOException e) {
            LOGGER.warn("parse service list error", e);
            return new HashSet<String>();
        } finally {
            try {
                jp.close();
            } catch (IOException e) {
                LOGGER.warn("parse service list error", e);
                return new HashSet<String>();
            }
        }

        int latestServiceNum = ServiceListCache.getLatestServiceNamelist().size();
        // if(latestServiceNum!=builder.size()){
        LOGGER.info("[consul] all service num:" + inputServiceNum + ", filter service num: new——" + builder.size()
                        + "  old——" + latestServiceNum);
        // }

        return builder;
    }

}