eĿlipsis
a language independent preprocessor
 
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Loading...
Searching...
No Matches
ellipsis-base64.h
Go to the documentation of this file.
1
7#ifndef ELLIPSIS_BASE64_H
8#define ELLIPSIS_BASE64_H
9
10extern thread_local bool volatile ellipsis‿contracts‿ignore‿dynamic;
11extern thread_local bool volatile ellipsis‿contracts‿proceed‿dynamic;
12extern thread_local bool volatile ellipsis‿contracts‿verbose‿dynamic;
13
15
16#include <stdio.h>
17#include <stdlib.h>
18#include <stdint.h>
19
20#define STRINGIFY(...) STRINGIFY_(__VA_ARGS__)
21#define STRINGIFY_(...) #__VA_ARGS__
22
23#define ELLIPSIS_CONTRACT_VIOLATION(COUNT, VERB, CTYPE, CSTR, ...) \
24({\
25 static char const contract_format_ ## COUNT[] = \
26 __FILE__ ":" STRINGIFY(__LINE__) ": violation of " CTYPE " `" CSTR "`" __VA_OPT__(", ") __VA_ARGS__ "\n";\
27 (VERB \
28 ? fputs(contract_format_ ## COUNT, stderr) \
29 : 0);\
30 })
31
32#define ELLIPSIS_CONTRACT_IMPL(COUNT, COND, ACTION, VERB, CSTR, CTYPE, ...) \
33(((false) || (COND)) \
34 ? (void)0 \
35 : (ELLIPSIS_CONTRACT_VIOLATION(COUNT, VERB, CTYPE, CSTR __VA_OPT__(,) __VA_ARGS__) \
36 , ((false) \
37 ? (void)0 \
38 : ACTION())))
39
40#define ELLIPSIS_TO_VOIDS(...) ((void*)((uintptr_t)((__VA_ARGS__)-(__VA_ARGS__))))
41
42#define ELLIPSIS_TEST_ICE(...) (false ? ELLIPSIS_TO_VOIDS(__VA_ARGS__) : (ellipsis‿contracts‿is_ice*)nullptr)
43
44#define ELLIPSIS_CONTRACT_ICE_OR_TRUE(...) \
45 _Generic( \
46 ELLIPSIS_TEST_ICE(__VA_ARGS__), \
47 ellipsis‿contracts‿is_ice*: (__VA_ARGS__), \
48 default: true)
49
50#define ELLIPSIS_CONTRACT_CHECK_STATIC(CTYPE, COND, CSTR, ...) \
51 ({\
52 static_assert(ELLIPSIS_CONTRACT_ICE_OR_TRUE(COND), \
53 "compile time violation of " CTYPE " " CSTR \
54 __VA_OPT__(", ") __VA_ARGS__ );\
55 })
56
57#define ELLIPSIS_CONTRACT(COUNT, COND, ACTION, VERB, CSTR, CTYPE, ...) \
58 \
59 do { \
60 _Generic( \
61 ELLIPSIS_TEST_ICE(COND), \
62 ellipsis‿contracts‿is_ice*: ELLIPSIS_CONTRACT_CHECK_STATIC(CTYPE, COND, CSTR __VA_OPT__(,) __VA_ARGS__), \
63 default: ELLIPSIS_CONTRACT_IMPL(COUNT, COND, ACTION, VERB, CSTR, CTYPE __VA_OPT__(,) __VA_ARGS__));\
64 } while(false)
65
66#include <stdint.h>
67#include <uchar.h>
68#include <stdio.h>
70#include "utils/ellipsis-str8.h"
71
79[[nodiscard]]
80inline
81char* ellipsis‿base64‿encode(ellipsis‿str8 const source[static restrict 1]) {
82 typeof(char*) DEFER_LOC_ID_0_1;
83 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
84 DEFER_LOC_ID_0_1 = (typeof(char*)) {};
85 }
86 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
87 [[__maybe_unused__]] register bool defer_return_flag = false;
88 if (false) {
89 DEFER_ID_1_1:
90 goto DEFER_END_ID_1_2;
91 } else {
92 (void)0 ;
93 do {ELLIPSIS_CONTRACT(1, source, abort, true, "source", "assertion", "missing source for encoding UTF-8 string");} while (false);
94 /* defer */
95 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
96 unsigned (*DEFER_LOC_ID_1_1)[DEFER_LOC_ID_0_2] = {};
97 if (false) {
98 DEFER_ID_1_2: {
99 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
100 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
101 {ELLIPSIS_CONTRACT(2, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), unreachable, false, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assumption", "allocation for encoding UTF-8 string failed");}
102 }
103 goto DEFER_ID_1_1;
104 } else
105 (void)0 ;
107 do {
108 /* return mode 2 */
109 defer_return_flag = true;
110 DEFER_LOC_ID_0_1 = ellipsis‿base64‿encode‿_Insta(source);
111 goto DEFER_ID_1_2;
112 } while(false);
113
114 goto DEFER_ID_1_2;
115 }
116[[__maybe_unused__]] DEFER_END_ID_1_2:;
117 return DEFER_LOC_ID_0_1;
118}
119
134[[nodiscard]]
135inline
136ellipsis‿str8* ellipsis‿base64‿decode(size_t len, unsigned char const buf[static restrict len]) {
137 typeof(ellipsis‿str8*) DEFER_LOC_ID_0_1;
138 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
139 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿str8*)) {};
140 }
141 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
142 [[__maybe_unused__]] register bool defer_return_flag = false;
143 if (false) {
144 DEFER_ID_1_3:
145 goto DEFER_END_ID_1_4;
146 } else {
147 (void)0 ;
148 do {ELLIPSIS_CONTRACT(3, buf, abort, true, "buf", "assertion", "missing input string when decoding UTF-8 string");} while (false);
149 /* defer */
150 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
151 unsigned (*DEFER_LOC_ID_1_2)[DEFER_LOC_ID_0_2] = {};
152 if (false) {
153 DEFER_ID_1_4: {
154 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
155 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
156 {ELLIPSIS_CONTRACT(4, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), unreachable, false, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assumption", "allocation for decoding UTF-8 string failed");}
157 }
158 goto DEFER_ID_1_3;
159 } else
160 (void)0 ;
162 do {
163 /* return mode 2 */
164 defer_return_flag = true;
165 DEFER_LOC_ID_0_1 = ellipsis‿base64‿decode‿_Insta(len, buf);
166 goto DEFER_ID_1_4;
167 } while(false);
168
169 goto DEFER_ID_1_4;
170 }
171[[__maybe_unused__]] DEFER_END_ID_1_4:;
172 return DEFER_LOC_ID_0_1;
173}
174
182[[nodiscard]]
183inline
184char* ellipsis‿base64‿encode‿_Ctra(ellipsis‿str8 const source[static restrict 1]) {
185 typeof(char*) DEFER_LOC_ID_0_1;
186 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
187 DEFER_LOC_ID_0_1 = (typeof(char*)) {};
188 }
189 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
190 [[__maybe_unused__]] register bool defer_return_flag = false;
191 if (false) {
192 DEFER_ID_1_5:
193 goto DEFER_END_ID_1_6;
194 } else {
195 (void)0 ;
196 do {ELLIPSIS_CONTRACT(5, source, unreachable, false, "source", "assumption", "missing source for encoding UTF-8 string");} while (false);
197 /* defer */
198 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
199 unsigned (*DEFER_LOC_ID_1_3)[DEFER_LOC_ID_0_2] = {};
200 if (false) {
201 DEFER_ID_1_6: {
202 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
203 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
204 {ELLIPSIS_CONTRACT(6, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), abort, true, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assertion", "allocation for encoding UTF-8 string failed");}
205 }
206 goto DEFER_ID_1_5;
207 } else
208 (void)0 ;
210 do {
211 /* return mode 2 */
212 defer_return_flag = true;
213 DEFER_LOC_ID_0_1 = ellipsis‿base64‿encode‿_Inner(source);
214 goto DEFER_ID_1_6;
215 } while(false);
216
217 goto DEFER_ID_1_6;
218 }
219[[__maybe_unused__]] DEFER_END_ID_1_6:;
220 return DEFER_LOC_ID_0_1;
221}
222
237[[nodiscard]]
238inline
239ellipsis‿str8* ellipsis‿base64‿decode‿_Ctra(size_t len, unsigned char const buf[static restrict len]) {
240 typeof(ellipsis‿str8*) DEFER_LOC_ID_0_1;
241 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
242 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿str8*)) {};
243 }
244 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
245 [[__maybe_unused__]] register bool defer_return_flag = false;
246 if (false) {
247 DEFER_ID_1_7:
248 goto DEFER_END_ID_1_8;
249 } else {
250 (void)0 ;
251 do {ELLIPSIS_CONTRACT(7, buf, unreachable, false, "buf", "assumption", "missing input string when decoding UTF-8 string");} while (false);
252 /* defer */
253 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
254 unsigned (*DEFER_LOC_ID_1_4)[DEFER_LOC_ID_0_2] = {};
255 if (false) {
256 DEFER_ID_1_8: {
257 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
258 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
259 {ELLIPSIS_CONTRACT(8, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), abort, true, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assertion", "allocation for decoding UTF-8 string failed");}
260 }
261 goto DEFER_ID_1_7;
262 } else
263 (void)0 ;
265 do {
266 /* return mode 2 */
267 defer_return_flag = true;
268 DEFER_LOC_ID_0_1 = ellipsis‿base64‿decode‿_Inner(len, buf);
269 goto DEFER_ID_1_8;
270 } while(false);
271
272 goto DEFER_ID_1_8;
273 }
274[[__maybe_unused__]] DEFER_END_ID_1_8:;
275 return DEFER_LOC_ID_0_1;
276}
277
278#endif
char * ellipsis‿base64‿encode‿_Insta(ellipsis‿str8 const source[static restrict 1])
Encode binary data into a string that is base64 encoded.
Definition ellipsis-base64.c:382
char * ellipsis‿base64‿encode‿_Inner(ellipsis‿str8 const buf[static restrict 1])
Definition ellipsis-base64.c:307
ellipsis‿str8 * ellipsis‿base64‿decode‿_Insta(size_t len, unsigned char const buf[static restrict len])
Decode a string that contains base64 encoded information into a binary data array.
Definition ellipsis-base64.c:426
ellipsis‿str8 * ellipsis‿base64‿decode‿_Inner(size_t len, unsigned char const buf[static restrict len])
Definition ellipsis-base64.c:336
thread_local bool volatile ellipsis‿contracts‿verbose‿dynamic
#define ELLIPSIS_CONTRACT(COUNT, COND, ACTION, VERB, CSTR, CTYPE,...)
Definition ellipsis-base64.h:57
ellipsis‿str8 * ellipsis‿base64‿decode‿_Ctra(size_t len, unsigned char const buf[static restrict len])
Decode a string that contains base64 encoded information into a binary data array.
Definition ellipsis-base64.h:239
thread_local bool volatile ellipsis‿contracts‿proceed‿dynamic
ellipsis‿str8 * ellipsis‿base64‿decode(size_t len, unsigned char const buf[static restrict len])
Decode a string that contains base64 encoded information into a binary data array.
Definition ellipsis-base64.h:136
char * ellipsis‿base64‿encode(ellipsis‿str8 const source[static restrict 1])
Encode binary data into a string that is base64 encoded.
Definition ellipsis-base64.h:81
thread_local bool volatile ellipsis‿contracts‿ignore‿dynamic
char * ellipsis‿base64‿encode‿_Ctra(ellipsis‿str8 const source[static restrict 1])
Encode binary data into a string that is base64 encoded.
Definition ellipsis-base64.h:184
#define GNU_ATTR_MALLOC(...)
Definition ellipsis-error.h:44
struct ellipsis‿contracts‿is_ice ellipsis‿contracts‿is_ice
Definition ellipsis-expression.c:24
A structure with a flexible array member of base type ellipsis‿str8‿base.
Definition ellipsis-str8.h:150