[protobuf] Re: Protocol Buffers for Matlab

2014-10-06 Thread Jian-Feng Shi
Hi, do you have a compiled exe for windows7 or windows-vista for download?

On Tuesday, 5 April 2011 11:35:54 UTC-4, Evan Lapisky wrote:

 Hi, 

 We've recently open sourced our Matlab compiler for Protocol Buffers. 
 It has been in use internally for a couple of years now to provide our 
 Matlab users access to messages created with the official C++ and 
 Python protobuf bindings. 

 It is hosted at http://code.google.com/p/protobuf-matlab/ 

 Some basic setup information is available at 
 http://code.google.com/p/protobuf-matlab/source/browse/README.txt 

 -Evan

-- 
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] [Python] Repeated Enum in A Message (encoding)

2014-10-06 Thread embJake
Hi,

I'm new to python, and hence, to encoding messages in python. I have a 
proto as follows:


message Configuration {

  enum Events {

  SET_MODE = 10;
  START_TIMER = 12;
  STOP_TIMER = 6;
  }

 message Timer {

repeated Events events = 1 [packed = true];
 }

   required Timer timer = 1;

}


In python, I would have something like:


import configuration_data_pb2
from google.protobuf.internal import encoder

config = configuration_data_pb2.Configuration()

config.timer.events.extend([10, 12])

f = open(ConfigModes.bin, wb)
serializedMessage = config.SerializeToString()
f.write(serializedMessage)
f.close()


The encoding is accomplished just fine. Since I am not an expert in python, 
nor do I know very well what's inside configuration_data_pb2, I would like 
to know if there is any way I could fill up the events somewhat like this:

config.timer.events.extend([SET_MODE, START_TIMER])

--
Thanks

-- 
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 4 in protobuf: Case-Sensitive parsing can lead to uncompilable output files

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #11 on issue 4 by xiaof...@google.com: Case-Sensitive parsing can  
lead to uncompilable output files

https://code.google.com/p/protobuf/issues/detail?id=4

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 41 in protobuf: Allow the usage of an installed gtest instead of the bundled one, make the compilation of the unittests conditional

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #13 on issue 41 by xiaof...@google.com: Allow the usage of an  
installed gtest instead of the bundled one, make the compilation of the  
unittests conditional

https://code.google.com/p/protobuf/issues/detail?id=41

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 60 in protobuf: Support static values in .proto files

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #12 on issue 60 by xiaof...@google.com: Support static values  
in .proto files

https://code.google.com/p/protobuf/issues/detail?id=60

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 61 in protobuf: RepeatedFieldBuilder

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #7 on issue 61 by xiaof...@google.com: RepeatedFieldBuilder
https://code.google.com/p/protobuf/issues/detail?id=61

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 62 in protobuf: Message numeric key

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #8 on issue 62 by xiaof...@google.com: Message numeric key
https://code.google.com/p/protobuf/issues/detail?id=62

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #26 on issue 81 by xiaof...@google.com: Maven Protoc Plugin Code  
Review

https://code.google.com/p/protobuf/issues/detail?id=81

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 82 in protobuf: Add JSON serialization support

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #14 on issue 82 by xiaof...@google.com: Add JSON serialization  
support

https://code.google.com/p/protobuf/issues/detail?id=82

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 60 in protobuf: Support static values in .proto files

2014-10-06 Thread protobuf


Comment #13 on issue 60 by e...@rjump.com: Support static values in .proto  
files

https://code.google.com/p/protobuf/issues/detail?id=60

Is there somewhere that explains the reasoning behind not wanting this? Is  
there another option/approach/design that resolves this need?


--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 83 in protobuf: protobuf does not compile cleanly in 64-bit mode in Visual Studio 2008

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #24 on issue 83 by xiaof...@google.com: protobuf does not compile  
cleanly in 64-bit mode in Visual Studio 2008

https://code.google.com/p/protobuf/issues/detail?id=83

Please submit patches to our new github site:
https://github.com/google/protobuf/pulls

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 101 in protobuf: Compiling Protocol Buffer (64) using gcc in Sun 9 (libgcc_s.so: wrong ELF class: ELFCLASS32)

2014-10-06 Thread protobuf

Updates:
Status: Fixed

Comment #7 on issue 101 by xiaof...@google.com: Compiling Protocol Buffer  
(64) using gcc in Sun 9 (libgcc_s.so: wrong  ELF class: ELFCLASS32)

https://code.google.com/p/protobuf/issues/detail?id=101

This seems to be fixed in:
https://github.com/google/protobuf/pull/32

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 115 in protobuf: JDK 1.6- Incompatibility

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #16 on issue 115 by xiaof...@google.com: JDK 1.6- Incompatibility
https://code.google.com/p/protobuf/issues/detail?id=115

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 134 in protobuf: Build on Solaris with the native STL

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #8 on issue 134 by xiaof...@google.com: Build on Solaris with  
the native STL

https://code.google.com/p/protobuf/issues/detail?id=134

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 138 in protobuf: Maven Protoc Plugin fails when a jar file contains a .proto file.

2014-10-06 Thread protobuf

