web-dev-qa-db-ja.com

プロトコルバッファ定義を複数の.protoファイルに分割する

プロトコル定義ファイルを別のプロトコルファイルに含めたい。例えば:

// base.proto:
message P_EndPoint {
  required int32 id = 1;
  required string Host = 2;
  required int32 port = 3;
}

次に別のファイルで:

communication.proto:
// somehow include `base.proto'
// ...
message P_CommunicationProtocol {
  required CP_MessageType type = 1;
  optional int32 id = 2;
  optional P_EndPoint identity = 3;
  repeated P_EndPoint others = 4;
}
// ...

(注:developer.google.comは私のロケールでは使用できません)

38
sorush-r
import "myproject/base.proto";

ドキュメント: http://developers.google.com/protocol-buffers/docs/proto#other

38
Brian Roach