


How Do You Encode and Decode Protocol Buffers Messages in C Using Delimited I/O?
C Equivalents for Java's Protocol Buffers Delimited I/O Functions
In both C and Java, the need arises to read and write multiple Protocol Buffers messages from files. Java version 2.1.0 offers a set of "Delimited" I/O functions for this purpose:
- parseDelimitedFrom
- mergeDelimitedFrom
- writeDelimitedTo
These functions facilitate the attachment of length prefixes before each message. However, it remains unclear whether such capabilities exist in C .
Existence of C Equivalents
Initially, there were no direct C equivalents to these Java functions. However, as of version 3.3.0, C now features delimited message utility functions in google/protobuf/util/delimited_message_util.h.
Format of Size Prefixes
For users seeking to implement their own parsers in C before the release of these official utilities, it is important to understand the wire format for the size prefixes attached by the Java API. The format adheres to the following guidelines:
- The delimiters must be present even before the first message.
- The size of the message is encoded as a 32-bit varint.
- A 1-byte delimiter byte (0x0A) terminates each message, and the next length-prefixed message begins immediately afterward.
Optimized C Implementations
Following the release of the official C utility functions, several optimizations were discovered that are missing from the originally proposed implementations. These optimized functions, which are provided below, offer improved performance and avoid potential errors:
<code class="cpp">bool writeDelimitedTo( const google::protobuf::MessageLite& message, google::protobuf::io::ZeroCopyOutputStream* rawOutput) { // Create a new coded stream for each message. google::protobuf::io::CodedOutputStream output(rawOutput); // Write the message size. const int size = message.ByteSize(); output.WriteVarint32(size); // Serialize the message directly to the output buffer if possible. uint8_t* buffer = output.GetDirectBufferForNBytesAndAdvance(size); if (buffer != NULL) { message.SerializeWithCachedSizesToArray(buffer); } else { // Use a slower path if the message spans multiple buffers. message.SerializeWithCachedSizes(&output); if (output.HadError()) return false; } return true; } bool readDelimitedFrom( google::protobuf::io::ZeroCopyInputStream* rawInput, google::protobuf::MessageLite* message) { // Create a new coded stream for each message. google::protobuf::io::CodedInputStream input(rawInput); // Read the message size. uint32_t size; if (!input.ReadVarint32(&size)) return false; // Set a read limit to enforce the 64 MB per-message size constraint. google::protobuf::io::CodedInputStream::Limit limit = input.PushLimit(size); // Parse the message. if (!message->MergeFromCodedStream(&input)) return false; if (!input.ConsumedEntireMessage()) return false; // Remove the read limit. input.PopLimit(limit); return true; }</code>
The above is the detailed content of How Do You Encode and Decode Protocol Buffers Messages in C Using Delimited I/O?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Troubleshooting and solutions to the company's security software that causes some applications to not function properly. Many companies will deploy security software in order to ensure internal network security. ...

Field mapping processing in system docking often encounters a difficult problem when performing system docking: how to effectively map the interface fields of system A...

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

Start Spring using IntelliJIDEAUltimate version...

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

When using TKMyBatis for database queries, how to gracefully get entity class variable names to build query conditions is a common problem. This article will pin...