Updates:
Status: WontFix
Blockedon: -protobuf:81 protobuf:81

Comment #6 on issue 138 by xiaof...@google.com: Maven Protoc Plugin fails  
when a jar file contains a .proto file.

https://code.google.com/p/protobuf/issues/detail?id=138

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Issue 81: Maven Protoc Plugin Code Review
https://code.google.com/p/protobuf/issues/detail?id=81

This issue is now blocking issue protobuf:138.
See https://code.google.com/p/protobuf/issues/detail?id=138

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Issue 81: Maven Protoc Plugin Code Review
https://code.google.com/p/protobuf/issues/detail?id=81

This issue is now blocking issue protobuf:138.
See https://code.google.com/p/protobuf/issues/detail?id=138

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 147 in protobuf: Enhancement: Line/column numbers in descriptor protos

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #7 on issue 147 by xiaof...@google.com: Enhancement: Line/column  
numbers in descriptor protos

https://code.google.com/p/protobuf/issues/detail?id=147

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Issue 81: Maven Protoc Plugin Code Review
https://code.google.com/p/protobuf/issues/detail?id=81

This issue is now blocking issue protobuf:149.
See https://code.google.com/p/protobuf/issues/detail?id=149

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Issue 81: Maven Protoc Plugin Code Review
https://code.google.com/p/protobuf/issues/detail?id=81

This issue is now blocking issue protobuf:149.
See https://code.google.com/p/protobuf/issues/detail?id=149

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 148 in protobuf: RFE: Support Documentation option in proto files and javadoc in generated Java files

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #12 on issue 148 by xiaof...@google.com: RFE: Support Documentation  
option in proto files and javadoc in generated Java files

https://code.google.com/p/protobuf/issues/detail?id=148

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 149 in protobuf: maven-protoc-plugin fails during multi-project compile

2014-10-06 Thread protobuf

Updates:
Status: WontFix
Blockedon: -protobuf:81 protobuf:81

Comment #5 on issue 149 by xiaof...@google.com: maven-protoc-plugin fails  
during multi-project compile

https://code.google.com/p/protobuf/issues/detail?id=149

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Issue 81: Maven Protoc Plugin Code Review
https://code.google.com/p/protobuf/issues/detail?id=81

This issue is now blocking issue protobuf:152.
See https://code.google.com/p/protobuf/issues/detail?id=152

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Issue 81: Maven Protoc Plugin Code Review
https://code.google.com/p/protobuf/issues/detail?id=81

This issue is now blocking issue protobuf:152.
See https://code.google.com/p/protobuf/issues/detail?id=152

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 152 in protobuf: Maven Protoc Plugin fails when a jar file contains a .proto file (FileNotFoundException)

2014-10-06 Thread protobuf

Updates:
Status: WontFix
Blockedon: -protobuf:81 protobuf:81

Comment #9 on issue 152 by xiaof...@google.com: Maven Protoc Plugin fails  
when a jar file contains a .proto file (FileNotFoundException)

https://code.google.com/p/protobuf/issues/detail?id=152

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 179 in protobuf: Visual C++ error C1091 when compiling protoc generated code with over 64k descriptor

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #7 on issue 179 by xiaof...@google.com: Visual C++ error C1091 when  
compiling protoc generated code with over 64k descriptor

https://code.google.com/p/protobuf/issues/detail?id=179

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 182 in protobuf: chromium protoc.exe linker errors when compiled, vs2005

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #2 on issue 182 by xiaof...@google.com: chromium protoc.exe linker  
errors when compiled, vs2005

https://code.google.com/p/protobuf/issues/detail?id=182

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 183 in protobuf: --java_out=output_list_file= parameter fails when compiling multiple proto files

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #6 on issue 183 by xiaof...@google.com:  
--java_out=output_list_file= parameter fails when compiling multiple proto  
files

https://code.google.com/p/protobuf/issues/detail?id=183

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 60 in protobuf: Support static values in .proto files

2014-10-06 Thread protobuf


Comment #14 on issue 60 by xiaof...@google.com: Support static values  
in .proto files

https://code.google.com/p/protobuf/issues/detail?id=60

For every new feature we always consider its benefit against the  
complication it adds to protobuf API and we usually weigh API complications  
much more heavily. For this particular case, it's an major change to  
protobuf syntax and will affect every language implementation as well as  
all tools that process .proto files. We need a very compelling reason for  
such kind of a change but I did not see any. As far as I can see, the  
workaround mentioned in #8 works pretty well as an alternative.


--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 243 in protobuf: Improve mergeDelimitedFrom in the java Impl to setSizeLimit on the CodedInputStream

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #15 on issue 243 by xiaof...@google.com: Improve mergeDelimitedFrom  
in the java Impl to setSizeLimit on the CodedInputStream

https://code.google.com/p/protobuf/issues/detail?id=243

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 247 in protobuf: Ability to redirect file output to stdout

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #16 on issue 247 by xiaof...@google.com: Ability to redirect file  
output to stdout

https://code.google.com/p/protobuf/issues/detail?id=247

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 226 in protobuf: Python API doesn't support reading/writing delimited messages

