// Protocol Buffers - Google's data interchange format // Copyright 2023 Google LLC. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #ifndef UPB_MINI_DESCRIPTOR_INTERNAL_ENCODE_H_ #define UPB_MINI_DESCRIPTOR_INTERNAL_ENCODE_H_ #include #include "upb/base/descriptor_constants.h" // Must be last. #include "upb/port/def.inc" // If the input buffer has at least this many bytes available, the encoder call // is guaranteed to succeed (as long as field number order is maintained). #define kUpb_MtDataEncoder_MinSize 16 typedef struct { char* end; // Limit of the buffer passed as a parameter. // Aliased to internal-only members in .cc. char internal[32]; } upb_MtDataEncoder; #ifdef __cplusplus extern "C" { #endif // Encodes field/oneof information for a given message. The sequence of calls // should look like: // // upb_MtDataEncoder e; // char buf[256]; // char* ptr = buf; // e.end = ptr + sizeof(buf); // unit64_t msg_mod = ...; // bitwise & of kUpb_MessageModifiers or zero // ptr = upb_MtDataEncoder_StartMessage(&e, ptr, msg_mod); // // Fields *must* be in field number order. // ptr = upb_MtDataEncoder_PutField(&e, ptr, ...); // ptr = upb_MtDataEncoder_PutField(&e, ptr, ...); // ptr = upb_MtDataEncoder_PutField(&e, ptr, ...); // // // If oneofs are present. Oneofs must be encoded after regular fields. // ptr = upb_MiniTable_StartOneof(&e, ptr) // ptr = upb_MiniTable_PutOneofField(&e, ptr, ...); // ptr = upb_MiniTable_PutOneofField(&e, ptr, ...); // // ptr = upb_MiniTable_StartOneof(&e, ptr); // ptr = upb_MiniTable_PutOneofField(&e, ptr, ...); // ptr = upb_MiniTable_PutOneofField(&e, ptr, ...); // // Oneofs must be encoded after all regular fields. char* upb_MtDataEncoder_StartMessage(upb_MtDataEncoder* e, char* ptr, uint64_t msg_mod); char* upb_MtDataEncoder_PutField(upb_MtDataEncoder* e, char* ptr, upb_FieldType type, uint32_t field_num, uint64_t field_mod); char* upb_MtDataEncoder_StartOneof(upb_MtDataEncoder* e, char* ptr); char* upb_MtDataEncoder_PutOneofField(upb_MtDataEncoder* e, char* ptr, uint32_t field_num); // Encodes the set of values for a given enum. The values must be given in // order (after casting to uint32_t), and repeats are not allowed. char* upb_MtDataEncoder_StartEnum(upb_MtDataEncoder* e, char* ptr); char* upb_MtDataEncoder_PutEnumValue(upb_MtDataEncoder* e, char* ptr, uint32_t val); char* upb_MtDataEncoder_EndEnum(upb_MtDataEncoder* e, char* ptr); // Encodes an entire mini descriptor for an extension. char* upb_MtDataEncoder_EncodeExtension(upb_MtDataEncoder* e, char* ptr, upb_FieldType type, uint32_t field_num, uint64_t field_mod); // Encodes an entire mini descriptor for a map. char* upb_MtDataEncoder_EncodeMap(upb_MtDataEncoder* e, char* ptr, upb_FieldType key_type, upb_FieldType value_type, uint64_t key_mod, uint64_t value_mod); // Encodes an entire mini descriptor for a message set. char* upb_MtDataEncoder_EncodeMessageSet(upb_MtDataEncoder* e, char* ptr); #ifdef __cplusplus } /* extern "C" */ #endif #include "upb/port/undef.inc" #endif /* UPB_MINI_DESCRIPTOR_INTERNAL_ENCODE_H_ */