msg

package
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 26, 2021 License: AGPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	StreamCloseFlag_Open  = 0
	StreamCloseFlag_Close = 1
	StreamCloseFlag_Reset = 2
)

Variables

This section is empty.

Functions

func Receive

func Receive(chainMessage *ChainMessage)

func Send

func Send(chainMessage *ChainMessage)

Types

type ChainMessage

type ChainMessage struct {
	UUID string `json:",omitempty"`
	/**
	 * 最终的消息接收目标,如果当前节点不是最终的目标,可以进行转发
	 * 如果目标是服务器节点,直接转发,
	 * 如果目标是客户机节点,先找到客户机目前连接的服务器节点,也许就是自己,然后转发
	 */
	TargetPeerId string `json:",omitempty"`
	// 如果目标TargetPeerId是peerclient,在转发的时候,填充相应的peerclient的连接会话编号
	TargetConnectSessionId string `json:",omitempty"`
	TargetConnectPeerId    string `json:",omitempty"`
	/**
	以下三个字段方便对消息处理时寻找目的节点,topic是发送给主题的,TargetPeerId是发送给目标peer的
	*/
	Topic string `json:",omitempty"`
	/**
	src字段,ConnectSessionId在发送的时候不填,到接收端自动填充,第一个连接节点
	*/
	SrcConnectSessionId string `json:",omitempty"`
	SrcConnectPeerId    string `json:",omitempty"`
	// 本次的源连接节点
	LocalConnectPeerId  string `json:",omitempty"`
	LocalConnectAddress string `json:",omitempty"`
	// 源节点,在最初连接节点接收的时候填写
	SrcPeerId  string `json:",omitempty"`
	SrcAddress string `json:",omitempty"`
	// 本次的连接会话,在接收节点处填写
	ConnectSessionId string `json:",omitempty"`
	// 本次准备连接的节点,本次信息发送目标由此得出
	ConnectPeerId  string            `json:",omitempty"`
	ConnectAddress string            `json:",omitempty"`
	MessageType    msgtype.MsgType   `json:",omitempty"`
	MessageDirect  msgtype.MsgDirect `json:",omitempty"`
	/**
	 * 经过目标peer的公钥加密过的对称秘钥,这个对称秘钥是随机生成,每次不同,用于加密payload
	 */
	PayloadKey      string                  `json:",omitempty"`
	NeedCompress    bool                    `json:",omitempty"`
	NeedEncrypt     bool                    `json:",omitempty"`
	SecurityContext *crypto.SecurityContext `json:",omitempty"`
	/**
	 * 消息负载序列化后的寄送格式,再经过客户端自己的加密方式比如openpgp(更安全)加密,签名,压缩,base64处理后的字符串
	 */
	TransportPayload string `json:",omitempty"`
	/**
	 * 不跨网络传输,是transportPayload检验过后还原的对象,传输时通过转换成transportPayload传输
	 */
	Payload interface{} `json:"-"`
	Tip     string      `json:",omitempty"`
	/**
	 * 负载json的源peer的签名
	 */
	PayloadSignature                  string `json:",omitempty"`
	PreviousPublicKeyPayloadSignature string `json:",omitempty"`
	/**
	 * 根据此字段来把TransportPayload对应的字节还原成Payload的对象,最简单的就是字符串
	 * 也可以是一个复杂的结构,但是dht的数据结构(peerendpoint),通用网络块存储(datablock)一般不用这种方式操作
	 * 而采用getvalue和putvalue的方式操作
	 */
	PayloadType     string     `json:",omitempty"`
	CreateTimestamp *time.Time `json:",omitempty"`
}

* 采用libp2p实现后,chainmessage只用于自定义协议点对点的数据传输,不涉及网络递归的存放和查找 因此结构需要简化,不需要两层的结构了

func (*ChainMessage) Marshal

func (this *ChainMessage) Marshal() ([]byte, error)

func (*ChainMessage) TextMarshal

func (this *ChainMessage) TextMarshal() (string, error)

func (*ChainMessage) TextUnmarshal

func (this *ChainMessage) TextUnmarshal(data string)

func (*ChainMessage) Unmarshal

func (this *ChainMessage) Unmarshal(data []byte)

type StreamCloseFlag

type StreamCloseFlag uint

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL