当前位置: 首页 > wzjs >正文

建设安全工程信息网站微信小程序网站建设推广

建设安全工程信息网站,微信小程序网站建设推广,公司网站建设概述,电商网站里的水果图片怎么做的codec 包基础设计 package:trpc-go/codec Msg接口的定义: 后续实际的消息msg结构体实现该接口,可以方便地获取一些值(如Context),也可以方便地进行一些值地设置(如设置SerializationType) //…

codec 包基础设计

package:trpc-go/codec

  1. Msg接口的定义: 后续实际的消息msg结构体实现该接口,可以方便地获取一些值(如Context),也可以方便地进行一些值地设置(如设置SerializationType)
// message.go 文件下 // Msg defines core message data for multi protocol, business protocol
// should set this message when packing and unpacking data.
type Msg interface {// Context returns rpc contextContext() context.Context// WithRemoteAddr sets upstream address for server,// or downstream address for client.WithRemoteAddr(addr net.Addr)// WithLocalAddr sets server local address.WithLocalAddr(addr net.Addr)// RemoteAddr returns upstream address for server,// or downstream address for client.RemoteAddr() net.Addr// LocalAddr returns server local address.LocalAddr() net.Addr// WithNamespace sets server namespace.WithNamespace(string)// Namespace returns server namespace.Namespace() string// WithEnvName sets server environment.WithEnvName(string)// SerializationType returns serialization type.SerializationType() int// WithCompressType sets compress type.WithCompressType(int)....
  1. msg 整个rpc的上下文,先看接口体的设计,以及实现上面Msg接口定义的方法
// message_impl.go 文件// msg is the context of rpc.
type msg struct {context             context.ContextframeHead           interface{}requestTimeout      time.DurationserializationType   intcompressType        intstreamID            uint32dyeing              booldyeingKey           stringserverRPCName       stringclientRPCName       stringserverMetaData      MetaDataclientMetaData      MetaDatacallerServiceName   stringcalleeServiceName   stringcalleeContainerName stringserverRspErr        errorclientRspErr        errorserverReqHead       interface{}serverRspHead       interface{}clientReqHead       interface{}clientRspHead       interface{}localAddr           net.AddrremoteAddr          net.Addrlogger              interface{}callerApp           stringcallerServer        stringcallerService       stringcallerMethod        stringcalleeApp           stringcalleeServer        stringcalleeService       stringcalleeMethod        stringnamespace           stringsetName             stringenvName             stringenvTransfer         stringrequestID           uint32calleeSetName       stringstreamFrame         interface{}commonMeta          CommonMetacallType            RequestType
}// 实现了 Msg接口所有方法
// Context restores old context when create new msg.
func (m *msg) Context() context.Context {return m.context
}// WithNamespace set server's namespace.
func (m *msg) WithNamespace(namespace string) {m.namespace = namespace
}
....

msg在后续:会被写入trpc协议的帧头中,进行网络传输,以达到下游
在这里插入图片描述

客户端调用 使用message:GreeterClientProxyImpl

  1. 客户端调用具体rpc方法桩代码:
func (c *GreeterClientProxyImpl) Hello(ctx context.Context, req *HelloRequest, opts ...client.Option) (*HelloReply, error) {// 派生出新的消息,以实现整个调用链路的context消息传递ctx, msg := codec.WithCloneMessage(ctx)defer codec.PutBackMessage(msg)msg.WithClientRPCName("/trpc.helloworld.Greeter/Hello")msg.WithCalleeServiceName(GreeterServer_ServiceDesc.ServiceName)msg.WithCalleeApp("")msg.WithCalleeServer("")msg.WithCalleeService("Greeter")msg.WithCalleeMethod("Hello")msg.WithSerializationType(codec.SerializationTypePB)callopts := make([]client.Option, 0, len(c.opts)+len(opts))callopts = append(callopts, c.opts...)callopts = append(callopts, opts...)rsp := &HelloReply{}if err := c.client.Invoke(ctx, req, rsp, callopts...); err != nil {return nil, err}return rsp, nil
}

先看WithCloneMessage方法:主要实现一组新的 ctx 和 msg 的派生

  • 首先可以看到第二个返回值Msg就是之前的接口类型
  • val.(*msg)是因为context中存储的不是实际结构体,而是结构体的指针
  • 所以上面桩代码中:msg.WithClientRPCName(“/trpc.helloworld.Greeter/Hello”),WithClientRPCName这些方法都是指针类型的实现:func (m *msg) xxx(namespace string) {
// message_impl.go 文件// WithCloneMessage copy a new message and put into context, each rpc call should
// create a new message, this method will be called by client stub.
func WithCloneMessage(ctx context.Context) (context.Context, Msg) {newMsg := msgPool.Get().(*msg)val := ctx.Value(ContextKeyMessage)m, ok := val.(*msg)if !ok {ctx = context.WithValue(ctx, ContextKeyMessage, newMsg)newMsg.context = ctxreturn ctx, newMsg}ctx = context.WithValue(ctx, ContextKeyMessage, newMsg)newMsg.context = ctxcopyCommonMessage(m, newMsg)copyServerToClientMessage(m, newMsg)return ctx, newMsg
}

到这里,一个派生的消息就从一个现有消息中拷贝了框架定义的一些上下文信息了,并且也设置了主调信息为自身服务,但是,被调信息呢?你回到开头看 tRPC 的桩代码就会知道了,桩代码里会负责进一步重写被调信息。

参考文献:

https://cloud.tencent.com/developer/article/2417507

http://www.dtcms.com/wzjs/753234.html

相关文章:

  • 自建网站平台要多少钱wordpress 中国 论坛
  • 淘宝基地网站怎么做音乐网站设计怎么做
  • 律师网站建设推广湖南网站设计外包哪家好
  • 二手书店网站建设规划书为什么很多网站在维护
  • mvc在网站开发中的应用青岛app开发公司
  • 网站建设哪家好知道万维科技wordpress添加cnzz
  • 淘宝接单做网站wordpress自己创建数据库
  • 新乡网站优化公司推荐做韩国网站有哪些东西吗
  • wordpress分城市访问网站建设优化公司排名
  • 企业网站设计推荐wordpress商品展示模块
  • 南通做网站如何做百度网站推广
  • 提交收录网站免费发布外链
  • 网站删除代码一级a做爰片免费网站孕交视频
  • 用ps制作网站首页jsp网站开发环境配置
  • 河南省建设监理协会官网站四种营销策略
  • 阜宁做网站价格单位的网站建设费会计处理
  • 网站制作哪些分类asp新闻发布网站模板下载
  • 顺义企业建站费用佳城建站 网站
  • 网页设计个人网站作业贵州网站建设费用
  • 一站式做网站佛山建设企业网站
  • 永康市网站建设制作深圳网站建设大公司好
  • 网站 导航条施工企业公路工程审图ppt
  • 织梦响应式网站怎么做关键词优化是怎样收费的
  • 网站栏目页模板学生免费服务器
  • 庆阳市住房和城乡建设局网站自己怎么做一个购物平台
  • 做网站和网页的目的和作用是什么如何做网站推广的方案设计
  • 房屋设计装修网站大连高新园区
  • 如何注册一个网站域名网页制作与网站开发模板
  • 网站开发与管理对应的职业及岗位wordpress定制主题开发
  • 郑州网站zhi zuo中国建设网官方网站企业