hsf笔记-ClientFilter

1.ClientFilter

Consumer端过滤器

1.1 CommonClientFilter

在requestProps中设置AppName和TargetGroup

public class CommonClientFilter implements ClientFilter {
    public CommonClientFilter() {
    }

    public ListenableFuture<RPCResult> invoke(InvocationHandler invocationHandler, Invocation invocation) throws Throwable {
        ConsumerMethodModel consumerMethodModel = invocation.getClientInvocationContext().getMethodModel();
        ServiceMetadata serviceMetadata = consumerMethodModel.getMetadata();
        ApplicationModel applicationModel = serviceMetadata.getApplicationModel();
        invocation.setRequestProps("Consumer-AppName", applicationModel.getName());
        invocation.setRequestProps("target_group", serviceMetadata.getGroup());
        return invocationHandler.invoke(invocation);
    }

    public void onResponse(Invocation invocation, RPCResult rpcResult) {
    }
}

1.2 MonitorLogClientFilter

在调用前后添加监控日志

    public ListenableFuture<RPCResult> invoke(InvocationHandler nextHandler, Invocation invocation) throws Throwable {
        ConsumerMethodModel methodModel = invocation.getClientInvocationContext().getMethodModel();
        String serviceName = methodModel.getUniqueName();
        String methodName = invocation.getMethodName();
        this.monitorService.add("HSF-Consumer-ActiveThread", serviceName, methodName, 1L, 1L);

        ListenableFuture var6;
        try {
            var6 = nextHandler.invoke(invocation);
        } finally {
            this.monitorService.add("HSF-Consumer-ActiveThread", serviceName, methodName, -1L, -1L);
        }

        return var6;
    }

1.3 InvocationStatsClientFilter

统计consumer端调用次数

public class InvocationStatsClientFilter implements ClientFilter {
    private InvocationStats<ConsumerMethodModel, ConsumerInvokerStats> clientInvocationStats = (InvocationStats)HSFServiceContainer.getInstance(InvocationStats.class, "consumer");
    private RemotingRuntimeInfoHolder remotingRuntimeInfoHolder = RemotingRuntimeInfoHolder.getInstance();

    public InvocationStatsClientFilter() {
    }

    public ListenableFuture<RPCResult> invoke(InvocationHandler nextHandler, Invocation invocation) throws Throwable {
        ConsumerMethodModel consumerMethodModel = invocation.getClientInvocationContext().getMethodModel();
        ConsumerInvokerStats consumerInvokerStats = null;

        ListenableFuture var5;
        try {
            consumerInvokerStats = (ConsumerInvokerStats)this.clientInvocationStats.getStats(consumerMethodModel);
            if (consumerInvokerStats != null) {
                consumerInvokerStats.addThreadCount(1);
                consumerInvokerStats.addInvokeCount(1L);
            }

            var5 = nextHandler.invoke(invocation);
        } catch (Throwable var10) {
            RPCResult rpcResult = new RPCResult();
            rpcResult.setHsfResponse(new HSFResponse());
            rpcResult.setAppResponse(var10);
            rpcResult.setErrorType(ResponseStatus.UNKNOWN_ERROR.name());
            this.onResponse(invocation, rpcResult);
            throw var10;
        } finally {
            if (consumerInvokerStats != null) {
                consumerInvokerStats.addThreadCount(-1);
            }

        }

        return var5;
    }
}

1.4 SpasClientFilter

添加签名请求信息

public class SpasClientFilter implements ClientFilter, ApplicationModelAware, ServiceMetadataAware {
    private static final Logger LOGGER;
    private ApplicationModel applicationModel;
    private ServiceMetadata serviceMetadata;
    private static final Boolean clientNeedAuth;

    public SpasClientFilter() {
    }

    public ListenableFuture<RPCResult> invoke(InvocationHandler invocationHandler, Invocation invocation) throws Throwable {
        if (this.serviceMetadata.getAttributeMap().get(SpasApplicationComponent.NEED_AUTH_ATTRIBUTE_KEY) != Boolean.TRUE) {
            return invocationHandler.invoke(invocation);
        } else {
            String accessKey;
            try {
                String secretKey = RequestCtxUtil.getSecreteKey();
                accessKey = RequestCtxUtil.getAccessKey();
                if (StringUtils.isEmpty(secretKey) || StringUtils.isEmpty(accessKey)) {
                    Credentials credential = SpasSdkClientFacade.getCredential(this.applicationModel.getName());
                    secretKey = credential == null ? null : credential.getSecretKey();
                    accessKey = credential == null ? null : credential.getAccessKey();
                }

                if (StringUtils.isNotEmpty(secretKey)) {
                    HSFRequest request = invocation.getHsfRequest();
                    String spasSignatureString = request.getTargetServiceUniqueName() + "#" + request.getMethodName();
                    String signature = SpasSigner.sign(spasSignatureString, secretKey);
                    request.setRequestProps("Spas-Signature", signature);
                    if (StringUtils.isNotEmpty(accessKey)) {
                        request.setRequestProps("Access-Key", accessKey);
                    }

                    String version = SpasSdkClientFacade.getVersion();
                    if (StringUtils.isNotEmpty(version)) {
                        request.setRequestProps("Spas-Version", version);
                    }
                }
            } catch (Exception var9) {
                accessKey = LoggerHelper.getErrorCodeStr("HSF", "HSF-0081", "HSF", "spas credential error.");
                LOGGER.error("HSF-0081", accessKey, var9);
            }

            return invocationHandler.invoke(invocation);
        }
    }
}

