Scala protocol buffers compiler -
I was thinking of writing a code generator to generate scale from the Google Protoff definition file. Because of this, I consider it valuable. Java bind is also java-ish and can do a lot better in a scala. For example, the following definitions
message foo {required int f1 = 1; Repeated string F2 = 2; Message internal (expected int F3 = 1;)}
I want to be able to create protozy objects from Scala like this:
val Foo = Foo (F1 (127), F2 ("first", "second"), inner (F3 (911))
My question is if any Already knows something with these lines, or if you do not find it eligible to start a new project?
I currently present a Scala protocol buffers compiler with one of my mentors Victor Klang. This is my Google Summer Off Code Project and you can follow the progress of Gitub.
[Update] The main part is completed; I still need to implement the extension, group and field option support. It is usable and I invite everyone to invite and respond to it; I am open to suggestions and feature requests.
Comments
Post a Comment