如何避免在 buf generate 上复制供应商 proto 依赖项

我正在测试 grpc-gateway 并试图找出在我的 grpc 服务中导入依赖项的最佳方法。我有以下目录结构:


proto/

  api.proto

  api2.proto

third_party/

  googleapis/

    google/

      api/

        http.proto

        annotations.proto

buf.yaml

buf.gen.yaml


buf.yaml 配置


version: v1beta1

build:

  roots:

    - third_party/googleapis

    - third_party/grpc-gateway

    - proto

两件事情

  • 正如你所注意到的,我正在使用buf.build来生成 proto 文件(如果你知道更好的方法,你可以忽略这个事实);

  • 我不是googleapi故意在原始文件下复制,而是希望将它们分开存放在某个地方。我知道 google 建议将所有内容保存在proto文件夹下并仅复制依赖文件(如google/api/annotations.proto),但如果我能以某种方式避免这种情况,我不喜欢将数十个依赖项复制到我的源代码中。

我的问题是,每当我运行时buf generate --path=./proto(请注意路径设置为目录),我都会在文件夹googleapis pb.go下复制proto/googleapis/文件。我觉得这很烦人,无法弄清楚我的设置有什么问题。如果我直接指定每个文件,一切都很好(例如buf generate --path=./proto/api.proto),没有第三方内容被复制。

有没有办法忽略third_party文件夹buf generate,如果没有,是否有更好的方法来管理 grpc 依赖项。将文件直接复制到每个 grpc 项目对我来说确实有意义。


ibeautiful
浏览 130回答 1
1回答

梦里花落0921

好的,想通了。通常,您要么重用go/src文件夹中的 protos(由于 repo 更新而存在缺点),要么将它们复制到 proto/dependency-x 文件夹中。我发现 buf 在这里采取了更好的方法,但是您必须遵循原型结构准则,简而言之:structure proto files under same root, in different packets. 因此,为了避免复制,我必须具有以下结构:proto/&nbsp; api/ <- add one more level&nbsp; &nbsp; api.proto&nbsp; &nbsp; api2.protothird_party/&nbsp; googleapis/&nbsp; &nbsp; google/&nbsp; &nbsp; &nbsp; api/&nbsp; &nbsp; &nbsp; &nbsp; http.proto&nbsp; &nbsp; &nbsp; &nbsp; annotations.protobuf.yamlbuf.gen.yaml并将缓冲区指向api文件夹,如下所示:buf generate --path=./proto/api
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go