Publishing nanopb-0.3.5
[apps/agl-service-can-low-level.git] / pb.h
1 /* Common parts of the nanopb library. Most of these are quite low-level
2  * stuff. For the high-level interface, see pb_encode.h and pb_decode.h.
3  */
4
5 #ifndef PB_H_INCLUDED
6 #define PB_H_INCLUDED
7
8 /*****************************************************************
9  * Nanopb compilation time options. You can change these here by *
10  * uncommenting the lines, or on the compiler command line.      *
11  *****************************************************************/
12
13 /* Enable support for dynamically allocated fields */
14 /* #define PB_ENABLE_MALLOC 1 */
15
16 /* Define this if your CPU / compiler combination does not support
17  * unaligned memory access to packed structures. */
18 /* #define PB_NO_PACKED_STRUCTS 1 */
19
20 /* Increase the number of required fields that are tracked.
21  * A compiler warning will tell if you need this. */
22 /* #define PB_MAX_REQUIRED_FIELDS 256 */
23
24 /* Add support for tag numbers > 255 and fields larger than 255 bytes. */
25 /* #define PB_FIELD_16BIT 1 */
26
27 /* Add support for tag numbers > 65536 and fields larger than 65536 bytes. */
28 /* #define PB_FIELD_32BIT 1 */
29
30 /* Disable support for error messages in order to save some code space. */
31 /* #define PB_NO_ERRMSG 1 */
32
33 /* Disable support for custom streams (support only memory buffers). */
34 /* #define PB_BUFFER_ONLY 1 */
35
36 /* Switch back to the old-style callback function signature.
37  * This was the default until nanopb-0.2.1. */
38 /* #define PB_OLD_CALLBACK_STYLE */
39
40
41 /******************************************************************
42  * You usually don't need to change anything below this line.     *
43  * Feel free to look around and use the defined macros, though.   *
44  ******************************************************************/
45
46
47 /* Version of the nanopb library. Just in case you want to check it in
48  * your own program. */
49 #define NANOPB_VERSION nanopb-0.3.5
50
51 /* Include all the system headers needed by nanopb. You will need the
52  * definitions of the following:
53  * - strlen, memcpy, memset functions
54  * - [u]int_least8_t, uint_fast8_t, [u]int_least16_t, [u]int32_t, [u]int64_t
55  * - size_t
56  * - bool
57  *
58  * If you don't have the standard header files, you can instead provide
59  * a custom header that defines or includes all this. In that case,
60  * define PB_SYSTEM_HEADER to the path of this file.
61  */
62 #ifdef PB_SYSTEM_HEADER
63 #include PB_SYSTEM_HEADER
64 #else
65 #include <stdint.h>
66 #include <stddef.h>
67 #include <stdbool.h>
68 #include <string.h>
69
70 #ifdef PB_ENABLE_MALLOC
71 #include <stdlib.h>
72 #endif
73 #endif
74
75 /* Macro for defining packed structures (compiler dependent).
76  * This just reduces memory requirements, but is not required.
77  */
78 #if defined(PB_NO_PACKED_STRUCTS)
79     /* Disable struct packing */
80 #   define PB_PACKED_STRUCT_START
81 #   define PB_PACKED_STRUCT_END
82 #   define pb_packed
83 #elif defined(__GNUC__) || defined(__clang__)
84     /* For GCC and clang */
85 #   define PB_PACKED_STRUCT_START
86 #   define PB_PACKED_STRUCT_END
87 #   define pb_packed __attribute__((packed))
88 #elif defined(__ICCARM__) || defined(__CC_ARM)
89     /* For IAR ARM and Keil MDK-ARM compilers */
90 #   define PB_PACKED_STRUCT_START _Pragma("pack(push, 1)")
91 #   define PB_PACKED_STRUCT_END _Pragma("pack(pop)")
92 #   define pb_packed
93 #elif defined(_MSC_VER) && (_MSC_VER >= 1500)
94     /* For Microsoft Visual C++ */
95 #   define PB_PACKED_STRUCT_START __pragma(pack(push, 1))
96 #   define PB_PACKED_STRUCT_END __pragma(pack(pop))
97 #   define pb_packed
98 #else
99     /* Unknown compiler */
100 #   define PB_PACKED_STRUCT_START
101 #   define PB_PACKED_STRUCT_END
102 #   define pb_packed
103 #endif
104
105 /* Handly macro for suppressing unreferenced-parameter compiler warnings. */
106 #ifndef PB_UNUSED
107 #define PB_UNUSED(x) (void)(x)
108 #endif
109
110 /* Compile-time assertion, used for checking compatible compilation options.
111  * If this does not work properly on your compiler, use
112  * #define PB_NO_STATIC_ASSERT to disable it.
113  *
114  * But before doing that, check carefully the error message / place where it
115  * comes from to see if the error has a real cause. Unfortunately the error
116  * message is not always very clear to read, but you can see the reason better
117  * in the place where the PB_STATIC_ASSERT macro was called.
118  */
119 #ifndef PB_NO_STATIC_ASSERT
120 #ifndef PB_STATIC_ASSERT
121 #define PB_STATIC_ASSERT(COND,MSG) typedef char PB_STATIC_ASSERT_MSG(MSG, __LINE__, __COUNTER__)[(COND)?1:-1];
122 #define PB_STATIC_ASSERT_MSG(MSG, LINE, COUNTER) PB_STATIC_ASSERT_MSG_(MSG, LINE, COUNTER)
123 #define PB_STATIC_ASSERT_MSG_(MSG, LINE, COUNTER) pb_static_assertion_##MSG##LINE##COUNTER
124 #endif
125 #else
126 #define PB_STATIC_ASSERT(COND,MSG)
127 #endif
128
129 /* Number of required fields to keep track of. */
130 #ifndef PB_MAX_REQUIRED_FIELDS
131 #define PB_MAX_REQUIRED_FIELDS 64
132 #endif
133
134 #if PB_MAX_REQUIRED_FIELDS < 64
135 #error You should not lower PB_MAX_REQUIRED_FIELDS from the default value (64).
136 #endif
137
138 /* List of possible field types. These are used in the autogenerated code.
139  * Least-significant 4 bits tell the scalar type
140  * Most-significant 4 bits specify repeated/required/packed etc.
141  */
142
143 typedef uint_least8_t pb_type_t;
144
145 /**** Field data types ****/
146
147 /* Numeric types */
148 #define PB_LTYPE_VARINT  0x00 /* int32, int64, enum, bool */
149 #define PB_LTYPE_UVARINT 0x01 /* uint32, uint64 */
150 #define PB_LTYPE_SVARINT 0x02 /* sint32, sint64 */
151 #define PB_LTYPE_FIXED32 0x03 /* fixed32, sfixed32, float */
152 #define PB_LTYPE_FIXED64 0x04 /* fixed64, sfixed64, double */
153
154 /* Marker for last packable field type. */
155 #define PB_LTYPE_LAST_PACKABLE 0x04
156
157 /* Byte array with pre-allocated buffer.
158  * data_size is the length of the allocated PB_BYTES_ARRAY structure. */
159 #define PB_LTYPE_BYTES 0x05
160
161 /* String with pre-allocated buffer.
162  * data_size is the maximum length. */
163 #define PB_LTYPE_STRING 0x06
164
165 /* Submessage
166  * submsg_fields is pointer to field descriptions */
167 #define PB_LTYPE_SUBMESSAGE 0x07
168
169 /* Extension pseudo-field
170  * The field contains a pointer to pb_extension_t */
171 #define PB_LTYPE_EXTENSION 0x08
172
173 /* Number of declared LTYPES */
174 #define PB_LTYPES_COUNT 9
175 #define PB_LTYPE_MASK 0x0F
176
177 /**** Field repetition rules ****/
178
179 #define PB_HTYPE_REQUIRED 0x00
180 #define PB_HTYPE_OPTIONAL 0x10
181 #define PB_HTYPE_REPEATED 0x20
182 #define PB_HTYPE_ONEOF    0x30
183 #define PB_HTYPE_MASK     0x30
184
185 /**** Field allocation types ****/
186  
187 #define PB_ATYPE_STATIC   0x00
188 #define PB_ATYPE_POINTER  0x80
189 #define PB_ATYPE_CALLBACK 0x40
190 #define PB_ATYPE_MASK     0xC0
191
192 #define PB_ATYPE(x) ((x) & PB_ATYPE_MASK)
193 #define PB_HTYPE(x) ((x) & PB_HTYPE_MASK)
194 #define PB_LTYPE(x) ((x) & PB_LTYPE_MASK)
195
196 /* Data type used for storing sizes of struct fields
197  * and array counts.
198  */
199 #if defined(PB_FIELD_32BIT)
200     typedef uint32_t pb_size_t;
201     typedef int32_t pb_ssize_t;
202 #elif defined(PB_FIELD_16BIT)
203     typedef uint_least16_t pb_size_t;
204     typedef int_least16_t pb_ssize_t;
205 #else
206     typedef uint_least8_t pb_size_t;
207     typedef int_least8_t pb_ssize_t;
208 #endif
209 #define PB_SIZE_MAX ((pb_size_t)-1)
210
211 /* Data type for storing encoded data and other byte streams.
212  * This typedef exists to support platforms where uint8_t does not exist.
213  * You can regard it as equivalent on uint8_t on other platforms.
214  */
215 typedef uint_least8_t pb_byte_t;
216
217 /* This structure is used in auto-generated constants
218  * to specify struct fields.
219  * You can change field sizes if you need structures
220  * larger than 256 bytes or field tags larger than 256.
221  * The compiler should complain if your .proto has such
222  * structures. Fix that by defining PB_FIELD_16BIT or
223  * PB_FIELD_32BIT.
224  */
225 PB_PACKED_STRUCT_START
226 typedef struct pb_field_s pb_field_t;
227 struct pb_field_s {
228     pb_size_t tag;
229     pb_type_t type;
230     pb_size_t data_offset; /* Offset of field data, relative to previous field. */
231     pb_ssize_t size_offset; /* Offset of array size or has-boolean, relative to data */
232     pb_size_t data_size; /* Data size in bytes for a single item */
233     pb_size_t array_size; /* Maximum number of entries in array */
234     
235     /* Field definitions for submessage
236      * OR default value for all other non-array, non-callback types
237      * If null, then field will zeroed. */
238     const void *ptr;
239 } pb_packed;
240 PB_PACKED_STRUCT_END
241
242 /* Make sure that the standard integer types are of the expected sizes.
243  * Otherwise fixed32/fixed64 fields can break.
244  *
245  * If you get errors here, it probably means that your stdint.h is not
246  * correct for your platform.
247  */
248 PB_STATIC_ASSERT(sizeof(int64_t) == 2 * sizeof(int32_t), INT64_T_WRONG_SIZE)
249 PB_STATIC_ASSERT(sizeof(uint64_t) == 2 * sizeof(uint32_t), UINT64_T_WRONG_SIZE)
250
251 /* This structure is used for 'bytes' arrays.
252  * It has the number of bytes in the beginning, and after that an array.
253  * Note that actual structs used will have a different length of bytes array.
254  */
255 #define PB_BYTES_ARRAY_T(n) struct { pb_size_t size; pb_byte_t bytes[n]; }
256 #define PB_BYTES_ARRAY_T_ALLOCSIZE(n) ((size_t)n + offsetof(pb_bytes_array_t, bytes))
257
258 struct pb_bytes_array_s {
259     pb_size_t size;
260     pb_byte_t bytes[1];
261 };
262 typedef struct pb_bytes_array_s pb_bytes_array_t;
263
264 /* This structure is used for giving the callback function.
265  * It is stored in the message structure and filled in by the method that
266  * calls pb_decode.
267  *
268  * The decoding callback will be given a limited-length stream
269  * If the wire type was string, the length is the length of the string.
270  * If the wire type was a varint/fixed32/fixed64, the length is the length
271  * of the actual value.
272  * The function may be called multiple times (especially for repeated types,
273  * but also otherwise if the message happens to contain the field multiple
274  * times.)
275  *
276  * The encoding callback will receive the actual output stream.
277  * It should write all the data in one call, including the field tag and
278  * wire type. It can write multiple fields.
279  *
280  * The callback can be null if you want to skip a field.
281  */
282 typedef struct pb_istream_s pb_istream_t;
283 typedef struct pb_ostream_s pb_ostream_t;
284 typedef struct pb_callback_s pb_callback_t;
285 struct pb_callback_s {
286 #ifdef PB_OLD_CALLBACK_STYLE
287     /* Deprecated since nanopb-0.2.1 */
288     union {
289         bool (*decode)(pb_istream_t *stream, const pb_field_t *field, void *arg);
290         bool (*encode)(pb_ostream_t *stream, const pb_field_t *field, const void *arg);
291     } funcs;
292 #else
293     /* New function signature, which allows modifying arg contents in callback. */
294     union {
295         bool (*decode)(pb_istream_t *stream, const pb_field_t *field, void **arg);
296         bool (*encode)(pb_ostream_t *stream, const pb_field_t *field, void * const *arg);
297     } funcs;
298 #endif    
299     
300     /* Free arg for use by callback */
301     void *arg;
302 };
303
304 /* Wire types. Library user needs these only in encoder callbacks. */
305 typedef enum {
306     PB_WT_VARINT = 0,
307     PB_WT_64BIT  = 1,
308     PB_WT_STRING = 2,
309     PB_WT_32BIT  = 5
310 } pb_wire_type_t;
311
312 /* Structure for defining the handling of unknown/extension fields.
313  * Usually the pb_extension_type_t structure is automatically generated,
314  * while the pb_extension_t structure is created by the user. However,
315  * if you want to catch all unknown fields, you can also create a custom
316  * pb_extension_type_t with your own callback.
317  */
318 typedef struct pb_extension_type_s pb_extension_type_t;
319 typedef struct pb_extension_s pb_extension_t;
320 struct pb_extension_type_s {
321     /* Called for each unknown field in the message.
322      * If you handle the field, read off all of its data and return true.
323      * If you do not handle the field, do not read anything and return true.
324      * If you run into an error, return false.
325      * Set to NULL for default handler.
326      */
327     bool (*decode)(pb_istream_t *stream, pb_extension_t *extension,
328                    uint32_t tag, pb_wire_type_t wire_type);
329     
330     /* Called once after all regular fields have been encoded.
331      * If you have something to write, do so and return true.
332      * If you do not have anything to write, just return true.
333      * If you run into an error, return false.
334      * Set to NULL for default handler.
335      */
336     bool (*encode)(pb_ostream_t *stream, const pb_extension_t *extension);
337     
338     /* Free field for use by the callback. */
339     const void *arg;
340 };
341
342 struct pb_extension_s {
343     /* Type describing the extension field. Usually you'll initialize
344      * this to a pointer to the automatically generated structure. */
345     const pb_extension_type_t *type;
346     
347     /* Destination for the decoded data. This must match the datatype
348      * of the extension field. */
349     void *dest;
350     
351     /* Pointer to the next extension handler, or NULL.
352      * If this extension does not match a field, the next handler is
353      * automatically called. */
354     pb_extension_t *next;
355
356     /* The decoder sets this to true if the extension was found.
357      * Ignored for encoding. */
358     bool found;
359 };
360
361 /* Memory allocation functions to use. You can define pb_realloc and
362  * pb_free to custom functions if you want. */
363 #ifdef PB_ENABLE_MALLOC
364 #   ifndef pb_realloc
365 #       define pb_realloc(ptr, size) realloc(ptr, size)
366 #   endif
367 #   ifndef pb_free
368 #       define pb_free(ptr) free(ptr)
369 #   endif
370 #endif
371
372 /* This is used to inform about need to regenerate .pb.h/.pb.c files. */
373 #define PB_PROTO_HEADER_VERSION 30
374
375 /* These macros are used to declare pb_field_t's in the constant array. */
376 /* Size of a structure member, in bytes. */
377 #define pb_membersize(st, m) (sizeof ((st*)0)->m)
378 /* Number of entries in an array. */
379 #define pb_arraysize(st, m) (pb_membersize(st, m) / pb_membersize(st, m[0]))
380 /* Delta from start of one member to the start of another member. */
381 #define pb_delta(st, m1, m2) ((int)offsetof(st, m1) - (int)offsetof(st, m2))
382 /* Marks the end of the field list */
383 #define PB_LAST_FIELD {0,(pb_type_t) 0,0,0,0,0,0}
384
385 /* Macros for filling in the data_offset field */
386 /* data_offset for first field in a message */
387 #define PB_DATAOFFSET_FIRST(st, m1, m2) (offsetof(st, m1))
388 /* data_offset for subsequent fields */
389 #define PB_DATAOFFSET_OTHER(st, m1, m2) (offsetof(st, m1) - offsetof(st, m2) - pb_membersize(st, m2))
390 /* Choose first/other based on m1 == m2 (deprecated, remains for backwards compatibility) */
391 #define PB_DATAOFFSET_CHOOSE(st, m1, m2) (int)(offsetof(st, m1) == offsetof(st, m2) \
392                                   ? PB_DATAOFFSET_FIRST(st, m1, m2) \
393                                   : PB_DATAOFFSET_OTHER(st, m1, m2))
394
395 /* Required fields are the simplest. They just have delta (padding) from
396  * previous field end, and the size of the field. Pointer is used for
397  * submessages and default values.
398  */
399 #define PB_REQUIRED_STATIC(tag, st, m, fd, ltype, ptr) \
400     {tag, PB_ATYPE_STATIC | PB_HTYPE_REQUIRED | ltype, \
401     fd, 0, pb_membersize(st, m), 0, ptr}
402
403 /* Optional fields add the delta to the has_ variable. */
404 #define PB_OPTIONAL_STATIC(tag, st, m, fd, ltype, ptr) \
405     {tag, PB_ATYPE_STATIC | PB_HTYPE_OPTIONAL | ltype, \
406     fd, \
407     pb_delta(st, has_ ## m, m), \
408     pb_membersize(st, m), 0, ptr}
409
410 /* Repeated fields have a _count field and also the maximum number of entries. */
411 #define PB_REPEATED_STATIC(tag, st, m, fd, ltype, ptr) \
412     {tag, PB_ATYPE_STATIC | PB_HTYPE_REPEATED | ltype, \
413     fd, \
414     pb_delta(st, m ## _count, m), \
415     pb_membersize(st, m[0]), \
416     pb_arraysize(st, m), ptr}
417
418 /* Allocated fields carry the size of the actual data, not the pointer */
419 #define PB_REQUIRED_POINTER(tag, st, m, fd, ltype, ptr) \
420     {tag, PB_ATYPE_POINTER | PB_HTYPE_REQUIRED | ltype, \
421     fd, 0, pb_membersize(st, m[0]), 0, ptr}
422
423 /* Optional fields don't need a has_ variable, as information would be redundant */
424 #define PB_OPTIONAL_POINTER(tag, st, m, fd, ltype, ptr) \
425     {tag, PB_ATYPE_POINTER | PB_HTYPE_OPTIONAL | ltype, \
426     fd, 0, pb_membersize(st, m[0]), 0, ptr}
427
428 /* Repeated fields have a _count field and a pointer to array of pointers */
429 #define PB_REPEATED_POINTER(tag, st, m, fd, ltype, ptr) \
430     {tag, PB_ATYPE_POINTER | PB_HTYPE_REPEATED | ltype, \
431     fd, pb_delta(st, m ## _count, m), \
432     pb_membersize(st, m[0]), 0, ptr}
433
434 /* Callbacks are much like required fields except with special datatype. */
435 #define PB_REQUIRED_CALLBACK(tag, st, m, fd, ltype, ptr) \
436     {tag, PB_ATYPE_CALLBACK | PB_HTYPE_REQUIRED | ltype, \
437     fd, 0, pb_membersize(st, m), 0, ptr}
438
439 #define PB_OPTIONAL_CALLBACK(tag, st, m, fd, ltype, ptr) \
440     {tag, PB_ATYPE_CALLBACK | PB_HTYPE_OPTIONAL | ltype, \
441     fd, 0, pb_membersize(st, m), 0, ptr}
442     
443 #define PB_REPEATED_CALLBACK(tag, st, m, fd, ltype, ptr) \
444     {tag, PB_ATYPE_CALLBACK | PB_HTYPE_REPEATED | ltype, \
445     fd, 0, pb_membersize(st, m), 0, ptr}
446
447 /* Optional extensions don't have the has_ field, as that would be redundant. */
448 #define PB_OPTEXT_STATIC(tag, st, m, fd, ltype, ptr) \
449     {tag, PB_ATYPE_STATIC | PB_HTYPE_OPTIONAL | ltype, \
450     0, \
451     0, \
452     pb_membersize(st, m), 0, ptr}
453
454 #define PB_OPTEXT_POINTER(tag, st, m, fd, ltype, ptr) \
455     PB_OPTIONAL_POINTER(tag, st, m, fd, ltype, ptr)
456
457 #define PB_OPTEXT_CALLBACK(tag, st, m, fd, ltype, ptr) \
458     PB_OPTIONAL_CALLBACK(tag, st, m, fd, ltype, ptr)
459
460 /* The mapping from protobuf types to LTYPEs is done using these macros. */
461 #define PB_LTYPE_MAP_BOOL       PB_LTYPE_VARINT
462 #define PB_LTYPE_MAP_BYTES      PB_LTYPE_BYTES
463 #define PB_LTYPE_MAP_DOUBLE     PB_LTYPE_FIXED64
464 #define PB_LTYPE_MAP_ENUM       PB_LTYPE_VARINT
465 #define PB_LTYPE_MAP_UENUM      PB_LTYPE_UVARINT
466 #define PB_LTYPE_MAP_FIXED32    PB_LTYPE_FIXED32
467 #define PB_LTYPE_MAP_FIXED64    PB_LTYPE_FIXED64
468 #define PB_LTYPE_MAP_FLOAT      PB_LTYPE_FIXED32
469 #define PB_LTYPE_MAP_INT32      PB_LTYPE_VARINT
470 #define PB_LTYPE_MAP_INT64      PB_LTYPE_VARINT
471 #define PB_LTYPE_MAP_MESSAGE    PB_LTYPE_SUBMESSAGE
472 #define PB_LTYPE_MAP_SFIXED32   PB_LTYPE_FIXED32
473 #define PB_LTYPE_MAP_SFIXED64   PB_LTYPE_FIXED64
474 #define PB_LTYPE_MAP_SINT32     PB_LTYPE_SVARINT
475 #define PB_LTYPE_MAP_SINT64     PB_LTYPE_SVARINT
476 #define PB_LTYPE_MAP_STRING     PB_LTYPE_STRING
477 #define PB_LTYPE_MAP_UINT32     PB_LTYPE_UVARINT
478 #define PB_LTYPE_MAP_UINT64     PB_LTYPE_UVARINT
479 #define PB_LTYPE_MAP_EXTENSION  PB_LTYPE_EXTENSION
480
481 /* This is the actual macro used in field descriptions.
482  * It takes these arguments:
483  * - Field tag number
484  * - Field type:   BOOL, BYTES, DOUBLE, ENUM, UENUM, FIXED32, FIXED64,
485  *                 FLOAT, INT32, INT64, MESSAGE, SFIXED32, SFIXED64
486  *                 SINT32, SINT64, STRING, UINT32, UINT64 or EXTENSION
487  * - Field rules:  REQUIRED, OPTIONAL or REPEATED
488  * - Allocation:   STATIC or CALLBACK
489  * - Placement: FIRST or OTHER, depending on if this is the first field in structure.
490  * - Message name
491  * - Field name
492  * - Previous field name (or field name again for first field)
493  * - Pointer to default value or submsg fields.
494  */
495
496 #define PB_FIELD(tag, type, rules, allocation, placement, message, field, prevfield, ptr) \
497         PB_ ## rules ## _ ## allocation(tag, message, field, \
498         PB_DATAOFFSET_ ## placement(message, field, prevfield), \
499         PB_LTYPE_MAP_ ## type, ptr)
500
501 /* Field description for oneof fields. This requires taking into account the
502  * union name also, that's why a separate set of macros is needed.
503  */
504 #define PB_ONEOF_STATIC(u, tag, st, m, fd, ltype, ptr) \
505     {tag, PB_ATYPE_STATIC | PB_HTYPE_ONEOF | ltype, \
506     fd, pb_delta(st, which_ ## u, u.m), \
507     pb_membersize(st, u.m), 0, ptr}
508
509 #define PB_ONEOF_POINTER(u, tag, st, m, fd, ltype, ptr) \
510     {tag, PB_ATYPE_POINTER | PB_HTYPE_ONEOF | ltype, \
511     fd, pb_delta(st, which_ ## u, u.m), \
512     pb_membersize(st, u.m[0]), 0, ptr}
513
514 #define PB_ONEOF_FIELD(union_name, tag, type, rules, allocation, placement, message, field, prevfield, ptr) \
515         PB_ONEOF_ ## allocation(union_name, tag, message, field, \
516         PB_DATAOFFSET_ ## placement(message, union_name.field, prevfield), \
517         PB_LTYPE_MAP_ ## type, ptr)
518
519 #define PB_ANONYMOUS_ONEOF_STATIC(u, tag, st, m, fd, ltype, ptr) \
520     {tag, PB_ATYPE_STATIC | PB_HTYPE_ONEOF | ltype, \
521     fd, pb_delta(st, which_ ## u, m), \
522     pb_membersize(st, m), 0, ptr}
523
524 #define PB_ANONYMOUS_ONEOF_POINTER(u, tag, st, m, fd, ltype, ptr) \
525     {tag, PB_ATYPE_POINTER | PB_HTYPE_ONEOF | ltype, \
526     fd, pb_delta(st, which_ ## u, m), \
527     pb_membersize(st, m[0]), 0, ptr}
528
529 #define PB_ANONYMOUS_ONEOF_FIELD(union_name, tag, type, rules, allocation, placement, message, field, prevfield, ptr) \
530         PB_ANONYMOUS_ONEOF_ ## allocation(union_name, tag, message, field, \
531         PB_DATAOFFSET_ ## placement(message, field, prevfield), \
532         PB_LTYPE_MAP_ ## type, ptr)
533
534 /* These macros are used for giving out error messages.
535  * They are mostly a debugging aid; the main error information
536  * is the true/false return value from functions.
537  * Some code space can be saved by disabling the error
538  * messages if not used.
539  *
540  * PB_SET_ERROR() sets the error message if none has been set yet.
541  *                msg must be a constant string literal.
542  * PB_GET_ERROR() always returns a pointer to a string.
543  * PB_RETURN_ERROR() sets the error and returns false from current
544  *                   function.
545  */
546 #ifdef PB_NO_ERRMSG
547 #define PB_SET_ERROR(stream, msg) PB_UNUSED(stream)
548 #define PB_GET_ERROR(stream) "(errmsg disabled)"
549 #else
550 #define PB_SET_ERROR(stream, msg) (stream->errmsg = (stream)->errmsg ? (stream)->errmsg : (msg))
551 #define PB_GET_ERROR(stream) ((stream)->errmsg ? (stream)->errmsg : "(none)")
552 #endif
553
554 #define PB_RETURN_ERROR(stream, msg) return PB_SET_ERROR(stream, msg), false
555
556 #endif