golang使用protobuf

wolgame · · 3097 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

安装protobuf编译工具

下载最新版
https://github.com/golang/protobuf
官方网站 https://developers.google.com/protocol-buffers/docs/proto3
解压后 执行
./autogen.sh
    如碰到没有支持的程序,安装之
./configure
make
make install

安装golang支持库

下载 https://github.com/golang/protobuf
在项目src目录中建目录
    github.com/golang/protobuf/
将下载的protobuf全部copy到此目录
cd到此目录执行
    make
将编译出protoc-gen-go可执行程序,此程序提供给protobuf编译工具使用

测试

在代码目录中创建一个放置proto文件的文件夹,如 protocfg
创建.proto文件 配置protobuf数据结构如
syntax = "proto3";
package prototest;

enum FOO { X = 0; };

message Test {
	string label = 1;
	int32 type = 2 ;
	int64 reps = 19;
}
在此目录执行
/usr/local/bin/protoc --plugin={补齐}bin/protoc-gen-go --go_out=. test.proto
将会生成 test.bp.go  此文件在go程序中使用:
package main

import (
	"demo/prototest"
	"fmt"
	"libs/plog"

	"github.com/golang/protobuf/proto"
)

func Test() {
	fmt.Println("begin TestLog ...")
	//proto.Bool(false)

	test := &prototest.Test{Label: "hello", Type: 17, Reps: 34}
	data, err := proto.Marshal(test)
	if err != nil {
		plog.Println(plog.Warning, "demo", err.Error())
	} else {
		unTest := &prototest.Test{}
		err := proto.Unmarshal(data, unTest)
		if err == nil {
			fmt.Println("undata ", unTest.Label, unTest.Reps, unTest.Type)
		}
	}
	fmt.Println("data", data)
}

func main() {
	Test()
}









有疑问加站长微信联系(非本文作者)

本文来自:CSDN博客

感谢作者:wolgame

查看原文:golang使用protobuf

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

3097 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传