Difference between revisions of "ProtocolBuffer"

From Makers Local 256
Jump to: navigation, search
(Todo: now supports repeated elements!)
m (status tweak)
 
(22 intermediate revisions by one user not shown)
Line 1: Line 1:
 
{{Project|Creator=opticron
 
{{Project|Creator=opticron
|Status=<onlyinclude> Early Implementation </onlyinclude>                                <!--LEAVE ONLYINCLUDES FOR STATUS HACK-->  
+
|Status=<onlyinclude> Mid Implementation </onlyinclude>                                <!--LEAVE ONLYINCLUDES FOR STATUS HACK-->  
 
|Born On=18:22, 15 July 2009 (CDT)                                                                  <!--DO NOT EDIT -->
 
|Born On=18:22, 15 July 2009 (CDT)                                                                  <!--DO NOT EDIT -->
 
|Last Updated={{#time: H:i, d F Y| {{REVISIONTIMESTAMP}} }} (CDT)              <!--DO NOT EDIT -->
 
|Last Updated={{#time: H:i, d F Y| {{REVISIONTIMESTAMP}} }} (CDT)              <!--DO NOT EDIT -->
Line 6: Line 6:
  
 
==Overview==
 
==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.
+
ProtocolBuffer is a D library encompassing the basic tools required to compile .proto definition files into code and additional functions that are used by the resulting source file.  The [http://opticron.no-ip.org/svn/branches/ProtocolBuffer backend library] is separated from the [http://opticron.no-ip.org/svn/branches/PBCompiler definition compiler] for now, but those may merge in the future.
 +
 
 +
==Options==
 +
At the moment, only a handful of options are supported and all others will be ignored.  Options are not currently accessible at runtime.  Supported options are packed, deprecated, and default.
 +
 
 +
==Extensions==
 +
Extensions are supported via a slightly modified syntax.  The following code snippet retrieves the bar extension from the foo message:
 +
foo.GetExtension!(bar);
 +
This code snippet sets bar:
 +
foo.SetExtension!(bar)(8675309);
 +
Yes, it's different from other implementations, but I wasn't able to implicitly specialize template functions on a constant given available language constructs.
  
 
==Todo==
 
==Todo==
* support options (includes defaults)
+
* compiler command line option support
* support unknown fields
+
* proper option support
* support imports (yeah, I know, I'm lame for not already supporting this)
+
* support groups (unlikely, since they are deprecated)
* support extensions
+
* support services (this may not happen at all)
* support services
+
  
 
[[Category:Software]]
 
[[Category:Software]]

Latest revision as of 15:44, 8 January 2010

Creator:
opticron
Status:
Mid Implementation
Born On:
18:22, 15 July 2009 (CDT)
Last Updated:
15:44, 08 January 2010 (CDT)

Overview

ProtocolBuffer is a D library encompassing the basic tools required to compile .proto definition files into code and additional functions that are used by the resulting source file. The backend library is separated from the definition compiler for now, but those may merge in the future.

Options

At the moment, only a handful of options are supported and all others will be ignored. Options are not currently accessible at runtime. Supported options are packed, deprecated, and default.

Extensions

Extensions are supported via a slightly modified syntax. The following code snippet retrieves the bar extension from the foo message:

foo.GetExtension!(bar);

This code snippet sets bar:

foo.SetExtension!(bar)(8675309);

Yes, it's different from other implementations, but I wasn't able to implicitly specialize template functions on a constant given available language constructs.

Todo

  • compiler command line option support
  • proper option support
  • support groups (unlikely, since they are deprecated)
  • support services (this may not happen at all)