Difference between revisions of "ProtocolBuffer"

From Makers Local 256
Jump to: navigation, search
(page creation!)
 
(Overview: add a massive todo list, because i have only a base implementation atm)
Line 8: Line 8:
 
ProtocolBuffer is a D library encompassing the basic tools required to compile the .proto definition file into code and additional functions that are used by the resulting source file.
 
ProtocolBuffer is a D library encompassing the basic tools required to compile the .proto definition file into code and additional functions that are used by the resulting source file.
  
 +
==Todo==
 +
* support required elements (currently treated as optional)
 +
* support repeated elements
 +
* support options (includes defaults)
 +
* support unknown fields
 +
* support imports (yeah, I know, I'm lame for not already supporting this)
 +
* support extensions
 +
* support services
  
 
+
[[Category:Software]]
 
+
[[Category:Software]]                                                 <!--MAKE AS MANY CATEGORIES AS YOU NEED-->
+

Revision as of 19:47, 15 July 2009

Creator:
opticron
Status:
Early Implementation
Born On:
18:22, 15 July 2009 (CDT)
Last Updated:
19:47, 15 July 2009 (CDT)

Overview

ProtocolBuffer is a D library encompassing the basic tools required to compile the .proto definition file into code and additional functions that are used by the resulting source file.

Todo

  • support required elements (currently treated as optional)
  • support repeated elements
  • support options (includes defaults)
  • support unknown fields
  • support imports (yeah, I know, I'm lame for not already supporting this)
  • support extensions
  • support services