Difference between revisions of "ProtocolBuffer"

From Makers Local 256
Jump to: navigation, search
m (Todo: default is now implemented for required and optional types and throws an error on repeated types)
m (status tweak)
 
(14 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 7: Line 7:
 
==Overview==
 
==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 [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.
 
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==
* do accessors properly and correct function names (and add additional functions)
+
* compiler command line option support
* implement message merging (it already works on the bytestream level, so I may just use that, even though it is less efficient)
+
* proper option support
* support options
+
* support groups (unlikely, since they are deprecated)
** packed is only supported on repeated fields of a primitive type
+
** deprecated is supported on optional and repeated types
+
** for now, I will only support options which I know something about, others will throw exceptions or I may lob them into a structure
+
* support imports (yeah, I know, I'm lame for not already supporting this)
+
* support extensions (this is going to suck)
+
 
* support services (this may not happen at all)
 
* support services (this may not happen at all)
  
 
[[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)