protocal buffer

2018-05-19  本文已影响0人  qingshuiting

protocal buffer 定义(Java)

protobuf是一个序列化结构化数据的工具:

install protobuf

install protobuf主要分为两个步骤:

install compiler

protobuf compiler可以直接在github中下载获得。在链接中可以找到对应的zip包:protoc-$version-$platform.zip。根据自己需要使用的compiler的版本(version)以及使用compiler的操作系统(platform)下载对应的zip包。

protobuf runtime

根据不同的编程语言,需要使用不同的runtime。因为对Java比较熟悉所以所有的例子都是基于Java的,其中Java使用runtime的的方式

指南

官方指南

定义proto文件/解析proto文件

// [START declaration]
// 使用的proto的语法定义版本
syntax = "proto3";
// 包声明,防止不同项目之间冲突
// 在java中,默认会作为java的package name(除非特殊指定了java_package)
package tutorial;

import "google/protobuf/timestamp.proto";
// [END declaration]

// [START java_declaration]
// 生成的Java代码所在的package
option java_package = "com.example.tutorial";
// 是否生成多个Java文件
option java_multiple_files = true;
// 生成的Java的类文件的名字
option java_outer_classname = "AddressBookProtos";
// [END java_declaration]

// [START csharp_declaration]
option csharp_namespace = "Google.Protobuf.Examples.AddressBook";
// [END csharp_declaration]

// [START messages]
message Person {
  string name = 1;
  int32 id = 2;  // Unique ID number for this person.
  string email = 3;

  enum PhoneType {
    MOBILE = 0;
    HOME = 1;
    WORK = 2;
  }

  message PhoneNumber {
    string number = 1;
    PhoneType type = 2;
  }

  repeated PhoneNumber phones = 4;

  google.protobuf.Timestamp last_updated = 5;
}

// Our address book file is just one of these.
message AddressBook {
  repeated Person people = 1;
}
// [END messages]

protobuf API

在一个proto文件中定义的各种message(包含nested的message)都会在生成的Java文件中有对应的一个Class,以及每一个Class都要一个Builder Class来帮助我们初始化一个message对应的Class。

Message和Builder都有各自的访问field的方法:

语法定义

Message的数据类型

Field的类型

enum类型

其他message type

message SearchResponse {
  repeated Result results = 1;
}

message Result {
  string url = 1;
  string title = 2;
  repeated string snippets = 3;
}

import definition

import 其他 proto中定义的message

如果import的proto位置发生了变动,就需要使用一个proto来指向新的proto;import public

其他细节内容

nested type,嵌套类型

更新 message

这是一个非常重要的内容,如果以后在设计一些内容,但是中间需要修改,又不想影响其他服务的情况下。
链接

Any type

 import google/protobuf/any.proto

Oneof 类型

一个message中有多个field,但是at most one field会被使用
Setting any member of the oneof automatically clears all the other members.

Map 类型

map<key_type, value_type> map_field = N;
其中的key_type只能是标准类型,并且不能是float类型和bytes类型。value_type不能是repeated类型

Maven插件使用

上一篇下一篇

猜你喜欢

热点阅读