QCBOR
Loading...
Searching...
No Matches
qcbor_spiffy_decode.h
Go to the documentation of this file.
1/* ==========================================================================
2 * qcbor_spiffy_decode.h -- higher-level easier-to-use CBOR decoding.
3 *
4 * Copyright (c) 2020-2024, Laurence Lundblade. All rights reserved.
5 * Copyright (c) 2021, Arm Limited. All rights reserved.
6 *
7 * SPDX-License-Identifier: BSD-3-Clause
8 *
9 * See BSD-3-Clause license in file named "LICENSE"
10 *
11 * Forked from qcbor_decode.h on 7/23/2020
12 * ========================================================================== */
13
14#ifndef qcbor_spiffy_decode_h
15#define qcbor_spiffy_decode_h
16
18#include "qcbor/qcbor_number_decode.h" /* For v1 compatibility, not dependency */
19
20
21#ifdef __cplusplus
22extern "C" {
23#if 0
24} // Keep editor indention formatting happy
25#endif
26#endif
27
28
29
139static void
141 UsefulBufC *pBytes);
142
144static void
146 int64_t nLabel,
147 UsefulBufC *pBytes);
148
150static void
152 const char *szLabel,
153 UsefulBufC *pBytes);
154
155
171static void
173 UsefulBufC *pText);
174
176static void
178 int64_t nLabel,
179 UsefulBufC *pText);
180
182static void
184 const char *szLabel,
185 UsefulBufC *pText);
186
187
188
189
244static void
246
248void
250
252void
254
255
273static void
275
276
319static void
321 QCBORItem *pItem,
322 UsefulBufC *pEncodedCBOR);
323
325static void
327 int64_t nLabel,
328 QCBORItem *pItem,
329 UsefulBufC *pEncodedCBOR);
330
332static void
334 const char *szLabel,
335 QCBORItem *pItem,
336 UsefulBufC *pEncodedCBOR);
337
338
339
394static void
396
398void
400
402void
404
405
423static void
425
426
470static void
472 QCBORItem *pItem,
473 UsefulBufC *pEncodedCBOR);
474
476static void
478 int64_t nLabel,
479 QCBORItem *pItem,
480 UsefulBufC *pEncodedCBOR);
481
483static void
485 const char *szLabel,
486 QCBORItem *pItem,
487 UsefulBufC *pEncodedCBOR);
488
489
506void
508
509
520void
522
523
534void
536
537
572void
574 int64_t nLabel,
575 uint8_t uQcborType,
576 QCBORItem *pItem);
577
579void
581 const char *szLabel,
582 uint8_t uQcborType,
583 QCBORItem *pItem);
584
585
654void
656
657
673typedef QCBORError (*QCBORItemCallback)(void *pCallbackCtx,
674 const QCBORItem *pItem);
675
676
701void
703 QCBORItem *pItemList,
704 void *pCallbackCtx,
705 QCBORItemCallback pfCB);
706
720void
722
724void
726 int64_t nLabel,
727 bool *pbBool);
728
730void
732 const char *szLabel,
733 bool *pbBool);
734
735
746static void
748
750static void
751QCBORDecode_GetNullInMapN(QCBORDecodeContext *pCtx, int64_t nLabel);
752
754static void
755QCBORDecode_GetNullInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel);
756
757
769static void
771
773static void
775
777static void
778QCBORDecode_GetUndefinedInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel);
779
780
796void
797QCBORDecode_GetSimple(QCBORDecodeContext *pCtx, uint8_t *puSimpleValue);
798
800void
802 int64_t nLabel,
803 uint8_t *puSimpleValue);
804
806void
808 const char *szLabel,
809 uint8_t *puSimpleValue);
810
811
812
813
814
815
816/* ========================================================================= *
817 * BEGINNING OF PRIVATE INLINE IMPLEMENTATION *
818 * ========================================================================= */
819
821void
822QCBORDecode_Private_EnterBoundedMapOrArray(QCBORDecodeContext *pCtx,
823 uint8_t uType,
824 QCBORItem *pItem);
825
827void
828QCBORDecode_Private_ExitBoundedMapOrArray(QCBORDecodeContext *pCtx,
829 uint8_t uType);
830
832void
833QCBORDecode_Private_GetArrayOrMap(QCBORDecodeContext *pCtx,
834 uint8_t uType,
835 QCBORItem *pItem,
836 UsefulBufC *pEncodedCBOR);
837
839void
840QCBORDecode_Private_SearchAndGetArrayOrMap(QCBORDecodeContext *pCtx,
841 QCBORItem *pTarget,
842 QCBORItem *pItem,
843 UsefulBufC *pEncodedCBOR);
844
846typedef struct {
847 void *pCBContext;
848 QCBORItemCallback pfCallback;
849} MapSearchCallBack;
850
852typedef struct {
853 size_t uStartOffset;
854 uint16_t uItemCount;
855} MapSearchInfo;
856
859QCBORDecode_Private_MapSearch(QCBORDecodeContext *pMe,
860 QCBORItem *pItemArray,
861 MapSearchInfo *pInfo,
862 MapSearchCallBack *pCallBack);
863
866QCBORDecode_Private_ExitBoundedLevel(QCBORDecodeContext *pMe,
867 const uint32_t uEndOffset);
868
869
871void
872QCBORDecode_Private_GetItemInMapNoCheckSZ(QCBORDecodeContext *pMe,
873 const char *szLabel,
874 const uint8_t uQcborType,
875 QCBORItem *pItem,
876 size_t *puOffset);
877
879void
880QCBORDecode_Private_GetItemInMapNoCheckN(QCBORDecodeContext *pMe,
881 const int64_t nLabel,
882 const uint8_t uQcborType,
883 QCBORItem *pItem,
884 size_t *puOffset);
885
886
887static inline void
889 QCBORDecode_Private_EnterBoundedMapOrArray(pMe, QCBOR_TYPE_MAP, pItem);
890}
891
892static inline void
894 QCBORDecode_Private_EnterBoundedMapOrArray(pMe, QCBOR_TYPE_ARRAY, pItem);
895}
896
897
898static inline void
900{
901 QCBORDecode_Private_ExitBoundedMapOrArray(pMe, QCBOR_TYPE_ARRAY);
902}
903
904static inline void
906{
907 QCBORDecode_Private_ExitBoundedMapOrArray(pMe, QCBOR_TYPE_MAP);
908}
909
910
911static inline void
913 QCBORItem *pItem,
914 UsefulBufC *pEncodedCBOR)
915{
916 QCBORDecode_Private_GetArrayOrMap(pMe, QCBOR_TYPE_ARRAY, pItem, pEncodedCBOR);
917}
918
919
920static inline void
922 const int64_t nLabel,
923 QCBORItem *pItem,
924 UsefulBufC *pEncodedCBOR)
925{
926 QCBORItem OneItemSeach[2];
927 OneItemSeach[0].uLabelType = QCBOR_TYPE_INT64;
928 OneItemSeach[0].label.int64 = nLabel;
929 OneItemSeach[0].uDataType = QCBOR_TYPE_ARRAY;
930 OneItemSeach[1].uLabelType = QCBOR_TYPE_NONE;
931
932 QCBORDecode_Private_SearchAndGetArrayOrMap(pMe, OneItemSeach, pItem, pEncodedCBOR);
933}
934
935
936static inline void
938 const char *szLabel,
939 QCBORItem *pItem,
940 UsefulBufC *pEncodedCBOR)
941{
942#ifndef QCBOR_DISABLE_NON_INTEGER_LABELS
943 QCBORItem OneItemSeach[2];
944 OneItemSeach[0].uLabelType = QCBOR_TYPE_TEXT_STRING;
945 OneItemSeach[0].label.string = UsefulBuf_FromSZ(szLabel);
946 OneItemSeach[0].uDataType = QCBOR_TYPE_ARRAY;
947 OneItemSeach[1].uLabelType = QCBOR_TYPE_NONE;
948
949 QCBORDecode_Private_SearchAndGetArrayOrMap(pMe, OneItemSeach, pItem, pEncodedCBOR);
950#else
951 (void)szLabel;
952 (void)pItem;
953 (void)pEncodedCBOR;
954 pMe->uLastError = QCBOR_ERR_MAP_LABEL_TYPE;
955#endif /* ! QCBOR_DISABLE_NON_INTEGER_LABELS */
956}
957
958static inline void
960 QCBORItem *pItem,
961 UsefulBufC *pEncodedCBOR)
962{
963 QCBORDecode_Private_GetArrayOrMap(pMe, QCBOR_TYPE_MAP, pItem, pEncodedCBOR);
964}
965
966
967static inline void
969 const int64_t nLabel,
970 QCBORItem *pItem,
971 UsefulBufC *pEncodedCBOR)
972{
973 QCBORItem OneItemSeach[2];
974 OneItemSeach[0].uLabelType = QCBOR_TYPE_INT64;
975 OneItemSeach[0].label.int64 = nLabel;
976 OneItemSeach[0].uDataType = QCBOR_TYPE_MAP;
977 OneItemSeach[1].uLabelType = QCBOR_TYPE_NONE;
978
979 QCBORDecode_Private_SearchAndGetArrayOrMap(pMe, OneItemSeach, pItem, pEncodedCBOR);
980}
981
982
983static inline void
985 const char *szLabel,
986 QCBORItem *pItem,
987 UsefulBufC *pEncodedCBOR)
988{
989#ifndef QCBOR_DISABLE_NON_INTEGER_LABELS
990 QCBORItem OneItemSeach[2];
991 OneItemSeach[0].uLabelType = QCBOR_TYPE_TEXT_STRING;
992 OneItemSeach[0].label.string = UsefulBuf_FromSZ(szLabel);
993 OneItemSeach[0].uDataType = QCBOR_TYPE_MAP;
994 OneItemSeach[1].uLabelType = QCBOR_TYPE_NONE;
995
996 QCBORDecode_Private_SearchAndGetArrayOrMap(pMe, OneItemSeach, pItem, pEncodedCBOR);
997#else
998 (void)szLabel;
999 (void)pItem;
1000 (void)pEncodedCBOR;
1001 pMe->uLastError = QCBOR_ERR_MAP_LABEL_TYPE;
1002#endif /* ! QCBOR_DISABLE_NON_INTEGER_LABELS */
1003}
1004
1005
1006
1007
1008static inline void
1010{
1011 QCBORItem Item;
1012
1013 QCBORDecode_VGetNext(pMe, &Item);
1014
1015 if(pMe->uLastError == QCBOR_SUCCESS && Item.uDataType == QCBOR_TYPE_BYTE_STRING) {
1016 *pBytes = Item.val.string;
1017 } else {
1018 *pBytes = NULLUsefulBufC;
1019 }
1020}
1021
1022static inline void
1024 const int64_t nLabel,
1025 UsefulBufC *pBytes)
1026{
1027 QCBORItem Item;
1028
1030
1031 if(pMe->uLastError == QCBOR_SUCCESS) {
1032 *pBytes = Item.val.string;
1033 } else {
1034 *pBytes = NULLUsefulBufC;
1035 }
1036}
1037
1038static inline void
1040 const char *szLabel,
1041 UsefulBufC *pBytes)
1042{
1043 QCBORItem Item;
1044
1046
1047 if(pMe->uLastError == QCBOR_SUCCESS) {
1048 *pBytes = Item.val.string;
1049 } else {
1050 *pBytes = NULLUsefulBufC;
1051 }
1052}
1053
1054
1055static inline void
1057{
1058 QCBORItem Item;
1059
1060 QCBORDecode_VGetNext(pMe, &Item);
1061
1062 if(pMe->uLastError == QCBOR_SUCCESS && Item.uDataType == QCBOR_TYPE_TEXT_STRING) {
1063 *pText = Item.val.string;
1064 } else {
1065 *pText = NULLUsefulBufC;
1066 }
1067}
1068
1069static inline void
1071 const int64_t nLabel,
1072 UsefulBufC *pText)
1073{
1074 QCBORItem Item;
1075
1077
1078 if(pMe->uLastError == QCBOR_SUCCESS) {
1079 *pText = Item.val.string;
1080 } else {
1081 *pText = NULLUsefulBufC;
1082 }
1083}
1084
1085static inline void
1087 const char *szLabel,
1088 UsefulBufC *pText)
1089{
1090 QCBORItem Item;
1091
1093
1094 if(pMe->uLastError == QCBOR_SUCCESS) {
1095 *pText = Item.val.string;
1096 } else {
1097 *pText = NULLUsefulBufC;
1098 }
1099}
1100
1101
1102static inline void
1104{
1105 QCBORItem item;
1106
1107 QCBORDecode_VGetNext(pMe, &item);
1108 if(pMe->uLastError == QCBOR_SUCCESS && item.uDataType != QCBOR_TYPE_NULL) {
1109 pMe->uLastError = QCBOR_ERR_UNEXPECTED_TYPE;
1110 }
1111}
1112
1113static inline void
1115 const int64_t nLabel)
1116{
1117 QCBORItem Item;
1118 QCBORDecode_GetItemInMapN(pMe, nLabel, QCBOR_TYPE_NULL, &Item);
1119}
1120
1121static inline void
1123 const char *szLabel)
1124{
1125 QCBORItem Item;
1126 QCBORDecode_GetItemInMapSZ(pMe, szLabel, QCBOR_TYPE_NULL, &Item);
1127}
1128
1129static inline void
1131{
1132 QCBORItem item;
1133
1134 QCBORDecode_VGetNext(pMe, &item);
1135 if(pMe->uLastError == QCBOR_SUCCESS && item.uDataType != QCBOR_TYPE_UNDEF) {
1136 pMe->uLastError = QCBOR_ERR_UNEXPECTED_TYPE;
1137 }
1138}
1139
1140static inline void
1142 const int64_t nLabel)
1143{
1144 QCBORItem Item;
1145 QCBORDecode_GetItemInMapN(pMe, nLabel, QCBOR_TYPE_UNDEF, &Item);
1146}
1147
1148static inline void
1150 const char *szLabel)
1151{
1152 QCBORItem Item;
1153 QCBORDecode_GetItemInMapSZ(pMe, szLabel, QCBOR_TYPE_UNDEF, &Item);
1154}
1155
1156
1157/* ======================================================================== *
1158 * END OF PRIVATE INLINE IMPLEMENTATION *
1159 * ======================================================================== */
1160
1161
1162
1163#ifdef __cplusplus
1164}
1165#endif
1166
1167#endif /* qcbor_spiffy_decode_h */
static UsefulBufC UsefulBuf_FromSZ(const char *szString)
Convert a NULL-terminated string to a UsefulBufC.
Definition UsefulBuf.h:1995
#define NULLUsefulBufC
Definition UsefulBuf.h:321
QCBORError
Definition qcbor_common.h:260
@ QCBOR_ERR_MAP_LABEL_TYPE
Definition qcbor_common.h:410
@ QCBOR_ERR_UNEXPECTED_TYPE
Definition qcbor_common.h:465
@ QCBOR_SUCCESS
Definition qcbor_common.h:262
void QCBORDecode_VGetNext(QCBORDecodeContext *pCtx, QCBORItem *pDecodedItem)
Get the next item (integer, byte string, array...) in the preorder traversal of the CBOR tree.
#define QCBOR_TYPE_NONE
Definition qcbor_main_decode.h:305
#define QCBOR_TYPE_NULL
Definition qcbor_main_decode.h:428
#define QCBOR_TYPE_TEXT_STRING
Definition qcbor_main_decode.h:331
#define QCBOR_TYPE_ARRAY
Definition qcbor_main_decode.h:320
#define QCBOR_TYPE_INT64
Definition qcbor_main_decode.h:313
#define QCBOR_TYPE_UNDEF
Definition qcbor_main_decode.h:431
#define QCBOR_TYPE_MAP
Definition qcbor_main_decode.h:323
struct _QCBORDecodeContext QCBORDecodeContext
Definition qcbor_main_decode.h:785
#define QCBOR_TYPE_BYTE_STRING
Definition qcbor_main_decode.h:326
void QCBORDecode_GetSimpleInMapN(QCBORDecodeContext *pCtx, int64_t nLabel, uint8_t *puSimpleValue)
void QCBORDecode_GetItemInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel, uint8_t uQcborType, QCBORItem *pItem)
void QCBORDecode_GetItemsInMap(QCBORDecodeContext *pCtx, QCBORItem *pItemList)
Get a group of labeled items all at once from a map.
static void QCBORDecode_GetUndefined(QCBORDecodeContext *pCtx)
Decode the next item as a CBOR "undefined" item.
Definition qcbor_spiffy_decode.h:1130
static void QCBORDecode_EnterArray(QCBORDecodeContext *pCtx, QCBORItem *pItem)
Enter an array for decoding in bounded mode.
Definition qcbor_spiffy_decode.h:893
static void QCBORDecode_GetArrayFromMapN(QCBORDecodeContext *pCtx, int64_t nLabel, QCBORItem *pItem, UsefulBufC *pEncodedCBOR)
Definition qcbor_spiffy_decode.h:921
void QCBORDecode_SeekToLabelN(QCBORDecodeContext *pCtx, int64_t nLabel)
Position traversal cursor by map label.
static void QCBORDecode_GetArray(QCBORDecodeContext *pCtx, QCBORItem *pItem, UsefulBufC *pEncodedCBOR)
Get the encoded bytes that make up an array.
Definition qcbor_spiffy_decode.h:912
void QCBORDecode_GetSimpleInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel, uint8_t *puSimpleValue)
void QCBORDecode_GetItemInMapN(QCBORDecodeContext *pCtx, int64_t nLabel, uint8_t uQcborType, QCBORItem *pItem)
Get an item in map by label and type.
void QCBORDecode_EnterMapFromMapN(QCBORDecodeContext *pCtx, int64_t nLabel)
void QCBORDecode_GetBool(QCBORDecodeContext *pCtx, bool *pbBool)
Decode the next item as a Boolean.
void QCBORDecode_GetBoolInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel, bool *pbBool)
static void QCBORDecode_GetNull(QCBORDecodeContext *pCtx)
Decode the next item as a null.
Definition qcbor_spiffy_decode.h:1103
void QCBORDecode_Rewind(QCBORDecodeContext *pCtx)
Reset traversal cursor to start of map, array, byte-string wrapped CBOR or start of input.
static void QCBORDecode_GetByteStringInMapN(QCBORDecodeContext *pCtx, int64_t nLabel, UsefulBufC *pBytes)
Definition qcbor_spiffy_decode.h:1023
static void QCBORDecode_ExitArray(QCBORDecodeContext *pCtx)
Exit an array that has been enetered.
Definition qcbor_spiffy_decode.h:899
static void QCBORDecode_GetArrayFromMapSZ(QCBORDecodeContext *pCtx, const char *szLabel, QCBORItem *pItem, UsefulBufC *pEncodedCBOR)
Definition qcbor_spiffy_decode.h:937
void QCBORDecode_GetSimple(QCBORDecodeContext *pCtx, uint8_t *puSimpleValue)
Decode the next item as a CBOR simple value.
static void QCBORDecode_GetTextStringInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel, UsefulBufC *pText)
Definition qcbor_spiffy_decode.h:1086
static void QCBORDecode_GetTextStringInMapN(QCBORDecodeContext *pCtx, int64_t nLabel, UsefulBufC *pText)
Definition qcbor_spiffy_decode.h:1070
void QCBORDecode_EnterArrayFromMapN(QCBORDecodeContext *pMe, int64_t uLabel)
void QCBORDecode_GetItemsInMapWithCallback(QCBORDecodeContext *pCtx, QCBORItem *pItemList, void *pCallbackCtx, QCBORItemCallback pfCB)
Get a group of labeled items all at once from a map with a callback.
void QCBORDecode_SeekToLabelSZ(QCBORDecodeContext *pMe, const char *szLabel)
Position traversal cursor by map label.
static void QCBORDecode_GetByteString(QCBORDecodeContext *pCtx, UsefulBufC *pBytes)
Decode the next item as a byte string.
Definition qcbor_spiffy_decode.h:1009
static void QCBORDecode_EnterMap(QCBORDecodeContext *pCtx, QCBORItem *pItem)
Enter a map for decoding and searching.
Definition qcbor_spiffy_decode.h:888
static void QCBORDecode_GetNullInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel)
Definition qcbor_spiffy_decode.h:1122
static void QCBORDecode_GetUndefinedInMapN(QCBORDecodeContext *pCtx, int64_t nLabel)
Definition qcbor_spiffy_decode.h:1141
static void QCBORDecode_GetNullInMapN(QCBORDecodeContext *pCtx, int64_t nLabel)
Definition qcbor_spiffy_decode.h:1114
static void QCBORDecode_GetTextString(QCBORDecodeContext *pCtx, UsefulBufC *pText)
Decode the next item as a text string.
Definition qcbor_spiffy_decode.h:1056
static void QCBORDecode_GetMap(QCBORDecodeContext *pCtx, QCBORItem *pItem, UsefulBufC *pEncodedCBOR)
Get the bytes that make up a map.
Definition qcbor_spiffy_decode.h:959
static void QCBORDecode_GetMapFromMapN(QCBORDecodeContext *pCtx, int64_t nLabel, QCBORItem *pItem, UsefulBufC *pEncodedCBOR)
Definition qcbor_spiffy_decode.h:968
void QCBORDecode_EnterMapFromMapSZ(QCBORDecodeContext *pCtx, const char *szLabel)
void QCBORDecode_GetBoolInMapN(QCBORDecodeContext *pCtx, int64_t nLabel, bool *pbBool)
QCBORError(* QCBORItemCallback)(void *pCallbackCtx, const QCBORItem *pItem)
Per-item callback for map searching.
Definition qcbor_spiffy_decode.h:673
static void QCBORDecode_ExitMap(QCBORDecodeContext *pCtx)
Exit a map that has been enetered.
Definition qcbor_spiffy_decode.h:905
static void QCBORDecode_GetMapFromMapSZ(QCBORDecodeContext *pCtx, const char *szLabel, QCBORItem *pItem, UsefulBufC *pEncodedCBOR)
Definition qcbor_spiffy_decode.h:984
static void QCBORDecode_GetByteStringInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel, UsefulBufC *pBytes)
Definition qcbor_spiffy_decode.h:1039
void QCBORDecode_EnterArrayFromMapSZ(QCBORDecodeContext *pMe, const char *szLabel)
static void QCBORDecode_GetUndefinedInMapSZ(QCBORDecodeContext *pCtx, const char *szLabel)
Definition qcbor_spiffy_decode.h:1149
Definition qcbor_main_decode.h:574
union _QCBORItem::@2 label
UsefulBufC string
Definition qcbor_main_decode.h:615
int64_t int64
Definition qcbor_main_decode.h:608
union _QCBORItem::@1 val
uint8_t uDataType
Definition qcbor_main_decode.h:577
uint8_t uLabelType
Definition qcbor_main_decode.h:581
Definition UsefulBuf.h:280