forked from NordicSemiconductor/zcbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pet_decode.c
69 lines (56 loc) · 2.38 KB
/
pet_decode.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*
* Generated using zcbor version 0.9.99
* https://github.com/NordicSemiconductor/zcbor
* Generated with a --default-max-qty of 3
*/
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
#include <string.h>
#include "zcbor_decode.h"
#include "pet_decode.h"
#include "zcbor_print.h"
#if DEFAULT_MAX_QTY != 3
#error "The type file was generated with a different default_max_qty than this file"
#endif
#define log_result(state, result, func) do { \
if (!result) { \
zcbor_trace_file(state); \
zcbor_log("%s error: %s\r\n", func, zcbor_error_str(zcbor_peek_error(state))); \
} else { \
zcbor_log("%s success\r\n", func); \
} \
} while(0)
static bool decode_Pet(zcbor_state_t *state, struct Pet *result);
static bool decode_Pet(
zcbor_state_t *state, struct Pet *result)
{
zcbor_log("%s\r\n", __func__);
bool res = (((zcbor_list_start_decode(state) && ((((zcbor_list_start_decode(state) && ((zcbor_multi_decode(1, 3, &(*result).names_count, (zcbor_decoder_t *)zcbor_tstr_decode, state, (*&(*result).names), sizeof(struct zcbor_string))) || (zcbor_list_map_end_force_decode(state), false)) && zcbor_list_end_decode(state)))
&& ((zcbor_bstr_decode(state, (&(*result).birthday)))
&& ((((((*result).birthday.len == 8)) || (zcbor_error(state, ZCBOR_ERR_WRONG_RANGE), false))) || (zcbor_error(state, ZCBOR_ERR_WRONG_RANGE), false)))
&& ((((zcbor_uint_decode(state, &(*result).species_choice, sizeof((*result).species_choice)))) && ((((((*result).species_choice == Pet_species_cat_c) && ((1)))
|| (((*result).species_choice == Pet_species_dog_c) && ((1)))
|| (((*result).species_choice == Pet_species_other_c) && ((1)))) || (zcbor_error(state, ZCBOR_ERR_WRONG_VALUE), false)))))) || (zcbor_list_map_end_force_decode(state), false)) && zcbor_list_end_decode(state))));
if (false) {
/* For testing that the types of the arguments are correct.
* A compiler error here means a bug in zcbor.
*/
zcbor_tstr_decode(state, (*&(*result).names));
}
log_result(state, res, __func__);
return res;
}
int cbor_decode_Pet(
const uint8_t *payload, size_t payload_len,
struct Pet *result,
size_t *payload_len_out)
{
zcbor_state_t states[4];
return zcbor_entry_function(payload, payload_len, (void *)result, payload_len_out, states,
(zcbor_decoder_t *)decode_Pet, sizeof(states) / sizeof(zcbor_state_t), 1);
}