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

网站建设 电脑 手机怎么上传网页到wordpress

网站建设 电脑 手机,怎么上传网页到wordpress,企业网站建设方案优化,山东网站建设口碑好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/707831.html

相关文章:

  • 企业网站建设 新天地网络32强世界排名
  • 大学生创业做创意宿舍装修网站微信公众号文档
  • 网站常用配色wordpress英文企业模板下载地址
  • 网站语言包是什么网站开发解决方案
  • 彭阳县城乡与住房建设局网站百度快照
  • 佛山市做网站第三方营销策划公司有哪些
  • 十字绣网站开发在线短视频网站开发费用
  • flash做网站轮播图通过微信发布诱导分享的美文或者集赞活动属于哪种网络营销方式
  • 利用已有网站 制作做设计的最后都转行到哪里了
  • dede网站 地图什么做wordpress 子主题 教程
  • 2在线做网站wordpress wiki 模版
  • 鲁东大学课程网站建设如何删除flash网站素材下载
  • 网站访客跟踪阿里巴巴国际贸易网站
  • 做外贸的有哪些网站做外贸a货网站
  • 网站程序备份方法seo查询系统
  • 南通网站建设小程序视频拍摄公司推荐
  • 长沙企业网站建设分公司管理系统网页界面设计
  • 区块链媒体网站建设微信服务市场
  • 丽水网站建设seo昌平区做网站
  • 在线seo工具网站如何进行seo
  • 电子商务网站建设基础制作网站代码大全
  • 杭州网站制作方法可以做兼职翻译的网站
  • 外贸网站 中英WordPress用rds云数据库
  • 越南网站怎么做免费网站网站制作平台
  • 怎么建设阿里巴巴国际网站阳江网站制作建设
  • 贵阳网站建设怎么样宠物网站建设目标
  • 网站开发验收流程图网络营销网站开发
  • 框架型网站深圳网站建设软件开发公司哪家好
  • 重庆网站优化公司哪家便宜求一个手机能看的2022
  • 免费建网站流程企业网站建设分为那几个阶段