protoc 2.6.1.1 → 2.6.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (479) hide show
  1. checksums.yaml +4 -4
  2. data/ext/protoc/Makefile.in +10 -13
  3. data/ext/protoc/extconf.rb +0 -1
  4. data/ext/protoc/protobuf/CHANGES.txt +593 -0
  5. data/ext/protoc/protobuf/CONTRIBUTORS.txt +93 -0
  6. data/ext/protoc/protobuf/INSTALL.txt +237 -0
  7. data/ext/protoc/protobuf/LICENSE +33 -0
  8. data/ext/protoc/protobuf/Makefile.am +267 -0
  9. data/ext/protoc/protobuf/README.md +167 -0
  10. data/ext/protoc/protobuf/autogen.sh +41 -0
  11. data/ext/protoc/protobuf/benchmarks/ProtoBench.java +203 -0
  12. data/ext/protoc/protobuf/benchmarks/google_message1.dat +0 -0
  13. data/ext/protoc/protobuf/benchmarks/google_message2.dat +0 -0
  14. data/ext/protoc/protobuf/benchmarks/google_size.proto +136 -0
  15. data/ext/protoc/protobuf/benchmarks/google_speed.proto +136 -0
  16. data/ext/protoc/protobuf/benchmarks/readme.txt +50 -0
  17. data/ext/protoc/protobuf/configure.ac +159 -0
  18. data/ext/protoc/protobuf/editors/README.txt +5 -0
  19. data/ext/protoc/protobuf/editors/proto.vim +105 -0
  20. data/ext/protoc/protobuf/editors/protobuf-mode.el +220 -0
  21. data/ext/protoc/protobuf/examples/AddPerson.java +95 -0
  22. data/ext/protoc/protobuf/examples/ListPeople.java +50 -0
  23. data/ext/protoc/protobuf/examples/Makefile +58 -0
  24. data/ext/protoc/protobuf/examples/README.txt +29 -0
  25. data/ext/protoc/protobuf/examples/add_person.cc +95 -0
  26. data/ext/protoc/protobuf/examples/add_person.py +58 -0
  27. data/ext/protoc/protobuf/examples/addressbook.proto +30 -0
  28. data/ext/protoc/protobuf/examples/list_people.cc +68 -0
  29. data/ext/protoc/protobuf/examples/list_people.py +38 -0
  30. data/ext/protoc/protobuf/generate_descriptor_proto.sh +33 -0
  31. data/ext/protoc/protobuf/java/README.txt +96 -0
  32. data/ext/protoc/protobuf/java/pom.xml +217 -0
  33. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java +466 -0
  34. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java +355 -0
  35. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java +253 -0
  36. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/BlockingRpcChannel.java +51 -0
  37. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/BlockingService.java +64 -0
  38. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/BoundedByteString.java +163 -0
  39. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/ByteString.java +1022 -0
  40. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java +1311 -0
  41. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/CodedOutputStream.java +1297 -0
  42. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java +2238 -0
  43. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java +622 -0
  44. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/Extension.java +96 -0
  45. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistry.java +392 -0
  46. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java +185 -0
  47. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java +907 -0
  48. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java +2213 -0
  49. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java +949 -0
  50. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/Internal.java +391 -0
  51. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java +122 -0
  52. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/LazyField.java +154 -0
  53. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/LazyFieldLite.java +176 -0
  54. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/LazyStringArrayList.java +367 -0
  55. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/LazyStringList.java +163 -0
  56. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java +362 -0
  57. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/Message.java +244 -0
  58. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java +320 -0
  59. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java +60 -0
  60. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/MessageOrBuilder.java +143 -0
  61. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/MessageReflection.java +931 -0
  62. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/Parser.java +261 -0
  63. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java +58 -0
  64. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/ProtocolStringList.java +48 -0
  65. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java +696 -0
  66. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java +957 -0
  67. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/RpcCallback.java +47 -0
  68. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/RpcChannel.java +71 -0
  69. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/RpcController.java +118 -0
  70. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/RpcUtil.java +134 -0
  71. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/Service.java +117 -0
  72. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/ServiceException.java +52 -0
  73. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/SingleFieldBuilder.java +241 -0
  74. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/SmallSortedMap.java +618 -0
  75. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java +1984 -0
  76. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/UninitializedMessageException.java +99 -0
  77. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java +995 -0
  78. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java +205 -0
  79. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/Utf8.java +349 -0
  80. data/ext/protoc/protobuf/java/src/main/java/com/google/protobuf/WireFormat.java +163 -0
  81. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java +527 -0
  82. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/BoundedByteStringTest.java +68 -0
  83. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/ByteStringTest.java +759 -0
  84. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/CheckUtf8Test.java +141 -0
  85. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java +769 -0
  86. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java +401 -0
  87. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java +80 -0
  88. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java +735 -0
  89. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/DynamicMessageTest.java +326 -0
  90. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java +48 -0
  91. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/GeneratedMessageTest.java +1515 -0
  92. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8Test.java +180 -0
  93. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java +421 -0
  94. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java +134 -0
  95. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/LazyFieldTest.java +121 -0
  96. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java +319 -0
  97. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java +174 -0
  98. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java +143 -0
  99. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java +85 -0
  100. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/LiteTest.java +148 -0
  101. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java +396 -0
  102. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/MessageTest.java +353 -0
  103. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/NestedBuildersTest.java +185 -0
  104. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/ParserTest.java +381 -0
  105. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java +190 -0
  106. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java +97 -0
  107. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/RopeByteStringTest.java +115 -0
  108. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/ServiceTest.java +320 -0
  109. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java +155 -0
  110. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/SmallSortedMapTest.java +420 -0
  111. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/TestBadIdentifiers.java +96 -0
  112. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java +4124 -0
  113. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java +994 -0
  114. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java +653 -0
  115. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java +227 -0
  116. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java +606 -0
  117. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/lazy_fields_lite.proto +61 -0
  118. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto +55 -0
  119. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/multiple_files_test.proto +77 -0
  120. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/nested_builders_test.proto +53 -0
  121. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/nested_extension.proto +46 -0
  122. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/nested_extension_lite.proto +48 -0
  123. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/non_nested_extension.proto +49 -0
  124. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto +50 -0
  125. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/outer_class_name_test.proto +38 -0
  126. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/outer_class_name_test2.proto +42 -0
  127. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/outer_class_name_test3.proto +43 -0
  128. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/test_bad_identifiers.proto +157 -0
  129. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/test_check_utf8.proto +50 -0
  130. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/test_check_utf8_size.proto +51 -0
  131. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/test_custom_options.proto +43 -0
  132. data/ext/protoc/protobuf/java/src/test/java/com/google/protobuf/test_extra_interfaces.proto +60 -0
  133. data/ext/protoc/protobuf/m4/ac_system_extensions.m4 +37 -0
  134. data/ext/protoc/protobuf/m4/acx_check_suncc.m4 +75 -0
  135. data/ext/protoc/protobuf/m4/acx_pthread.m4 +397 -0
  136. data/ext/protoc/protobuf/m4/stl_hash.m4 +72 -0
  137. data/ext/protoc/protobuf/more_tests/Makefile +41 -0
  138. data/ext/protoc/protobuf/post_process_dist.sh +60 -0
  139. data/ext/protoc/protobuf/protobuf-lite.pc.in +13 -0
  140. data/ext/protoc/protobuf/protobuf.pc.in +14 -0
  141. data/ext/protoc/protobuf/python/README.txt +105 -0
  142. data/ext/protoc/protobuf/python/ez_setup.py +284 -0
  143. data/ext/protoc/protobuf/python/google/__init__.py +1 -0
  144. data/ext/protoc/protobuf/python/google/protobuf/__init__.py +0 -0
  145. data/ext/protoc/protobuf/python/google/protobuf/descriptor.py +849 -0
  146. data/ext/protoc/protobuf/python/google/protobuf/descriptor_database.py +137 -0
  147. data/ext/protoc/protobuf/python/google/protobuf/descriptor_pool.py +643 -0
  148. data/ext/protoc/protobuf/python/google/protobuf/internal/__init__.py +0 -0
  149. data/ext/protoc/protobuf/python/google/protobuf/internal/api_implementation.cc +139 -0
  150. data/ext/protoc/protobuf/python/google/protobuf/internal/api_implementation.py +89 -0
  151. data/ext/protoc/protobuf/python/google/protobuf/internal/api_implementation_default_test.py +63 -0
  152. data/ext/protoc/protobuf/python/google/protobuf/internal/containers.py +269 -0
  153. data/ext/protoc/protobuf/python/google/protobuf/internal/cpp_message.py +663 -0
  154. data/ext/protoc/protobuf/python/google/protobuf/internal/decoder.py +831 -0
  155. data/ext/protoc/protobuf/python/google/protobuf/internal/descriptor_database_test.py +63 -0
  156. data/ext/protoc/protobuf/python/google/protobuf/internal/descriptor_pool_test.py +564 -0
  157. data/ext/protoc/protobuf/python/google/protobuf/internal/descriptor_pool_test1.proto +94 -0
  158. data/ext/protoc/protobuf/python/google/protobuf/internal/descriptor_pool_test2.proto +70 -0
  159. data/ext/protoc/protobuf/python/google/protobuf/internal/descriptor_python_test.py +54 -0
  160. data/ext/protoc/protobuf/python/google/protobuf/internal/descriptor_test.py +669 -0
  161. data/ext/protoc/protobuf/python/google/protobuf/internal/encoder.py +788 -0
  162. data/ext/protoc/protobuf/python/google/protobuf/internal/enum_type_wrapper.py +89 -0
  163. data/ext/protoc/protobuf/python/google/protobuf/internal/factory_test1.proto +57 -0
  164. data/ext/protoc/protobuf/python/google/protobuf/internal/factory_test2.proto +92 -0
  165. data/ext/protoc/protobuf/python/google/protobuf/internal/generator_test.py +343 -0
  166. data/ext/protoc/protobuf/python/google/protobuf/internal/message_factory_python_test.py +54 -0
  167. data/ext/protoc/protobuf/python/google/protobuf/internal/message_factory_test.py +131 -0
  168. data/ext/protoc/protobuf/python/google/protobuf/internal/message_listener.py +78 -0
  169. data/ext/protoc/protobuf/python/google/protobuf/internal/message_python_test.py +54 -0
  170. data/ext/protoc/protobuf/python/google/protobuf/internal/message_test.py +681 -0
  171. data/ext/protoc/protobuf/python/google/protobuf/internal/missing_enum_values.proto +50 -0
  172. data/ext/protoc/protobuf/python/google/protobuf/internal/more_extensions.proto +58 -0
  173. data/ext/protoc/protobuf/python/google/protobuf/internal/more_extensions_dynamic.proto +49 -0
  174. data/ext/protoc/protobuf/python/google/protobuf/internal/more_messages.proto +51 -0
  175. data/ext/protoc/protobuf/python/google/protobuf/internal/python_message.py +1251 -0
  176. data/ext/protoc/protobuf/python/google/protobuf/internal/reflection_test.py +2934 -0
  177. data/ext/protoc/protobuf/python/google/protobuf/internal/service_reflection_test.py +136 -0
  178. data/ext/protoc/protobuf/python/google/protobuf/internal/symbol_database_test.py +120 -0
  179. data/ext/protoc/protobuf/python/google/protobuf/internal/test_bad_identifiers.proto +52 -0
  180. data/ext/protoc/protobuf/python/google/protobuf/internal/test_util.py +662 -0
  181. data/ext/protoc/protobuf/python/google/protobuf/internal/text_encoding_test.py +68 -0
  182. data/ext/protoc/protobuf/python/google/protobuf/internal/text_format_test.py +743 -0
  183. data/ext/protoc/protobuf/python/google/protobuf/internal/type_checkers.py +328 -0
  184. data/ext/protoc/protobuf/python/google/protobuf/internal/unknown_fields_test.py +231 -0
  185. data/ext/protoc/protobuf/python/google/protobuf/internal/wire_format.py +268 -0
  186. data/ext/protoc/protobuf/python/google/protobuf/internal/wire_format_test.py +253 -0
  187. data/ext/protoc/protobuf/python/google/protobuf/message.py +284 -0
  188. data/ext/protoc/protobuf/python/google/protobuf/message_factory.py +155 -0
  189. data/ext/protoc/protobuf/python/google/protobuf/pyext/README +6 -0
  190. data/ext/protoc/protobuf/python/google/protobuf/pyext/__init__.py +0 -0
  191. data/ext/protoc/protobuf/python/google/protobuf/pyext/cpp_message.py +61 -0
  192. data/ext/protoc/protobuf/python/google/protobuf/pyext/descriptor.cc +357 -0
  193. data/ext/protoc/protobuf/python/google/protobuf/pyext/descriptor.h +96 -0
  194. data/ext/protoc/protobuf/python/google/protobuf/pyext/descriptor_cpp2_test.py +58 -0
  195. data/ext/protoc/protobuf/python/google/protobuf/pyext/extension_dict.cc +338 -0
  196. data/ext/protoc/protobuf/python/google/protobuf/pyext/extension_dict.h +123 -0
  197. data/ext/protoc/protobuf/python/google/protobuf/pyext/message.cc +2561 -0
  198. data/ext/protoc/protobuf/python/google/protobuf/pyext/message.h +305 -0
  199. data/ext/protoc/protobuf/python/google/protobuf/pyext/message_factory_cpp2_test.py +56 -0
  200. data/ext/protoc/protobuf/python/google/protobuf/pyext/proto2_api_test.proto +38 -0
  201. data/ext/protoc/protobuf/python/google/protobuf/pyext/python.proto +66 -0
  202. data/ext/protoc/protobuf/python/google/protobuf/pyext/python_protobuf.h +57 -0
  203. data/ext/protoc/protobuf/python/google/protobuf/pyext/reflection_cpp2_generated_test.py +94 -0
  204. data/ext/protoc/protobuf/python/google/protobuf/pyext/repeated_composite_container.cc +763 -0
  205. data/ext/protoc/protobuf/python/google/protobuf/pyext/repeated_composite_container.h +172 -0
  206. data/ext/protoc/protobuf/python/google/protobuf/pyext/repeated_scalar_container.cc +825 -0
  207. data/ext/protoc/protobuf/python/google/protobuf/pyext/repeated_scalar_container.h +112 -0
  208. data/ext/protoc/protobuf/python/google/protobuf/pyext/scoped_pyobject_ptr.h +95 -0
  209. data/ext/protoc/protobuf/python/google/protobuf/reflection.py +205 -0
  210. data/ext/protoc/protobuf/python/google/protobuf/service.py +226 -0
  211. data/ext/protoc/protobuf/python/google/protobuf/service_reflection.py +284 -0
  212. data/ext/protoc/protobuf/python/google/protobuf/symbol_database.py +185 -0
  213. data/ext/protoc/protobuf/python/google/protobuf/text_encoding.py +110 -0
  214. data/ext/protoc/protobuf/python/google/protobuf/text_format.py +873 -0
  215. data/ext/protoc/protobuf/python/mox.py +1401 -0
  216. data/ext/protoc/protobuf/python/setup.py +201 -0
  217. data/ext/protoc/protobuf/python/stubout.py +140 -0
  218. data/ext/protoc/protobuf/src/Makefile.am +418 -0
  219. data/ext/protoc/protobuf/src/google/protobuf/SEBS +240 -0
  220. data/ext/protoc/protobuf/src/google/protobuf/compiler/code_generator.cc +84 -0
  221. data/ext/protoc/protobuf/src/google/protobuf/compiler/code_generator.h +145 -0
  222. data/ext/protoc/protobuf/src/google/protobuf/compiler/command_line_interface.cc +1603 -0
  223. data/ext/protoc/protobuf/src/google/protobuf/compiler/command_line_interface.h +378 -0
  224. data/ext/protoc/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc +1654 -0
  225. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc +158 -0
  226. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.cc +288 -0
  227. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h +103 -0
  228. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.cc +431 -0
  229. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.h +122 -0
  230. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.cc +210 -0
  231. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.h +86 -0
  232. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_field.cc +166 -0
  233. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_field.h +185 -0
  234. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_file.cc +665 -0
  235. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_file.h +99 -0
  236. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.cc +125 -0
  237. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h +72 -0
  238. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc +494 -0
  239. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.h +206 -0
  240. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc +2645 -0
  241. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_message.h +175 -0
  242. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.cc +375 -0
  243. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.h +121 -0
  244. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h +58 -0
  245. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc +123 -0
  246. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc +451 -0
  247. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.h +123 -0
  248. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_service.cc +334 -0
  249. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_service.h +118 -0
  250. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.cc +642 -0
  251. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.h +127 -0
  252. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto +132 -0
  253. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc +2074 -0
  254. data/ext/protoc/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.h +51 -0
  255. data/ext/protoc/protobuf/src/google/protobuf/compiler/importer.cc +480 -0
  256. data/ext/protoc/protobuf/src/google/protobuf/compiler/importer.h +317 -0
  257. data/ext/protoc/protobuf/src/google/protobuf/compiler/importer_unittest.cc +617 -0
  258. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_context.cc +195 -0
  259. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_context.h +95 -0
  260. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc +233 -0
  261. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_doc_comment.h +69 -0
  262. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_doc_comment_unittest.cc +67 -0
  263. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_enum.cc +333 -0
  264. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_enum.h +99 -0
  265. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_enum_field.cc +778 -0
  266. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_enum_field.h +158 -0
  267. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_extension.cc +207 -0
  268. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_extension.h +109 -0
  269. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_field.cc +213 -0
  270. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_field.h +162 -0
  271. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_file.cc +534 -0
  272. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_file.h +115 -0
  273. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_generator.cc +158 -0
  274. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_generator.h +72 -0
  275. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_generator_factory.cc +77 -0
  276. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_generator_factory.h +101 -0
  277. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_helpers.cc +737 -0
  278. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_helpers.h +322 -0
  279. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field.cc +826 -0
  280. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field.h +121 -0
  281. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_message.cc +1666 -0
  282. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_message.h +140 -0
  283. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_message_field.cc +1343 -0
  284. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_message_field.h +173 -0
  285. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_name_resolver.cc +266 -0
  286. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_name_resolver.h +124 -0
  287. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_plugin_unittest.cc +124 -0
  288. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_primitive_field.cc +877 -0
  289. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_primitive_field.h +160 -0
  290. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_service.cc +473 -0
  291. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_service.h +135 -0
  292. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_shared_code_generator.cc +201 -0
  293. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_shared_code_generator.h +90 -0
  294. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_string_field.cc +1056 -0
  295. data/ext/protoc/protobuf/src/google/protobuf/compiler/java/java_string_field.h +160 -0
  296. data/ext/protoc/protobuf/src/google/protobuf/compiler/main.cc +61 -0
  297. data/ext/protoc/protobuf/src/google/protobuf/compiler/mock_code_generator.cc +240 -0
  298. data/ext/protoc/protobuf/src/google/protobuf/compiler/mock_code_generator.h +117 -0
  299. data/ext/protoc/protobuf/src/google/protobuf/compiler/package_info.h +64 -0
  300. data/ext/protoc/protobuf/src/google/protobuf/compiler/parser.cc +1750 -0
  301. data/ext/protoc/protobuf/src/google/protobuf/compiler/parser.h +522 -0
  302. data/ext/protoc/protobuf/src/google/protobuf/compiler/parser_unittest.cc +2612 -0
  303. data/ext/protoc/protobuf/src/google/protobuf/compiler/plugin.cc +163 -0
  304. data/ext/protoc/protobuf/src/google/protobuf/compiler/plugin.h +72 -0
  305. data/ext/protoc/protobuf/src/google/protobuf/compiler/plugin.pb.cc +1148 -0
  306. data/ext/protoc/protobuf/src/google/protobuf/compiler/plugin.pb.h +897 -0
  307. data/ext/protoc/protobuf/src/google/protobuf/compiler/plugin.proto +147 -0
  308. data/ext/protoc/protobuf/src/google/protobuf/compiler/python/python_generator.cc +1262 -0
  309. data/ext/protoc/protobuf/src/google/protobuf/compiler/python/python_generator.h +166 -0
  310. data/ext/protoc/protobuf/src/google/protobuf/compiler/python/python_plugin_unittest.cc +118 -0
  311. data/ext/protoc/protobuf/src/google/protobuf/compiler/subprocess.cc +463 -0
  312. data/ext/protoc/protobuf/src/google/protobuf/compiler/subprocess.h +108 -0
  313. data/ext/protoc/protobuf/src/google/protobuf/compiler/test_plugin.cc +51 -0
  314. data/ext/protoc/protobuf/src/google/protobuf/compiler/zip_output_unittest.sh +91 -0
  315. data/ext/protoc/protobuf/src/google/protobuf/compiler/zip_writer.cc +218 -0
  316. data/ext/protoc/protobuf/src/google/protobuf/compiler/zip_writer.h +93 -0
  317. data/ext/protoc/protobuf/src/google/protobuf/descriptor.cc +5420 -0
  318. data/ext/protoc/protobuf/src/google/protobuf/descriptor.h +1691 -0
  319. data/ext/protoc/protobuf/src/google/protobuf/descriptor.pb.cc +9135 -0
  320. data/ext/protoc/protobuf/src/google/protobuf/descriptor.pb.h +6761 -0
  321. data/ext/protoc/protobuf/src/google/protobuf/descriptor.proto +687 -0
  322. data/ext/protoc/protobuf/src/google/protobuf/descriptor_database.cc +543 -0
  323. data/ext/protoc/protobuf/src/google/protobuf/descriptor_database.h +369 -0
  324. data/ext/protoc/protobuf/src/google/protobuf/descriptor_database_unittest.cc +748 -0
  325. data/ext/protoc/protobuf/src/google/protobuf/descriptor_pb2_test.py +54 -0
  326. data/ext/protoc/protobuf/src/google/protobuf/descriptor_unittest.cc +5501 -0
  327. data/ext/protoc/protobuf/src/google/protobuf/dynamic_message.cc +764 -0
  328. data/ext/protoc/protobuf/src/google/protobuf/dynamic_message.h +148 -0
  329. data/ext/protoc/protobuf/src/google/protobuf/dynamic_message_unittest.cc +230 -0
  330. data/ext/protoc/protobuf/src/google/protobuf/extension_set.cc +1663 -0
  331. data/ext/protoc/protobuf/src/google/protobuf/extension_set.h +1234 -0
  332. data/ext/protoc/protobuf/src/google/protobuf/extension_set_heavy.cc +734 -0
  333. data/ext/protoc/protobuf/src/google/protobuf/extension_set_unittest.cc +1095 -0
  334. data/ext/protoc/protobuf/src/google/protobuf/generated_enum_reflection.h +91 -0
  335. data/ext/protoc/protobuf/src/google/protobuf/generated_message_reflection.cc +1683 -0
  336. data/ext/protoc/protobuf/src/google/protobuf/generated_message_reflection.h +504 -0
  337. data/ext/protoc/protobuf/src/google/protobuf/generated_message_reflection_unittest.cc +795 -0
  338. data/ext/protoc/protobuf/src/google/protobuf/generated_message_util.cc +65 -0
  339. data/ext/protoc/protobuf/src/google/protobuf/generated_message_util.h +113 -0
  340. data/ext/protoc/protobuf/src/google/protobuf/io/coded_stream.cc +914 -0
  341. data/ext/protoc/protobuf/src/google/protobuf/io/coded_stream.h +1220 -0
  342. data/ext/protoc/protobuf/src/google/protobuf/io/coded_stream_inl.h +69 -0
  343. data/ext/protoc/protobuf/src/google/protobuf/io/coded_stream_unittest.cc +1378 -0
  344. data/ext/protoc/protobuf/src/google/protobuf/io/gzip_stream.cc +326 -0
  345. data/ext/protoc/protobuf/src/google/protobuf/io/gzip_stream.h +209 -0
  346. data/ext/protoc/protobuf/src/google/protobuf/io/gzip_stream_unittest.sh +44 -0
  347. data/ext/protoc/protobuf/src/google/protobuf/io/package_info.h +54 -0
  348. data/ext/protoc/protobuf/src/google/protobuf/io/printer.cc +198 -0
  349. data/ext/protoc/protobuf/src/google/protobuf/io/printer.h +136 -0
  350. data/ext/protoc/protobuf/src/google/protobuf/io/printer_unittest.cc +285 -0
  351. data/ext/protoc/protobuf/src/google/protobuf/io/strtod.cc +113 -0
  352. data/ext/protoc/protobuf/src/google/protobuf/io/strtod.h +50 -0
  353. data/ext/protoc/protobuf/src/google/protobuf/io/tokenizer.cc +1127 -0
  354. data/ext/protoc/protobuf/src/google/protobuf/io/tokenizer.h +402 -0
  355. data/ext/protoc/protobuf/src/google/protobuf/io/tokenizer_unittest.cc +999 -0
  356. data/ext/protoc/protobuf/src/google/protobuf/io/zero_copy_stream.cc +57 -0
  357. data/ext/protoc/protobuf/src/google/protobuf/io/zero_copy_stream.h +248 -0
  358. data/ext/protoc/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc +473 -0
  359. data/ext/protoc/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h +358 -0
  360. data/ext/protoc/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc +405 -0
  361. data/ext/protoc/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h +354 -0
  362. data/ext/protoc/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc +965 -0
  363. data/ext/protoc/protobuf/src/google/protobuf/lite_unittest.cc +350 -0
  364. data/ext/protoc/protobuf/src/google/protobuf/message.cc +358 -0
  365. data/ext/protoc/protobuf/src/google/protobuf/message.h +866 -0
  366. data/ext/protoc/protobuf/src/google/protobuf/message_lite.cc +335 -0
  367. data/ext/protoc/protobuf/src/google/protobuf/message_lite.h +247 -0
  368. data/ext/protoc/protobuf/src/google/protobuf/message_unittest.cc +427 -0
  369. data/ext/protoc/protobuf/src/google/protobuf/package_info.h +64 -0
  370. data/ext/protoc/protobuf/src/google/protobuf/reflection_ops.cc +269 -0
  371. data/ext/protoc/protobuf/src/google/protobuf/reflection_ops.h +81 -0
  372. data/ext/protoc/protobuf/src/google/protobuf/reflection_ops_unittest.cc +475 -0
  373. data/ext/protoc/protobuf/src/google/protobuf/repeated_field.cc +87 -0
  374. data/ext/protoc/protobuf/src/google/protobuf/repeated_field.h +1603 -0
  375. data/ext/protoc/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc +195 -0
  376. data/ext/protoc/protobuf/src/google/protobuf/repeated_field_unittest.cc +1442 -0
  377. data/ext/protoc/protobuf/src/google/protobuf/service.cc +46 -0
  378. data/ext/protoc/protobuf/src/google/protobuf/service.h +291 -0
  379. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops.h +227 -0
  380. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_arm64_gcc.h +325 -0
  381. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_arm_gcc.h +151 -0
  382. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_arm_qnx.h +146 -0
  383. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h +122 -0
  384. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_generic_gcc.h +137 -0
  385. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_macosx.h +225 -0
  386. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h +313 -0
  387. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_pnacl.h +73 -0
  388. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_solaris.h +188 -0
  389. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_tsan.h +219 -0
  390. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc +137 -0
  391. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.h +293 -0
  392. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc +112 -0
  393. data/ext/protoc/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_msvc.h +150 -0
  394. data/ext/protoc/protobuf/src/google/protobuf/stubs/common.cc +395 -0
  395. data/ext/protoc/protobuf/src/google/protobuf/stubs/common.h +1226 -0
  396. data/ext/protoc/protobuf/src/google/protobuf/stubs/common_unittest.cc +357 -0
  397. data/ext/protoc/protobuf/src/google/protobuf/stubs/hash.h +232 -0
  398. data/ext/protoc/protobuf/src/google/protobuf/stubs/map_util.h +771 -0
  399. data/ext/protoc/protobuf/src/google/protobuf/stubs/once.cc +99 -0
  400. data/ext/protoc/protobuf/src/google/protobuf/stubs/once.h +166 -0
  401. data/ext/protoc/protobuf/src/google/protobuf/stubs/once_unittest.cc +253 -0
  402. data/ext/protoc/protobuf/src/google/protobuf/stubs/platform_macros.h +103 -0
  403. data/ext/protoc/protobuf/src/google/protobuf/stubs/shared_ptr.h +470 -0
  404. data/ext/protoc/protobuf/src/google/protobuf/stubs/stl_util.h +121 -0
  405. data/ext/protoc/protobuf/src/google/protobuf/stubs/stringprintf.cc +175 -0
  406. data/ext/protoc/protobuf/src/google/protobuf/stubs/stringprintf.h +76 -0
  407. data/ext/protoc/protobuf/src/google/protobuf/stubs/stringprintf_unittest.cc +152 -0
  408. data/ext/protoc/protobuf/src/google/protobuf/stubs/structurally_valid.cc +536 -0
  409. data/ext/protoc/protobuf/src/google/protobuf/stubs/structurally_valid_unittest.cc +40 -0
  410. data/ext/protoc/protobuf/src/google/protobuf/stubs/strutil.cc +1279 -0
  411. data/ext/protoc/protobuf/src/google/protobuf/stubs/strutil.h +562 -0
  412. data/ext/protoc/protobuf/src/google/protobuf/stubs/strutil_unittest.cc +73 -0
  413. data/ext/protoc/protobuf/src/google/protobuf/stubs/substitute.cc +134 -0
  414. data/ext/protoc/protobuf/src/google/protobuf/stubs/substitute.h +170 -0
  415. data/ext/protoc/protobuf/src/google/protobuf/stubs/template_util.h +138 -0
  416. data/ext/protoc/protobuf/src/google/protobuf/stubs/template_util_unittest.cc +130 -0
  417. data/ext/protoc/protobuf/src/google/protobuf/stubs/type_traits.h +336 -0
  418. data/ext/protoc/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc +628 -0
  419. data/ext/protoc/protobuf/src/google/protobuf/test_util.cc +3345 -0
  420. data/ext/protoc/protobuf/src/google/protobuf/test_util.h +215 -0
  421. data/ext/protoc/protobuf/src/google/protobuf/test_util_lite.cc +1585 -0
  422. data/ext/protoc/protobuf/src/google/protobuf/test_util_lite.h +101 -0
  423. data/ext/protoc/protobuf/src/google/protobuf/testdata/bad_utf8_string +1 -0
  424. data/ext/protoc/protobuf/src/google/protobuf/testdata/golden_message +0 -0
  425. data/ext/protoc/protobuf/src/google/protobuf/testdata/golden_message_oneof_implemented +0 -0
  426. data/ext/protoc/protobuf/src/google/protobuf/testdata/golden_packed_fields_message +0 -0
  427. data/ext/protoc/protobuf/src/google/protobuf/testdata/text_format_unittest_data.txt +134 -0
  428. data/ext/protoc/protobuf/src/google/protobuf/testdata/text_format_unittest_data_oneof_implemented.txt +129 -0
  429. data/ext/protoc/protobuf/src/google/protobuf/testdata/text_format_unittest_data_pointy.txt +134 -0
  430. data/ext/protoc/protobuf/src/google/protobuf/testdata/text_format_unittest_data_pointy_oneof.txt +129 -0
  431. data/ext/protoc/protobuf/src/google/protobuf/testdata/text_format_unittest_extensions_data.txt +134 -0
  432. data/ext/protoc/protobuf/src/google/protobuf/testdata/text_format_unittest_extensions_data_pointy.txt +134 -0
  433. data/ext/protoc/protobuf/src/google/protobuf/testing/file.cc +194 -0
  434. data/ext/protoc/protobuf/src/google/protobuf/testing/file.h +97 -0
  435. data/ext/protoc/protobuf/src/google/protobuf/testing/googletest.cc +255 -0
  436. data/ext/protoc/protobuf/src/google/protobuf/testing/googletest.h +102 -0
  437. data/ext/protoc/protobuf/src/google/protobuf/testing/zcgunzip.cc +73 -0
  438. data/ext/protoc/protobuf/src/google/protobuf/testing/zcgzip.cc +79 -0
  439. data/ext/protoc/protobuf/src/google/protobuf/text_format.cc +1746 -0
  440. data/ext/protoc/protobuf/src/google/protobuf/text_format.h +473 -0
  441. data/ext/protoc/protobuf/src/google/protobuf/text_format_unittest.cc +1479 -0
  442. data/ext/protoc/protobuf/src/google/protobuf/unittest.proto +861 -0
  443. data/ext/protoc/protobuf/src/google/protobuf/unittest_custom_options.proto +393 -0
  444. data/ext/protoc/protobuf/src/google/protobuf/unittest_embed_optimize_for.proto +50 -0
  445. data/ext/protoc/protobuf/src/google/protobuf/unittest_empty.proto +37 -0
  446. data/ext/protoc/protobuf/src/google/protobuf/unittest_enormous_descriptor.proto +1046 -0
  447. data/ext/protoc/protobuf/src/google/protobuf/unittest_import.proto +64 -0
  448. data/ext/protoc/protobuf/src/google/protobuf/unittest_import_lite.proto +51 -0
  449. data/ext/protoc/protobuf/src/google/protobuf/unittest_import_public.proto +40 -0
  450. data/ext/protoc/protobuf/src/google/protobuf/unittest_import_public_lite.proto +42 -0
  451. data/ext/protoc/protobuf/src/google/protobuf/unittest_lite.proto +384 -0
  452. data/ext/protoc/protobuf/src/google/protobuf/unittest_lite_imports_nonlite.proto +43 -0
  453. data/ext/protoc/protobuf/src/google/protobuf/unittest_mset.proto +83 -0
  454. data/ext/protoc/protobuf/src/google/protobuf/unittest_no_generic_services.proto +53 -0
  455. data/ext/protoc/protobuf/src/google/protobuf/unittest_optimize_for.proto +66 -0
  456. data/ext/protoc/protobuf/src/google/protobuf/unknown_field_set.cc +265 -0
  457. data/ext/protoc/protobuf/src/google/protobuf/unknown_field_set.h +318 -0
  458. data/ext/protoc/protobuf/src/google/protobuf/unknown_field_set_unittest.cc +599 -0
  459. data/ext/protoc/protobuf/src/google/protobuf/wire_format.cc +1101 -0
  460. data/ext/protoc/protobuf/src/google/protobuf/wire_format.h +336 -0
  461. data/ext/protoc/protobuf/src/google/protobuf/wire_format_lite.cc +471 -0
  462. data/ext/protoc/protobuf/src/google/protobuf/wire_format_lite.h +661 -0
  463. data/ext/protoc/protobuf/src/google/protobuf/wire_format_lite_inl.h +860 -0
  464. data/ext/protoc/protobuf/src/google/protobuf/wire_format_unittest.cc +1120 -0
  465. data/ext/protoc/protobuf/src/solaris/libstdc++.la +51 -0
  466. data/ext/protoc/protobuf/vsprojects/config.h +29 -0
  467. data/ext/protoc/protobuf/vsprojects/convert2008to2005.sh +20 -0
  468. data/ext/protoc/protobuf/vsprojects/extract_includes.bat +50 -0
  469. data/ext/protoc/protobuf/vsprojects/libprotobuf-lite.vcproj +302 -0
  470. data/ext/protoc/protobuf/vsprojects/libprotobuf.vcproj +470 -0
  471. data/ext/protoc/protobuf/vsprojects/libprotoc.vcproj +466 -0
  472. data/ext/protoc/protobuf/vsprojects/lite-test.vcproj +305 -0
  473. data/ext/protoc/protobuf/vsprojects/protobuf.sln +92 -0
  474. data/ext/protoc/protobuf/vsprojects/protoc.vcproj +192 -0
  475. data/ext/protoc/protobuf/vsprojects/readme.txt +114 -0
  476. data/ext/protoc/protobuf/vsprojects/test_plugin.vcproj +209 -0
  477. data/ext/protoc/protobuf/vsprojects/tests.vcproj +681 -0
  478. data/lib/protoc/version.rb +1 -1
  479. metadata +480 -3
