package hx.apigate.util;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import hx.apigate.circuitBreaker.CBManager;
import hx.apigate.databridge.CircleBreakException;
import org.apache.ignite.IgniteSemaphore;
import org.apache.ignite.binary.BinaryObjectException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import hx.apigate.databridge.NodeInfo;
import hx.apigate.databridge.SemphareException;
import hx.apigate.databridge.xmlBean.Route;
import hx.apigate.databridge.xmlBean.RouteAll;
import hx.apigate.databridge.xmlBean.RouteNode;
import hx.apigate.socket.handlers.GatewayServerHandler;
import io.netty.handler.codec.http.HttpMethod;
/**
* <p>Description: 路由选择工具类</p>
* <p>Copyright: Copyright (c) 2019</p>
* <p>Company: www.uiotcp.com</p>
* @author yangcheng
* @date 2019年10月29日
* @version 1.0
*/
public class RouteSelectUtil {
private static Logger logger = LoggerFactory.getLogger(RouteSelectUtil.class);
public static String HTTP = "http";
public static String DUBBO = "dubbo";
public static String CIRCLE = "circle";
public static String WEIGHT = "weight";
public static String pathSeparator = "/";
/**
* 根据url以及轮寻策略 选择路由的Node
* @param httpMethod
* @param sourceUrl 路径名称
* @return
* @throws Exception
*/
public static Object[] selectOneNode(String sourceUrl, HttpMethod httpMethod) throws SemphareException, CircleBreakException {
//获取与当前url匹配的route url
String sourceUrlTemp = sourceUrl.contains("?") ? sourceUrl.split("\\?")[0] : sourceUrl;
String pattern = getMatchedPattern(sourceUrlTemp,httpMethod);
if(pattern == null) {
return null;
}
Object[] ret =new Object[2];
ret[0] = pattern;
NodeInfo info = getRouteByPattern(sourceUrl,sourceUrlTemp,pattern);
if(info != null) {
ret[1] = info;
}
return ret;
}
/**
* 通过uri获取路由(不是节点node)
* @param patternUri
* @return
*/
public static IgniteSemaphore selectRouteByUri(String patternUri,String version){
//获取与当前url匹配的route url
Map<String, RouteAll> map = IgniteUtil.getAPIRouteCache().get("ALL_ROUTE");
RouteAll routeAll = map.get(patternUri);
int len = routeAll.getRoutes().size();
for(int i = 0 ; i < len ; i ++) {
if(version.equals(routeAll.getRoutes().get(i).getVersion())) {
return routeAll.getRoutes().get(i).getTps();
}
}
return null;
}
/**
* 根据获取到的url的pattern 获取规约类型并返回路由信息
* @param sourceUrl 请求的url(全路径,包含get请求的参数)
* @param sourceUrlTemp 将get请求的url中的参数截取掉,剩下简单的路径<br>
* @param pattern 网关配置的url模版 包含请求方式
* @return
*/
public static NodeInfo getRouteByPattern(String sourceUrl,String sourceUrlTemp,String pattern) throws SemphareException,CircleBreakException{
//根据负载策略选择微服务routeNode
RouteAll routeAll = getRouteAll4lvs(pattern) ;//IgniteUtil.getAPIRouteCache().get("ALL_ROUTE").get(pattern);
Route route = routeAll.nextRoute();
//获取路由信号量
if(!route.getTps().removed() && route.getTps().tryAcquire()) {
if(HTTP.equals(route.getProtocal())) {
int routeNum = route.getRouteNodes().size();
for(int i = 0 ; i < routeNum ; i ++) {
if(RouteSelectUtil.WEIGHT.equals(route.getStratege()) || route.getStratege() == null){
RouteNode node = route.nextNodeByWeight();
if(!route.getTps().removed() && node.getTps().tryAcquire()) {
String circleBreakKey = new StringBuilder(route.getMatchUrl()).append(route.getVersion())
.append(node.getIp()).append(node.getPort()).toString();
CBManager manager = null;
if(!IgniteUtil.getCircleBreakCache().containsKey(circleBreakKey)) {
manager = new CBManager(circleBreakKey,node.getIntTps() < 2 ? 1 : (node.getIntTps() > 100 ? 50 : node.getIntTps() >> 1),
node.getIntTps() < 5? 1 : (node.getIntTps() > 100 ? 20 : node.getIntTps() >> 2), 1000);
IgniteUtil.getCircleBreakCache().putIfAbsentAsync(circleBreakKey, manager);
}else {
manager = IgniteUtil.getCircleBreakCache().get(circleBreakKey);
}
try {
manager.getState().preMethodExecute();
} catch (CircleBreakException e) {
node.getTps().release();
route.getTps().release();
throw e;
}
return new NodeInfo(route.getVersion(),route.getProtocal(), node,sourceUrl,route.isNeedAuth(),circleBreakKey);
}
}else{
if(routeNum > 0){
int nextIndex = route.getIndex().addAndGet(1) % routeNum;
route.getIndex().set(nextIndex);
RouteNode node = route.getRouteNodes().get(nextIndex);
System.out.println(sourceUrl+"的node信号量为"+node.getTps().availablePermits() + "; host = " + node.getIp() +":"+ node.getPort());
if(!route.getTps().removed() && node.getTps().tryAcquire()) {
String circleBreakKey = new StringBuilder(route.getMatchUrl()).append(route.getVersion())
.append(node.getIp()).append(node.getPort()).toString();
CBManager manager = null;
if(!IgniteUtil.getCircleBreakCache().containsKey(circleBreakKey)) {
manager = new CBManager(circleBreakKey,node.getIntTps() < 2 ? 1 : (node.getIntTps() > 100 ? 50 : node.getIntTps() >> 1),
node.getIntTps() < 5? 1 : (node.getIntTps() > 100 ? 20 : node.getIntTps() >> 2), 1000);
IgniteUtil.getCircleBreakCache().putIfAbsentAsync(circleBreakKey, manager);
}else {
manager = IgniteUtil.getCircleBreakCache().get(circleBreakKey);
}
try {
manager.getState().preMethodExecute();
} catch (CircleBreakException e) {
node.getTps().release();
route.getTps().release();
throw e;
}
return new NodeInfo(route.getVersion(),route.getProtocal(), node,sourceUrl,route.isNeedAuth(),circleBreakKey);
}
}
}
}
}else if(DUBBO.equals(route.getProtocal())) {
String[] urls = sourceUrlTemp.substring(1).split("\\/");
int size = route.getRouteNodes().size();
if(size>1) {
for(int i = 0 ; i < size ; i ++) {
int nextIndex = route.getIndex().addAndGet(1) % size;
route.getIndex().set(nextIndex);
RouteNode node = route.getRouteNodes().get(nextIndex);
if(
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
HXAPIGate基于Netty+Shiro开发的一款高性能API网关,对基于REST服务的细粒度API资源的权限管理平台,支持http,dubbo等多协议微服务接口代理。适用于REST微服务的API资源授权管理等;增加接口熔断功能,同时对新增接口的路由信息增加安全限制保障服务运行安全等
资源推荐
资源详情
资源评论
收起资源包目录
HXAPIGate基于Netty+Shiro开发的一款高性能API网关,对基于REST服务的细粒度API资源的权限管理平台 (350个子文件)
471542483.classname0 45B
215418756.classname0 43B
-1135097562.classname0 41B
-1350948080.classname0 39B
1863780083.classname0 38B
-290546390.classname0 35B
-1523929106.classname0 35B
mvnw.cmd 5KB
layui.css 58KB
layer.css 14KB
weadmin.css 11KB
layui.mobile.css 10KB
laydate.css 7KB
code.css 1KB
font.css 505B
iconfont.eot 48KB
iconfont.eot 38KB
59.gif 10KB
22.gif 10KB
24.gif 8KB
13.gif 7KB
16.gif 7KB
39.gif 6KB
64.gif 6KB
63.gif 6KB
50.gif 6KB
loading-0.gif 6KB
4.gif 6KB
1.gif 5KB
42.gif 5KB
71.gif 5KB
21.gif 5KB
20.gif 5KB
29.gif 5KB
70.gif 4KB
5.gif 4KB
17.gif 4KB
27.gif 4KB
9.gif 4KB
44.gif 4KB
11.gif 4KB
8.gif 4KB
3.gif 4KB
23.gif 4KB
34.gif 4KB
41.gif 4KB
38.gif 4KB
65.gif 3KB
32.gif 3KB
45.gif 3KB
7.gif 3KB
12.gif 3KB
26.gif 3KB
60.gif 3KB
2.gif 3KB
40.gif 3KB
25.gif 3KB
19.gif 3KB
66.gif 3KB
18.gif 3KB
46.gif 3KB
10.gif 3KB
28.gif 3KB
51.gif 3KB
57.gif 3KB
67.gif 3KB
0.gif 3KB
48.gif 3KB
43.gif 3KB
30.gif 2KB
61.gif 2KB
33.gif 2KB
69.gif 2KB
14.gif 2KB
47.gif 2KB
36.gif 2KB
49.gif 2KB
58.gif 2KB
6.gif 2KB
54.gif 2KB
53.gif 2KB
56.gif 2KB
62.gif 2KB
31.gif 2KB
55.gif 2KB
35.gif 2KB
15.gif 2KB
loading-2.gif 2KB
37.gif 1KB
68.gif 1KB
52.gif 777B
loading-1.gif 701B
.gitignore 249B
.gitignore 200B
edit.html 26KB
list.html 20KB
add.html 18KB
addRight.html 18KB
list.html 13KB
typelist.html 11KB
共 350 条
- 1
- 2
- 3
- 4
资源评论
Java程序员-张凯
- 粉丝: 1w+
- 资源: 7445
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 电子学习资料设计作品全资料远程温度控制系统资料
- 电子学习资料设计作品全资料智能风扇调速系统资料
- 一体式抽油烟机模型sw18可编辑全套技术资料100%好用.zip.zip
- 基于深度学习的交通标志识别系统(django)源代码(python毕业设计完整源码+LW).zip
- 电子学习资料设计作品全资料智能台灯设计资料
- 电子学习资料设计作品全资料智能温度报警系统设计资料
- 电子学习资料设计作品全资料自动加料机控制系统资料
- 新代-山龙-众泰克-维宏通用 - 副本.arp
- 盐厂装箱机Pro5.0全套技术资料100%好用.zip.zip
- 基于深度学习的身份证识别考勤系统(django)源代码(python毕业设计完整源码+LW).zip
- 电子学习资料设计作品文档1.5V调频无线话筒电路制作
- 一体化滤池sw16可编辑全套技术资料100%好用.zip.zip
- 电子学习资料设计作品文档电容降压电源原理和计算公式
- 油管切断机sw18可编辑全套技术资料100%好用.zip.zip
- 电子学习资料设计作品文档电子琴
- 电子学习资料设计作品文档频率计
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功