Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 564 Bytes

Readme.md

File metadata and controls

14 lines (8 loc) · 564 Bytes

#Fieldpath

Build Status

pbpath, is a debugging tool, which allows you to stringify a marshaled protocol buffer on the command line. pbpath does not have the protocol buffer definitions compiled in and makes extensive use of the fieldpath library.

A typical example:

cat marshalled.dat | pbpath -D=desc.out mypackage.MyMarshaledMessage

The desc.out file can be created with protoc as such:

protoc --descriptor_set_out=desc.out --include_imports mymessage.proto