Go protobuf 的简单应用
创始人
2024-05-21 14:56:36
0

环境搭建

安装 protobuf 编译器

https://github.com/protocolbuffers/protobuf/releases
在这里插入图片描述

解压,将bin目录加入环境变量

安装 protocol-gen-go 生成器

用于生成Go代码
https://github.com/protocolbuffers/protobuf-go/releases
在这里插入图片描述
解压,将可执行文件加入到环境变量内

或使用go install github.com/protocolbuffers/protobuf-go@latest 直接安装

使用Goland

创建项目example
并且执行 go mod init example

安装Protocol Buffers插件

在这里插入图片描述

创建user.proto文件

在这里插入图片描述

syntax = "proto3"; // 指定该文件 proto语法版本,目前有2,3// option go_package = "path;name"; path 表示生成的go文件的存放地址,会自动生成目录
// name 表示生成的文件所属的包名
option go_package = "./service";// 指定文件生成后的package
package service;// 通信用的消息
message User {string name = 1;int32  aga = 2;
}

打开命令行

输入 protoc --go_out=./ ./user.proto 为user.proto生成Go代码
此时目录结构为:
在这里插入图片描述
user.pb.go文件为生成文件

// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// 	protoc-gen-go v1.28.1
// 	protoc        v3.21.12
// source: user.proto// 指定文件生成后的packagepackage serviceimport (protoreflect "google.golang.org/protobuf/reflect/protoreflect"protoimpl "google.golang.org/protobuf/runtime/protoimpl"reflect "reflect"sync "sync"
)const (// Verify that this generated code is sufficiently up-to-date._ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)// Verify that runtime/protoimpl is sufficiently up-to-date._ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)// 通信用的消息
type User struct {state         protoimpl.MessageStatesizeCache     protoimpl.SizeCacheunknownFields protoimpl.UnknownFieldsName string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`Aga  int32  `protobuf:"varint,2,opt,name=aga,proto3" json:"aga,omitempty"`
}func (x *User) Reset() {*x = User{}if protoimpl.UnsafeEnabled {mi := &file_user_proto_msgTypes[0]ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))ms.StoreMessageInfo(mi)}
}func (x *User) String() string {return protoimpl.X.MessageStringOf(x)
}func (*User) ProtoMessage() {}func (x *User) ProtoReflect() protoreflect.Message {mi := &file_user_proto_msgTypes[0]if protoimpl.UnsafeEnabled && x != nil {ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))if ms.LoadMessageInfo() == nil {ms.StoreMessageInfo(mi)}return ms}return mi.MessageOf(x)
}// Deprecated: Use User.ProtoReflect.Descriptor instead.
func (*User) Descriptor() ([]byte, []int) {return file_user_proto_rawDescGZIP(), []int{0}
}func (x *User) GetName() string {if x != nil {return x.Name}return ""
}func (x *User) GetAga() int32 {if x != nil {return x.Aga}return 0
}var File_user_proto protoreflect.FileDescriptorvar file_user_proto_rawDesc = []byte{0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x73, 0x65,0x72, 0x76, 0x69, 0x63, 0x65, 0x22, 0x2c, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x12, 0x0a,0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03,0x61, 0x67, 0x61, 0x42, 0x0b, 0x5a, 0x09, 0x2e, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}var (file_user_proto_rawDescOnce sync.Oncefile_user_proto_rawDescData = file_user_proto_rawDesc
)func file_user_proto_rawDescGZIP() []byte {file_user_proto_rawDescOnce.Do(func() {file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)})return file_user_proto_rawDescData
}var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
var file_user_proto_goTypes = []interface{}{(*User)(nil), // 0: service.User
}
var file_user_proto_depIdxs = []int32{0, // [0:0] is the sub-list for method output_type0, // [0:0] is the sub-list for method input_type0, // [0:0] is the sub-list for extension type_name0, // [0:0] is the sub-list for extension extendee0, // [0:0] is the sub-list for field type_name
}func init() { file_user_proto_init() }
func file_user_proto_init() {if File_user_proto != nil {return}if !protoimpl.UnsafeEnabled {file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {switch v := v.(*User); i {case 0:return &v.statecase 1:return &v.sizeCachecase 2:return &v.unknownFieldsdefault:return nil}}}type x struct{}out := protoimpl.TypeBuilder{File: protoimpl.DescBuilder{GoPackagePath: reflect.TypeOf(x{}).PkgPath(),RawDescriptor: file_user_proto_rawDesc,NumEnums:      0,NumMessages:   1,NumExtensions: 0,NumServices:   0,},GoTypes:           file_user_proto_goTypes,DependencyIndexes: file_user_proto_depIdxs,MessageInfos:      file_user_proto_msgTypes,}.Build()File_user_proto = out.Filefile_user_proto_rawDesc = nilfile_user_proto_goTypes = nilfile_user_proto_depIdxs = nil
}

执行go mod tidy 拉取依赖

在这里插入图片描述
user.pb.go很显然,不让我们手动编辑

序列化与反序列化

创建main.go文件

package mainimport ("example/service""fmt""google.golang.org/protobuf/proto"
)func main() {user := &service.User{Name: "张三",Age:  20,}// 序列化bys, err := proto.Marshal(user)if err != nil {panic(err)}// 反序列化user1 := &service.User{}err = proto.Unmarshal(bys, user1)if err != nil {panic(err)}fmt.Println(user1)}

在这里插入图片描述

proto 语法介绍

详情请查看文末链接

Reference
https://developers.google.cn/protocol-buffers/docs/proto3?hl=zh-cn#simple

相关内容

热门资讯

最绚丽的安卓系统,最绚丽版本全... 哇,你知道吗?在安卓的世界里,有一款系统,它就像是一颗璀璨的明珠,闪耀着最绚丽的色彩。它就是——最绚...
小米系统安卓通知权限,深度解析... 亲爱的手机控们,你是否曾为手机通知栏里乱糟糟的信息而烦恼?又或者,你是否好奇过,为什么有些应用总是能...
安卓7.0系统能玩吗,体验全新... 你有没有想过,你的安卓手机升级到7.0系统后,那些曾经陪伴你度过无数时光的游戏,还能不能继续畅玩呢?...
平板安卓系统哪家好,安卓平板系... 你有没有想过,在这个科技飞速发展的时代,拥有一台性能出色的平板电脑是多么重要的事情呢?想象无论是追剧...
安卓好的点歌系统,打造个性化音... 你有没有想过,在安卓手机上,点歌系统竟然也能如此精彩?没错,就是那个我们每天都会用到,却又常常忽略的...
熊猫安卓系统直播软件,解锁互动... 你知道吗?最近有个超级酷炫的直播软件在熊猫迷们中间火得一塌糊涂!它就是熊猫安卓系统直播软件。别看它名...
安卓点播系统开发,Androi... 你有没有想过,手机里那些让你爱不释手的视频,其实背后有着一套复杂的安卓点播系统在默默支撑呢?今天,就...
安卓6.0系统加权限,深度解析... 你有没有发现,自从手机升级到安卓6.0系统后,权限管理变得超级严格呢?这可真是让人又爱又恨啊!今天,...
哪些电视带安卓系统,多款热门智... 你有没有想过,家里的电视竟然也能装上安卓系统?听起来是不是有点不可思议?没错,现在市面上就有不少电视...
苹果怎么运用安卓系统,揭秘如何... 你知道吗?最近有个大新闻在科技圈里炸开了锅,那就是苹果竟然开始运用安卓系统了!是不是觉得有点不可思议...
安卓系统能转什么系统好,探索最... 你有没有想过,你的安卓手机是不是也能换换口味,体验一下其他系统的魅力呢?没错,今天就来聊聊这个话题:...
龙之狂热安卓系统,释放龙族狂热 亲爱的手机控们,你是否曾为拥有一款独特的安卓系统而疯狂?今天,就让我带你走进一个充满奇幻色彩的龙之狂...
vivo手机安卓系统怎么升级系... 亲爱的手机控们,你是不是也和我一样,对手机的新功能充满期待呢?尤其是vivo手机的用户,是不是也在想...
鸿蒙2.0退回安卓系统,一场系... 你知道吗?最近科技圈里可是炸开了锅,因为华为的鸿蒙2.0操作系统竟然要退回安卓系统了!这可不是一个简...
安卓系统怎么复制卡,安卓系统卡... 你有没有遇到过这种情况:手机里的照片、视频或者重要文件,突然想备份到电脑上,却发现安卓系统的卡复制功...
app兼容低安卓系统,打造全民... 你有没有发现,现在手机APP更新换代的速度简直就像坐上了火箭!不过,你知道吗?有些APP可是特别贴心...
中间安卓系统叫什么,中间安卓系... 你有没有想过,安卓系统里竟然还有一个中间的版本?没错,就是那个让很多手机用户既熟悉又陌生的版本。今天...
安卓怎么用os系统,利用And... 你有没有想过,你的安卓手机其实可以变身成一个功能强大的操作系统呢?没错,就是那个我们平时在电脑上使用...
pe系统安卓能做么,探索安卓平... 亲爱的读者,你是否曾好奇过,那款在安卓设备上大受欢迎的PE系统,它究竟能做什么呢?今天,就让我带你一...
安卓 打印机系统,安卓打印机系... 你有没有想过,家里的安卓手机和打印机之间竟然能建立起如此紧密的联系?没错,就是那个安卓打印机系统!今...