2014-10-06 Thread protobuf

Updates:
Status: WontFix

Comment #4 on issue 226 by xiaof...@google.com: Python API doesn't support  
reading/writing delimited messages

https://code.google.com/p/protobuf/issues/detail?id=226

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 250 in protobuf: [PATCH] Maven-plugin does not work with M2Eclipse

2014-10-06 Thread protobuf

Updates:
Status: WontFix
Blockedon: -protobuf:81 protobuf:81

Comment #4 on issue 250 by xiaof...@google.com: [PATCH] Maven-plugin does  
not work with M2Eclipse

https://code.google.com/p/protobuf/issues/detail?id=250

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Issue 81: Maven Protoc Plugin Code Review
https://code.google.com/p/protobuf/issues/detail?id=81

This issue is now blocking issue protobuf:250.
See https://code.google.com/p/protobuf/issues/detail?id=250

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] Re: Issue 81 in protobuf: Maven Protoc Plugin Code Review

2014-10-06 Thread protobuf

Issue 81: Maven Protoc Plugin Code Review
https://code.google.com/p/protobuf/issues/detail?id=81

This issue is now blocking issue protobuf:250.
See https://code.google.com/p/protobuf/issues/detail?id=250

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


[protobuf] How to define Structured Binary file

2014-10-06 Thread RPMASA
Hi,

I have structured binary file specifying size of each element in bytes. How 
can I mentioned them in ptoto file?



   No. Description Data Value Variable Type  Number of bytes  1 A1 0=unuse, 
1=use byte 1  2 A2 0=unuse, 1=use byte 1  3 A3 false=unuse, true=use byte 1  
   2-2. Object[200] - this object can contains up to 200 times
No. Description Data Value Variable Type  Number of bytes  1 B1 1 to 200 int 
4  2 B2   string 40  3 B3   string 52  4 B4 0=unuse, 1=use byte 1  5 B5 
MMDD string 16  6 B6   string 30  7 B7 0=unuse, 1=use byte 1 
 

In above example how can I define that fields B2 is string and can have up 
to 40 bytes of data?

-- 
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


Re: [protobuf] How to define Structured Binary file

2014-10-06 Thread Marc Gravell
You cannot. What you describe is not what protobuf offers.
On 7 Oct 2014 00:55, RPMASA rudram...@gmail.com wrote:

 Hi,

 I have structured binary file specifying size of each element in bytes.
 How can I mentioned them in ptoto file?



No. Description Data Value Variable Type  Number of bytes  1 A1 0=unuse,
 1=use byte 1  2 A2 0=unuse, 1=use byte 1  3 A3 false=unuse, true=use byte
 1 2-2. Object[200] - this object can contains up to 200 times
No. Description Data Value Variable Type  Number of bytes  1 B1 1
 to 200 int 4  2 B2   string 40  3 B3   string 52  4 B4 0=unuse, 1=use byte
 1  5 B5 MMDD string 16  6 B6   string 30  7 B7 0=unuse, 1=use byte 1


 In above example how can I define that fields B2 is string and can have up
 to 40 bytes of data?

 --
 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 to protobuf@googlegroups.com.
 Visit this group at http://groups.google.com/group/protobuf.
 For more options, visit https://groups.google.com/d/optout.


-- 
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.


Re: [protobuf] How to define Structured Binary file

2014-10-06 Thread Ilia Mirkin
Not sure what is being asked, but simply having a

bytes foo = 1;

will cause the presence of the field, the length of the field, and the
contents of the field to be encoded into the resulting binary
representation (as tagid 1 length varint length bytes).

However enforcing maximum lengths/other data validation is up to the
application layer, not the serialization layer. At least with the way
protobufs are designed.

On Mon, Oct 6, 2014 at 8:09 PM, Marc Gravell marc.grav...@gmail.com wrote:

 You cannot. What you describe is not what protobuf offers.
 On 7 Oct 2014 00:55, RPMASA rudram...@gmail.com wrote:

 Hi,

 I have structured binary file specifying size of each element in bytes.
 How can I mentioned them in ptoto file?



No. Description Data Value Variable Type  Number of bytes  1 A1 0=unuse,
 1=use byte 1  2 A2 0=unuse, 1=use byte 1  3 A3 false=unuse, true=use byte
 1 2-2. Object[200] - this object can contains up to 200 times
No. Description Data Value Variable Type  Number of bytes  1 B1 1
 to 200 int 4  2 B2   string 40  3 B3   string 52  4 B4 0=unuse, 1=use
 byte 1  5 B5 MMDD string 16  6 B6   string 30  7 B7 0=unuse, 1=use
 byte 1


 In above example how can I define that fields B2 is string and can have
 up to 40 bytes of data?

 --
 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 to protobuf@googlegroups.com.
 Visit this group at http://groups.google.com/group/protobuf.
 For more options, visit https://groups.google.com/d/optout.

  --
 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 to protobuf@googlegroups.com.
 Visit this group at http://groups.google.com/group/protobuf.
 For more options, visit https://groups.google.com/d/optout.


-- 
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 to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.