More unittests
[apps/agl-service-can-low-level.git] / docs / reference.rst
1 =====================
2 Nanopb: API reference
3 =====================
4
5 .. include :: menu.rst
6
7 .. contents ::
8
9 pb.h
10 ====
11
12 pb_type_t
13 ---------
14 Defines the encoder/decoder behaviour that should be used for a field. ::
15
16     typedef enum { ... } pb_type_t;
17
18 The low-order byte of the enumeration values defines the function that can be used for encoding and decoding the field data:
19
20 ==================== ===== ================================================
21 LTYPE identifier     Value Storage format
22 ==================== ===== ================================================
23 PB_LTYPE_VARINT      0x00  Integer.
24 PB_LTYPE_SVARINT     0x01  Integer, zigzag encoded.
25 PB_LTYPE_FIXED       0x02  Integer or floating point.
26 PB_LTYPE_BYTES       0x03  Structure with *size_t* field and byte array.
27 PB_LTYPE_STRING      0x04  Null-terminated string.
28 PB_LTYPE_SUBMESSAGE  0x05  Submessage structure.
29 ==================== ===== ================================================
30
31 The high-order byte defines whether the field is required, optional, repeated or callback:
32
33 ==================== ===== ================================================
34 HTYPE identifier     Value Field handling
35 ==================== ===== ================================================
36 PB_HTYPE_REQUIRED    0x00  Verify that field exists in decoded message.
37 PB_HTYPE_OPTIONAL    0x10  Use separate *has_<field>* boolean to specify
38                            whether the field is present.
39 PB_HTYPE_ARRAY       0x20  A repeated field with preallocated array.
40                            Separate *<field>_count* for number of items.
41 PB_HTYPE_CALLBACK    0x30  A field with dynamic storage size, data is
42                            actually a pointer to a structure containing a
43                            callback function.
44 ==================== ===== ================================================
45
46 pb_field_t
47 ----------
48 Describes a single structure field with memory position in relation to others. The descriptions are usually autogenerated. ::
49
50     typedef struct _pb_field_t pb_field_t;
51     struct _pb_field_t {
52         uint8_t tag;
53         pb_type_t type;
54         uint8_t data_offset;
55         int8_t size_offset;
56         uint8_t data_size;
57         uint8_t array_size;
58         const void *ptr;
59     } pb_packed;
60
61 :tag:           Tag number of the field or 0 to terminate a list of fields.
62 :type:          LTYPE and HTYPE of the field.
63 :data_offset:   Offset of field data, relative to the end of the previous field.
64 :size_offset:   Offset of *bool* flag for optional fields or *size_t* count for arrays, relative to field data.
65 :data_size:     Size of a single data entry, in bytes. For PB_LTYPE_BYTES, the size of the byte array inside the containing structure.
66 :array_size:    Maximum number of entries in an array, if it is an array type.
67 :ptr:           Pointer to default value for optional fields, or to submessage description for PB_LTYPE_SUBMESSAGE.
68
69 The *uint8_t* datatypes limit the maximum size of a single item to 255 bytes and arrays to 255 items. Compiler will warn "Initializer too large for type" if the limits are exceeded. The types can be changed to larger ones if necessary.
70
71 pb_bytes_array_t
72 ----------------
73 An byte array with a field for storing the length::
74
75     typedef struct {
76         size_t size;
77         uint8_t bytes[1];
78     } pb_bytes_array_t;
79
80 In an actual array, the length of *bytes* may be different.
81
82 pb_callback_t
83 -------------
84 Part of a message structure, for fields with type PB_HTYPE_CALLBACK::
85
86     typedef struct _pb_callback_t pb_callback_t;
87     struct _pb_callback_t {
88         union {
89             bool (*decode)(pb_istream_t *stream, const pb_field_t *field, void *arg);
90             bool (*encode)(pb_ostream_t *stream, const pb_field_t *field, const void *arg);
91         } funcs;
92         
93         void *arg;
94     };
95
96 The *arg* is passed to the callback when calling. It can be used to store any information that the callback might need.
97
98 When calling `pb_encode`_, *funcs.encode* is used, and similarly when calling `pb_decode`_, *funcs.decode* is used. The function pointers are stored in the same memory location but are of incompatible types. You can set the function pointer to NULL to skip the field.
99
100 pb_wire_type_t
101 --------------
102 Protocol Buffers wire types. These are used with `pb_encode_tag`_. ::
103
104     typedef enum {
105         PB_WT_VARINT = 0,
106         PB_WT_64BIT  = 1,
107         PB_WT_STRING = 2,
108         PB_WT_32BIT  = 5
109     } pb_wire_type_t;
110
111 pb_encode.h
112 ===========
113
114 pb_ostream_from_buffer
115 ----------------------
116 Constructs an output stream for writing into a memory buffer. This is just a helper function, it doesn't do anything you couldn't do yourself in a callback function. It uses an internal callback that stores the pointer in stream *state* field. ::
117
118     pb_ostream_t pb_ostream_from_buffer(uint8_t *buf, size_t bufsize);
119
120 :buf:           Memory buffer to write into.
121 :bufsize:       Maximum number of bytes to write.
122 :returns:       An output stream.
123
124 After writing, you can check *stream.bytes_written* to find out how much valid data there is in the buffer.
125
126 pb_write
127 --------
128 Writes data to an output stream. Always use this function, instead of trying to call stream callback manually. ::
129
130     bool pb_write(pb_ostream_t *stream, const uint8_t *buf, size_t count);
131
132 :stream:        Output stream to write to.
133 :buf:           Pointer to buffer with the data to be written.
134 :count:         Number of bytes to write.
135 :returns:       True on success, false if maximum length is exceeded or an IO error happens.
136
137 If an error happens, *bytes_written* is not incremented. Depending on the callback used, calling pb_write again after it has failed once may be dangerous. Nanopb itself never does this, instead it returns the error to user application. The builtin pb_ostream_from_buffer is safe to call again after failed write.
138
139 pb_encode
140 ---------
141 Encodes the contents of a structure as a protocol buffers message and writes it to output stream. ::
142
143     bool pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
144
145 :stream:        Output stream to write to.
146 :fields:        A field description array, usually autogenerated.
147 :src_struct:    Pointer to the data that will be serialized.
148 :returns:       True on success, false on IO error, on detectable errors in field description, or if a field encoder returns false.
149
150 Normally pb_encode simply walks through the fields description array and serializes each field in turn. However, submessages must be serialized twice: first to calculate their size and then to actually write them to output. This causes some constraints for callback fields, which must return the same data on every call.
151
152 pb_encode_varint
153 ----------------
154 Encodes an unsigned integer in the varint_ format. ::
155
156     bool pb_encode_varint(pb_ostream_t *stream, uint64_t value);
157
158 :stream:        Output stream to write to. 1-10 bytes will be written.
159 :value:         Value to encode.
160 :returns:       True on success, false on IO error.
161
162 .. _varint: http://code.google.com/apis/protocolbuffers/docs/encoding.html#varints
163
164 pb_encode_tag
165 -------------
166 Starts a field in the Protocol Buffers binary format: encodes the field number and the wire type of the data. ::
167
168     bool pb_encode_tag(pb_ostream_t *stream, pb_wire_type_t wiretype, int field_number);
169
170 :stream:        Output stream to write to. 1-5 bytes will be written.
171 :wiretype:      PB_WT_VARINT, PB_WT_64BIT, PB_WT_STRING or PB_WT_32BIT
172 :field_number:  Identifier for the field, defined in the .proto file.
173 :returns:       True on success, false on IO error.
174
175 pb_encode_tag_for_field
176 -----------------------
177 Same as `pb_encode_tag`_, except takes the parameters from a *pb_field_t* structure. ::
178
179     bool pb_encode_tag_for_field(pb_ostream_t *stream, const pb_field_t *field);
180
181 :stream:        Output stream to write to. 1-5 bytes will be written.
182 :field:         Field description structure. Usually autogenerated.
183 :returns:       True on success, false on IO error or unknown field type.
184
185 This function only considers the LTYPE of the field. You can use it from your field callbacks, because the source generator writes correct LTYPE also for callback type fields.
186
187 Wire type mapping is as follows:
188
189 ========================= ============
190 LTYPEs                    Wire type
191 ========================= ============
192 VARINT, SVARINT           PB_WT_VARINT
193 FIXED with data_size == 8 PB_WT_64BIT  
194 STRING, BYTES, SUBMESSAGE PB_WT_STRING 
195 FIXED with data_size == 4 PB_WT_32BIT
196 ========================= ============
197
198 pb_encode_string
199 ----------------
200 Writes the length of a string as varint and then contents of the string. Used for writing fields with wire type PB_WT_STRING. ::
201
202     bool pb_encode_string(pb_ostream_t *stream, const uint8_t *buffer, size_t size);
203
204 :stream:        Output stream to write to.
205 :buffer:        Pointer to string data.
206 :size:          Number of bytes in the string.
207 :returns:       True on success, false on IO error.
208
209 .. sidebar:: Field encoders
210
211     The functions with names beginning with *pb_enc_* are called field encoders. Each PB_LTYPE has an own field encoder, which handles translating from C data into Protocol Buffers data.
212
213     By using the *data_size* in the field description and by taking advantage of C casting rules, it has been possible to combine many data types to a single LTYPE. For example, *int32*, *uint32*, *int64*, *uint64*, *bool* and *enum* are all handled by *pb_enc_varint*.
214
215     Each field encoder only encodes the contents of the field. The tag must be encoded separately with `pb_encode_tag_for_field`_.
216
217     You can use the field encoders from your callbacks.
218
219 pb_enc_varint
220 -------------
221 Field encoder for PB_LTYPE_VARINT. Takes the first *field->data_size* bytes from src, casts them as *uint64_t* and calls `pb_encode_varint`_. ::
222
223     bool pb_enc_varint(pb_ostream_t *stream, const pb_field_t *field, const void *src);
224
225 :stream:        Output stream to write to.
226 :field:         Field description structure. Only *data_size* matters.
227 :src:           Pointer to start of the field data.
228 :returns:       True on success, false on IO error.
229
230 pb_enc_svarint
231 --------------
232 Field encoder for PB_LTYPE_SVARINT. Similar to `pb_enc_varint`_, except first zig-zag encodes the value for more efficient negative number encoding. ::
233
234     bool pb_enc_svarint(pb_ostream_t *stream, const pb_field_t *field, const void *src);
235
236 (parameters are the same as for `pb_enc_varint`_)
237
238 The number is considered negative if the high-order bit of the value is set. On big endian computers, it is the highest bit of *\*src*. On little endian computers, it is the highest bit of *\*(src + field->data_size - 1)*.
239
240 pb_enc_fixed
241 ------------
242 Field encoder for PB_LTYPE_FIXED. Writes the data in little endian order. On big endian computers, reverses the order of bytes. ::
243
244     bool pb_enc_fixed(pb_ostream_t *stream, const pb_field_t *field, const void *src);
245
246 (parameters are the same as for `pb_enc_varint`_)
247
248 The same function is used for both integers, floats and doubles. This break encoding of double values on architectures where they are mixed endian (primarily some arm processors with hardware FPU).
249
250 pb_enc_bytes
251 ------------
252 Field encoder for PB_LTYPE_BYTES. Just calls `pb_encode_string`_. ::
253
254     bool pb_enc_bytes(pb_ostream_t *stream, const pb_field_t *field, const void *src);
255
256 :stream:        Output stream to write to.
257 :field:         Not used.
258 :src:           Pointer to a structure similar to pb_bytes_array_t.
259 :returns:       True on success, false on IO error.
260
261 This function expects a pointer to a structure with a *size_t* field at start, and a variable sized byte array after it. The platform-specific field offset is inferred from *pb_bytes_array_t*, which has a byte array of size 1.
262
263 pb_enc_string
264 -------------
265 Field encoder for PB_LTYPE_STRING. Determines size of string with strlen() and then calls `pb_encode_string`_. ::
266
267     bool pb_enc_string(pb_ostream_t *stream, const pb_field_t *field, const void *src);
268
269 :stream:        Output stream to write to.
270 :field:         Not used.
271 :src:           Pointer to a null-terminated string.
272 :returns:       True on success, false on IO error.
273
274 pb_enc_submessage
275 -----------------
276 Field encoder for PB_LTYPE_SUBMESSAGE. Calls `pb_encode`_ to perform the actual encoding. ::
277
278     bool pb_enc_submessage(pb_ostream_t *stream, const pb_field_t *field, const void *src);
279
280 :stream:        Output stream to write to.
281 :field:         Field description structure. The *ptr* field must be a pointer to a field description array for the submessage.
282 :src:           Pointer to the structure where submessage data is.
283 :returns:       True on success, false on IO errors, pb_encode errors or if submessage size changes between calls.
284
285 In Protocol Buffers format, the submessage size must be written before the submessage contents. Therefore, this function has to encode the submessage twice in order to know the size beforehand.
286
287 If the submessage contains callback fields, the callback function might misbehave and write out a different amount of data on the second call. This situation is recognized and *false* is returned, but it is up to the caller to ensure that the receiver of the message does not interpret it as valid data.
288
289 pb_decode.h
290 ===========
291
292 pb_istream_from_buffer
293 ----------------------
294 Helper function for creating an input stream that reads data from a memory buffer. ::
295
296     pb_istream_t pb_istream_from_buffer(uint8_t *buf, size_t bufsize);
297
298 :buf:           Pointer to byte array to read from.
299 :bufsize:       Size of the byte array.
300 :returns:       An input stream ready to use.
301
302 pb_read
303 -------
304 Read data from input stream. Always use this function, don't try to call the stream callback directly. ::
305
306     bool pb_read(pb_istream_t *stream, uint8_t *buf, size_t count);
307
308 :stream:        Input stream to read from.
309 :buf:           Buffer to store the data to, or NULL to just read data without storing it anywhere.
310 :count:         Number of bytes to read.
311 :returns:       True on success, false if *stream->bytes_left* is less than *count* or if an IO error occurs.
312
313 End of file is signalled by *stream->bytes_left* being zero after pb_read returns false.
314
315 pb_decode_varint
316 ----------------
317 Read and decode a varint_ encoded integer. ::
318
319     bool pb_decode_varint(pb_istream_t *stream, uint64_t *dest);
320
321 :stream:        Input stream to read from. 1-10 bytes will be read.
322 :dest:          Storage for the decoded integer. Value is undefined on error.
323 :returns:       True on success, false if value exceeds uint64_t range or an IO error happens.
324
325 pb_skip_varint
326 --------------
327 Skip a varint_ encoded integer without decoding it. ::
328
329     bool pb_skip_varint(pb_istream_t *stream);
330
331 :stream:        Input stream to read from. Will read 1 byte at a time until the MSB is clear.
332 :returns:       True on success, false on IO error.
333
334 pb_skip_string
335 --------------
336 Skip a varint-length-prefixed string. This means skipping a value with wire type PB_WT_STRING. ::
337
338     bool pb_skip_string(pb_istream_t *stream);
339
340 :stream:        Input stream to read from.
341 :returns:       True on success, false on IO error or length exceeding uint32_t.
342
343 pb_decode
344 ---------
345 Read and decode all fields of a structure. Reads until EOF on input stream. ::
346
347     bool pb_decode(pb_istream_t *stream, const pb_field_t fields[], void *dest_struct);
348
349 :stream:        Input stream to read from.
350 :fields:        A field description array. Usually autogenerated.
351 :dest_struct:   Pointer to structure where data will be stored.
352 :returns:       True on success, false on IO error, on detectable errors in field description, if a field encoder returns false or if a required field is missing.
353
354 In Protocol Buffers binary format, EOF is only allowed between fields. If it happens anywhere else, pb_decode will return *false*. If pb_decode returns false, you cannot trust any of the data in the structure.
355
356 In addition to EOF, the pb_decode implementation supports terminating a message with a 0 byte. This is compatible with the official Protocol Buffers because 0 is never a valid field tag.
357
358 For optional fields, this function applies the default value and sets *has_<field>* to false if the field is not present.
359
360 Because of memory concerns, the detection of missing required fields is not perfect if the structure contains more than 32 fields.
361
362 .. sidebar:: Field decoders
363     
364     The functions with names beginning with *pb_dec_* are called field decoders. Each PB_LTYPE has an own field decoder, which handles translating from Protocol Buffers data to C data.
365
366     Each field decoder reads and decodes a single value. For arrays, the decoder is called repeatedly.
367
368     You can use the decoders from your callbacks.
369
370 pb_dec_varint
371 -------------
372 Field decoder for PB_LTYPE_VARINT. ::
373
374     bool pb_dec_varint(pb_istream_t *stream, const pb_field_t *field, void *dest)
375
376 :stream:        Input stream to read from. 1-10 bytes will be read.
377 :field:         Field description structure. Only *field->data_size* matters.
378 :dest:          Pointer to destination integer. Must have size of *field->data_size* bytes.
379 :returns:       True on success, false on IO errors or if `pb_decode_varint`_ fails.
380
381 This function first calls `pb_decode_varint`_. It then copies the first bytes of the 64-bit result value to *dest*, or on big endian architectures, the last bytes.
382
383 pb_dec_svarint
384 --------------
385 Field decoder for PB_LTYPE_SVARINT. Similar to `pb_dec_varint`_, except that it performs zigzag-decoding on the value. ::
386
387     bool pb_dec_svarint(pb_istream_t *stream, const pb_field_t *field, void *dest);
388
389 (parameters are the same as `pb_dec_varint`_)
390
391 pb_dec_fixed
392 ------------
393 Field decoder for PB_LTYPE_FIXED. ::
394
395     bool pb_dec_fixed(pb_istream_t *stream, const pb_field_t *field, void *dest);
396
397 (parameters are the same as `pb_dec_varint`_)
398
399 This function reads *field->data_size* bytes from the input stream.
400 On big endian architectures, it then reverses the order of the bytes.
401 Finally, it writes the bytes to *dest*.
402
403 pb_dec_bytes
404 ------------
405 Field decoder for PB_LTYPE_BYTES. Reads a length-prefixed block of bytes. ::
406
407     bool pb_dec_bytes(pb_istream_t *stream, const pb_field_t *field, void *dest);
408
409 :stream:        Input stream to read from.
410 :field:         Field description structure. Only *field->data_size* matters.
411 :dest:          Pointer to a structure similar to pb_bytes_array_t.
412 :returns:       True on success, false on IO error or if length exceeds the array size.
413
414 This function expects a pointer to a structure with a *size_t* field at start, and a variable sized byte array after it. It will deduce the maximum size of the array from *field->data_size*.
415
416 pb_dec_string
417 -------------
418 Field decoder for PB_LTYPE_STRING. Reads a length-prefixed string. ::
419
420     bool pb_dec_string(pb_istream_t *stream, const pb_field_t *field, void *dest);
421
422 :stream:        Input stream to read from.
423 :field:         Field description structure. Only *field->data_size* matters.
424 :dest:          Pointer to a character array of size *field->data_size*.
425 :returns:       True on success, false on IO error or if length exceeds the array size.
426
427 This function null-terminates the string when successful. On error, the contents of the destination array is undefined.
428
429 pb_dec_submessage
430 -----------------
431 Field decoder for PB_LTYPE_SUBMESSAGE. Calls `pb_decode`_ to perform the actual decoding. ::
432
433     bool pb_dec_submessage(pb_istream_t *stream, const pb_field_t *field, void *dest)
434
435 :stream:        Input stream to read from.
436 :field:         Field description structure. Only *field->ptr* matters.
437 :dest:          Pointer to the destination structure.
438 :returns:       True on success, false on IO error or if `pb_decode`_ fails.
439
440 The *field->ptr* should be a pointer to *pb_field_t* array describing the submessage.
441