从同一个 .proto 文件生成 Python 和 Go 代码 - 导入问题

我很难使用共享的 .proto 文件生成 Python 和 Go 的代码。有问题的部分是我正在利用timestamp.proto(由谷歌提供),根据生成的代码应该使用的语言,需要以不同的方式导入。

Python 代码生成器需要以下形式:

import "google/protobuf/timestamp.proto";

虽然 Go 代码生成器需要这样:

import "github.com/golang/protobuf/ptypes/timestamp/timestamp.proto";

是否可以使此导入对两种语言都有效?如何?


手掌心
浏览 128回答 1
1回答

翻阅古今

这个原始路径是错误的:import "github.com/golang/protobuf/ptypes/timestamp/timestamp.proto"; // WRONG path无论您使用什么语言 - Go 或 Python 等,这都是正确的导入路径:import "google/protobuf/timestamp.proto"; // correct path for any language (go, python etc)该timestamp.proto工具protoc-gen-go(在生成 Go 代码时)使用其默认INCLUDE_PATH.例如,在我的 Mac 上,默认值为INCLUDE_PATH:/usr/local/Cellar/protobuf/3.7.1/include完整的原型文件路径为:/usr/local/Cellar/protobuf/3.7.1/include/google/protobuf/timestamp.proto您可以查看 gRPC 安装附带的其他标准原型定义,例如duration.proto:$ pwd # my default gRPC include path/usr/local/Cellar/protobuf/3.7.1/include$ find . -name "*.proto"./google/protobuf/timestamp.proto./google/protobuf/field_mask.proto./google/protobuf/api.proto./google/protobuf/duration.proto./google/protobuf/struct.proto./google/protobuf/wrappers.proto./google/protobuf/source_context.proto./google/protobuf/any.proto./google/protobuf/type.proto./google/protobuf/empty.proto./google/protobuf/compiler/plugin.proto./google/protobuf/descriptor.proto如果您已按照安装文档将 gRPC 工具包(及其标头)安装在正确的位置,则上述目录层次结构应与任何操作系统版本匹配。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go