@@ -0,0 +1,1311 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ // https://developers.google.com/protocol-buffers/
4
+ //
5
+ // Redistribution and use in source and binary forms, with or without
6
+ // modification, are permitted provided that the following conditions are
7
+ // met:
8
+ //
9
+ // * Redistributions of source code must retain the above copyright
10
+ // notice, this list of conditions and the following disclaimer.
11
+ // * Redistributions in binary form must reproduce the above
12
+ // copyright notice, this list of conditions and the following disclaimer
13
+ // in the documentation and/or other materials provided with the
14
+ // distribution.
15
+ // * Neither the name of Google Inc. nor the names of its
16
+ // contributors may be used to endorse or promote products derived from
17
+ // this software without specific prior written permission.
18
+ //
19
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
+
31
+ package com.google.protobuf;
32
+
33
+ import java.io.ByteArrayOutputStream;
34
+ import java.io.IOException;
35
+ import java.io.InputStream;
36
+ import java.nio.ByteBuffer;
37
+ import java.util.ArrayList;
38
+ import java.util.Arrays;
39
+ import java.util.List;
40
+
41
+ /**
42
+ * Reads and decodes protocol message fields.
43
+ *
44
+ * This class contains two kinds of methods: methods that read specific
45
+ * protocol message constructs and field types (e.g. {@link #readTag()} and
46
+ * {@link #readInt32()}) and methods that read low-level values (e.g.
47
+ * {@link #readRawVarint32()} and {@link #readRawBytes}). If you are reading
48
+ * encoded protocol messages, you should use the former methods, but if you are
49
+ * reading some other format of your own design, use the latter.
50
+ *
51
+ * @author kenton@google.com Kenton Varda
52
+ */
53
+ public final class CodedInputStream {
54
+ /**
55
+ * Create a new CodedInputStream wrapping the given InputStream.
56
+ */
57
+ public static CodedInputStream newInstance(final InputStream input) {
58
+ return new CodedInputStream(input);
59
+ }
60
+
61
+ /**
62
+ * Create a new CodedInputStream wrapping the given byte array.
63
+ */
64
+ public static CodedInputStream newInstance(final byte[] buf) {
65
+ return newInstance(buf, 0, buf.length);
66
+ }
67
+
68
+ /**
69
+ * Create a new CodedInputStream wrapping the given byte array slice.
70
+ */
71
+ public static CodedInputStream newInstance(final byte[] buf, final int off,
72
+ final int len) {
73
+ CodedInputStream result = new CodedInputStream(buf, off, len);
74
+ try {
75
+ // Some uses of CodedInputStream can be more efficient if they know
76
+ // exactly how many bytes are available. By pushing the end point of the
77
+ // buffer as a limit, we allow them to get this information via
78
+ // getBytesUntilLimit(). Pushing a limit that we know is at the end of
79
+ // the stream can never hurt, since we can never past that point anyway.
80
+ result.pushLimit(len);
81
+ } catch (InvalidProtocolBufferException ex) {
82
+ // The only reason pushLimit() might throw an exception here is if len
83
+ // is negative. Normally pushLimit()'s parameter comes directly off the
84
+ // wire, so it's important to catch exceptions in case of corrupt or
85
+ // malicious data. However, in this case, we expect that len is not a
86
+ // user-supplied value, so we can assume that it being negative indicates
87
+ // a programming error. Therefore, throwing an unchecked exception is
88
+ // appropriate.
89
+ throw new IllegalArgumentException(ex);
90
+ }
91
+ return result;
92
+ }
93
+
94
+ /**
95
+ * Create a new CodedInputStream wrapping the given ByteBuffer. The data
96
+ * starting from the ByteBuffer's current position to its limit will be read.
97
+ * The returned CodedInputStream may or may not share the underlying data
98
+ * in the ByteBuffer, therefore the ByteBuffer cannot be changed while the
99
+ * CodedInputStream is in use.
100
+ * Note that the ByteBuffer's position won't be changed by this function.
101
+ * Concurrent calls with the same ByteBuffer object are safe if no other
102
+ * thread is trying to alter the ByteBuffer's status.
103
+ */
104
+ public static CodedInputStream newInstance(ByteBuffer buf) {
105
+ if (buf.hasArray()) {
106
+ return newInstance(buf.array(), buf.arrayOffset() + buf.position(),
107
+ buf.remaining());
108
+ } else {
109
+ ByteBuffer temp = buf.duplicate();
110
+ byte[] buffer = new byte[temp.remaining()];
111
+ temp.get(buffer);
112
+ return newInstance(buffer);
113
+ }
114
+ }
115
+
116
+ /**
117
+ * Create a new CodedInputStream wrapping a LiteralByteString.
118
+ */
119
+ static CodedInputStream newInstance(LiteralByteString byteString) {
120
+ CodedInputStream result = new CodedInputStream(byteString);
121
+ try {
122
+ // Some uses of CodedInputStream can be more efficient if they know
123
+ // exactly how many bytes are available. By pushing the end point of the
124
+ // buffer as a limit, we allow them to get this information via
125
+ // getBytesUntilLimit(). Pushing a limit that we know is at the end of
126
+ // the stream can never hurt, since we can never past that point anyway.
127
+ result.pushLimit(byteString.size());
128
+ } catch (InvalidProtocolBufferException ex) {
129
+ // The only reason pushLimit() might throw an exception here is if len
130
+ // is negative. Normally pushLimit()'s parameter comes directly off the
131
+ // wire, so it's important to catch exceptions in case of corrupt or
132
+ // malicious data. However, in this case, we expect that len is not a
133
+ // user-supplied value, so we can assume that it being negative indicates
134
+ // a programming error. Therefore, throwing an unchecked exception is
135
+ // appropriate.
136
+ throw new IllegalArgumentException(ex);
137
+ }
138
+ return result;
139
+ }
140
+
141
+ // -----------------------------------------------------------------
142
+
143
+ /**
144
+ * Attempt to read a field tag, returning zero if we have reached EOF.
145
+ * Protocol message parsers use this to read tags, since a protocol message
146
+ * may legally end wherever a tag occurs, and zero is not a valid tag number.
147
+ */
148
+ public int readTag() throws IOException {
149
+ if (isAtEnd()) {
150
+ lastTag = 0;
151
+ return 0;
152
+ }
153
+
154
+ lastTag = readRawVarint32();
155
+ if (WireFormat.getTagFieldNumber(lastTag) == 0) {
156
+ // If we actually read zero (or any tag number corresponding to field
157
+ // number zero), that's not a valid tag.
158
+ throw InvalidProtocolBufferException.invalidTag();
159
+ }
160
+ return lastTag;
161
+ }
162
+
163
+ /**
164
+ * Verifies that the last call to readTag() returned the given tag value.
165
+ * This is used to verify that a nested group ended with the correct
166
+ * end tag.
167
+ *
168
+ * @throws InvalidProtocolBufferException {@code value} does not match the
169
+ * last tag.
170
+ */
171
+ public void checkLastTagWas(final int value)
172
+ throws InvalidProtocolBufferException {
173
+ if (lastTag != value) {
174
+ throw InvalidProtocolBufferException.invalidEndTag();
175
+ }
176
+ }
177
+
178
+ public int getLastTag() {
179
+ return lastTag;
180
+ }
181
+
182
+ /**
183
+ * Reads and discards a single field, given its tag value.
184
+ *
185
+ * @return {@code false} if the tag is an endgroup tag, in which case
186
+ * nothing is skipped. Otherwise, returns {@code true}.
187
+ */
188
+ public boolean skipField(final int tag) throws IOException {
189
+ switch (WireFormat.getTagWireType(tag)) {
190
+ case WireFormat.WIRETYPE_VARINT:
191
+ skipRawVarint();
192
+ return true;
193
+ case WireFormat.WIRETYPE_FIXED64:
194
+ skipRawBytes(8);
195
+ return true;
196
+ case WireFormat.WIRETYPE_LENGTH_DELIMITED:
197
+ skipRawBytes(readRawVarint32());
198
+ return true;
199
+ case WireFormat.WIRETYPE_START_GROUP:
200
+ skipMessage();
201
+ checkLastTagWas(
202
+ WireFormat.makeTag(WireFormat.getTagFieldNumber(tag),
203
+ WireFormat.WIRETYPE_END_GROUP));
204
+ return true;
205
+ case WireFormat.WIRETYPE_END_GROUP:
206
+ return false;
207
+ case WireFormat.WIRETYPE_FIXED32:
208
+ skipRawBytes(4);
209
+ return true;
210
+ default:
211
+ throw InvalidProtocolBufferException.invalidWireType();
212
+ }
213
+ }
214
+
215
+ /**
216
+ * Reads a single field and writes it to output in wire format,
217
+ * given its tag value.
218
+ *
219
+ * @return {@code false} if the tag is an endgroup tag, in which case
220
+ * nothing is skipped. Otherwise, returns {@code true}.
221
+ */
222
+ public boolean skipField(final int tag, final CodedOutputStream output)
223
+ throws IOException {
224
+ switch (WireFormat.getTagWireType(tag)) {
225
+ case WireFormat.WIRETYPE_VARINT: {
226
+ long value = readInt64();
227
+ output.writeRawVarint32(tag);
228
+ output.writeUInt64NoTag(value);
229
+ return true;
230
+ }
231
+ case WireFormat.WIRETYPE_FIXED64: {
232
+ long value = readRawLittleEndian64();
233
+ output.writeRawVarint32(tag);
234
+ output.writeFixed64NoTag(value);
235
+ return true;
236
+ }
237
+ case WireFormat.WIRETYPE_LENGTH_DELIMITED: {
238
+ ByteString value = readBytes();
239
+ output.writeRawVarint32(tag);
240
+ output.writeBytesNoTag(value);
241
+ return true;
242
+ }
243
+ case WireFormat.WIRETYPE_START_GROUP: {
244
+ output.writeRawVarint32(tag);
245
+ skipMessage(output);
246
+ int endtag = WireFormat.makeTag(WireFormat.getTagFieldNumber(tag),
247
+ WireFormat.WIRETYPE_END_GROUP);
248
+ checkLastTagWas(endtag);
249
+ output.writeRawVarint32(endtag);
250
+ return true;
251
+ }
252
+ case WireFormat.WIRETYPE_END_GROUP: {
253
+ return false;
254
+ }
255
+ case WireFormat.WIRETYPE_FIXED32: {
256
+ int value = readRawLittleEndian32();
257
+ output.writeRawVarint32(tag);
258
+ output.writeFixed32NoTag(value);
259
+ return true;
260
+ }
261
+ default:
262
+ throw InvalidProtocolBufferException.invalidWireType();
263
+ }
264
+ }
265
+
266
+ /**
267
+ * Reads and discards an entire message. This will read either until EOF
268
+ * or until an endgroup tag, whichever comes first.
269
+ */
270
+ public void skipMessage() throws IOException {
271
+ while (true) {
272
+ final int tag = readTag();
273
+ if (tag == 0 || !skipField(tag)) {
274
+ return;
275
+ }
276
+ }
277
+ }
278
+
279
+ /**
280
+ * Reads an entire message and writes it to output in wire format.
281
+ * This will read either until EOF or until an endgroup tag,
282
+ * whichever comes first.
283
+ */
284
+ public void skipMessage(CodedOutputStream output) throws IOException {
285
+ while (true) {
286
+ final int tag = readTag();
287
+ if (tag == 0 || !skipField(tag, output)) {
288
+ return;
289
+ }
290
+ }
291
+ }
292
+
293
+ /**
294
+ * Collects the bytes skipped and returns the data in a ByteBuffer.
295
+ */
296
+ private class SkippedDataSink implements RefillCallback {
297
+ private int lastPos = bufferPos;
298
+ private ByteArrayOutputStream byteArrayStream;
299
+
300
+ @Override
301
+ public void onRefill() {
302
+ if (byteArrayStream == null) {
303
+ byteArrayStream = new ByteArrayOutputStream();
304
+ }
305
+ byteArrayStream.write(buffer, lastPos, bufferPos - lastPos);
306
+ lastPos = 0;
307
+ }
308
+
309
+ /**
310
+ * Gets skipped data in a ByteBuffer. This method should only be
311
+ * called once.
312
+ */
313
+ ByteBuffer getSkippedData() {
314
+ if (byteArrayStream == null) {
315
+ return ByteBuffer.wrap(buffer, lastPos, bufferPos - lastPos);
316
+ } else {
317
+ byteArrayStream.write(buffer, lastPos, bufferPos);
318
+ return ByteBuffer.wrap(byteArrayStream.toByteArray());
319
+ }
320
+ }
321
+ }
322
+
323
+
324
+ // -----------------------------------------------------------------
325
+
326
+ /** Read a {@code double} field value from the stream. */
327
+ public double readDouble() throws IOException {
328
+ return Double.longBitsToDouble(readRawLittleEndian64());
329
+ }
330
+
331
+ /** Read a {@code float} field value from the stream. */
332
+ public float readFloat() throws IOException {
333
+ return Float.intBitsToFloat(readRawLittleEndian32());
334
+ }
335
+
336
+ /** Read a {@code uint64} field value from the stream. */
337
+ public long readUInt64() throws IOException {
338
+ return readRawVarint64();
339
+ }
340
+
341
+ /** Read an {@code int64} field value from the stream. */
342
+ public long readInt64() throws IOException {
343
+ return readRawVarint64();
344
+ }
345
+
346
+ /** Read an {@code int32} field value from the stream. */
347
+ public int readInt32() throws IOException {
348
+ return readRawVarint32();
349
+ }
350
+
351
+ /** Read a {@code fixed64} field value from the stream. */
352
+ public long readFixed64() throws IOException {
353
+ return readRawLittleEndian64();
354
+ }
355
+
356
+ /** Read a {@code fixed32} field value from the stream. */
357
+ public int readFixed32() throws IOException {
358
+ return readRawLittleEndian32();
359
+ }
360
+
361
+ /** Read a {@code bool} field value from the stream. */
362
+ public boolean readBool() throws IOException {
363
+ return readRawVarint64() != 0;
364
+ }
365
+
366
+ /**
367
+ * Read a {@code string} field value from the stream.
368
+ * If the stream contains malformed UTF-8,
369
+ * replace the offending bytes with the standard UTF-8 replacement character.
370
+ */
371
+ public String readString() throws IOException {
372
+ final int size = readRawVarint32();
373
+ if (size <= (bufferSize - bufferPos) && size > 0) {
374
+ // Fast path: We already have the bytes in a contiguous buffer, so
375
+ // just copy directly from it.
376
+ final String result = new String(buffer, bufferPos, size, "UTF-8");
377
+ bufferPos += size;
378
+ return result;
379
+ } else if (size == 0) {
380
+ return "";
381
+ } else {
382
+ // Slow path: Build a byte array first then copy it.
383
+ return new String(readRawBytesSlowPath(size), "UTF-8");
384
+ }
385
+ }
386
+
387
+ /**
388
+ * Read a {@code string} field value from the stream.
389
+ * If the stream contains malformed UTF-8,
390
+ * throw exception {@link InvalidProtocolBufferException}.
391
+ */
392
+ public String readStringRequireUtf8() throws IOException {
393
+ final int size = readRawVarint32();
394
+ final byte[] bytes;
395
+ int pos = bufferPos;
396
+ if (size <= (bufferSize - pos) && size > 0) {
397
+ // Fast path: We already have the bytes in a contiguous buffer, so
398
+ // just copy directly from it.
399
+ bytes = buffer;
400
+ bufferPos = pos + size;
401
+ } else if (size == 0) {
402
+ return "";
403
+ } else {
404
+ // Slow path: Build a byte array first then copy it.
405
+ bytes = readRawBytesSlowPath(size);
406
+ pos = 0;
407
+ }
408
+ // TODO(martinrb): We could save a pass by validating while decoding.
409
+ if (!Utf8.isValidUtf8(bytes, pos, pos + size)) {
410
+ throw InvalidProtocolBufferException.invalidUtf8();
411
+ }
412
+ return new String(bytes, pos, size, "UTF-8");
413
+ }
414
+
415
+ /** Read a {@code group} field value from the stream. */
416
+ public void readGroup(final int fieldNumber,
417
+ final MessageLite.Builder builder,
418
+ final ExtensionRegistryLite extensionRegistry)
419
+ throws IOException {
420
+ if (recursionDepth >= recursionLimit) {
421
+ throw InvalidProtocolBufferException.recursionLimitExceeded();
422
+ }
423
+ ++recursionDepth;
424
+ builder.mergeFrom(this, extensionRegistry);
425
+ checkLastTagWas(
426
+ WireFormat.makeTag(fieldNumber, WireFormat.WIRETYPE_END_GROUP));
427
+ --recursionDepth;
428
+ }
429
+
430
+
431
+ /** Read a {@code group} field value from the stream. */
432
+ public <T extends MessageLite> T readGroup(
433
+ final int fieldNumber,
434
+ final Parser<T> parser,
435
+ final ExtensionRegistryLite extensionRegistry)
436
+ throws IOException {
437
+ if (recursionDepth >= recursionLimit) {
438
+ throw InvalidProtocolBufferException.recursionLimitExceeded();
439
+ }
440
+ ++recursionDepth;
441
+ T result = parser.parsePartialFrom(this, extensionRegistry);
442
+ checkLastTagWas(
443
+ WireFormat.makeTag(fieldNumber, WireFormat.WIRETYPE_END_GROUP));
444
+ --recursionDepth;
445
+ return result;
446
+ }
447
+
448
+ /**
449
+ * Reads a {@code group} field value from the stream and merges it into the
450
+ * given {@link UnknownFieldSet}.
451
+ *
452
+ * @deprecated UnknownFieldSet.Builder now implements MessageLite.Builder, so
453
+ * you can just call {@link #readGroup}.
454
+ */
455
+ @Deprecated
456
+ public void readUnknownGroup(final int fieldNumber,
457
+ final MessageLite.Builder builder)
458
+ throws IOException {
459
+ // We know that UnknownFieldSet will ignore any ExtensionRegistry so it
460
+ // is safe to pass null here. (We can't call
461
+ // ExtensionRegistry.getEmptyRegistry() because that would make this
462
+ // class depend on ExtensionRegistry, which is not part of the lite
463
+ // library.)
464
+ readGroup(fieldNumber, builder, null);
465
+ }
466
+
467
+ /** Read an embedded message field value from the stream. */
468
+ public void readMessage(final MessageLite.Builder builder,
469
+ final ExtensionRegistryLite extensionRegistry)
470
+ throws IOException {
471
+ final int length = readRawVarint32();
472
+ if (recursionDepth >= recursionLimit) {
473
+ throw InvalidProtocolBufferException.recursionLimitExceeded();
474
+ }
475
+ final int oldLimit = pushLimit(length);
476
+ ++recursionDepth;
477
+ builder.mergeFrom(this, extensionRegistry);
478
+ checkLastTagWas(0);
479
+ --recursionDepth;
480
+ popLimit(oldLimit);
481
+ }
482
+
483
+
484
+ /** Read an embedded message field value from the stream. */
485
+ public <T extends MessageLite> T readMessage(
486
+ final Parser<T> parser,
487
+ final ExtensionRegistryLite extensionRegistry)
488
+ throws IOException {
489
+ int length = readRawVarint32();
490
+ if (recursionDepth >= recursionLimit) {
491
+ throw InvalidProtocolBufferException.recursionLimitExceeded();
492
+ }
493
+ final int oldLimit = pushLimit(length);
494
+ ++recursionDepth;
495
+ T result = parser.parsePartialFrom(this, extensionRegistry);
496
+ checkLastTagWas(0);
497
+ --recursionDepth;
498
+ popLimit(oldLimit);
499
+ return result;
500
+ }
501
+
502
+ /** Read a {@code bytes} field value from the stream. */
503
+ public ByteString readBytes() throws IOException {
504
+ final int size = readRawVarint32();
505
+ if (size <= (bufferSize - bufferPos) && size > 0) {
506
+ // Fast path: We already have the bytes in a contiguous buffer, so
507
+ // just copy directly from it.
508
+ final ByteString result = bufferIsImmutable && enableAliasing
509
+ ? new BoundedByteString(buffer, bufferPos, size)
510
+ : ByteString.copyFrom(buffer, bufferPos, size);
511
+ bufferPos += size;
512
+ return result;
513
+ } else if (size == 0) {
514
+ return ByteString.EMPTY;
515
+ } else {
516
+ // Slow path: Build a byte array first then copy it.
517
+ return new LiteralByteString(readRawBytesSlowPath(size));
518
+ }
519
+ }
520
+
521
+ /** Read a {@code bytes} field value from the stream. */
522
+ public byte[] readByteArray() throws IOException {
523
+ final int size = readRawVarint32();
524
+ if (size <= (bufferSize - bufferPos) && size > 0) {
525
+ // Fast path: We already have the bytes in a contiguous buffer, so
526
+ // just copy directly from it.
527
+ final byte[] result =
528
+ Arrays.copyOfRange(buffer, bufferPos, bufferPos + size);
529
+ bufferPos += size;
530
+ return result;
531
+ } else {
532
+ // Slow path: Build a byte array first then copy it.
533
+ return readRawBytesSlowPath(size);
534
+ }
535
+ }
536
+
537
+ /** Read a {@code bytes} field value from the stream. */
538
+ public ByteBuffer readByteBuffer() throws IOException {
539
+ final int size = readRawVarint32();
540
+ if (size <= (bufferSize - bufferPos) && size > 0) {
541
+ // Fast path: We already have the bytes in a contiguous buffer.
542
+ // When aliasing is enabled, we can return a ByteBuffer pointing directly
543
+ // into the underlying byte array without copy if the CodedInputStream is
544
+ // constructed from a byte array. If aliasing is disabled or the input is
545
+ // from an InputStream or ByteString, we have to make a copy of the bytes.
546
+ ByteBuffer result = input == null && !bufferIsImmutable && enableAliasing
547
+ ? ByteBuffer.wrap(buffer, bufferPos, size).slice()
548
+ : ByteBuffer.wrap(Arrays.copyOfRange(
549
+ buffer, bufferPos, bufferPos + size));
550
+ bufferPos += size;
551
+ return result;
552
+ } else if (size == 0) {
553
+ return Internal.EMPTY_BYTE_BUFFER;
554
+ } else {
555
+ // Slow path: Build a byte array first then copy it.
556
+ return ByteBuffer.wrap(readRawBytesSlowPath(size));
557
+ }
558
+ }
559
+
560
+ /** Read a {@code uint32} field value from the stream. */
561
+ public int readUInt32() throws IOException {
562
+ return readRawVarint32();
563
+ }
564
+
565
+ /**
566
+ * Read an enum field value from the stream. Caller is responsible
567
+ * for converting the numeric value to an actual enum.
568
+ */
569
+ public int readEnum() throws IOException {
570
+ return readRawVarint32();
571
+ }
572
+
573
+ /** Read an {@code sfixed32} field value from the stream. */
574
+ public int readSFixed32() throws IOException {
575
+ return readRawLittleEndian32();
576
+ }
577
+
578
+ /** Read an {@code sfixed64} field value from the stream. */
579
+ public long readSFixed64() throws IOException {
580
+ return readRawLittleEndian64();
581
+ }
582
+
583
+ /** Read an {@code sint32} field value from the stream. */
584
+ public int readSInt32() throws IOException {
585
+ return decodeZigZag32(readRawVarint32());
586
+ }
587
+
588
+ /** Read an {@code sint64} field value from the stream. */
589
+ public long readSInt64() throws IOException {
590
+ return decodeZigZag64(readRawVarint64());
591
+ }
592
+
593
+ // =================================================================
594
+
595
+ /**
596
+ * Read a raw Varint from the stream. If larger than 32 bits, discard the
597
+ * upper bits.
598
+ */
599
+ public int readRawVarint32() throws IOException {
600
+ // See implementation notes for readRawVarint64
601
+ fastpath: {
602
+ int pos = bufferPos;
603
+
604
+ if (bufferSize == pos) {
605
+ break fastpath;
606
+ }
607
+
608
+ final byte[] buffer = this.buffer;
609
+ int x;
610
+ if ((x = buffer[pos++]) >= 0) {
611
+ bufferPos = pos;
612
+ return x;
613
+ } else if (bufferSize - pos < 9) {
614
+ break fastpath;
615
+ } else if ((x ^= (buffer[pos++] << 7)) < 0L) {
616
+ x ^= (~0L << 7);
617
+ } else if ((x ^= (buffer[pos++] << 14)) >= 0L) {
618
+ x ^= (~0L << 7) ^ (~0L << 14);
619
+ } else if ((x ^= (buffer[pos++] << 21)) < 0L) {
620
+ x ^= (~0L << 7) ^ (~0L << 14) ^ (~0L << 21);
621
+ } else {
622
+ int y = buffer[pos++];
623
+ x ^= y << 28;
624
+ x ^= (~0L << 7) ^ (~0L << 14) ^ (~0L << 21) ^ (~0L << 28);
625
+ if (y < 0 &&
626
+ buffer[pos++] < 0 &&
627
+ buffer[pos++] < 0 &&
628
+ buffer[pos++] < 0 &&
629
+ buffer[pos++] < 0 &&
630
+ buffer[pos++] < 0) {
631
+ break fastpath; // Will throw malformedVarint()
632
+ }
633
+ }
634
+ bufferPos = pos;
635
+ return x;
636
+ }
637
+ return (int) readRawVarint64SlowPath();
638
+ }
639
+
640
+ private void skipRawVarint() throws IOException {
641
+ if (bufferSize - bufferPos >= 10) {
642
+ final byte[] buffer = this.buffer;
643
+ int pos = bufferPos;
644
+ for (int i = 0; i < 10; i++) {
645
+ if (buffer[pos++] >= 0) {
646
+ bufferPos = pos;
647
+ return;
648
+ }
649
+ }
650
+ }
651
+ skipRawVarintSlowPath();
652
+ }
653
+
654
+ private void skipRawVarintSlowPath() throws IOException {
655
+ for (int i = 0; i < 10; i++) {
656
+ if (readRawByte() >= 0) {
657
+ return;
658
+ }
659
+ }
660
+ throw InvalidProtocolBufferException.malformedVarint();
661
+ }
662
+
663
+ /**
664
+ * Reads a varint from the input one byte at a time, so that it does not
665
+ * read any bytes after the end of the varint. If you simply wrapped the
666
+ * stream in a CodedInputStream and used {@link #readRawVarint32(InputStream)}
667
+ * then you would probably end up reading past the end of the varint since
668
+ * CodedInputStream buffers its input.
669
+ */
670
+ static int readRawVarint32(final InputStream input) throws IOException {
671
+ final int firstByte = input.read();
672
+ if (firstByte == -1) {
673
+ throw InvalidProtocolBufferException.truncatedMessage();
674
+ }
675
+ return readRawVarint32(firstByte, input);
676
+ }
677
+
678
+ /**
679
+ * Like {@link #readRawVarint32(InputStream)}, but expects that the caller
680
+ * has already read one byte. This allows the caller to determine if EOF
681
+ * has been reached before attempting to read.
682
+ */
683
+ public static int readRawVarint32(
684
+ final int firstByte, final InputStream input) throws IOException {
685
+ if ((firstByte & 0x80) == 0) {
686
+ return firstByte;
687
+ }
688
+
689
+ int result = firstByte & 0x7f;
690
+ int offset = 7;
691
+ for (; offset < 32; offset += 7) {
692
+ final int b = input.read();
693
+ if (b == -1) {
694
+ throw InvalidProtocolBufferException.truncatedMessage();
695
+ }
696
+ result |= (b & 0x7f) << offset;
697
+ if ((b & 0x80) == 0) {
698
+ return result;
699
+ }
700
+ }
701
+ // Keep reading up to 64 bits.
702
+ for (; offset < 64; offset += 7) {
703
+ final int b = input.read();
704
+ if (b == -1) {
705
+ throw InvalidProtocolBufferException.truncatedMessage();
706
+ }
707
+ if ((b & 0x80) == 0) {
708
+ return result;
709
+ }
710
+ }
711
+ throw InvalidProtocolBufferException.malformedVarint();
712
+ }
713
+
714
+ /** Read a raw Varint from the stream. */
715
+ public long readRawVarint64() throws IOException {
716
+ // Implementation notes:
717
+ //
718
+ // Optimized for one-byte values, expected to be common.
719
+ // The particular code below was selected from various candidates
720
+ // empirically, by winning VarintBenchmark.
721
+ //
722
+ // Sign extension of (signed) Java bytes is usually a nuisance, but
723
+ // we exploit it here to more easily obtain the sign of bytes read.
724
+ // Instead of cleaning up the sign extension bits by masking eagerly,
725
+ // we delay until we find the final (positive) byte, when we clear all
726
+ // accumulated bits with one xor. We depend on javac to constant fold.
727
+ fastpath: {
728
+ int pos = bufferPos;
729
+
730
+ if (bufferSize == pos) {
731
+ break fastpath;
732
+ }
733
+
734
+ final byte[] buffer = this.buffer;
735
+ long x;
736
+ int y;
737
+ if ((y = buffer[pos++]) >= 0) {
738
+ bufferPos = pos;
739
+ return y;
740
+ } else if (bufferSize - pos < 9) {
741
+ break fastpath;
742
+ } else if ((x = y ^ (buffer[pos++] << 7)) < 0L) {
743
+ x ^= (~0L << 7);
744
+ } else if ((x ^= (buffer[pos++] << 14)) >= 0L) {
745
+ x ^= (~0L << 7) ^ (~0L << 14);
746
+ } else if ((x ^= (buffer[pos++] << 21)) < 0L) {
747
+ x ^= (~0L << 7) ^ (~0L << 14) ^ (~0L << 21);
748
+ } else if ((x ^= ((long) buffer[pos++] << 28)) >= 0L) {
749
+ x ^= (~0L << 7) ^ (~0L << 14) ^ (~0L << 21) ^ (~0L << 28);
750
+ } else if ((x ^= ((long) buffer[pos++] << 35)) < 0L) {
751
+ x ^= (~0L << 7) ^ (~0L << 14) ^ (~0L << 21) ^ (~0L << 28) ^ (~0L << 35);
752
+ } else if ((x ^= ((long) buffer[pos++] << 42)) >= 0L) {
753
+ x ^= (~0L << 7) ^ (~0L << 14) ^ (~0L << 21) ^ (~0L << 28) ^ (~0L << 35) ^ (~0L << 42);
754
+ } else if ((x ^= ((long) buffer[pos++] << 49)) < 0L) {
755
+ x ^= (~0L << 7) ^ (~0L << 14) ^ (~0L << 21) ^ (~0L << 28) ^ (~0L << 35) ^ (~0L << 42)
756
+ ^ (~0L << 49);
757
+ } else {
758
+ x ^= ((long) buffer[pos++] << 56);
759
+ x ^= (~0L << 7) ^ (~0L << 14) ^ (~0L << 21) ^ (~0L << 28) ^ (~0L << 35) ^ (~0L << 42)
760
+ ^ (~0L << 49) ^ (~0L << 56);
761
+ if (x < 0L) {
762
+ if (buffer[pos++] < 0L) {
763
+ break fastpath; // Will throw malformedVarint()
764
+ }
765
+ }
766
+ }
767
+ bufferPos = pos;
768
+ return x;
769
+ }
770
+ return readRawVarint64SlowPath();
771
+ }
772
+
773
+ /** Variant of readRawVarint64 for when uncomfortably close to the limit. */
774
+ /* Visible for testing */
775
+ long readRawVarint64SlowPath() throws IOException {
776
+ long result = 0;
777
+ for (int shift = 0; shift < 64; shift += 7) {
778
+ final byte b = readRawByte();
779
+ result |= (long) (b & 0x7F) << shift;
780
+ if ((b & 0x80) == 0) {
781
+ return result;
782
+ }
783
+ }
784
+ throw InvalidProtocolBufferException.malformedVarint();
785
+ }
786
+
787
+ /** Read a 32-bit little-endian integer from the stream. */
788
+ public int readRawLittleEndian32() throws IOException {
789
+ int pos = bufferPos;
790
+
791
+ // hand-inlined ensureAvailable(4);
792
+ if (bufferSize - pos < 4) {
793
+ refillBuffer(4);
794
+ pos = bufferPos;
795
+ }
796
+
797
+ final byte[] buffer = this.buffer;
798
+ bufferPos = pos + 4;
799
+ return (((buffer[pos] & 0xff)) |
800
+ ((buffer[pos + 1] & 0xff) << 8) |
801
+ ((buffer[pos + 2] & 0xff) << 16) |
802
+ ((buffer[pos + 3] & 0xff) << 24));
803
+ }
804
+
805
+ /** Read a 64-bit little-endian integer from the stream. */
806
+ public long readRawLittleEndian64() throws IOException {
807
+ int pos = bufferPos;
808
+
809
+ // hand-inlined ensureAvailable(8);
810
+ if (bufferSize - pos < 8) {
811
+ refillBuffer(8);
812
+ pos = bufferPos;
813
+ }
814
+
815
+ final byte[] buffer = this.buffer;
816
+ bufferPos = pos + 8;
817
+ return ((((long) buffer[pos] & 0xffL)) |
818
+ (((long) buffer[pos + 1] & 0xffL) << 8) |
819
+ (((long) buffer[pos + 2] & 0xffL) << 16) |
820
+ (((long) buffer[pos + 3] & 0xffL) << 24) |
821
+ (((long) buffer[pos + 4] & 0xffL) << 32) |
822
+ (((long) buffer[pos + 5] & 0xffL) << 40) |
823
+ (((long) buffer[pos + 6] & 0xffL) << 48) |
824
+ (((long) buffer[pos + 7] & 0xffL) << 56));
825
+ }
826
+
827
+ /**
828
+ * Decode a ZigZag-encoded 32-bit value. ZigZag encodes signed integers
829
+ * into values that can be efficiently encoded with varint. (Otherwise,
830
+ * negative values must be sign-extended to 64 bits to be varint encoded,
831
+ * thus always taking 10 bytes on the wire.)
832
+ *
833
+ * @param n An unsigned 32-bit integer, stored in a signed int because
834
+ * Java has no explicit unsigned support.
835
+ * @return A signed 32-bit integer.
836
+ */
837
+ public static int decodeZigZag32(final int n) {
838
+ return (n >>> 1) ^ -(n & 1);
839
+ }
840
+
841
+ /**
842
+ * Decode a ZigZag-encoded 64-bit value. ZigZag encodes signed integers
843
+ * into values that can be efficiently encoded with varint. (Otherwise,
844
+ * negative values must be sign-extended to 64 bits to be varint encoded,
845
+ * thus always taking 10 bytes on the wire.)
846
+ *
847
+ * @param n An unsigned 64-bit integer, stored in a signed int because
848
+ * Java has no explicit unsigned support.
849
+ * @return A signed 64-bit integer.
850
+ */
851
+ public static long decodeZigZag64(final long n) {
852
+ return (n >>> 1) ^ -(n & 1);
853
+ }
854
+
855
+ // -----------------------------------------------------------------
856
+
857
+ private final byte[] buffer;
858
+ private final boolean bufferIsImmutable;
859
+ private int bufferSize;
860
+ private int bufferSizeAfterLimit;
861
+ private int bufferPos;
862
+ private final InputStream input;
863
+ private int lastTag;
864
+ private boolean enableAliasing = false;
865
+
866
+ /**
867
+ * The total number of bytes read before the current buffer. The total
868
+ * bytes read up to the current position can be computed as
869
+ * {@code totalBytesRetired + bufferPos}. This value may be negative if
870
+ * reading started in the middle of the current buffer (e.g. if the
871
+ * constructor that takes a byte array and an offset was used).
872
+ */
873
+ private int totalBytesRetired;
874
+
875
+ /** The absolute position of the end of the current message. */
876
+ private int currentLimit = Integer.MAX_VALUE;
877
+
878
+ /** See setRecursionLimit() */
879
+ private int recursionDepth;
880
+ private int recursionLimit = DEFAULT_RECURSION_LIMIT;
881
+
882
+ /** See setSizeLimit() */
883
+ private int sizeLimit = DEFAULT_SIZE_LIMIT;
884
+
885
+ private static final int DEFAULT_RECURSION_LIMIT = 64;
886
+ private static final int DEFAULT_SIZE_LIMIT = 64 << 20; // 64MB
887
+ private static final int BUFFER_SIZE = 4096;
888
+
889
+ private CodedInputStream(final byte[] buffer, final int off, final int len) {
890
+ this.buffer = buffer;
891
+ bufferSize = off + len;
892
+ bufferPos = off;
893
+ totalBytesRetired = -off;
894
+ input = null;
895
+ bufferIsImmutable = false;
896
+ }
897
+
898
+ private CodedInputStream(final InputStream input) {
899
+ buffer = new byte[BUFFER_SIZE];
900
+ bufferSize = 0;
901
+ bufferPos = 0;
902
+ totalBytesRetired = 0;
903
+ this.input = input;
904
+ bufferIsImmutable = false;
905
+ }
906
+
907
+ private CodedInputStream(final LiteralByteString byteString) {
908
+ buffer = byteString.bytes;
909
+ bufferPos = byteString.getOffsetIntoBytes();
910
+ bufferSize = bufferPos + byteString.size();
911
+ totalBytesRetired = -bufferPos;
912
+ input = null;
913
+ bufferIsImmutable = true;
914
+ }
915
+
916
+ public void enableAliasing(boolean enabled) {
917
+ this.enableAliasing = enabled;
918
+ }
919
+
920
+ /**
921
+ * Set the maximum message recursion depth. In order to prevent malicious
922
+ * messages from causing stack overflows, {@code CodedInputStream} limits
923
+ * how deeply messages may be nested. The default limit is 64.
924
+ *
925
+ * @return the old limit.
926
+ */
927
+ public int setRecursionLimit(final int limit) {
928
+ if (limit < 0) {
929
+ throw new IllegalArgumentException(
930
+ "Recursion limit cannot be negative: " + limit);
931
+ }
932
+ final int oldLimit = recursionLimit;
933
+ recursionLimit = limit;
934
+ return oldLimit;
935
+ }
936
+
937
+ /**
938
+ * Set the maximum message size. In order to prevent malicious
939
+ * messages from exhausting memory or causing integer overflows,
940
+ * {@code CodedInputStream} limits how large a message may be.
941
+ * The default limit is 64MB. You should set this limit as small
942
+ * as you can without harming your app's functionality. Note that
943
+ * size limits only apply when reading from an {@code InputStream}, not
944
+ * when constructed around a raw byte array (nor with
945
+ * {@link ByteString#newCodedInput}).
946
+ * <p>
947
+ * If you want to read several messages from a single CodedInputStream, you
948
+ * could call {@link #resetSizeCounter()} after each one to avoid hitting the
949
+ * size limit.
950
+ *
951
+ * @return the old limit.
952
+ */
953
+ public int setSizeLimit(final int limit) {
954
+ if (limit < 0) {
955
+ throw new IllegalArgumentException(
956
+ "Size limit cannot be negative: " + limit);
957
+ }
958
+ final int oldLimit = sizeLimit;
959
+ sizeLimit = limit;
960
+ return oldLimit;
961
+ }
962
+
963
+ /**
964
+ * Resets the current size counter to zero (see {@link #setSizeLimit(int)}).
965
+ */
966
+ public void resetSizeCounter() {
967
+ totalBytesRetired = -bufferPos;
968
+ }
969
+
970
+ /**
971
+ * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
972
+ * is called when descending into a length-delimited embedded message.
973
+ *
974
+ * <p>Note that {@code pushLimit()} does NOT affect how many bytes the
975
+ * {@code CodedInputStream} reads from an underlying {@code InputStream} when
976
+ * refreshing its buffer. If you need to prevent reading past a certain
977
+ * point in the underlying {@code InputStream} (e.g. because you expect it to
978
+ * contain more data after the end of the message which you need to handle
979
+ * differently) then you must place a wrapper around your {@code InputStream}
980
+ * which limits the amount of data that can be read from it.
981
+ *
982
+ * @return the old limit.
983
+ */
984
+ public int pushLimit(int byteLimit) throws InvalidProtocolBufferException {
985
+ if (byteLimit < 0) {
986
+ throw InvalidProtocolBufferException.negativeSize();
987
+ }
988
+ byteLimit += totalBytesRetired + bufferPos;
989
+ final int oldLimit = currentLimit;
990
+ if (byteLimit > oldLimit) {
991
+ throw InvalidProtocolBufferException.truncatedMessage();
992
+ }
993
+ currentLimit = byteLimit;
994
+
995
+ recomputeBufferSizeAfterLimit();
996
+
997
+ return oldLimit;
998
+ }
999
+
1000
+ private void recomputeBufferSizeAfterLimit() {
1001
+ bufferSize += bufferSizeAfterLimit;
1002
+ final int bufferEnd = totalBytesRetired + bufferSize;
1003
+ if (bufferEnd > currentLimit) {
1004
+ // Limit is in current buffer.
1005
+ bufferSizeAfterLimit = bufferEnd - currentLimit;
1006
+ bufferSize -= bufferSizeAfterLimit;
1007
+ } else {
1008
+ bufferSizeAfterLimit = 0;
1009
+ }
1010
+ }
1011
+
1012
+ /**
1013
+ * Discards the current limit, returning to the previous limit.
1014
+ *
1015
+ * @param oldLimit The old limit, as returned by {@code pushLimit}.
1016
+ */
1017
+ public void popLimit(final int oldLimit) {
1018
+ currentLimit = oldLimit;
1019
+ recomputeBufferSizeAfterLimit();
1020
+ }
1021
+
1022
+ /**
1023
+ * Returns the number of bytes to be read before the current limit.
1024
+ * If no limit is set, returns -1.
1025
+ */
1026
+ public int getBytesUntilLimit() {
1027
+ if (currentLimit == Integer.MAX_VALUE) {
1028
+ return -1;
1029
+ }
1030
+
1031
+ final int currentAbsolutePosition = totalBytesRetired + bufferPos;
1032
+ return currentLimit - currentAbsolutePosition;
1033
+ }
1034
+
1035
+ /**
1036
+ * Returns true if the stream has reached the end of the input. This is the
1037
+ * case if either the end of the underlying input source has been reached or
1038
+ * if the stream has reached a limit created using {@link #pushLimit(int)}.
1039
+ */
1040
+ public boolean isAtEnd() throws IOException {
1041
+ return bufferPos == bufferSize && !tryRefillBuffer(1);
1042
+ }
1043
+
1044
+ /**
1045
+ * The total bytes read up to the current position. Calling
1046
+ * {@link #resetSizeCounter()} resets this value to zero.
1047
+ */
1048
+ public int getTotalBytesRead() {
1049
+ return totalBytesRetired + bufferPos;
1050
+ }
1051
+
1052
+ private interface RefillCallback {
1053
+ void onRefill();
1054
+ }
1055
+
1056
+ private RefillCallback refillCallback = null;
1057
+
1058
+ /**
1059
+ * Ensures that at least {@code n} bytes are available in the buffer, reading
1060
+ * more bytes from the input if necessary to make it so. Caller must ensure
1061
+ * that the requested space is less than BUFFER_SIZE.
1062
+ *
1063
+ * @throws InvalidProtocolBufferException The end of the stream or the current
1064
+ * limit was reached.
1065
+ */
1066
+ private void ensureAvailable(int n) throws IOException {
1067
+ if (bufferSize - bufferPos < n) {
1068
+ refillBuffer(n);
1069
+ }
1070
+ }
1071
+
1072
+ /**
1073
+ * Reads more bytes from the input, making at least {@code n} bytes available
1074
+ * in the buffer. Caller must ensure that the requested space is not yet
1075
+ * available, and that the requested space is less than BUFFER_SIZE.
1076
+ *
1077
+ * @throws InvalidProtocolBufferException The end of the stream or the current
1078
+ * limit was reached.
1079
+ */
1080
+ private void refillBuffer(int n) throws IOException {
1081
+ if (!tryRefillBuffer(n)) {
1082
+ throw InvalidProtocolBufferException.truncatedMessage();
1083
+ }
1084
+ }
1085
+
1086
+ /**
1087
+ * Tries to read more bytes from the input, making at least {@code n} bytes
1088
+ * available in the buffer. Caller must ensure that the requested space is
1089
+ * not yet available, and that the requested space is less than BUFFER_SIZE.
1090
+ *
1091
+ * @return {@code true} if the bytes could be made available; {@code false}
1092
+ * if the end of the stream or the current limit was reached.
1093
+ */
1094
+ private boolean tryRefillBuffer(int n) throws IOException {
1095
+ if (bufferPos + n <= bufferSize) {
1096
+ throw new IllegalStateException(
1097
+ "refillBuffer() called when " + n +
1098
+ " bytes were already available in buffer");
1099
+ }
1100
+
1101
+ if (totalBytesRetired + bufferPos + n > currentLimit) {
1102
+ // Oops, we hit a limit.
1103
+ return false;
1104
+ }
1105
+
1106
+ if (refillCallback != null) {
1107
+ refillCallback.onRefill();
1108
+ }
1109
+
1110
+ if (input != null) {
1111
+ int pos = bufferPos;
1112
+ if (pos > 0) {
1113
+ if (bufferSize > pos) {
1114
+ System.arraycopy(buffer, pos, buffer, 0, bufferSize - pos);
1115
+ }
1116
+ totalBytesRetired += pos;
1117
+ bufferSize -= pos;
1118
+ bufferPos = 0;
1119
+ }
1120
+
1121
+ int bytesRead = input.read(buffer, bufferSize, buffer.length - bufferSize);
1122
+ if (bytesRead == 0 || bytesRead < -1 || bytesRead > buffer.length) {
1123
+ throw new IllegalStateException(
1124
+ "InputStream#read(byte[]) returned invalid result: " + bytesRead +
1125
+ "\nThe InputStream implementation is buggy.");
1126
+ }
1127
+ if (bytesRead > 0) {
1128
+ bufferSize += bytesRead;
1129
+ // Integer-overflow-conscious check against sizeLimit
1130
+ if (totalBytesRetired + n - sizeLimit > 0) {
1131
+ throw InvalidProtocolBufferException.sizeLimitExceeded();
1132
+ }
1133
+ recomputeBufferSizeAfterLimit();
1134
+ return (bufferSize >= n) ? true : tryRefillBuffer(n);
1135
+ }
1136
+ }
1137
+
1138
+ return false;
1139
+ }
1140
+
1141
+ /**
1142
+ * Read one byte from the input.
1143
+ *
1144
+ * @throws InvalidProtocolBufferException The end of the stream or the current
1145
+ * limit was reached.
1146
+ */
1147
+ public byte readRawByte() throws IOException {
1148
+ if (bufferPos == bufferSize) {
1149
+ refillBuffer(1);
1150
+ }
1151
+ return buffer[bufferPos++];
1152
+ }
1153
+
1154
+ /**
1155
+ * Read a fixed size of bytes from the input.
1156
+ *
1157
+ * @throws InvalidProtocolBufferException The end of the stream or the current
1158
+ * limit was reached.
1159
+ */
1160
+ public byte[] readRawBytes(final int size) throws IOException {
1161
+ final int pos = bufferPos;
1162
+ if (size <= (bufferSize - pos) && size > 0) {
1163
+ bufferPos = pos + size;
1164
+ return Arrays.copyOfRange(buffer, pos, pos + size);
1165
+ } else {
1166
+ return readRawBytesSlowPath(size);
1167
+ }
1168
+ }
1169
+
1170
+ /**
1171
+ * Exactly like readRawBytes, but caller must have already checked the fast
1172
+ * path: (size <= (bufferSize - pos) && size > 0)
1173
+ */
1174
+ private byte[] readRawBytesSlowPath(final int size) throws IOException {
1175
+ if (size <= 0) {
1176
+ if (size == 0) {
1177
+ return Internal.EMPTY_BYTE_ARRAY;
1178
+ } else {
1179
+ throw InvalidProtocolBufferException.negativeSize();
1180
+ }
1181
+ }
1182
+
1183
+ if (totalBytesRetired + bufferPos + size > currentLimit) {
1184
+ // Read to the end of the stream anyway.
1185
+ skipRawBytes(currentLimit - totalBytesRetired - bufferPos);
1186
+ // Then fail.
1187
+ throw InvalidProtocolBufferException.truncatedMessage();
1188
+ }
1189
+
1190
+ if (size < BUFFER_SIZE) {
1191
+ // Reading more bytes than are in the buffer, but not an excessive number
1192
+ // of bytes. We can safely allocate the resulting array ahead of time.
1193
+
1194
+ // First copy what we have.
1195
+ final byte[] bytes = new byte[size];
1196
+ int pos = bufferSize - bufferPos;
1197
+ System.arraycopy(buffer, bufferPos, bytes, 0, pos);
1198
+ bufferPos = bufferSize;
1199
+
1200
+ // We want to refill the buffer and then copy from the buffer into our
1201
+ // byte array rather than reading directly into our byte array because
1202
+ // the input may be unbuffered.
1203
+ ensureAvailable(size - pos);
1204
+ System.arraycopy(buffer, 0, bytes, pos, size - pos);
1205
+ bufferPos = size - pos;
1206
+
1207
+ return bytes;
1208
+ } else {
1209
+ // The size is very large. For security reasons, we can't allocate the
1210
+ // entire byte array yet. The size comes directly from the input, so a
1211
+ // maliciously-crafted message could provide a bogus very large size in
1212
+ // order to trick the app into allocating a lot of memory. We avoid this
1213
+ // by allocating and reading only a small chunk at a time, so that the
1214
+ // malicious message must actually *be* extremely large to cause
1215
+ // problems. Meanwhile, we limit the allowed size of a message elsewhere.
1216
+
1217
+ // Remember the buffer markers since we'll have to copy the bytes out of
1218
+ // it later.
1219
+ final int originalBufferPos = bufferPos;
1220
+ final int originalBufferSize = bufferSize;
1221
+
1222
+ // Mark the current buffer consumed.
1223
+ totalBytesRetired += bufferSize;
1224
+ bufferPos = 0;
1225
+ bufferSize = 0;
1226
+
1227
+ // Read all the rest of the bytes we need.
1228
+ int sizeLeft = size - (originalBufferSize - originalBufferPos);
1229
+ final List<byte[]> chunks = new ArrayList<byte[]>();
1230
+
1231
+ while (sizeLeft > 0) {
1232
+ final byte[] chunk = new byte[Math.min(sizeLeft, BUFFER_SIZE)];
1233
+ int pos = 0;
1234
+ while (pos < chunk.length) {
1235
+ final int n = (input == null) ? -1 :
1236
+ input.read(chunk, pos, chunk.length - pos);
1237
+ if (n == -1) {
1238
+ throw InvalidProtocolBufferException.truncatedMessage();
1239
+ }
1240
+ totalBytesRetired += n;
1241
+ pos += n;
1242
+ }
1243
+ sizeLeft -= chunk.length;
1244
+ chunks.add(chunk);
1245
+ }
1246
+
1247
+ // OK, got everything. Now concatenate it all into one buffer.
1248
+ final byte[] bytes = new byte[size];
1249
+
1250
+ // Start by copying the leftover bytes from this.buffer.
1251
+ int pos = originalBufferSize - originalBufferPos;
1252
+ System.arraycopy(buffer, originalBufferPos, bytes, 0, pos);
1253
+
1254
+ // And now all the chunks.
1255
+ for (final byte[] chunk : chunks) {
1256
+ System.arraycopy(chunk, 0, bytes, pos, chunk.length);
1257
+ pos += chunk.length;
1258
+ }
1259
+
1260
+ // Done.
1261
+ return bytes;
1262
+ }
1263
+ }
1264
+
1265
+ /**
1266
+ * Reads and discards {@code size} bytes.
1267
+ *
1268
+ * @throws InvalidProtocolBufferException The end of the stream or the current
1269
+ * limit was reached.
1270
+ */
1271
+ public void skipRawBytes(final int size) throws IOException {
1272
+ if (size <= (bufferSize - bufferPos) && size >= 0) {
1273
+ // We have all the bytes we need already.
1274
+ bufferPos += size;
1275
+ } else {
1276
+ skipRawBytesSlowPath(size);
1277
+ }
1278
+ }
1279
+
1280
+ /**
1281
+ * Exactly like skipRawBytes, but caller must have already checked the fast
1282
+ * path: (size <= (bufferSize - pos) && size >= 0)
1283
+ */
1284
+ private void skipRawBytesSlowPath(final int size) throws IOException {
1285
+ if (size < 0) {
1286
+ throw InvalidProtocolBufferException.negativeSize();
1287
+ }
1288
+
1289
+ if (totalBytesRetired + bufferPos + size > currentLimit) {
1290
+ // Read to the end of the stream anyway.
1291
+ skipRawBytes(currentLimit - totalBytesRetired - bufferPos);
1292
+ // Then fail.
1293
+ throw InvalidProtocolBufferException.truncatedMessage();
1294
+ }
1295
+
1296
+ // Skipping more bytes than are in the buffer. First skip what we have.
1297
+ int pos = bufferSize - bufferPos;
1298
+ bufferPos = bufferSize;
1299
+
1300
+ // Keep refilling the buffer until we get to the point we wanted to skip to.
1301
+ // This has the side effect of ensuring the limits are updated correctly.
1302
+ refillBuffer(1);
1303
+ while (size - pos > bufferSize) {
1304
+ pos += bufferSize;
1305
+ bufferPos = bufferSize;
1306
+ refillBuffer(1);
1307
+ }
1308
+
1309
+ bufferPos = size - pos;
1310
+ }
1311
+ }