ludc
2023-03-16 86b6157299a50579f454e4fb45a09ff21d252dab
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
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.core.loadbalancer.rule;
 
import com.alibaba.nacos.common.utils.StringUtils;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.core.loadbalancer.props.BladeLoadBalancerProperties;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.loadbalancer.*;
import org.springframework.cloud.loadbalancer.core.NoopServiceInstanceListSupplier;
import org.springframework.cloud.loadbalancer.core.ReactorServiceInstanceLoadBalancer;
import org.springframework.cloud.loadbalancer.core.ServiceInstanceListSupplier;
import org.springframework.http.HttpHeaders;
import org.springframework.util.CollectionUtils;
import org.springframework.util.PatternMatchUtils;
import reactor.core.publisher.Mono;
 
import java.util.List;
import java.util.concurrent.ThreadLocalRandom;
import java.util.stream.Collectors;
 
import static org.springblade.core.loadbalancer.constant.LoadBalancerConstant.VERSION_NAME;
 
/**
 * LoadBalancer 负载规则
 *
 * @author Chill
 */
@Slf4j
@RequiredArgsConstructor
public class GrayscaleLoadBalancer implements ReactorServiceInstanceLoadBalancer {
    private final ObjectProvider<ServiceInstanceListSupplier> serviceInstanceListSupplierProvider;
    private final BladeLoadBalancerProperties bladeLoadBalancerProperties;
 
    @Override
    public Mono<Response<ServiceInstance>> choose(Request request) {
        ServiceInstanceListSupplier supplier = serviceInstanceListSupplierProvider
            .getIfAvailable(NoopServiceInstanceListSupplier::new);
        return supplier.get(request).next()
            .map(serviceInstances -> getInstanceResponse(serviceInstances, request));
    }
 
    /**
     * 自定义节点规则返回目标节点
     */
    private Response<ServiceInstance> getInstanceResponse(List<ServiceInstance> instances, Request request) {
        // 注册中心无可用实例 返回空
        if (CollectionUtils.isEmpty(instances)) {
            return new EmptyResponse();
        }
        // 指定ip则返回满足ip的服务
        List<String> priorIpPattern = bladeLoadBalancerProperties.getPriorIpPattern();
        if (!priorIpPattern.isEmpty()) {
            String[] priorIpPatterns = priorIpPattern.toArray(new String[0]);
            List<ServiceInstance> priorIpInstances = instances.stream().filter(
                (i -> PatternMatchUtils.simpleMatch(priorIpPatterns, i.getHost()))
            ).collect(Collectors.toList());
            if (!priorIpInstances.isEmpty()) {
                instances = priorIpInstances;
            }
        }
 
        // 获取灰度版本号
        DefaultRequestContext context = (DefaultRequestContext) request.getContext();
        RequestData requestData = (RequestData) context.getClientRequest();
        HttpHeaders headers = requestData.getHeaders();
        String versionName = headers.getFirst(VERSION_NAME);
 
        // 没有指定灰度版本则返回正式的服务
        if (StringUtils.isBlank(versionName)) {
            List<ServiceInstance> noneGrayscaleInstances = instances.stream().filter(
                i -> !i.getMetadata().containsKey(VERSION_NAME)
            ).collect(Collectors.toList());
            return randomInstance(noneGrayscaleInstances);
        }
 
        // 指定灰度版本则返回标记的服务
        List<ServiceInstance> grayscaleInstances = instances.stream().filter(i -> {
            String versionNameInMetadata = i.getMetadata().get(VERSION_NAME);
            return StringUtils.equalsIgnoreCase(versionNameInMetadata, versionName);
        }).collect(Collectors.toList());
        return randomInstance(grayscaleInstances);
    }
 
    /**
     * 采用随机规则返回
     */
    private Response<ServiceInstance> randomInstance(List<ServiceInstance> instances) {
        // 若没有可用节点则返回空
        if (instances.isEmpty()) {
            return new EmptyResponse();
        }
 
        // 挑选随机节点返回
        int randomIndex = ThreadLocalRandom.current().nextInt(instances.size());
        ServiceInstance instance = instances.get(randomIndex % instances.size());
        return new DefaultResponse(instance);
    }
}