Rename map -> kvpairs
[libside.git] / src / test.c
1 // SPDX-License-Identifier: MIT
2 /*
3 * Copyright 2022 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 */
5
6 #include <stdint.h>
7 #include <inttypes.h>
8 #include <stdlib.h>
9 #include <stdio.h>
10
11 #include <side/trace.h>
12 #include "tracer.h"
13
14 /* User code example */
15
16 static side_define_event(my_provider_event, "myprovider", "myevent", SIDE_LOGLEVEL_DEBUG,
17 side_field_list(
18 side_field(SIDE_TYPE_U32, "abc"),
19 side_field(SIDE_TYPE_S64, "def"),
20 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
21 )
22 );
23
24 static
25 void test_fields(void)
26 {
27 uint32_t uw = 42;
28 int64_t sdw = -500;
29
30 my_provider_event.enabled = 1;
31 side_event(&my_provider_event, side_arg_list(side_arg_u32(uw), side_arg_s64(sdw),
32 side_arg_dynamic(side_arg_dynamic_string("zzz"))));
33 }
34
35 static side_define_event(my_provider_event2, "myprovider", "myevent2", SIDE_LOGLEVEL_DEBUG,
36 side_field_list(
37 side_field_struct("structfield",
38 side_field_list(
39 side_field(SIDE_TYPE_U32, "x"),
40 side_field(SIDE_TYPE_S64, "y"),
41 )
42 ),
43 side_field(SIDE_TYPE_U8, "z"),
44 )
45 );
46
47 static
48 void test_struct(void)
49 {
50 my_provider_event2.enabled = 1;
51 side_event_cond(&my_provider_event2) {
52 side_arg_define_vec(mystruct, side_arg_list(side_arg_u32(21), side_arg_s64(22)));
53 side_event_call(&my_provider_event2, side_arg_list(side_arg_struct(&mystruct), side_arg_u8(55)));
54 }
55 }
56
57 static side_define_event(my_provider_event_array, "myprovider", "myarray", SIDE_LOGLEVEL_DEBUG,
58 side_field_list(
59 side_field_array("arr", side_elem_type(SIDE_TYPE_U32), 3),
60 side_field(SIDE_TYPE_S64, "v"),
61 )
62 );
63
64 static
65 void test_array(void)
66 {
67 my_provider_event_array.enabled = 1;
68 side_event_cond(&my_provider_event_array) {
69 side_arg_define_vec(myarray, side_arg_list(side_arg_u32(1), side_arg_u32(2), side_arg_u32(3)));
70 side_event_call(&my_provider_event_array, side_arg_list(side_arg_array(&myarray), side_arg_s64(42)));
71 }
72 }
73
74 static side_define_event(my_provider_event_vla, "myprovider", "myvla", SIDE_LOGLEVEL_DEBUG,
75 side_field_list(
76 side_field_vla("vla", side_elem_type(SIDE_TYPE_U32)),
77 side_field(SIDE_TYPE_S64, "v"),
78 )
79 );
80
81 static
82 void test_vla(void)
83 {
84 my_provider_event_vla.enabled = 1;
85 side_event_cond(&my_provider_event_vla) {
86 side_arg_define_vec(myvla, side_arg_list(side_arg_u32(1), side_arg_u32(2), side_arg_u32(3)));
87 side_event_call(&my_provider_event_vla, side_arg_list(side_arg_vla(&myvla), side_arg_s64(42)));
88 }
89 }
90
91 /* 1D array visitor */
92
93 struct app_visitor_ctx {
94 const uint32_t *ptr;
95 uint32_t length;
96 };
97
98 static
99 enum side_visitor_status test_visitor(const struct side_tracer_visitor_ctx *tracer_ctx, void *_ctx)
100 {
101 struct app_visitor_ctx *ctx = (struct app_visitor_ctx *) _ctx;
102 uint32_t length = ctx->length, i;
103
104 for (i = 0; i < length; i++) {
105 const struct side_arg_vec elem = {
106 .type = SIDE_TYPE_U32,
107 .u = {
108 .side_u32 = ctx->ptr[i],
109 },
110 };
111 if (tracer_ctx->write_elem(tracer_ctx, &elem) != SIDE_VISITOR_STATUS_OK)
112 return SIDE_VISITOR_STATUS_ERROR;
113 }
114 return SIDE_VISITOR_STATUS_OK;
115 }
116
117 static uint32_t testarray[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
118
119 static side_define_event(my_provider_event_vla_visitor, "myprovider", "myvlavisit", SIDE_LOGLEVEL_DEBUG,
120 side_field_list(
121 side_field_vla_visitor("vlavisit", side_elem_type(SIDE_TYPE_U32), test_visitor),
122 side_field(SIDE_TYPE_S64, "v"),
123 )
124 );
125
126 static
127 void test_vla_visitor(void)
128 {
129 my_provider_event_vla_visitor.enabled = 1;
130 side_event_cond(&my_provider_event_vla_visitor) {
131 struct app_visitor_ctx ctx = {
132 .ptr = testarray,
133 .length = SIDE_ARRAY_SIZE(testarray),
134 };
135 side_event_call(&my_provider_event_vla_visitor, side_arg_list(side_arg_vla_visitor(&ctx), side_arg_s64(42)));
136 }
137 }
138
139 /* 2D array visitor */
140
141 struct app_visitor_2d_inner_ctx {
142 const uint32_t *ptr;
143 uint32_t length;
144 };
145
146 static
147 enum side_visitor_status test_inner_visitor(const struct side_tracer_visitor_ctx *tracer_ctx, void *_ctx)
148 {
149 struct app_visitor_2d_inner_ctx *ctx = (struct app_visitor_2d_inner_ctx *) _ctx;
150 uint32_t length = ctx->length, i;
151
152 for (i = 0; i < length; i++) {
153 const struct side_arg_vec elem = {
154 .type = SIDE_TYPE_U32,
155 .u = {
156 .side_u32 = ctx->ptr[i],
157 },
158 };
159 if (tracer_ctx->write_elem(tracer_ctx, &elem) != SIDE_VISITOR_STATUS_OK)
160 return SIDE_VISITOR_STATUS_ERROR;
161 }
162 return SIDE_VISITOR_STATUS_OK;
163 }
164
165 struct app_visitor_2d_outer_ctx {
166 const uint32_t (*ptr)[2];
167 uint32_t length;
168 };
169
170 static
171 enum side_visitor_status test_outer_visitor(const struct side_tracer_visitor_ctx *tracer_ctx, void *_ctx)
172 {
173 struct app_visitor_2d_outer_ctx *ctx = (struct app_visitor_2d_outer_ctx *) _ctx;
174 uint32_t length = ctx->length, i;
175
176 for (i = 0; i < length; i++) {
177 struct app_visitor_2d_inner_ctx inner_ctx = {
178 .ptr = ctx->ptr[i],
179 .length = 2,
180 };
181 const struct side_arg_vec elem = side_arg_vla_visitor(&inner_ctx);
182 if (tracer_ctx->write_elem(tracer_ctx, &elem) != SIDE_VISITOR_STATUS_OK)
183 return SIDE_VISITOR_STATUS_ERROR;
184 }
185 return SIDE_VISITOR_STATUS_OK;
186 }
187
188 static uint32_t testarray2d[][2] = {
189 { 1, 2 },
190 { 33, 44 },
191 { 55, 66 },
192 };
193
194 static side_define_event(my_provider_event_vla_visitor2d, "myprovider", "myvlavisit2d", SIDE_LOGLEVEL_DEBUG,
195 side_field_list(
196 side_field_vla_visitor("vlavisit2d",
197 side_elem(side_type_vla_visitor_decl(side_elem_type(SIDE_TYPE_U32), test_inner_visitor)), test_outer_visitor),
198 side_field(SIDE_TYPE_S64, "v"),
199 )
200 );
201
202 static
203 void test_vla_visitor_2d(void)
204 {
205 my_provider_event_vla_visitor2d.enabled = 1;
206 side_event_cond(&my_provider_event_vla_visitor2d) {
207 struct app_visitor_2d_outer_ctx ctx = {
208 .ptr = testarray2d,
209 .length = SIDE_ARRAY_SIZE(testarray2d),
210 };
211 side_event_call(&my_provider_event_vla_visitor2d, side_arg_list(side_arg_vla_visitor(&ctx), side_arg_s64(42)));
212 }
213 }
214
215 static int64_t array_fixint[] = { -444, 555, 123, 2897432587 };
216
217 static side_define_event(my_provider_event_array_fixint, "myprovider", "myarrayfixint", SIDE_LOGLEVEL_DEBUG,
218 side_field_list(
219 side_field_array("arrfixint", side_elem_type(SIDE_TYPE_S64), SIDE_ARRAY_SIZE(array_fixint)),
220 side_field(SIDE_TYPE_S64, "v"),
221 )
222 );
223
224 static
225 void test_array_fixint(void)
226 {
227 my_provider_event_array_fixint.enabled = 1;
228 side_event(&my_provider_event_array_fixint,
229 side_arg_list(side_arg_array_s64(array_fixint), side_arg_s64(42)));
230 }
231
232 static int64_t vla_fixint[] = { -444, 555, 123, 2897432587 };
233
234 static side_define_event(my_provider_event_vla_fixint, "myprovider", "myvlafixint", SIDE_LOGLEVEL_DEBUG,
235 side_field_list(
236 side_field_vla("vlafixint", side_elem_type(SIDE_TYPE_S64)),
237 side_field(SIDE_TYPE_S64, "v"),
238 )
239 );
240
241 static
242 void test_vla_fixint(void)
243 {
244 my_provider_event_vla_fixint.enabled = 1;
245 side_event(&my_provider_event_vla_fixint,
246 side_arg_list(side_arg_vla_s64(vla_fixint, SIDE_ARRAY_SIZE(vla_fixint)), side_arg_s64(42)));
247 }
248
249 static side_define_event(my_provider_event_dynamic_basic,
250 "myprovider", "mydynamicbasic", SIDE_LOGLEVEL_DEBUG,
251 side_field_list(
252 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
253 )
254 );
255
256 static
257 void test_dynamic_basic_type(void)
258 {
259 my_provider_event_dynamic_basic.enabled = 1;
260 side_event(&my_provider_event_dynamic_basic,
261 side_arg_list(side_arg_dynamic(side_arg_dynamic_s16(-33))));
262 }
263
264 static side_define_event(my_provider_event_dynamic_vla,
265 "myprovider", "mydynamicvla", SIDE_LOGLEVEL_DEBUG,
266 side_field_list(
267 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
268 )
269 );
270
271 static
272 void test_dynamic_vla(void)
273 {
274 side_arg_dynamic_define_vec(myvla,
275 side_arg_list(
276 side_arg_dynamic_u32(1), side_arg_dynamic_u32(2), side_arg_dynamic_u32(3))
277 );
278 my_provider_event_dynamic_vla.enabled = 1;
279 side_event(&my_provider_event_dynamic_vla,
280 side_arg_list(side_arg_dynamic(side_arg_dynamic_vla(&myvla))));
281 }
282
283 static side_define_event(my_provider_event_dynamic_null,
284 "myprovider", "mydynamicnull", SIDE_LOGLEVEL_DEBUG,
285 side_field_list(
286 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
287 )
288 );
289
290 static
291 void test_dynamic_null(void)
292 {
293 my_provider_event_dynamic_null.enabled = 1;
294 side_event(&my_provider_event_dynamic_null,
295 side_arg_list(side_arg_dynamic(side_arg_dynamic_null())));
296 }
297
298 static side_define_event(my_provider_event_dynamic_kvpairs,
299 "myprovider", "mydynamickvpairs", SIDE_LOGLEVEL_DEBUG,
300 side_field_list(
301 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
302 )
303 );
304
305 static
306 void test_dynamic_kvpairs(void)
307 {
308 side_arg_dynamic_define_kvpairs(mykvpairs,
309 side_arg_list(
310 side_arg_dynamic_field("a", side_arg_dynamic_u32(43)),
311 side_arg_dynamic_field("b", side_arg_dynamic_string("zzz")),
312 side_arg_dynamic_field("c", side_arg_dynamic_null())
313 )
314 );
315
316 my_provider_event_dynamic_kvpairs.enabled = 1;
317 side_event(&my_provider_event_dynamic_kvpairs,
318 side_arg_list(side_arg_dynamic(side_arg_dynamic_kvpairs(&mykvpairs))));
319 }
320
321 static side_define_event(my_provider_event_dynamic_nested_kvpairs,
322 "myprovider", "mydynamicnestedkvpairs", SIDE_LOGLEVEL_DEBUG,
323 side_field_list(
324 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
325 )
326 );
327
328 static
329 void test_dynamic_nested_kvpairs(void)
330 {
331 side_arg_dynamic_define_kvpairs(nested,
332 side_arg_list(
333 side_arg_dynamic_field("a", side_arg_dynamic_u32(43)),
334 side_arg_dynamic_field("b", side_arg_dynamic_u8(55)),
335 )
336 );
337 side_arg_dynamic_define_kvpairs(nested2,
338 side_arg_list(
339 side_arg_dynamic_field("aa", side_arg_dynamic_u64(128)),
340 side_arg_dynamic_field("bb", side_arg_dynamic_u16(1)),
341 )
342 );
343 side_arg_dynamic_define_kvpairs(mykvpairs,
344 side_arg_list(
345 side_arg_dynamic_field("nested", side_arg_dynamic_kvpairs(&nested)),
346 side_arg_dynamic_field("nested2", side_arg_dynamic_kvpairs(&nested2)),
347 )
348 );
349 my_provider_event_dynamic_nested_kvpairs.enabled = 1;
350 side_event(&my_provider_event_dynamic_nested_kvpairs,
351 side_arg_list(side_arg_dynamic(side_arg_dynamic_kvpairs(&mykvpairs))));
352 }
353
354 static side_define_event(my_provider_event_dynamic_vla_kvpairs,
355 "myprovider", "mydynamicvlakvpairs", SIDE_LOGLEVEL_DEBUG,
356 side_field_list(
357 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
358 )
359 );
360
361 static
362 void test_dynamic_vla_kvpairs(void)
363 {
364 side_arg_dynamic_define_kvpairs(nested,
365 side_arg_list(
366 side_arg_dynamic_field("a", side_arg_dynamic_u32(43)),
367 side_arg_dynamic_field("b", side_arg_dynamic_u8(55)),
368 )
369 );
370 side_arg_dynamic_define_vec(myvla,
371 side_arg_list(
372 side_arg_dynamic_kvpairs(&nested),
373 side_arg_dynamic_kvpairs(&nested),
374 side_arg_dynamic_kvpairs(&nested),
375 side_arg_dynamic_kvpairs(&nested),
376 )
377 );
378 my_provider_event_dynamic_vla_kvpairs.enabled = 1;
379 side_event(&my_provider_event_dynamic_vla_kvpairs,
380 side_arg_list(side_arg_dynamic(side_arg_dynamic_vla(&myvla))));
381 }
382
383 static side_define_event(my_provider_event_dynamic_kvpairs_vla,
384 "myprovider", "mydynamickvpairsvla", SIDE_LOGLEVEL_DEBUG,
385 side_field_list(
386 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
387 )
388 );
389
390 static
391 void test_dynamic_kvpairs_vla(void)
392 {
393 side_arg_dynamic_define_vec(myvla,
394 side_arg_list(
395 side_arg_dynamic_u32(1), side_arg_dynamic_u32(2), side_arg_dynamic_u32(3))
396 );
397 side_arg_dynamic_define_vec(myvla2,
398 side_arg_list(
399 side_arg_dynamic_u32(4), side_arg_dynamic_u64(5), side_arg_dynamic_u32(6))
400 );
401 side_arg_dynamic_define_kvpairs(mykvpairs,
402 side_arg_list(
403 side_arg_dynamic_field("a", side_arg_dynamic_vla(&myvla)),
404 side_arg_dynamic_field("b", side_arg_dynamic_vla(&myvla2)),
405 )
406 );
407 my_provider_event_dynamic_kvpairs_vla.enabled = 1;
408 side_event(&my_provider_event_dynamic_kvpairs_vla,
409 side_arg_list(side_arg_dynamic(side_arg_dynamic_kvpairs(&mykvpairs))));
410 }
411
412 static side_define_event(my_provider_event_dynamic_nested_vla,
413 "myprovider", "mydynamicnestedvla", SIDE_LOGLEVEL_DEBUG,
414 side_field_list(
415 side_field(SIDE_TYPE_DYNAMIC, "dynamic"),
416 )
417 );
418
419 static
420 void test_dynamic_nested_vla(void)
421 {
422 side_arg_dynamic_define_vec(nestedvla,
423 side_arg_list(
424 side_arg_dynamic_u32(1), side_arg_dynamic_u16(2), side_arg_dynamic_u32(3),
425 )
426 );
427 side_arg_dynamic_define_vec(nestedvla2,
428 side_arg_list(
429 side_arg_dynamic_u8(4), side_arg_dynamic_u32(5), side_arg_dynamic_u32(6),
430 )
431 );
432 side_arg_dynamic_define_vec(myvla,
433 side_arg_list(
434 side_arg_dynamic_vla(&nestedvla),
435 side_arg_dynamic_vla(&nestedvla2),
436 )
437 );
438 my_provider_event_dynamic_nested_vla.enabled = 1;
439 side_event(&my_provider_event_dynamic_nested_vla,
440 side_arg_list(side_arg_dynamic(side_arg_dynamic_vla(&myvla))));
441 }
442
443 int main()
444 {
445 test_fields();
446 test_struct();
447 test_array();
448 test_vla();
449 test_vla_visitor();
450 test_vla_visitor_2d();
451 test_array_fixint();
452 test_vla_fixint();
453 test_dynamic_basic_type();
454 test_dynamic_vla();
455 test_dynamic_null();
456 test_dynamic_kvpairs();
457 test_dynamic_nested_kvpairs();
458 test_dynamic_vla_kvpairs();
459 test_dynamic_kvpairs_vla();
460 test_dynamic_nested_vla();
461 return 0;
462 }
This page took 0.038292 seconds and 5 git commands to generate.