1.5 InvocationValidationFilter

调用方法参数长度检查

public class InvocationValidationFilter implements ClientFilter {

    public ListenableFuture<RPCResult> invoke(InvocationHandler invocationHandler, Invocation invocation) throws Throwable {
        Object[] args = invocation.getMethodArgs();
        String[] signature = invocation.getMethodArgSigs();
        if (args != null && args.length != signature.length) {
            throw new HSFException("invalid invocation: args.length != argTypes.length.");
        } else {
            return invocationHandler.invoke(invocation);
        }
    }
}

1.6 GenericInvocationClientFilter

标准泛化方法执行

    public static boolean isGenericMethod(String methodName, String[] sig) {
        return methodName.equals("$invoke") && sig != null && sig.length == 3;
    }
    public ListenableFuture<RPCResult> invoke(InvocationHandler invocationHandler, Invocation invocation) throws Throwable {
        HSFRequest hsfRequest = invocation.getHsfRequest();
        if (PojoUtils.isGenericMethod(hsfRequest.getMethodName(), hsfRequest.getMethodArgSigs())) {
            Object[] methodArgs = hsfRequest.getMethodArgs();
            String[] realSignatures = (String[])((String[])methodArgs[1]);
            Object[] realArgs = (Object[])((Object[])methodArgs[2]);
            if (realSignatures == null) {
                realSignatures = new String[0];
                methodArgs[1] = realSignatures;
            }

            if (realArgs == null) {
                realArgs = new Object[0];
                methodArgs[2] = realArgs;
            }

            if (realSignatures.length != realArgs.length) {
                throw new HSFException("invalid generic invocation: args.length != argTypes.length.");
            }

            if (isServerRemoveClass) {
                hsfRequest.setRequestProps("REMOVE_CLASS", true);
            }
        }

        return invocationHandler.invoke(invocation);
    }

1.7 DubboRPCContextClientFilter

设置Consumer端Dubbo RPCContext参数

    public ListenableFuture<RPCResult> invoke(InvocationHandler nextHandler, Invocation invocation) throws Throwable {
        ListenableFuture var6;
        try {
            RpcContext rpcContext = RpcContext.getContext();
            if (rpcContext.getAttachments() != null) {
                rpcContext.getAttachments().remove("interface");
            }

            if (rpcContext.getAttachments() != null && !rpcContext.getAttachments().isEmpty()) {
                invocation.getHsfRequest().setRequestProps("rc", new HashMap(RpcContext.getContext().getAttachments()));
            }

            ListenableFuture<RPCResult> result = nextHandler.invoke(invocation);
            ServiceURL serviceURL = invocation.getInvokerContext().getUrl();

            try {
                if (serviceURL == null) {
                    rpcContext.setUrl(new URL("localhost", "127.0.0.1", 12200));
                    rpcContext.setLocalAddress(new InetSocketAddress(0));
                    rpcContext.setRemoteAddress(new InetSocketAddress(0));
                } else {
                    rpcContext.setUrl(URL.valueOf(serviceURL.getUrl()));
                    rpcContext.setLocalAddress(new InetSocketAddress(0));
                    rpcContext.setRemoteAddress(serviceURL.getHost(), serviceURL.getPort());
                }

                rpcContext.setMethodName(invocation.getHsfRequest().getMethodName());
                rpcContext.setParameterTypes(invocation.getHsfRequest().getParameterClasses());
                rpcContext.setArguments(invocation.getHsfRequest().getMethodArgs());
            } catch (Throwable var10) {
                ;
            }

            var6 = result;
        } finally {
            RpcContext.getContext().clearAttachments();
        }

        return var6;
    }

1.8 RPCContextClientFilter

设置HSF中RPCContext的Consumer端属性

    public ListenableFuture<RPCResult> invoke(InvocationHandler nextHandler, Invocation invocation) throws Throwable {
        if (RPCContext.clientContextUsed) {
            Map attachments = RPCContext.getClientContext().getAttachments();
            if (attachments != null) {
                invocation.getHsfRequest().setRequestProps("_hsf_rpc_context_key", attachments);
            }

            ListenableFuture<RPCResult> result = nextHandler.invoke(invocation);
            this.linkClientContext(invocation);
            return result;
        } else {
            return nextHandler.invoke(invocation);
        }
    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,591评论 18 139
  • Dubbo是什么 Dubbo是Alibaba开源的分布式服务框架,它最大的特点是按照分层的方式来架构,使用这种方式...
    Coselding阅读 17,165评论 3 196
  • 说起对女性的不善与偏见,最极端的例子大概就是《灿烂千阳》里的桥段。玛丽雅姆的生父,一个富得流油的阿富汗人,一生娶了...
    Karry的蠢萌女友阅读 546评论 0 0
  • [关键词]幸运,感动,幸福 5.1在德阳自己出门吃午饭,超好吃的一家叫“好吃的一bi”,边吃边担心自己得禽流感。但...
    wwwbb阅读 175评论 0 1
  • 由于小姑子的公公去世,孩子爸家这边根据当地风俗习惯要给小姑子夫妻买鞋子、帽子、孝带、糖果、饼干等东西。孩子爸就让我...
    爱人如己FJ阅读 123评论 0 0