Re: [protobuf] Protobuf Buffers v3.0.0-alpha-1

2014-12-11 Thread Michael Haberler
Hallo Feng, > Am 11.12.2014 um 05:51 schrieb Feng Xiao : > > Hi all, > > I just published protobuf v3.0.0-alpha-1 on our github site: > https://github.com/google/protobuf/releases/tag/v3.0.0-alpha-1 a question on structuring web applications further downstream: you mention node.js and JSON

Re: [protobuf] gRPC: Google's RPC framework that works with Protocol Buffers

2015-03-12 Thread Michael Haberler
Feng, > Am 11.03.2015 um 02:08 schrieb Feng Xiao : > > In case you are not yet aware of: Google has open-sourced its own RPC > framework, named gRPC, about two weeks ago. > > gRPC website: http://www.grpc.io/ > > It's basically Google's official RPC implementation for Protocol Buffers (in > p

Re: [protobuf] XML to Protocol Buffers converter

2015-07-16 Thread Michael Haberler
> Am 16.07.2015 um 11:52 schrieb Aravinth Veeramuthu > : > > How to convert the XML data into the Protocol buffer format in c++??? https://github.com/search?utf8=%E2%9C%93&q=xml+protobuf&ref=simplesearch > > -- > You received this message because you are subscribed to the Google Groups > "

Re: [protobuf] Yet Another Protocol Buffers Implementation for C

2015-07-24 Thread Michael Haberler
Hi David, > Am 23.07.2015 um 22:47 schrieb David Rogers : > > sprotoc - short for stack protocol buffer compiler is a C-code generator for > protocol buffers. > It lives at: https://github.com/frobnitzem/sprotoc > > I coded it up a year ago and have been using it happily since. > What makes it

Re: [protobuf] Yet Another Protocol Buffers Implementation for C

2015-07-25 Thread Michael Haberler
functions. I > don't know if nanopb does this, but some implementations do. > > Hope that helps, not yet, as I do not fully understand the point you are making Is the type/name specific per-field/per-message accessors? I note one of the key advantages of nanob is - it can get b

Re: [protobuf] multiple different protobuf messages in a socket

2015-08-23 Thread Michael Haberler
If you are looking to tag messages with a type id, which protobuf has no native support for - this is what we've done: we tag each message with an option which stores the type id like so: https://github.com/mhaberler/machinetalk-protobuf/blob/master/proto/object.proto#L15, those are manually a

[protobuf] Re: Running Google Protocol Buffers on a RTOS

2013-04-05 Thread Michael Haberler
Hi, I would suggest looking into nanopb: http://code.google.com/p/nanopb/ It has minimal platform dependencies and actually runs fine within the Linux kernel if needed - Michael Am Donnerstag, 4. April 2013 07:34:32 UTC+2 schrieb Raghavendra Hegde: > > Hi, > > I would like to build Google pr

Re: [protobuf] Running Google Protocol Buffers on a RTOS

2013-04-05 Thread Michael Haberler
Am 04.04.2013 um 07:34 schrieb Raghavendra Hegde: > Hi, > > I would like to build Google protocol buffer on FreeRTOS. > > Please let me know, is there any way to build GPB on RTOS. I would suggest nanopb - http://koti.kapsi.fi/jpa/nanopb/ It has minimal platform requirements and even works

Re: [protobuf] Running Google Protocol Buffers on a RTOS

2013-04-07 Thread Michael Haberler
; > -Raghu > > On Friday, 5 April 2013 14:45:33 UTC+5:30, Michael Haberler wrote: > Hi, > > I would suggest looking into nanopb: http://code.google.com/p/nanopb/ > > It has minimal platform dependencies and actually runs fine within the Linux > kernel if needed >

Re: [protobuf] Running Google Protocol Buffers on a RTOS

2013-04-07 Thread Michael Haberler
ment. > > Could please provide info on this? > > -Raghu > On Monday, 8 April 2013 10:48:22 UTC+5:30, Michael Haberler wrote: > > Am 08.04.2013 um 07:05 schrieb Raghavendra Hegde: > > > Hi, > > > > It would be great, if you can provide the compilation pr

Re: [protobuf] proto to JSON/XML convertion library for C/C++

2013-04-10 Thread Michael Haberler
there's https://github.com/renenglish/pb2json which does protobuf->json but not vice versa there are several Python bidirection converters from which you can glean how to do the missing direction let me know when you're done ;) - Michael Am 10.04.2013 um 14:28 schrieb Giri Guntipalli: > hi a

Re: [protobuf] is protobuf the right choice in this case?

2013-04-22 Thread Michael Haberler
Am 20.04.2013 um 14:17 schrieb balche8 : > > Hi all, > > I'm working on a project that involves two layers: one is written in C++ and > the other one in Javascript. The C++ layer contains the model of the > application in form of a tree in a similar way as HTML does (nothing really > complic

Re: [protobuf] Issue 515 in protobuf: More intelligent enums

2013-05-27 Thread Michael Haberler
Am 27.05.2013 um 22:07 schrieb proto...@googlecode.com: > Status: New > Owner: liuj...@google.com > Labels: Type-Defect Priority-Medium > > New issue 515 by peterhan...@yahoo.com: More intelligent enums > http://code.google.com/p/protobuf/issues/detail?id=515 > > (this is a RFE, not a defect) >

[protobuf] proto -> .c/.cc/.h/.py dependencies & Makefiles

2013-05-28 Thread Michael Haberler
curious - how would one best handle dependencies in Makefiles between .proto files, other .proto references and the build artefacts? the only way I see so far is manual dependency tracking or am I overlooking some tool/tool option to generate those with say 'gcc -MD' ? - Michael -- You re

[protobuf] pb2 / json conversion and back

2013-06-11 Thread Michael Haberler
this code does pb2json conversion and back; repeated message handling in json2pb is still WIP but the rest works fine: https://github.com/shramov/pb2json I've contacted the original author (renenglish) to clarify the license status - Michael -- You received this message because you are subscr

Re: [protobuf] pb2 / json conversion and back

2013-06-12 Thread Michael Haberler
06.2013 um 20:42 schrieb Michael Haberler : > this code does pb2json conversion and back; repeated message handling in > json2pb is still WIP but the rest works fine: > > https://github.com/shramov/pb2json > > I've contacted the original author (renenglish) to clarify

Re: [protobuf] python proto optimizations

2014-02-28 Thread Michael Haberler
Am 27.02.2014 um 01:11 schrieb patr...@dropbox.com: > Hey guys, > > > I wrote two different patches which optimize python proto performance. Both > patches are running in production at Dropbox. I would love to see these patches being reintegrated. Q: what is the relation to Python C bindi

[protobuf] time to fork a community-supported protobuf?

2014-04-23 Thread Michael Haberler
ny relying on this. I'd think there's a large enough user base behind this to make such an effort viable. - Michael Haberler -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receivin

[protobuf] Re: zeromq, protobuf rpc

2014-05-22 Thread Michael Haberler
This might be interesting in case you haven't already seen it: https://code.google.com/p/rpcz/ On Friday, May 16, 2014 6:21:57 AM UTC+2, Alexandru Toader wrote: > > Hello, > I am interested in using the same setup. Has anyone found any maintained > plugin that supports RPC over ZeroMQ? > > Ale