Protobuf 文件生成工具 Prototool 命令詳解
簡介
Prototool 是 Protobuf 文件的生成工具, 目前支持go, php, java, c#, object c 五種語言包的生成.
詳情參考Github: https://github.com/uber/prototoolphp
docker
方式使用 prototool
工具
- 使用方式
// prototool 的使用 docker run --rm -v $(pwd):/work "uber/prototool" prototool // 格式化 proto 文件 docker run --rm -v $(pwd):/work "uber/prototool" prototool format -l proto // 編譯, 格式化, 覆蓋 proto 文件 docker run --rm -v $(pwd):/work "uber/prototool" prototool all proto
docker
方式建立proto
文件
docker run --rm -v $(pwd):/work "uber/prototool" prototool create test.proto
Prototool
部分命令參數簡單介紹
prototool lint [目錄]
遞歸的查找全部後綴爲 .proto
的文件, 可是不包括 prototool.yaml
和 prototool.json
文件.java
prototool lint testdir
注: 不設置目錄, 則默認爲當前目錄. eg: prototool lint .
git
prototool create [test.proto]
建立一個 proto
的模板文件github
$ prototool create test.proto
prototool files [目錄]
列出要被使用的全部 proto
文件docker
$ prototool files testdir
prototool compile [目錄]
編譯目錄下全部的 proto
文件json
$ prototool compile testdir
prototool generate [目錄]
生成 stubs
文件c#
$ prototool generate testdir
prototool
幫助文檔
查看幫助文檔, 這裏詳細介紹了命令的使用方式.工具
$ prototool -h