Skip to content

sukolenvo/protoc-gen-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

Helper protoc plugin to clean unused messages from protobuf. Prints out orphan messages and enums that are not used by services.

Sample usage:

protoc --checker_out="." -I . --checker_opt=language_package=java proto/events.proto

Go package is used to resolve file to package mapping. Alternatively you can use java package or proto package by using option langauge_package. E.g.:

protoc --checker_out="." -I . --checker_opt=language_package=java proto/events.proto

Packages can be excluded from with ignore_package param. Messages can be excluded with ignore_message parame:

protoc --checker_out="." -I . --checker_opt=ignore_package=google,ignore_message=foo.Bar proto/events.proto

Check all proto files in directory oneliner:

protoc --checker_out="." -I . $(find . -name "*.proto" |tr '\n' ' ')

Install

wget https://github.com/sukolenvo/protoc-gen-checker/releases/download/v1.0.0/protoc-gen-checker
chmod +x protoc-gen-checker
# move to the PATH e.g mv protoc-gen-checker /usr/local/bin/
# or use -plugin param e.g protoc --plugin="./protoc-gen-checker" ...

About

Protoc plugin to check for unused message.

Resources

Stars

Watchers

Forks

Packages

No packages published