Re: [protobuf] Is it possible to use upb natively ?

2024-02-09 Thread 'Eric Salo' via Protocol Buffers
implementations to build in non-bazel environments. We would love to get rid of it someday and when we do there will be no warning - it will simply vanish. - Eric On Fri, Feb 9, 2024 at 6:19 AM Dav-11 wrote: > Hello, > I am working on protobuf in C. > RN I am using pbtools (https://g

Re: [protobuf] Documentation about endianness support

2023-10-21 Thread 'Eric Salo' via Protocol Buffers
An integer sent from one machine to another will preserve its value regardless of the endianness of either machine. If you wish to attach additional semantic meaning to that integer by using it to encode an ipv4 address then you need to take the appropriate steps to translate the local value to

[protobuf] Protocol Buffers Version 24.0 is Released!

2023-08-09 Thread 'Eric Salo' via Protocol Buffers
This version includes the following non-breaking changes: Compiler - Drop support for Bazel 5. (fff4905 ) - Allow code generators to specify whether or not they support editions. (e2cec78

[protobuf] Protocol Buffers Version 23.3 is Released!

2023-06-14 Thread 'Eric Salo' via Protocol Buffers
This version includes the following non-breaking changes: *C++* - Use the same ABI for static and shared libraries on non-Windows platforms *UPB* (Python/PHP/Ruby C-Extension) - Fixed a bug in upb_Map_Delete() that caused crashes in map.delete(k) for Ruby when string-keyed maps

Re: [protobuf] Compatibility of protobuf with python 3.11x

2023-04-13 Thread 'Eric Salo' via Protocol Buffers
Hi Tushar - Our binary artifacts should work with 3.11. We use the "limited API" to get a stable ABI, so our binary releases should Just Work with 3.11, even though we don't release a 3.11-specific package. On Mon, Apr 10, 2023 at 9:27 AM 'Tushar Nachan' via Protocol Buffers <

[protobuf] Protocol Buffers Version 21.11 is Released!

2022-12-08 Thread 'Eric Salo' via Protocol Buffers
This version includes the following non-breaking changes: Python - Add license file to pypi wheels (#10936) - Fix round-trip bug (#10158) You can view the release on GitHub If you experience any issues with the release, please file a

[protobuf] Re: Missing libprotobuf-lited.a from lib | Release

2022-05-24 Thread Eric Pederson
Since this is an issue with Conan Center you should create an issue there: https://github.com/conan-io/conan-center-index/issues. On Tuesday, May 24, 2022 at 12:58:18 AM UTC-4 nitink...@gmail.com wrote: > Hi, > > I am trying to pull protobuf (3.20.0) library from conan.io center. > I am

[protobuf] Linking imported proto file to headers in CMakeLists.txt

2020-12-24 Thread Eric Smith
Based on a [HelloWorld][1] from grpc, I have created a project with my own proto file. This proto file also imports another proto file in the same directory: MainProto.proto: syntax = "proto3"; package MyProject; option csharp_namespace = "MyProject"; option optimize_for =

[protobuf] Re: Protobuf can't be found via cmake - Installation problem via cmake

2019-04-09 Thread Eric Li
just do the build the cmake to install the system's cmake environment 在 2019年4月9日星期二 UTC+8下午9:05:12,abdelrahman hamdy写道: > > More explanation for step 3 and 4 please? > > On Tuesday, April 9, 2019 at 2:59:22 PM UTC+2, Eric Li wrote: >> >> I have solve it. >> 1.e

[protobuf] Re: Protobuf can't be found via cmake - Installation problem via cmake

2019-04-09 Thread Eric Li
I have solve it. 1.enter the "protobuf/cmake/" dir. 2.mkdir build. protobuf/cmake/build 3.cmake .. 4.make && make install then the proobuf.cmake config will be installed in cmake's dir. 在 2019年4月9日星期二 UTC+8下午7:17:19,Yara Amin写道: > > did you solve it? im facing the same problem > > On Thursday,

[protobuf] Re: Protobuf can't be found via cmake - Installation problem via cmake

2019-03-21 Thread Eric Li
have you solved this problem? I see this ,but I can find the answer. 在 2018年5月24日星期四 UTC+8下午9:47:33,marma...@gmail.com写道: > > Hi everyone > I am trying to install a software which uses grpc, and which in turn needs > protobuf. > Everything is installed via cmake. > cmake version 3.11.2 >

[protobuf] Errors building Protobuf 3.5.1 with Visual Studio 2005

2018-05-29 Thread Eric Pederson
Hi all: I am trying to build Protobuf (3.5.1) using Visual Studio 2005 (I know, it's ancient, but we are stuck with it for now). I am getting these errors: Compiling... main.cc src\google/protobuf/stubs/hash.h(309) : error C2977: 'stdext::hash_map' : too many template arguments

[protobuf] Re: Multicast Sender/Receiver example with Jboss netty on UDP. Please provide an example code on JAVA

2017-06-07 Thread 'Eric So' via Protocol Buffers
+1 I want to see that as well. On Tuesday, January 28, 2014 at 3:07:35 AM UTC-8, Maninder Singh wrote: > > Please provide the example of protobuf+multicast-sender/receiver+UDP on > netty > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group.

[protobuf] Question / Proposal: Wrappers for handling signed & encrypted data

2016-02-19 Thread Eric Anderson
text and tags and stuff b = Foo() b.ParseString(msg)print b.c.baz## Whoops! Can't access encrypted data b.c.Decrypt(some keys)print b.c.baz## ok Is there anything like that out there? If not, are there any obvious barriers to implementing it? Does this seem useful to other people? Cheers,

[protobuf] Problem deserializing descriptor containing nested types

2013-07-19 Thread Eric McGraw
it out to no avail. Thanks in advance, -Eric -- 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

Re: [protobuf] implications of compiling protocol buffers without stl debugging info

2012-08-08 Thread Eric J. Holtman
On 8/8/2012 4:51 PM, Chris Morris wrote: I want to keep STL debugging *for the rest of my project*. This leads me to consider compiling the protocol buffers project without STL debugging info. What are the implications of this? Unless you are *very* careful, this is going to lead to

[protobuf] Re: Memory leaks in VS2008 using 2.4.1

2012-03-27 Thread Eric Holtman
On Mar 26, 7:41 pm, Eric J. Holtman e...@holtmans.com wrote: It's line 85 in parser.cc: const TypeNameMap kTypeNames = MakeTypeNameTable(); ... I'm really leaning towards it's an order of initialization problem at this point, and I might have to just eat the warnings, unless someone

[protobuf] Memory leaks in VS2008 using 2.4.1

2012-03-26 Thread Eric Holtman
I've tried building the library as static. I've tried building the library as dll. I've even gone so far as starting from scratch and building my own project, and including all the .cc and .h files. I cannot make the memory leaks on program exit go away. I am definitely calling

Re: [protobuf] Memory leaks in VS2008 using 2.4.1

2012-03-26 Thread Eric J. Holtman
On 3/26/2012 7:25 PM, Henner Zeller wrote: Can you drill down _what_ object is leaking ? In particular, did you narrow down that it is indeed protobufs that cause the leak ? You need to find the leaking object first, otherwise it is a bit hard do diagnose what is going on. I just finally

[protobuf] Re: New types?

2011-07-08 Thread Eric Hopper
On Jun 30, 10:16 am, Christopher Smith cbsm...@gmail.com wrote: You could always extend the compiler, but I bet you could get away with a simple preprocessor that aliases types and represents those larger integers as raw bytes. I guess. This is an interesting and general problem. Practically

[protobuf] Re: dynamic deserialize message in Python

2011-06-30 Thread Eric Hopper
On Jun 27, 12:33 pm, Ruslan Mullakhmetov tiaba...@gmail.com wrote: Hi    I'm trying to deserialize different protobuf messages in python. Is the any way to get message type from unserialized message?    Like dynamic message in cpp and java ? Presumably you're using the pattern where you

[protobuf] New types?

2011-06-30 Thread Eric Hopper
your own types for fields? Is there a way to hook the validation code so you can make types for integers larger than 2^64-1? Thanks, -- Eric Hopper -- You received this message because you are subscribed to the Google Groups Protocol Buffers group. To post to this group, send email to protobuf

[protobuf] Proto import generation

2011-03-27 Thread Eric D
testEric: libprotobuf ERROR google/protobuf/descriptor.cc:2225] testEric: Import test.proto has not been loaded. Am I missing something? Is there a more efficient to achive my goal? Thanks in advance for your help. Eric -- You received this message because you are subscribed to the Google Groups

[protobuf] Minimum set of libraries/files to run Python and Google Protocol Buffer (CentOS)

2010-04-07 Thread Eric
the development system to the production server to get this running? thanks again, Eric -- You received this message because you are subscribed to the Google Groups Protocol Buffers group. To post to this group, send email to proto...@googlegroups.com. To unsubscribe from this group, send email

[protobuf] Protocol buffers and CentOS

2010-04-06 Thread Eric
google.protobuf I feel that either the gpb install did not work or I need to set an env variable to point to some libraries. thanks in advance, Eric -- You received this message because you are subscribed to the Google Groups Protocol Buffers group. To post to this group, send email to proto