Re: [go-nuts] Re: binary protocols code generators (parser/writer/validator/[de]serializer)

2019-01-14 Thread Robert Engels
He stated that protobufs would only be 50% for existing formats... no need to pounce. On Jan 14, 2019, at 4:04 AM, Dmitry Ponyatov wrote: >> Protocol Buffers springs to mind. > > Totally wrong. Protocol Buffers unable to parse TIFF or STEP file. > > -- > You received this message because

[go-nuts] Re: binary protocols code generators (parser/writer/validator/[de]serializer)

2019-01-14 Thread Ronny Bangsund
Protocol Buffers springs to mind. It's a compact binary protocol with predefined field order, allowing you to skip unused fields and maintain backwards compatibility. You could probably use it as a storage format too. It's not in the Lex/Yacc territory, but it DOES generate all the code you

[go-nuts] Re: binary protocols code generators (parser/writer/validator/[de]serializer)

2019-01-13 Thread Dmitry Ponyatov
- https://www.protlr.com/example - https://kaitai.io - http://www.icsi.berkeley.edu/pubs/networking/binpacIMC06.pdf What else with good tutorials included? Arbitrary bitwidth fields and endianness support are required. The first application candidates are - full-featured