使用工具生成 Protocol 易讀文件

xinliang發表於2022-01-21

前言

通過 .proto 檔案能否生成更易閱讀 HTML 文件?

關於這個問題,我找到了一個外掛,給大家分享一下。

protoc-gen-doc

protoc-gen-doc This is a documentation generator plugin for the Google Protocol Buffers compiler (protoc). The plugin can generate HTML, JSON, DocBook and Markdown documentation from comments in your .proto files.

安裝

go get -u github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc

使用

--doc_out=helloworld/doc \
--doc_opt=html,index.html

演示

以上篇文章 helloworld.proto 為例。

// 使用的 protoc --version 為 libprotoc 3.18.1
// 使用的 protoc-gen-go --version 為 protoc-gen-go v1.27.1
// 使用的 protoc-gen-go-grpc --version 為 protoc-gen-go-grpc 1.1.0
// 使用的 protoc-gen-doc --version 為 protoc-gen-doc version 1.5.0
// 在根目錄下執行 protoc 命令
protoc \
--go_out=helloworld/gen \
--go-grpc_out=helloworld/gen \
--doc_out=helloworld/doc \
--doc_opt=html,index.html \
helloworld/helloworld.proto

protoc-image

同理,也可生成 JSONMarkdown 文件,去試試吧。

小結

以上,希望對你能夠有所幫助。

你用過哪些好用的 protoc 外掛?歡迎留言評論 ~

推薦閱讀

本作品採用《CC 協議》,轉載必須註明作者和本文連結
日拱一卒

相關文章