protoc 指令介绍

protoc 指令介绍

protoc 指令使用示例:

1
protoc [参数] .proto文件路径

使用 protoc 指令讲 .proto 文件编译成 .java 文件的简单使用如下

1
protoc --java_out=./ /path_to_proto_file/Demo.proto

protoc 指令参数翻译如下

注意: protoc 对文件路径不敏感,所有参数中的路径,必须是绝对路径

-I[PATH], –proto_path=[PATH]: 指定 import 修饰符扫描文件夹;可以指定多次,被指定的文件夹将按照先后制定顺序被扫描;如果没有指定,将使用当前文件夹作为扫描文件夹

注意: 这里的[PATH]必须是绝对路径

–version: 查看 protoc 指令版本


-h, –help: 查看帮助文档


–encode=MESSAGE_TYPE


–decode=MESSAGE_TYPE

–decode_raw

-o[FILE], –descriptor_set_out=[FILE]

–include_imports

–include_source_info

–error_format


–java_out=[PATH]: 指定生成的java文件的输出文件夹

注意 .proto 文件中如果指定了 java_package, 会在输出文件夹中创建java 的package


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
➜  ~ : ✗ protoc -h
Usage: protoc [OPTION] PROTO_FILES
Parse PROTO_FILES and generate output based on the options given:
-IPATH, --proto_path=PATH Specify the directory in which to search for
imports. May be specified multiple times;
directories will be searched in order. If not
given, the current working directory is used.
--version Show version info and exit.
-h, --help Show this text and exit.
--encode=MESSAGE_TYPE Read a text-format message of the given type
from standard input and write it in binary
to standard output. The message type must
be defined in PROTO_FILES or their imports.
--decode=MESSAGE_TYPE Read a binary message of the given type from
standard input and write it in text format
to standard output. The message type must
be defined in PROTO_FILES or their imports.
--decode_raw Read an arbitrary protocol message from
standard input and write the raw tag/value
pairs in text format to standard output. No
PROTO_FILES should be given when using this
flag.
-oFILE, Writes a FileDescriptorSet (a protocol buffer,
--descriptor_set_out=FILE defined in descriptor.proto) containing all of
the input files to FILE.
--include_imports When using --descriptor_set_out, also include
all dependencies of the input files in the
set, so that the set is self-contained.
--include_source_info When using --descriptor_set_out, do not strip
SourceCodeInfo from the FileDescriptorProto.
This results in vastly larger descriptors that
include information about the original
location of each decl in the source file as
well as surrounding comments.
--error_format=FORMAT Set the format in which to print errors.
FORMAT may be 'gcc' (the default) or 'msvs'
(Microsoft Visual Studio format).
--plugin=EXECUTABLE Specifies a plugin executable to use.
Normally, protoc searches the PATH for
plugins, but you may specify additional
executables not in the path using this flag.
Additionally, EXECUTABLE may be of the form
NAME=PATH, in which case the given plugin name
is mapped to the given executable even if
the executable's own name differs.
--cpp_out=OUT_DIR Generate C++ header and source.
--java_out=OUT_DIR Generate Java source file.
--python_out=OUT_DIR Generate Python source file.