Program for documenting a C struct? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:39:31Z http://stackoverflow.com/feeds/question/369793 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/369793/program-for-documenting-a-c-struct 2 Program for documenting a C struct? ojw 2008-12-15T21:37:11Z 2008-12-17T14:20:41Z <p>If you have a binary file format (or packet format) which is described as a C structure, are there any programs which will parse the structure and turn it into neat documentation on your protocol?</p> <p>The struct would of course contain arrays, other structures, etc., as necessary to describe the format. The documentation would probably need to include things like packing, endianness, etc.</p> http://stackoverflow.com/questions/369793/program-for-documenting-a-c-struct/369812#369812 2 Answer by Adam Rosenfield for Program for documenting a C struct? Adam Rosenfield 2008-12-15T21:45:46Z 2008-12-15T21:45:46Z <p><a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">Doxygen</a> is a commonly-used <strong>doc</strong>umentation <strong>gen</strong>erator. However, if you want to get useful documentation, you'll probably have to mark up your structure definitions with doc comments.</p> http://stackoverflow.com/questions/369793/program-for-documenting-a-c-struct/369814#369814 4 Answer by JaredPar for Program for documenting a C struct? JaredPar 2008-12-15T21:46:39Z 2008-12-15T21:46:39Z <p>Maybe you should think about this a different way. </p> <p>"Can I create a documentation format for my packet for which I can generate a C struct?" </p> <p>Consider for example using XML to define the packet structure and add elements for comments and so forth. It wil be fairly easy to write a simple program that transformed it into an actual C structure</p> http://stackoverflow.com/questions/369793/program-for-documenting-a-c-struct/369868#369868 0 Answer by ojw for Program for documenting a C struct? ojw 2008-12-15T22:07:52Z 2008-12-15T22:07:52Z <p>as JaredPar says, an alternate phrasing of this question is:</p> <blockquote> <p>"What is a good method for describing binary structures?</p> <p>e.g. something like <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Augmented_Backus%E2%80%93Naur_Form" rel="nofollow">ABNF</a> but capable of doing bit-packing, endianness, etc. </p> <p>preferably there would be existing tools to generate not just documentation, but C headers, <a href="http://perldoc.perl.org/functions/pack.html" rel="nofollow">unpack</a> or <a href="http://www.python.org/doc/2.5.2/lib/module-struct.html" rel="nofollow">struct</a> patterns, and validation tools based on the description" </p> </blockquote> http://stackoverflow.com/questions/369793/program-for-documenting-a-c-struct/369915#369915 0 Answer by ojw for Program for documenting a C struct? ojw 2008-12-15T22:28:57Z 2008-12-15T22:28:57Z <p>Of course, if such a thing existed, it would be used to write <a href="http://www.wireshark.org/docs/wsdg_html_chunked/ChDissectAdd.html" rel="nofollow">protocol dissectors</a> for WireShark - the fact that each dissector is implemented in C code implies that it's difficult to express binary formats in a generic way</p> http://stackoverflow.com/questions/369793/program-for-documenting-a-c-struct/369922#369922 0 Answer by John W for Program for documenting a C struct? John W 2008-12-15T22:29:44Z 2008-12-15T22:29:44Z <p>If you know perl you can try playing with Jeeves:</p> <p><a href="https://www.rodhughes.com/perl/advprog/examples/Jeeves/" rel="nofollow">https://www.rodhughes.com/perl/advprog/examples/Jeeves/</a></p> <p>(This source is there; I assume it's all right to use. ;) )</p> <p>I'm trying to work out something similar to what you need: a parser for structured binary data. I'm looking to Jeeves to output parsing classes in C++ from a meta format. The default parser for Jeeves allows for adding additional tags to each member of a class definition. This would let you automatically include information about endianness, alignment, etc. in comments within your classes (and, of course, implement them in your code).</p> http://stackoverflow.com/questions/369793/program-for-documenting-a-c-struct/374661#374661 0 Answer by plan9assembler for Program for documenting a C struct? plan9assembler 2008-12-17T14:20:41Z 2008-12-17T14:20:41Z <p><a href="http://www-cs-faculty.stanford.edu/~knuth/cweb.html" rel="nofollow">http://www-cs-faculty.stanford.edu/~knuth/cweb.html</a></p> <p>HTH</p>