Replace pb_type_t enum with #defines.

See issue #57.
This commit is contained in:
Petteri Aimonen
2013-02-11 21:55:55 +02:00
parent c1a355b23e
commit ec4a7a0cce

108
pb.h
View File

@@ -6,7 +6,7 @@
* see pb_encode.h or pb_decode.h * see pb_encode.h or pb_decode.h
*/ */
#define NANOPB_VERSION 0.2.0-dev #define NANOPB_VERSION nanopb-0.2.0-dev
#include <stdint.h> #include <stdint.h>
#include <stddef.h> #include <stddef.h>
@@ -53,59 +53,59 @@
* SINT* is different, though, because it is zig-zag coded. * SINT* is different, though, because it is zig-zag coded.
*/ */
typedef enum { typedef uint8_t pb_type_t;
/************************
* Field contents types * /************************
************************/ * Field contents types *
************************/
/* Numeric types */
PB_LTYPE_VARINT = 0x00, /* int32, uint32, int64, uint64, bool, enum */ /* Numeric types */
PB_LTYPE_SVARINT = 0x01, /* sint32, sint64 */ #define PB_LTYPE_VARINT 0x00 /* int32, uint32, int64, uint64, bool, enum */
PB_LTYPE_FIXED32 = 0x02, /* fixed32, sfixed32, float */ #define PB_LTYPE_SVARINT 0x01 /* sint32, sint64 */
PB_LTYPE_FIXED64 = 0x03, /* fixed64, sfixed64, double */ #define PB_LTYPE_FIXED32 0x02 /* fixed32, sfixed32, float */
#define PB_LTYPE_FIXED64 0x03 /* fixed64, sfixed64, double */
/* Marker for last packable field type. */
PB_LTYPE_LAST_PACKABLE = 0x03, /* Marker for last packable field type. */
#define PB_LTYPE_LAST_PACKABLE 0x03
/* Byte array with pre-allocated buffer.
* data_size is the length of the allocated PB_BYTES_ARRAY structure. */ /* Byte array with pre-allocated buffer.
PB_LTYPE_BYTES = 0x04, * data_size is the length of the allocated PB_BYTES_ARRAY structure. */
#define PB_LTYPE_BYTES 0x04
/* String with pre-allocated buffer.
* data_size is the maximum length. */ /* String with pre-allocated buffer.
PB_LTYPE_STRING = 0x05, * data_size is the maximum length. */
#define PB_LTYPE_STRING 0x05
/* Submessage
* submsg_fields is pointer to field descriptions */ /* Submessage
PB_LTYPE_SUBMESSAGE = 0x06, * submsg_fields is pointer to field descriptions */
#define PB_LTYPE_SUBMESSAGE 0x06
/* Number of declared LTYPES */
PB_LTYPES_COUNT = 7, /* Number of declared LTYPES */
PB_LTYPE_MASK = 0x0F, #define PB_LTYPES_COUNT 7
#define PB_LTYPE_MASK 0x0F
/******************
* Modifier flags * /******************
******************/ * Modifier flags *
******************/
/* Just the basic, write data at data_offset */
PB_HTYPE_REQUIRED = 0x00, /* Just the basic, write data at data_offset */
#define PB_HTYPE_REQUIRED 0x00
/* Write true at size_offset */
PB_HTYPE_OPTIONAL = 0x10, /* Write true at size_offset */
#define PB_HTYPE_OPTIONAL 0x10
/* Read to pre-allocated array
* Maximum number of entries is array_size, /* Read to pre-allocated array
* actual number is stored at size_offset */ * Maximum number of entries is array_size,
PB_HTYPE_ARRAY = 0x20, * actual number is stored at size_offset */
#define PB_HTYPE_ARRAY 0x20
/* Works for all required/optional/repeated fields.
* data_offset points to pb_callback_t structure. /* Works for all required/optional/repeated fields.
* LTYPE should be valid or 0 (it is ignored, but * data_offset points to pb_callback_t structure.
* sometimes used to speculatively index an array). */ * LTYPE should be valid or 0 (it is ignored, but
PB_HTYPE_CALLBACK = 0x30, * sometimes used to speculatively index an array). */
#define PB_HTYPE_CALLBACK 0x30
PB_HTYPE_MASK = 0xF0
} pb_packed pb_type_t; #define PB_HTYPE_MASK 0xF0
#define PB_HTYPE(x) ((x) & PB_HTYPE_MASK) #define PB_HTYPE(x) ((x) & PB_HTYPE_MASK)
#define PB_LTYPE(x) ((x) & PB_LTYPE_MASK) #define PB_LTYPE(x) ((x) & PB_LTYPE_MASK)