protoc 命令的获得

下载后的解压缩包含的内容如下(以mac下为例)

我们通过 which 命令可以查到 protoc 的安装目录, 覆盖它即可。

$ which protoc

/usr/local/bin/protoc

This package contains a precompiled Win32 binary version of the protocol buffer

compiler (protoc).  This binary is intended for Windows users who want to

use Protocol Buffers in Java or Python but do not want to compile protoc

themselves.  To install, simply place this binary somewhere in your PATH.

This binary was built using MinGW, but the output is the same regardless of

the C++ compiler used.

You will still need to download the source code package in order to obtain the

Java or Python runtime libraries.  Get it from:

https://github.com/google/protobuf/releases/

命令参数

$ protoc -help

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.

--dependency_out=FILE       Write a dependency output file in the format

expected by make. This writes the transitive

set of input file paths to FILE

--error_format=FORMAT       Set the format in which to print errors.

FORMAT may be 'gcc' (the default) or 'msvs'

(Microsoft Visual Studio format).

--print_free_field_numbers  Print the free field numbers of the messages

defined in the given proto files. Groups share

the same field number space with the parent

message. Extension ranges are counted as

occupied fields numbers.

--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.

--csharp_out=OUT_DIR        Generate C# source file.

--java_out=OUT_DIR          Generate Java source file.

--javanano_out=OUT_DIR      Generate Java Nano source file.

--js_out=OUT_DIR            Generate JavaScript source.

--objc_out=OUT_DIR          Generate Objective C header and source.

--python_out=OUT_DIR        Generate Python source file.

--ruby_out=OUT_DIR          Generate Ruby source file.

例子

Java 文件生成

$ protoc --java_out=./java/ ./proto/helloworld.proto

protoc 的命令格式为 protoc [OPTION] PROTO_FILES   (最后是待编译的 proto文件)

--java_out 为输出java代码的目录,这里指定的是 ./java/ 目录。

随后我们指定了proto文件的位置 ./proto/helloworld.proto 。

执行上述命令,我们就 ./java/ 目录下就产生了对应的 java文件。

go 文件生成

下面这几种方式生成都可以:

$ protoc --go_out=./go/ ./proto/helloworld.proto

跟上面Java的生成完全一样,只不过这次是让生成 go 的代码。

$ protoc --go_out=./go/ -I proto ./proto/helloworld.proto

这次多了一个参数 -I , -I=IMPORT_PATH  can be used as a short form of --proto_path.

-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.

IMPORT_PATH specifies a directory in which to look for .proto files when resolving import directives. If omitted, the current directory is used. Multiple import directories can be specified by passing the --proto_path option multiple times; they will be searched in order.

简单来说,就是如果多个proto文件之间有互相依赖,生成某个proto文件时,需要import其他几个proto文件,这时候就要用-I来指定搜索目录。

如果没有指定 –I 参数,则在当前目录进行搜索。

上面两种方法产生的目录如下图, –I 参数起作用了后,生成目录少了一级:

javanano 文件生成

$ protoc --javanano_out=ignore_services=true:./javanano/ -I proto ./proto/garlic.proto

由于 javanano 是给 android 用的,没有服务器端代码,所以多了--javanano_out=ignore_services=true:DST_DIR 这个设置,其他完全一样。

更复杂的可以参考:

为了更方便的使用gRPC,包括protoc的命令,针对不同语言有下面额外的方法: Language Platform Command

Node.js Linux, Mac, Windows npm install grpc

Python Linux, Mac, Windows pip install grpcio

Ruby Linux, Mac, Windows gem install grpc

PHP Linux, Mac, Windows pecl install grpc-beta

Go Linux, Mac, Windows go get google.golang.org/grpc

Objective-C Mac Runtime source fetched automatically from Github by Cocoapods

C# Windows Install gRPC NuGet package from your IDE (Visual Studio, Monodevelop, Xamarin Studio)

Java Linux, Mac, Windows

C++ Linux, Mac, Windows

参考资料:

