工具常用系列 2: 运用protobuf支持可扩展消息

protobuf工具业内用的比较广泛,到处都可以找到,这里记录一下自己在日常开发中用到的消息大致定义范式

your_tool_cli_msg.proto

syntax = "proto3";

package your_tool_proto;

message Request {

    // Type of elements within the data tree.
    enum ReqType {
        UNDEFINED = 0;
        DO_1 = 1;
        DO_2 = 2;
        DO_3 = 3;
    }

    ReqType type = 1; // The type of data being requested.
    string file_content = 2;
    string module = 3;
    string filename = 4;
}


message Response {
    enum Status
    {
        SUCCESS = 0;
        FAILED = 1;
    }

    Status status = 1;
    string xmlData = 2;
    string errorinfo = 3;
}

message CliCommand
{
    enum Type {
        UNDEFINED = 0;
        CLI_ADD = 1;
        CLI_DELETE = 2;
        CLI_MODIFY = 3;
    }
    Type type = 1;
}

message climsg {
    CliCommand command = 1;
    oneof inner_msg {
        Request request = 2;
        Response response = 3;
    }
}

protobuf 的一大好处就是参数默认为optional,可扩展性极强,在工具开发中,适用于client/server之间交互的消息的格式定义,轻易不动序号的话,是比较容易达到成向兼容的。

后面会将该proto文件用起来

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值