protobuf/upb
Protobuf Team Bot 83ec410d30 Internal change
PiperOrigin-RevId: 619377672
2024-03-27 05:50:55 -07:00
..
base Increased the size of the error message buffer by 4x, to 511 bytes. 2024-01-31 13:05:27 -08:00
cmake Auto-generate files after cl/613290255 2024-03-06 19:59:18 +00:00
conformance Fixed non-conformance in upb JSON enum decoding when ignoring unknown enum values. 2023-12-28 15:12:42 -08:00
hash Added missing package() declarations. 2024-01-11 10:17:41 -08:00
io upb: delete the aliases for upb:hash, upb:lex, upb:reflection_internal 2024-01-01 18:21:58 -08:00
json Add basic upb cmake support. 2024-03-12 12:43:16 -07:00
lex Added missing package() declarations. 2024-01-11 10:17:41 -08:00
mem Add Arena tracing handlers. 2024-03-14 08:09:54 -07:00
message Add Arena tracing handlers. 2024-03-14 08:09:54 -07:00
mini_descriptor upb: clean up open vs closed enums in the Dart gencode 2024-03-26 08:24:19 -07:00
mini_table Add basic upb cmake support. 2024-03-12 12:43:16 -07:00
port Implement edition 2023 support in all Ruby runtimes. 2024-03-15 15:17:33 -07:00
reflection Internal change 2024-03-27 05:50:55 -07:00
test Add basic upb cmake support. 2024-03-12 12:43:16 -07:00
text upb: fix textformat encoder to print group name instead of field name 2024-03-22 10:59:29 -07:00
util Fix toproto behavior for groups and required under editions 2024-03-26 17:26:01 -07:00
wire Add basic upb cmake support. 2024-03-12 12:43:16 -07:00
BUILD Internal change 2024-03-27 05:50:55 -07:00
README.md
generated_code_support.h

README.md

μpb: small, fast C protos

μpb (often written 'upb') is a small protobuf implementation written in C.

upb is the core runtime for protobuf languages extensions in Ruby, PHP, and Python.

While upb offers a C API, the C API & ABI are not stable. For this reason, upb is not generally offered as a C library for direct consumption, and there are no releases.

Features

upb has comparable speed to protobuf C++, but is an order of magnitude smaller in code size.

Like the main protobuf implementation in C++, it supports:

  • a generated API (in C)
  • reflection
  • binary & JSON wire formats
  • text format serialization
  • all standard features of protobufs (oneofs, maps, unknown fields, extensions, etc.)
  • full conformance with the protobuf conformance tests

upb also supports some features that C++ does not:

  • optional reflection: generated messages are agnostic to whether reflection will be linked in or not.
  • no global state: no pre-main registration or other global state.
  • fast reflection-based parsing: messages loaded at runtime parse just as fast as compiled-in messages.

However there are a few features it does not support:

  • text format parsing
  • deep descriptor verification: upb's descriptor validation is not as exhaustive as protoc.

Install

For Ruby, use RubyGems:

$ gem install google-protobuf

For PHP, use PECL:

$ sudo pecl install protobuf

For Python, use PyPI:

$ sudo pip install protobuf

Alternatively, you can build and install upb using vcpkg dependency manager:

git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg integrate install
./vcpkg install upb

The upb port in vcpkg is kept up to date by microsoft team members and community contributors.

If the version is out of date, please create an issue or pull request on the vcpkg repository.

Contributing

Please see CONTRIBUTING.md.