php json2pb,GitHub - zhuqling/json2pb: 把json对象用protobuf打包

json2pb

Json2pb是一个可以把json对象转换为Protobuf编码的命令行工具。

修复protobufjs整数溢出不报错的问题

忽略protobufjs对于optional字段不存在依然报错的问题。

增加makefile依赖文件输出的功能。

Node.js 不支持64位整数的问题依旧木有解决~~

把Json对象用Protobuf打包只需要输入:json2pb -pmotion.proto -mmotion motion.json

想要把csv文件打包的朋友们, 可以先用evalcsv把csv文件转换为json对象。

Install

Install node.js

Install with npm

npm install -g json2pb

Usage

Usage: json2pb [options] files

Options:

-h, --help Display this information.

-v, --version Print the compiler version.

-m, --message Set the message to be built.

-p, --proto Specify the .proto file for searching class name.

Example

motion.json:

{

"rows": [

{

"motion_id": 11001,

"name": "跪姿肩部下沉",

"privileges": [

"owner",

"admin",

"user",

"guest"

],

"type": "热身",

"category": "胸",

},

{

"motion_id": 11002,

"name": "直体肩部下沉",

"privileges": [

"owner",

"admin",

"user",

"guest"

],

"type": "热身",

"category": "胸",

}

]

}

motion.proto:

syntax = "proto3";

message motion_row {

int32 motion_id = 1;

string name = 2;

repeated string privileges = 3;

string type = 4;

string category = 5;

}

message motion {

repeated motion_row rows = 1;

}

command line:

json2pb -pmotion.proto -mmotion motion.json

Author

Licence

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值