实例介绍
【实例简介】
10月20更新的新版本,放上来给不想找的懒人下载吧
【实例截图】
【核心代码】
7ee46304-248e-4b63-b755-843136f596e5
└── protobuf-master
├── autogen.sh
├── benchmarks
│ ├── google_message1.dat
│ ├── google_message2.dat
│ ├── google_size.proto
│ ├── google_speed.proto
│ ├── ProtoBench.java
│ └── readme.txt
├── CHANGES.txt
├── configure.ac
├── CONTRIBUTORS.txt
├── editors
│ ├── protobuf-mode.el
│ ├── proto.vim
│ └── README.txt
├── examples
│ ├── add_person.cc
│ ├── AddPerson.java
│ ├── add_person.py
│ ├── addressbook.proto
│ ├── list_people.cc
│ ├── ListPeople.java
│ ├── list_people.py
│ ├── Makefile
│ └── README.txt
├── generate_descriptor_proto.sh
├── INSTALL.txt
├── java
│ ├── pom.xml
│ ├── README.txt
│ └── src
│ ├── main
│ │ └── java
│ │ └── com
│ │ └── google
│ │ └── protobuf
│ │ ├── AbstractMessage.java
│ │ ├── AbstractMessageLite.java
│ │ ├── AbstractParser.java
│ │ ├── BlockingRpcChannel.java
│ │ ├── BlockingService.java
│ │ ├── BoundedByteString.java
│ │ ├── ByteString.java
│ │ ├── CodedInputStream.java
│ │ ├── CodedOutputStream.java
│ │ ├── Descriptors.java
│ │ ├── DynamicMessage.java
│ │ ├── Extension.java
│ │ ├── ExtensionRegistry.java
│ │ ├── ExtensionRegistryLite.java
│ │ ├── FieldSet.java
│ │ ├── GeneratedMessage.java
│ │ ├── GeneratedMessageLite.java
│ │ ├── Internal.java
│ │ ├── InvalidProtocolBufferException.java
│ │ ├── LazyField.java
│ │ ├── LazyFieldLite.java
│ │ ├── LazyStringArrayList.java
│ │ ├── LazyStringList.java
│ │ ├── LiteralByteString.java
│ │ ├── Message.java
│ │ ├── MessageLite.java
│ │ ├── MessageLiteOrBuilder.java
│ │ ├── MessageOrBuilder.java
│ │ ├── MessageReflection.java
│ │ ├── Parser.java
│ │ ├── ProtocolMessageEnum.java
│ │ ├── ProtocolStringList.java
│ │ ├── RepeatedFieldBuilder.java
│ │ ├── RopeByteString.java
│ │ ├── RpcCallback.java
│ │ ├── RpcChannel.java
│ │ ├── RpcController.java
│ │ ├── RpcUtil.java
│ │ ├── ServiceException.java
│ │ ├── Service.java
│ │ ├── SingleFieldBuilder.java
│ │ ├── SmallSortedMap.java
│ │ ├── TextFormat.java
│ │ ├── UninitializedMessageException.java
│ │ ├── UnknownFieldSet.java
│ │ ├── UnmodifiableLazyStringList.java
│ │ ├── Utf8.java
│ │ └── WireFormat.java
│ └── test
│ └── java
│ └── com
│ └── google
│ └── protobuf
│ ├── AbstractMessageTest.java
│ ├── BoundedByteStringTest.java
│ ├── ByteStringTest.java
│ ├── CheckUtf8Test.java
│ ├── CodedInputStreamTest.java
│ ├── CodedOutputStreamTest.java
│ ├── DeprecatedFieldTest.java
│ ├── DescriptorsTest.java
│ ├── DynamicMessageTest.java
│ ├── ForceFieldBuildersPreRun.java
│ ├── GeneratedMessageTest.java
│ ├── IsValidUtf8Test.java
│ ├── IsValidUtf8TestUtil.java
│ ├── LazyFieldLiteTest.java
│ ├── lazy_fields_lite.proto
│ ├── LazyFieldTest.java
│ ├── LazyMessageLiteTest.java
│ ├── LazyStringArrayListTest.java
│ ├── LazyStringEndToEndTest.java
│ ├── lite_equals_and_hash.proto
│ ├── LiteEqualsAndHashTest.java
│ ├── LiteralByteStringTest.java
│ ├── LiteTest.java
│ ├── MessageTest.java
│ ├── multiple_files_test.proto
│ ├── NestedBuildersTest.java
│ ├── nested_builders_test.proto
│ ├── nested_extension_lite.proto
│ ├── nested_extension.proto
│ ├── non_nested_extension_lite.proto
│ ├── non_nested_extension.proto
│ ├── outer_class_name_test2.proto
│ ├── outer_class_name_test3.proto
│ ├── outer_class_name_test.proto
│ ├── ParserTest.java
│ ├── RepeatedFieldBuilderTest.java
│ ├── RopeByteStringSubstringTest.java
│ ├── RopeByteStringTest.java
│ ├── ServiceTest.java
│ ├── SingleFieldBuilderTest.java
│ ├── SmallSortedMapTest.java
│ ├── TestBadIdentifiers.java
│ ├── test_bad_identifiers.proto
│ ├── test_check_utf8.proto
│ ├── test_check_utf8_size.proto
│ ├── test_custom_options.proto
│ ├── test_extra_interfaces.proto
│ ├── TestUtil.java
│ ├── TextFormatTest.java
│ ├── UnknownFieldSetTest.java
│ ├── UnmodifiableLazyStringListTest.java
│ └── WireFormatTest.java
├── LICENSE
├── m4
│ ├── ac_system_extensions.m4
│ ├── acx_check_suncc.m4
│ ├── acx_pthread.m4
│ └── stl_hash.m4
├── Makefile.am
├── more_tests
│ └── Makefile
├── post_process_dist.sh
├── protobuf-lite.pc.in
├── protobuf.pc.in
├── python
│ ├── ez_setup.py
│ ├── google
│ │ ├── __init__.py
│ │ └── protobuf
│ │ ├── descriptor_database.py
│ │ ├── descriptor_pool.py
│ │ ├── descriptor.py
│ │ ├── __init__.py
│ │ ├── internal
│ │ │ ├── api_implementation.cc
│ │ │ ├── api_implementation_default_test.py
│ │ │ ├── api_implementation.py
│ │ │ ├── containers.py
│ │ │ ├── cpp_message.py
│ │ │ ├── decoder.py
│ │ │ ├── descriptor_database_test.py
│ │ │ ├── descriptor_pool_test1.proto
│ │ │ ├── descriptor_pool_test2.proto
│ │ │ ├── descriptor_pool_test.py
│ │ │ ├── descriptor_python_test.py
│ │ │ ├── descriptor_test.py
│ │ │ ├── encoder.py
│ │ │ ├── enum_type_wrapper.py
│ │ │ ├── factory_test1.proto
│ │ │ ├── factory_test2.proto
│ │ │ ├── generator_test.py
│ │ │ ├── __init__.py
│ │ │ ├── message_factory_python_test.py
│ │ │ ├── message_factory_test.py
│ │ │ ├── message_listener.py
│ │ │ ├── message_python_test.py
│ │ │ ├── message_test.py
│ │ │ ├── missing_enum_values.proto
│ │ │ ├── more_extensions_dynamic.proto
│ │ │ ├── more_extensions.proto
│ │ │ ├── more_messages.proto
│ │ │ ├── python_message.py
│ │ │ ├── reflection_test.py
│ │ │ ├── service_reflection_test.py
│ │ │ ├── symbol_database_test.py
│ │ │ ├── test_bad_identifiers.proto
│ │ │ ├── test_util.py
│ │ │ ├── text_encoding_test.py
│ │ │ ├── text_format_test.py
│ │ │ ├── type_checkers.py
│ │ │ ├── unknown_fields_test.py
│ │ │ ├── wire_format.py
│ │ │ └── wire_format_test.py
│ │ ├── message_factory.py
│ │ ├── message.py
│ │ ├── pyext
│ │ │ ├── cpp_message.py
│ │ │ ├── descriptor.cc
│ │ │ ├── descriptor_cpp2_test.py
│ │ │ ├── descriptor.h
│ │ │ ├── extension_dict.cc
│ │ │ ├── extension_dict.h
│ │ │ ├── __init__.py
│ │ │ ├── message.cc
│ │ │ ├── message_factory_cpp2_test.py
│ │ │ ├── message.h
│ │ │ ├── proto2_api_test.proto
│ │ │ ├── python.proto
│ │ │ ├── python_protobuf.h
│ │ │ ├── README
│ │ │ ├── reflection_cpp2_generated_test.py
│ │ │ ├── repeated_composite_container.cc
│ │ │ ├── repeated_composite_container.h
│ │ │ ├── repeated_scalar_container.cc
│ │ │ ├── repeated_scalar_container.h
│ │ │ └── scoped_pyobject_ptr.h
│ │ ├── reflection.py
│ │ ├── service.py
│ │ ├── service_reflection.py
│ │ ├── symbol_database.py
│ │ ├── text_encoding.py
│ │ └── text_format.py
│ ├── mox.py
│ ├── README.txt
│ ├── setup.py
│ └── stubout.py
├── README.md
├── src
│ ├── google
│ │ └── protobuf
│ │ ├── compiler
│ │ │ ├── code_generator.cc
│ │ │ ├── code_generator.h
│ │ │ ├── command_line_interface.cc
│ │ │ ├── command_line_interface.h
│ │ │ ├── command_line_interface_unittest.cc
│ │ │ ├── cpp
│ │ │ │ ├── cpp_bootstrap_unittest.cc
│ │ │ │ ├── cpp_enum.cc
│ │ │ │ ├── cpp_enum_field.cc
│ │ │ │ ├── cpp_enum_field.h
│ │ │ │ ├── cpp_enum.h
│ │ │ │ ├── cpp_extension.cc
│ │ │ │ ├── cpp_extension.h
│ │ │ │ ├── cpp_field.cc
│ │ │ │ ├── cpp_field.h
│ │ │ │ ├── cpp_file.cc
│ │ │ │ ├── cpp_file.h
│ │ │ │ ├── cpp_generator.cc
│ │ │ │ ├── cpp_generator.h
│ │ │ │ ├── cpp_helpers.cc
│ │ │ │ ├── cpp_helpers.h
│ │ │ │ ├── cpp_message.cc
│ │ │ │ ├── cpp_message_field.cc
│ │ │ │ ├── cpp_message_field.h
│ │ │ │ ├── cpp_message.h
│ │ │ │ ├── cpp_options.h
│ │ │ │ ├── cpp_plugin_unittest.cc
│ │ │ │ ├── cpp_primitive_field.cc
│ │ │ │ ├── cpp_primitive_field.h
│ │ │ │ ├── cpp_service.cc
│ │ │ │ ├── cpp_service.h
│ │ │ │ ├── cpp_string_field.cc
│ │ │ │ ├── cpp_string_field.h
│ │ │ │ ├── cpp_test_bad_identifiers.proto
│ │ │ │ ├── cpp_unittest.cc
│ │ │ │ └── cpp_unittest.h
│ │ │ ├── importer.cc
│ │ │ ├── importer.h
│ │ │ ├── importer_unittest.cc
│ │ │ ├── java
│ │ │ │ ├── java_context.cc
│ │ │ │ ├── java_context.h
│ │ │ │ ├── java_doc_comment.cc
│ │ │ │ ├── java_doc_comment.h
│ │ │ │ ├── java_doc_comment_unittest.cc
│ │ │ │ ├── java_enum.cc
│ │ │ │ ├── java_enum_field.cc
│ │ │ │ ├── java_enum_field.h
│ │ │ │ ├── java_enum.h
│ │ │ │ ├── java_extension.cc
│ │ │ │ ├── java_extension.h
│ │ │ │ ├── java_field.cc
│ │ │ │ ├── java_field.h
│ │ │ │ ├── java_file.cc
│ │ │ │ ├── java_file.h
│ │ │ │ ├── java_generator.cc
│ │ │ │ ├── java_generator_factory.cc
│ │ │ │ ├── java_generator_factory.h
│ │ │ │ ├── java_generator.h
│ │ │ │ ├── java_helpers.cc
│ │ │ │ ├── java_helpers.h
│ │ │ │ ├── java_lazy_message_field.cc
│ │ │ │ ├── java_lazy_message_field.h
│ │ │ │ ├── java_message.cc
│ │ │ │ ├── java_message_field.cc
│ │ │ │ ├── java_message_field.h
│ │ │ │ ├── java_message.h
│ │ │ │ ├── java_name_resolver.cc
│ │ │ │ ├── java_name_resolver.h
│ │ │ │ ├── java_plugin_unittest.cc
│ │ │ │ ├── java_primitive_field.cc
│ │ │ │ ├── java_primitive_field.h
│ │ │ │ ├── java_service.cc
│ │ │ │ ├── java_service.h
│ │ │ │ ├── java_shared_code_generator.cc
│ │ │ │ ├── java_shared_code_generator.h
│ │ │ │ ├── java_string_field.cc
│ │ │ │ └── java_string_field.h
│ │ │ ├── main.cc
│ │ │ ├── mock_code_generator.cc
│ │ │ ├── mock_code_generator.h
│ │ │ ├── package_info.h
│ │ │ ├── parser.cc
│ │ │ ├── parser.h
│ │ │ ├── parser_unittest.cc
│ │ │ ├── plugin.cc
│ │ │ ├── plugin.h
│ │ │ ├── plugin.pb.cc
│ │ │ ├── plugin.pb.h
│ │ │ ├── plugin.proto
│ │ │ ├── python
│ │ │ │ ├── python_generator.cc
│ │ │ │ ├── python_generator.h
│ │ │ │ └── python_plugin_unittest.cc
│ │ │ ├── subprocess.cc
│ │ │ ├── subprocess.h
│ │ │ ├── test_plugin.cc
│ │ │ ├── zip_output_unittest.sh
│ │ │ ├── zip_writer.cc
│ │ │ └── zip_writer.h
│ │ ├── descriptor.cc
│ │ ├── descriptor_database.cc
│ │ ├── descriptor_database.h
│ │ ├── descriptor_database_unittest.cc
│ │ ├── descriptor.h
│ │ ├── descriptor_pb2_test.py
│ │ ├── descriptor.pb.cc
│ │ ├── descriptor.pb.h
│ │ ├── descriptor.proto
│ │ ├── descriptor_unittest.cc
│ │ ├── dynamic_message.cc
│ │ ├── dynamic_message.h
│ │ ├── dynamic_message_unittest.cc
│ │ ├── extension_set.cc
│ │ ├── extension_set.h
│ │ ├── extension_set_heavy.cc
│ │ ├── extension_set_unittest.cc
│ │ ├── generated_enum_reflection.h
│ │ ├── generated_message_reflection.cc
│ │ ├── generated_message_reflection.h
│ │ ├── generated_message_reflection_unittest.cc
│ │ ├── generated_message_util.cc
│ │ ├── generated_message_util.h
│ │ ├── io
│ │ │ ├── coded_stream.cc
│ │ │ ├── coded_stream.h
│ │ │ ├── coded_stream_inl.h
│ │ │ ├── coded_stream_unittest.cc
│ │ │ ├── gzip_stream.cc
│ │ │ ├── gzip_stream.h
│ │ │ ├── gzip_stream_unittest.sh
│ │ │ ├── package_info.h
│ │ │ ├── printer.cc
│ │ │ ├── printer.h
│ │ │ ├── printer_unittest.cc
│ │ │ ├── strtod.cc
│ │ │ ├── strtod.h
│ │ │ ├── tokenizer.cc
│ │ │ ├── tokenizer.h
│ │ │ ├── tokenizer_unittest.cc
│ │ │ ├── zero_copy_stream.cc
│ │ │ ├── zero_copy_stream.h
│ │ │ ├── zero_copy_stream_impl.cc
│ │ │ ├── zero_copy_stream_impl.h
│ │ │ ├── zero_copy_stream_impl_lite.cc
│ │ │ ├── zero_copy_stream_impl_lite.h
│ │ │ └── zero_copy_stream_unittest.cc
│ │ ├── lite_unittest.cc
│ │ ├── message.cc
│ │ ├── message.h
│ │ ├── message_lite.cc
│ │ ├── message_lite.h
│ │ ├── message_unittest.cc
│ │ ├── package_info.h
│ │ ├── reflection_ops.cc
│ │ ├── reflection_ops.h
│ │ ├── reflection_ops_unittest.cc
│ │ ├── repeated_field.cc
│ │ ├── repeated_field.h
│ │ ├── repeated_field_reflection_unittest.cc
│ │ ├── repeated_field_unittest.cc
│ │ ├── SEBS
│ │ ├── service.cc
│ │ ├── service.h
│ │ ├── stubs
│ │ │ ├── atomicops.h
│ │ │ ├── atomicops_internals_arm64_gcc.h
│ │ │ ├── atomicops_internals_arm_gcc.h
│ │ │ ├── atomicops_internals_arm_qnx.h
│ │ │ ├── atomicops_internals_atomicword_compat.h
│ │ │ ├── atomicops_internals_generic_gcc.h
│ │ │ ├── atomicops_internals_macosx.h
│ │ │ ├── atomicops_internals_mips_gcc.h
│ │ │ ├── atomicops_internals_pnacl.h
│ │ │ ├── atomicops_internals_solaris.h
│ │ │ ├── atomicops_internals_tsan.h
│ │ │ ├── atomicops_internals_x86_gcc.cc
│ │ │ ├── atomicops_internals_x86_gcc.h
│ │ │ ├── atomicops_internals_x86_msvc.cc
│ │ │ ├── atomicops_internals_x86_msvc.h
│ │ │ ├── common.cc
│ │ │ ├── common.h
│ │ │ ├── common_unittest.cc
│ │ │ ├── hash.h
│ │ │ ├── map_util.h
│ │ │ ├── once.cc
│ │ │ ├── once.h
│ │ │ ├── once_unittest.cc
│ │ │ ├── platform_macros.h
│ │ │ ├── shared_ptr.h
│ │ │ ├── stl_util.h
│ │ │ ├── stringprintf.cc
│ │ │ ├── stringprintf.h
│ │ │ ├── stringprintf_unittest.cc
│ │ │ ├── structurally_valid.cc
│ │ │ ├── structurally_valid_unittest.cc
│ │ │ ├── strutil.cc
│ │ │ ├── strutil.h
│ │ │ ├── strutil_unittest.cc
│ │ │ ├── substitute.cc
│ │ │ ├── substitute.h
│ │ │ ├── template_util.h
│ │ │ ├── template_util_unittest.cc
│ │ │ ├── type_traits.h
│ │ │ └── type_traits_unittest.cc
│ │ ├── testdata
│ │ │ ├── bad_utf8_string
│ │ │ ├── golden_message
│ │ │ ├── golden_message_oneof_implemented
│ │ │ ├── golden_packed_fields_message
│ │ │ ├── text_format_unittest_data_oneof_implemented.txt
│ │ │ ├── text_format_unittest_data_pointy_oneof.txt
│ │ │ ├── text_format_unittest_data_pointy.txt
│ │ │ ├── text_format_unittest_data.txt
│ │ │ ├── text_format_unittest_extensions_data_pointy.txt
│ │ │ └── text_format_unittest_extensions_data.txt
│ │ ├── testing
│ │ │ ├── file.cc
│ │ │ ├── file.h
│ │ │ ├── googletest.cc
│ │ │ ├── googletest.h
│ │ │ ├── zcgunzip.cc
│ │ │ └── zcgzip.cc
│ │ ├── test_util.cc
│ │ ├── test_util.h
│ │ ├── test_util_lite.cc
│ │ ├── test_util_lite.h
│ │ ├── text_format.cc
│ │ ├── text_format.h
│ │ ├── text_format_unittest.cc
│ │ ├── unittest_custom_options.proto
│ │ ├── unittest_embed_optimize_for.proto
│ │ ├── unittest_empty.proto
│ │ ├── unittest_enormous_descriptor.proto
│ │ ├── unittest_import_lite.proto
│ │ ├── unittest_import.proto
│ │ ├── unittest_import_public_lite.proto
│ │ ├── unittest_import_public.proto
│ │ ├── unittest_lite_imports_nonlite.proto
│ │ ├── unittest_lite.proto
│ │ ├── unittest_mset.proto
│ │ ├── unittest_no_generic_services.proto
│ │ ├── unittest_optimize_for.proto
│ │ ├── unittest.proto
│ │ ├── unknown_field_set.cc
│ │ ├── unknown_field_set.h
│ │ ├── unknown_field_set_unittest.cc
│ │ ├── wire_format.cc
│ │ ├── wire_format.h
│ │ ├── wire_format_lite.cc
│ │ ├── wire_format_lite.h
│ │ ├── wire_format_lite_inl.h
│ │ └── wire_format_unittest.cc
│ ├── Makefile.am
│ └── solaris
│ └── libstdc++.la
└── vsprojects
├── config.h
├── convert2008to2005.sh
├── extract_includes.bat
├── libprotobuf-lite.vcproj
├── libprotobuf.vcproj
├── libprotoc.vcproj
├── lite-test.vcproj
├── protobuf.sln
├── protoc.vcproj
├── readme.txt
├── test_plugin.vcproj
└── tests.vcproj
36 directories, 474 files
10月20更新的新版本,放上来给不想找的懒人下载吧
【实例截图】
【核心代码】
7ee46304-248e-4b63-b755-843136f596e5
└── protobuf-master
├── autogen.sh
├── benchmarks
│ ├── google_message1.dat
│ ├── google_message2.dat
│ ├── google_size.proto
│ ├── google_speed.proto
│ ├── ProtoBench.java
│ └── readme.txt
├── CHANGES.txt
├── configure.ac
├── CONTRIBUTORS.txt
├── editors
│ ├── protobuf-mode.el
│ ├── proto.vim
│ └── README.txt
├── examples
│ ├── add_person.cc
│ ├── AddPerson.java
│ ├── add_person.py
│ ├── addressbook.proto
│ ├── list_people.cc
│ ├── ListPeople.java
│ ├── list_people.py
│ ├── Makefile
│ └── README.txt
├── generate_descriptor_proto.sh
├── INSTALL.txt
├── java
│ ├── pom.xml
│ ├── README.txt
│ └── src
│ ├── main
│ │ └── java
│ │ └── com
│ │ └── protobuf
│ │ ├── AbstractMessage.java
│ │ ├── AbstractMessageLite.java
│ │ ├── AbstractParser.java
│ │ ├── BlockingRpcChannel.java
│ │ ├── BlockingService.java
│ │ ├── BoundedByteString.java
│ │ ├── ByteString.java
│ │ ├── CodedInputStream.java
│ │ ├── CodedOutputStream.java
│ │ ├── Descriptors.java
│ │ ├── DynamicMessage.java
│ │ ├── Extension.java
│ │ ├── ExtensionRegistry.java
│ │ ├── ExtensionRegistryLite.java
│ │ ├── FieldSet.java
│ │ ├── GeneratedMessage.java
│ │ ├── GeneratedMessageLite.java
│ │ ├── Internal.java
│ │ ├── InvalidProtocolBufferException.java
│ │ ├── LazyField.java
│ │ ├── LazyFieldLite.java
│ │ ├── LazyStringArrayList.java
│ │ ├── LazyStringList.java
│ │ ├── LiteralByteString.java
│ │ ├── Message.java
│ │ ├── MessageLite.java
│ │ ├── MessageLiteOrBuilder.java
│ │ ├── MessageOrBuilder.java
│ │ ├── MessageReflection.java
│ │ ├── Parser.java
│ │ ├── ProtocolMessageEnum.java
│ │ ├── ProtocolStringList.java
│ │ ├── RepeatedFieldBuilder.java
│ │ ├── RopeByteString.java
│ │ ├── RpcCallback.java
│ │ ├── RpcChannel.java
│ │ ├── RpcController.java
│ │ ├── RpcUtil.java
│ │ ├── ServiceException.java
│ │ ├── Service.java
│ │ ├── SingleFieldBuilder.java
│ │ ├── SmallSortedMap.java
│ │ ├── TextFormat.java
│ │ ├── UninitializedMessageException.java
│ │ ├── UnknownFieldSet.java
│ │ ├── UnmodifiableLazyStringList.java
│ │ ├── Utf8.java
│ │ └── WireFormat.java
│ └── test
│ └── java
│ └── com
│ └── protobuf
│ ├── AbstractMessageTest.java
│ ├── BoundedByteStringTest.java
│ ├── ByteStringTest.java
│ ├── CheckUtf8Test.java
│ ├── CodedInputStreamTest.java
│ ├── CodedOutputStreamTest.java
│ ├── DeprecatedFieldTest.java
│ ├── DescriptorsTest.java
│ ├── DynamicMessageTest.java
│ ├── ForceFieldBuildersPreRun.java
│ ├── GeneratedMessageTest.java
│ ├── IsValidUtf8Test.java
│ ├── IsValidUtf8TestUtil.java
│ ├── LazyFieldLiteTest.java
│ ├── lazy_fields_lite.proto
│ ├── LazyFieldTest.java
│ ├── LazyMessageLiteTest.java
│ ├── LazyStringArrayListTest.java
│ ├── LazyStringEndToEndTest.java
│ ├── lite_equals_and_hash.proto
│ ├── LiteEqualsAndHashTest.java
│ ├── LiteralByteStringTest.java
│ ├── LiteTest.java
│ ├── MessageTest.java
│ ├── multiple_files_test.proto
│ ├── NestedBuildersTest.java
│ ├── nested_builders_test.proto
│ ├── nested_extension_lite.proto
│ ├── nested_extension.proto
│ ├── non_nested_extension_lite.proto
│ ├── non_nested_extension.proto
│ ├── outer_class_name_test2.proto
│ ├── outer_class_name_test3.proto
│ ├── outer_class_name_test.proto
│ ├── ParserTest.java
│ ├── RepeatedFieldBuilderTest.java
│ ├── RopeByteStringSubstringTest.java
│ ├── RopeByteStringTest.java
│ ├── ServiceTest.java
│ ├── SingleFieldBuilderTest.java
│ ├── SmallSortedMapTest.java
│ ├── TestBadIdentifiers.java
│ ├── test_bad_identifiers.proto
│ ├── test_check_utf8.proto
│ ├── test_check_utf8_size.proto
│ ├── test_custom_options.proto
│ ├── test_extra_interfaces.proto
│ ├── TestUtil.java
│ ├── TextFormatTest.java
│ ├── UnknownFieldSetTest.java
│ ├── UnmodifiableLazyStringListTest.java
│ └── WireFormatTest.java
├── LICENSE
├── m4
│ ├── ac_system_extensions.m4
│ ├── acx_check_suncc.m4
│ ├── acx_pthread.m4
│ └── stl_hash.m4
├── Makefile.am
├── more_tests
│ └── Makefile
├── post_process_dist.sh
├── protobuf-lite.pc.in
├── protobuf.pc.in
├── python
│ ├── ez_setup.py
│ │ ├── __init__.py
│ │ └── protobuf
│ │ ├── descriptor_database.py
│ │ ├── descriptor_pool.py
│ │ ├── descriptor.py
│ │ ├── __init__.py
│ │ ├── internal
│ │ │ ├── api_implementation.cc
│ │ │ ├── api_implementation_default_test.py
│ │ │ ├── api_implementation.py
│ │ │ ├── containers.py
│ │ │ ├── cpp_message.py
│ │ │ ├── decoder.py
│ │ │ ├── descriptor_database_test.py
│ │ │ ├── descriptor_pool_test1.proto
│ │ │ ├── descriptor_pool_test2.proto
│ │ │ ├── descriptor_pool_test.py
│ │ │ ├── descriptor_python_test.py
│ │ │ ├── descriptor_test.py
│ │ │ ├── encoder.py
│ │ │ ├── enum_type_wrapper.py
│ │ │ ├── factory_test1.proto
│ │ │ ├── factory_test2.proto
│ │ │ ├── generator_test.py
│ │ │ ├── __init__.py
│ │ │ ├── message_factory_python_test.py
│ │ │ ├── message_factory_test.py
│ │ │ ├── message_listener.py
│ │ │ ├── message_python_test.py
│ │ │ ├── message_test.py
│ │ │ ├── missing_enum_values.proto
│ │ │ ├── more_extensions_dynamic.proto
│ │ │ ├── more_extensions.proto
│ │ │ ├── more_messages.proto
│ │ │ ├── python_message.py
│ │ │ ├── reflection_test.py
│ │ │ ├── service_reflection_test.py
│ │ │ ├── symbol_database_test.py
│ │ │ ├── test_bad_identifiers.proto
│ │ │ ├── test_util.py
│ │ │ ├── text_encoding_test.py
│ │ │ ├── text_format_test.py
│ │ │ ├── type_checkers.py
│ │ │ ├── unknown_fields_test.py
│ │ │ ├── wire_format.py
│ │ │ └── wire_format_test.py
│ │ ├── message_factory.py
│ │ ├── message.py
│ │ ├── pyext
│ │ │ ├── cpp_message.py
│ │ │ ├── descriptor.cc
│ │ │ ├── descriptor_cpp2_test.py
│ │ │ ├── descriptor.h
│ │ │ ├── extension_dict.cc
│ │ │ ├── extension_dict.h
│ │ │ ├── __init__.py
│ │ │ ├── message.cc
│ │ │ ├── message_factory_cpp2_test.py
│ │ │ ├── message.h
│ │ │ ├── proto2_api_test.proto
│ │ │ ├── python.proto
│ │ │ ├── python_protobuf.h
│ │ │ ├── README
│ │ │ ├── reflection_cpp2_generated_test.py
│ │ │ ├── repeated_composite_container.cc
│ │ │ ├── repeated_composite_container.h
│ │ │ ├── repeated_scalar_container.cc
│ │ │ ├── repeated_scalar_container.h
│ │ │ └── scoped_pyobject_ptr.h
│ │ ├── reflection.py
│ │ ├── service.py
│ │ ├── service_reflection.py
│ │ ├── symbol_database.py
│ │ ├── text_encoding.py
│ │ └── text_format.py
│ ├── mox.py
│ ├── README.txt
│ ├── setup.py
│ └── stubout.py
├── README.md
├── src
│ │ └── protobuf
│ │ ├── compiler
│ │ │ ├── code_generator.cc
│ │ │ ├── code_generator.h
│ │ │ ├── command_line_interface.cc
│ │ │ ├── command_line_interface.h
│ │ │ ├── command_line_interface_unittest.cc
│ │ │ ├── cpp
│ │ │ │ ├── cpp_bootstrap_unittest.cc
│ │ │ │ ├── cpp_enum.cc
│ │ │ │ ├── cpp_enum_field.cc
│ │ │ │ ├── cpp_enum_field.h
│ │ │ │ ├── cpp_enum.h
│ │ │ │ ├── cpp_extension.cc
│ │ │ │ ├── cpp_extension.h
│ │ │ │ ├── cpp_field.cc
│ │ │ │ ├── cpp_field.h
│ │ │ │ ├── cpp_file.cc
│ │ │ │ ├── cpp_file.h
│ │ │ │ ├── cpp_generator.cc
│ │ │ │ ├── cpp_generator.h
│ │ │ │ ├── cpp_helpers.cc
│ │ │ │ ├── cpp_helpers.h
│ │ │ │ ├── cpp_message.cc
│ │ │ │ ├── cpp_message_field.cc
│ │ │ │ ├── cpp_message_field.h
│ │ │ │ ├── cpp_message.h
│ │ │ │ ├── cpp_options.h
│ │ │ │ ├── cpp_plugin_unittest.cc
│ │ │ │ ├── cpp_primitive_field.cc
│ │ │ │ ├── cpp_primitive_field.h
│ │ │ │ ├── cpp_service.cc
│ │ │ │ ├── cpp_service.h
│ │ │ │ ├── cpp_string_field.cc
│ │ │ │ ├── cpp_string_field.h
│ │ │ │ ├── cpp_test_bad_identifiers.proto
│ │ │ │ ├── cpp_unittest.cc
│ │ │ │ └── cpp_unittest.h
│ │ │ ├── importer.cc
│ │ │ ├── importer.h
│ │ │ ├── importer_unittest.cc
│ │ │ ├── java
│ │ │ │ ├── java_context.cc
│ │ │ │ ├── java_context.h
│ │ │ │ ├── java_doc_comment.cc
│ │ │ │ ├── java_doc_comment.h
│ │ │ │ ├── java_doc_comment_unittest.cc
│ │ │ │ ├── java_enum.cc
│ │ │ │ ├── java_enum_field.cc
│ │ │ │ ├── java_enum_field.h
│ │ │ │ ├── java_enum.h
│ │ │ │ ├── java_extension.cc
│ │ │ │ ├── java_extension.h
│ │ │ │ ├── java_field.cc
│ │ │ │ ├── java_field.h
│ │ │ │ ├── java_file.cc
│ │ │ │ ├── java_file.h
│ │ │ │ ├── java_generator.cc
│ │ │ │ ├── java_generator_factory.cc
│ │ │ │ ├── java_generator_factory.h
│ │ │ │ ├── java_generator.h
│ │ │ │ ├── java_helpers.cc
│ │ │ │ ├── java_helpers.h
│ │ │ │ ├── java_lazy_message_field.cc
│ │ │ │ ├── java_lazy_message_field.h
│ │ │ │ ├── java_message.cc
│ │ │ │ ├── java_message_field.cc
│ │ │ │ ├── java_message_field.h
│ │ │ │ ├── java_message.h
│ │ │ │ ├── java_name_resolver.cc
│ │ │ │ ├── java_name_resolver.h
│ │ │ │ ├── java_plugin_unittest.cc
│ │ │ │ ├── java_primitive_field.cc
│ │ │ │ ├── java_primitive_field.h
│ │ │ │ ├── java_service.cc
│ │ │ │ ├── java_service.h
│ │ │ │ ├── java_shared_code_generator.cc
│ │ │ │ ├── java_shared_code_generator.h
│ │ │ │ ├── java_string_field.cc
│ │ │ │ └── java_string_field.h
│ │ │ ├── main.cc
│ │ │ ├── mock_code_generator.cc
│ │ │ ├── mock_code_generator.h
│ │ │ ├── package_info.h
│ │ │ ├── parser.cc
│ │ │ ├── parser.h
│ │ │ ├── parser_unittest.cc
│ │ │ ├── plugin.cc
│ │ │ ├── plugin.h
│ │ │ ├── plugin.pb.cc
│ │ │ ├── plugin.pb.h
│ │ │ ├── plugin.proto
│ │ │ ├── python
│ │ │ │ ├── python_generator.cc
│ │ │ │ ├── python_generator.h
│ │ │ │ └── python_plugin_unittest.cc
│ │ │ ├── subprocess.cc
│ │ │ ├── subprocess.h
│ │ │ ├── test_plugin.cc
│ │ │ ├── zip_output_unittest.sh
│ │ │ ├── zip_writer.cc
│ │ │ └── zip_writer.h
│ │ ├── descriptor.cc
│ │ ├── descriptor_database.cc
│ │ ├── descriptor_database.h
│ │ ├── descriptor_database_unittest.cc
│ │ ├── descriptor.h
│ │ ├── descriptor_pb2_test.py
│ │ ├── descriptor.pb.cc
│ │ ├── descriptor.pb.h
│ │ ├── descriptor.proto
│ │ ├── descriptor_unittest.cc
│ │ ├── dynamic_message.cc
│ │ ├── dynamic_message.h
│ │ ├── dynamic_message_unittest.cc
│ │ ├── extension_set.cc
│ │ ├── extension_set.h
│ │ ├── extension_set_heavy.cc
│ │ ├── extension_set_unittest.cc
│ │ ├── generated_enum_reflection.h
│ │ ├── generated_message_reflection.cc
│ │ ├── generated_message_reflection.h
│ │ ├── generated_message_reflection_unittest.cc
│ │ ├── generated_message_util.cc
│ │ ├── generated_message_util.h
│ │ ├── io
│ │ │ ├── coded_stream.cc
│ │ │ ├── coded_stream.h
│ │ │ ├── coded_stream_inl.h
│ │ │ ├── coded_stream_unittest.cc
│ │ │ ├── gzip_stream.cc
│ │ │ ├── gzip_stream.h
│ │ │ ├── gzip_stream_unittest.sh
│ │ │ ├── package_info.h
│ │ │ ├── printer.cc
│ │ │ ├── printer.h
│ │ │ ├── printer_unittest.cc
│ │ │ ├── strtod.cc
│ │ │ ├── strtod.h
│ │ │ ├── tokenizer.cc
│ │ │ ├── tokenizer.h
│ │ │ ├── tokenizer_unittest.cc
│ │ │ ├── zero_copy_stream.cc
│ │ │ ├── zero_copy_stream.h
│ │ │ ├── zero_copy_stream_impl.cc
│ │ │ ├── zero_copy_stream_impl.h
│ │ │ ├── zero_copy_stream_impl_lite.cc
│ │ │ ├── zero_copy_stream_impl_lite.h
│ │ │ └── zero_copy_stream_unittest.cc
│ │ ├── lite_unittest.cc
│ │ ├── message.cc
│ │ ├── message.h
│ │ ├── message_lite.cc
│ │ ├── message_lite.h
│ │ ├── message_unittest.cc
│ │ ├── package_info.h
│ │ ├── reflection_ops.cc
│ │ ├── reflection_ops.h
│ │ ├── reflection_ops_unittest.cc
│ │ ├── repeated_field.cc
│ │ ├── repeated_field.h
│ │ ├── repeated_field_reflection_unittest.cc
│ │ ├── repeated_field_unittest.cc
│ │ ├── SEBS
│ │ ├── service.cc
│ │ ├── service.h
│ │ ├── stubs
│ │ │ ├── atomicops.h
│ │ │ ├── atomicops_internals_arm64_gcc.h
│ │ │ ├── atomicops_internals_arm_gcc.h
│ │ │ ├── atomicops_internals_arm_qnx.h
│ │ │ ├── atomicops_internals_atomicword_compat.h
│ │ │ ├── atomicops_internals_generic_gcc.h
│ │ │ ├── atomicops_internals_macosx.h
│ │ │ ├── atomicops_internals_mips_gcc.h
│ │ │ ├── atomicops_internals_pnacl.h
│ │ │ ├── atomicops_internals_solaris.h
│ │ │ ├── atomicops_internals_tsan.h
│ │ │ ├── atomicops_internals_x86_gcc.cc
│ │ │ ├── atomicops_internals_x86_gcc.h
│ │ │ ├── atomicops_internals_x86_msvc.cc
│ │ │ ├── atomicops_internals_x86_msvc.h
│ │ │ ├── common.cc
│ │ │ ├── common.h
│ │ │ ├── common_unittest.cc
│ │ │ ├── hash.h
│ │ │ ├── map_util.h
│ │ │ ├── once.cc
│ │ │ ├── once.h
│ │ │ ├── once_unittest.cc
│ │ │ ├── platform_macros.h
│ │ │ ├── shared_ptr.h
│ │ │ ├── stl_util.h
│ │ │ ├── stringprintf.cc
│ │ │ ├── stringprintf.h
│ │ │ ├── stringprintf_unittest.cc
│ │ │ ├── structurally_valid.cc
│ │ │ ├── structurally_valid_unittest.cc
│ │ │ ├── strutil.cc
│ │ │ ├── strutil.h
│ │ │ ├── strutil_unittest.cc
│ │ │ ├── substitute.cc
│ │ │ ├── substitute.h
│ │ │ ├── template_util.h
│ │ │ ├── template_util_unittest.cc
│ │ │ ├── type_traits.h
│ │ │ └── type_traits_unittest.cc
│ │ ├── testdata
│ │ │ ├── bad_utf8_string
│ │ │ ├── golden_message
│ │ │ ├── golden_message_oneof_implemented
│ │ │ ├── golden_packed_fields_message
│ │ │ ├── text_format_unittest_data_oneof_implemented.txt
│ │ │ ├── text_format_unittest_data_pointy_oneof.txt
│ │ │ ├── text_format_unittest_data_pointy.txt
│ │ │ ├── text_format_unittest_data.txt
│ │ │ ├── text_format_unittest_extensions_data_pointy.txt
│ │ │ └── text_format_unittest_extensions_data.txt
│ │ ├── testing
│ │ │ ├── file.cc
│ │ │ ├── file.h
│ │ │ ├── googletest.cc
│ │ │ ├── googletest.h
│ │ │ ├── zcgunzip.cc
│ │ │ └── zcgzip.cc
│ │ ├── test_util.cc
│ │ ├── test_util.h
│ │ ├── test_util_lite.cc
│ │ ├── test_util_lite.h
│ │ ├── text_format.cc
│ │ ├── text_format.h
│ │ ├── text_format_unittest.cc
│ │ ├── unittest_custom_options.proto
│ │ ├── unittest_embed_optimize_for.proto
│ │ ├── unittest_empty.proto
│ │ ├── unittest_enormous_descriptor.proto
│ │ ├── unittest_import_lite.proto
│ │ ├── unittest_import.proto
│ │ ├── unittest_import_public_lite.proto
│ │ ├── unittest_import_public.proto
│ │ ├── unittest_lite_imports_nonlite.proto
│ │ ├── unittest_lite.proto
│ │ ├── unittest_mset.proto
│ │ ├── unittest_no_generic_services.proto
│ │ ├── unittest_optimize_for.proto
│ │ ├── unittest.proto
│ │ ├── unknown_field_set.cc
│ │ ├── unknown_field_set.h
│ │ ├── unknown_field_set_unittest.cc
│ │ ├── wire_format.cc
│ │ ├── wire_format.h
│ │ ├── wire_format_lite.cc
│ │ ├── wire_format_lite.h
│ │ ├── wire_format_lite_inl.h
│ │ └── wire_format_unittest.cc
│ ├── Makefile.am
│ └── solaris
│ └── libstdc++.la
└── vsprojects
├── config.h
├── convert2008to2005.sh
├── extract_includes.bat
├── libprotobuf-lite.vcproj
├── libprotobuf.vcproj
├── libprotoc.vcproj
├── lite-test.vcproj
├── protobuf.sln
├── protoc.vcproj
├── readme.txt
├── test_plugin.vcproj
└── tests.vcproj
36 directories, 474 files
标签:
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论