| commit | 9bdafdbb0c9aa948cb37e1ccdf0df8a09b9e7e4e | [log] [tgz] |
|---|---|---|
| author | Adam Cozzette <acozzette@google.com> | Tue Nov 05 10:21:37 2024 -0800 |
| committer | Copybara-Service <copybara-worker@google.com> | Tue Nov 05 10:24:35 2024 -0800 |
| tree | d4bc8c57759160ba98f3d0cf5f9740dbbb85e4ef | |
| parent | 31c5f73ec1277818e9dceb81a4b28cb3d185f60c [diff] |
Rust C++: remove per-message functions for repeated fields This CL deletes the per-message C++ functions for operating on repeated fields and replaces them with functions in the runtime that can work with arbitrary messages. Similar to what we did with maps, this required refactoring the code to make it work with `RepeatedPtrFieldBase`, the untyped base class of `RepeatedPtrField<T>`. I added a `RustRepeatedMessageHelper` class to allow us access to the protected methods we need. This should save a bit of linker input code size, but I think more importantly we are going to need this eventually to enable tree shaking to work well. PiperOrigin-RevId: 693394959
Copyright 2023 Google LLC
Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data. You can learn more about it in protobuf's documentation.
This README file contains protobuf installation instructions. To install protobuf, you need to install the protocol compiler (used to compile .proto files) and the protobuf runtime for your chosen programming language.
Most users will find working from supported releases to be the easiest path.
If you choose to work from the head revision of the main branch your build will occasionally be broken by source-incompatible changes and insufficiently-tested (and therefore broken) behavior.
If you are using C++ or otherwise need to build protobuf from source as a part of your project, you should pin to a release commit on a release branch.
This is because even release branches can experience some instability in between release commits.
The protobuf compiler is written in C++. If you are using C++, please follow the C++ Installation Instructions to install protoc along with the C++ runtime.
For non-C++ users, the simplest way to install the protocol compiler is to download a pre-built binary from our GitHub release page.
In the downloads section of each release, you can find pre-built binaries in zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary as well as a set of standard .proto files distributed along with protobuf.
If you are looking for an old version that is not available in the release page, check out the Maven repository.
These pre-built binaries are only provided for released versions. If you want to use the github main version at HEAD, or you need to modify protobuf code, or you are using C++, it's recommended to build your own protoc binary from source.
If you would like to build protoc binary from source, see the C++ Installation Instructions.
Protobuf supports several different programming languages. For each programming language, you can find instructions in the corresponding source directory about how to install protobuf runtime for that specific language:
| Language | Source |
|---|---|
| C++ (include C++ runtime and protoc) | src |
| Java | java |
| Python | python |
| Objective-C | objectivec |
| C# | csharp |
| Ruby | ruby |
| Go | protocolbuffers/protobuf-go |
| PHP | php |
| Dart | dart-lang/protobuf |
| JavaScript | protocolbuffers/protobuf-javascript |
The best way to learn how to use protobuf is to follow the tutorials in our developer guide.
If you want to learn from code examples, take a look at the examples in the examples directory.
The complete documentation is available at the Protocol Buffers doc site.
Read about our version support policy to stay current on support timeframes for the language libraries.
To be alerted to upcoming changes in Protocol Buffers and connect with protobuf developers and users, join the Google Group.