3 Star 0 Fork 0

Gitee 极速下载 / dynamicgo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/cloudwego/dynamicgo
克隆/下载
README.md 2.91 KB
一键复制 编辑 原始数据 按行查看 历史

j2p

import "github.com/cloudwego/dynamicgo/conv/j2p"

Index

type BinaryConv

BinaryConv is a converter from json to protobuf binary

type BinaryConv struct {
    // contains filtered or unexported fields
}

func NewBinaryConv

func NewBinaryConv(opts conv.Options) BinaryConv

NewBinaryConv returns a new BinaryConv

func (*BinaryConv) Do

func (self *BinaryConv) Do(ctx context.Context, desc *proto.TypeDescriptor, jbytes []byte) (tbytes []byte, err error)

Do converts json bytes (jbytes) to protobuf binary (tbytes) desc is the protobuf type descriptor of the protobuf binary, usually it the request Message type

Example

package main

import (
	"context"
	"encoding/json"
	"reflect"

	"github.com/cloudwego/dynamicgo/conv"
	"github.com/cloudwego/dynamicgo/testdata/kitex_gen/pb/example2"
	"google.golang.org/protobuf/encoding/protowire"
)

var opts = conv.Options{}

func main() {
	// get descriptor and data
	desc := getExampleDesc()
	data := getExampleData()

	// make BinaryConv
	cv := NewBinaryConv(opts)

	// do conversion
	out, err := cv.Do(context.Background(), desc, data)
	if err != nil {
		panic(err)
	}

	// validate result
	exp := &example2.ExampleReq{}
	err = json.Unmarshal(data, exp)
	if err != nil {
		panic(err)
	}
	act := &example2.ExampleReq{}
	l := 0
	dataLen := len(out)
	// fastRead to get target struct
	for l < dataLen {
		id, wtyp, tagLen := protowire.ConsumeTag(out)
		if tagLen < 0 {
			panic("parseTag failed")
		}
		l += tagLen
		out = out[tagLen:]
		offset, err := act.FastRead(out, int8(wtyp), int32(id))
		if err != nil {
			panic(err)
		}
		out = out[offset:]
		l += offset
	}
	if !reflect.DeepEqual(exp, act) {
		panic("not equal")
	}
}

func (*BinaryConv) DoInto

func (self *BinaryConv) DoInto(ctx context.Context, desc *proto.TypeDescriptor, jbytes []byte, buf *[]byte) error

DoInto behaves like Do, but it writes the result to buffer directly instead of returning a new buffer

Generated by gomarkdoc

1
https://gitee.com/mirrors/dynamicgo.git
git@gitee.com:mirrors/dynamicgo.git
mirrors
dynamicgo
dynamicgo
main

搜索帮助