如何在单个命令中编译多个proto文件?

时间:2014-07-25 06:57:29

标签: java protocol-buffers

我在单个目录中有两个proto文件,我正在寻找一种在单个命令中从这些文件生成类的方法。 Protobuf文档说我们需要使用--proto_path参数。

C:\shekhar\proto_trial>dir
 Volume in drive C is C

 Directory of C:\shekhar\proto_trial

07/25/2014  12:16 PM    <DIR>          .
07/25/2014  12:16 PM    <DIR>          ..
07/25/2014  12:16 PM    <DIR>          java_op
07/25/2014  12:16 PM               230 map.proto
07/23/2014  04:24 PM               161 message.proto
07/25/2014  12:17 PM             1,228 response.proto
               3 File(s)          1,619 bytes
               3 Dir(s)  50,259,398,656 bytes free

我使用了--proto_path参数,如下所示

C:\shekhar\proto_trial>protoc 
                       --proto_path=C:\shekhar\proto_trial 
                       --java_out=C:\shekhar\proto_trial\java_op 
                       *.proto

但我收到了以下错误

message.proto: File does not reside within any path specified using --proto_path (or -I). 
You must specify a --proto_path which encompasses this file. 
Note that the proto_path must be an exact prefix of the .proto file names -- protoc is too dumb to figure out when two paths (e.g. absolute and relative) are equivalent (it's harder than you think).

请建议一些方法将所有原型文件一起编译。

6 个答案:

答案 0 :(得分:15)

问题在于您将--proto_path指定为绝对路径,但将proto文件指定为相对路径。您可以删除--proto_path参数(无论如何都默认为当前目录),或者您可以执行以下操作:

protoc --proto_path=C:\shekhar\proto_trial
       --java_out=C:\shekhar\proto_trial\java_op
       C:\shekhar\proto_trial\*.proto

答案 1 :(得分:1)

从此链接https://github.com/google/protobuf/releases/tag/v3.3.0

下载编译器的Windows版本

从下载的应用程序的bin文件夹启动命令提示符。使用potoc命令生成类。

    protoc --proto_path=<Directory name where your proto file is residing> 
           --java_out=<Directory name where you want your output classes to get generated> 
           <absolute path of your protofile with extention>

对多个原型文件使用野生字符*

答案 2 :(得分:1)

Protobuf的命令> = 3.5

在我看来,Windows上的常规命令仅适用于Protobuf <= 3.4,在较新的版本中,您不能使用通配符*,但必须将所有文件名分开放置。幸运的是,使用for循环(来自here)和相对目录仍然很容易:

for /f %i in ('dir /b proto_trial\*.proto') do protoc proto_trial\%i --java_out=proto_trial\java_op

或者,从here开始,如果您已经安装了Git Bash,也可以尝试使用它,因为它可以正确地扩展通配符,然后像以前一样使用命令:

protoc proto_trial\*.proto --java_out=proto_trial\java_op

答案 3 :(得分:1)

这是使用查找的选项

protoc --js_out=js \
        -Iproto/ \
        $(find proto/google -iname "*.proto")

答案 4 :(得分:0)

最简单的方法:

protoc C:\shekhar\proto_trial\*.proto --java_out=C:\shekhar\proto_trial\java_op

答案 5 :(得分:0)

查找。名称“ * .proto” | xargs -I {}协议“ {}”