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

2015-07-25 Thread Michael Haberler
one of the key advantages of nanob is - it can get by without malloc/free support meaning it can live in very restricted environments like embedded/bare metal or even in-kernel, which explains some of the API choices - Michael ~ David. On 7/25/15 12:40 AM, Michael Haberler wrote: Hi David

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 predictivestatm...@gmail.com: 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

Re: [protobuf] XML to Protocol Buffers converter

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

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 xiaof...@google.com: 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

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 xiaof...@google.com: 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

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

2014-04-23 Thread Michael Haberler
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 receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To post to this group, send email

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 bindings,

Re: [protobuf] pb2 / json conversion and back

2013-06-12 Thread Michael Haberler
20:42 schrieb Michael Haberler mai...@mah.priv.at: 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

[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

[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] 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)

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 anibal.cheha...@gmail.com: 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

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

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

2013-04-08 Thread Michael Haberler
: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 procedure for FreeRTOS no I cant, because I dont have any FreeRTOS applications running here, but I dont see why nanopb would need

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

2013-04-07 Thread Michael Haberler
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 - Michael Am Donnerstag, 4. April 2013 07:34:32 UTC

[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

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