protoc支持c_protoc 命令参数相关推荐

  1. HDFS命令行客户端使用,命令行客户端支持的命令参数,常用命令参数介绍

    3.HDFS的shell(命令行客户端)操作 3.1 HDFS命令行客户端使用 HDFS提供shell命令行客户端,使用方法如下: [toto@hadoop hadoop-2.8.0]$ hdfs d ...

  2. protoc 命令参数

    protoc 命令的获得 源码在 https://github.com/google/protobuf , 如果不想自己编译获得最新版本,则可以下载官方编译好的各个平台的,下载地址:https://g ...

  3. xtrabackup之innobackupex命令参数

    innobackupex命令参数解析 --defaults-file 同xtrabackup的--defaults-file参数; --apply-log 对xtrabackup的--prepare参 ...

  4. Linux mail 命令参数

    linux mail 命令参数: 使用mail发邮件时,必须先将sendmail服务启动. mail –s "邮件主题" –c"抄送地址" –b "密 ...

  5. JVM 调优实战--常用命令参数及PS收集器的GC日志格式

    目录 了解JVM常用命令行参数 Parallel Scavenge(PS)的GC日志格式 了解JVM常用命令行参数 JVM的命令行参数参考:https://docs.oracle.com/javase ...

  6. linux ifconfig命令参数及用法详解--linux查看配置网卡命令

    ifconfig 是一个用来查看.配置.启用或禁用网络接口的工具,这个工具极为常用的.可以用这个工具来临时性的配置网卡的IP地址.掩码.广播地址.网关等.也可以把 它写入一个文件中(比如/etc/rc ...

  7. linux编程参数列表,Linux编程 14 文件权限(用户列表passwd,用户控制shadow,useradd模板与useradd命令参数介绍)...

    一. 概述 linux安全系统的核心是用户账户. 创建用户时会分配用户ID(UID). UID是唯一的,但在登录系统时不是用UID,而是用登录名.在讲文件权限之之前,先了解下linux是怎样处理用户账 ...

  8. Linux | 编译原理、gcc的命令参数、自动化构建工具 make/Makefile

    文章目录 编译原理 预处理 编译 汇编 链接 gcc的常用命令参数 make 和 Makefile 的概念 make的运行 通配符 自动化变量 伪目标.PHONE:[命令] 编译原理 在解释 make ...

  9. HDFS的简介及基本操作(常用的命令参数介绍)

    目录 前言: 1.HDFS基本概念 2.HDFS基本操作 总结: 目录 前言: 总算有空来接着写大数据的学习笔记了,今天就把之前学过的HDFS的基础知识详细的介绍一下,如有哪点写的不足希望大家多多指教 ...

最新文章

  1. Linux学习4之常用命令--文件搜索命令
  2. 你不得不知的Safari 4
  3. Cloud for Customer手机应用的deviceready事件是何时何处被抛出的
  4. C#之SqlDependency数据库缓存
  5. 2.PHP7内核剖析 --- SAPI
  6. wordpress主题实现彩色标签云效果
  7. axis1 c# 接口 调用_C#图形编程GDI+基础
  8. 世界中英文国家及国家代码
  9. MySQL窗口函数 DENSE_RANK函数
  10. Powershell添加英文输入法
  11. 期货交易中期货公司和柜台的基础知识
  12. linux修改配置文件configure,./configure 的配置和用法
  13. Excel按数字大小排序
  14. Win10安装cuda10.1总是出错!别着急重装,看这篇文章
  15. cpu占用突然到百分百又降下去_CPU占用百分百是怎么回事?
  16. 如何“反脆弱”的过好一个程序员的低碳生活
  17. 单片机定时器精准定时_如何确保单片机精确定时控制有哪些编程方法详细说明...
  18. 利用Hive进行数据分析
  19. 显示器偏色测试软件,电脑显示器偏色怎么调?电脑显示器偏色校正方法(2)
  20. 打击预防电信诈骗宣传推广PPT模板

热门文章

  1. Python使用PIL将png图片转化为jpg图片
  2. 机器学习中过拟合、欠拟合与方差、偏差的关系是什么?
  3. 对偶问题(dual problem)
  4. 影像组学视频学习笔记[44(End)]-带95%置信区间的折线图、Li‘s have a solution and plan.
  5. agv调度matlab程序,一种分布式AGV调度方法及调度系统与流程
  6. 全长转录组之基因和转录本鉴定
  7. JAVA基础9-封装(3)
  8. 中科大计算机专硕英语,211科班一战394上岸中科大软院专硕2021
  9. igraph 算网络指标_量化投资中,计算技术指标时常见的8个坑
  10. fbx 转 gltf glb 文件