36
36
#include <stdio.h>
37
37
#endif
38
38
39
- #define CTL_MAX_ENTRIES 100
40
-
41
39
#define MAX_CONFIG_FILE_LEN (1 << 20) /* 1 megabyte */
42
40
43
41
#define CTL_STRING_QUERY_SEPARATOR ";"
49
47
static int ctl_global_first_free = 0 ;
50
48
static umf_ctl_node_t CTL_NODE (global )[CTL_MAX_ENTRIES ];
51
49
52
- /*
53
- * This is the top level node of the ctl tree structure. Each node can contain
54
- * children and leaf nodes.
55
- *
56
- * Internal nodes simply create a new path in the tree whereas child nodes are
57
- * the ones providing the read/write functionality by the means of callbacks.
58
- *
59
- * Each tree node must be NULL-terminated, CTL_NODE_END macro is provided for
60
- * convenience.
61
- */
62
- struct ctl {
63
- umf_ctl_node_t root [CTL_MAX_ENTRIES ];
64
- int first_free ;
65
- };
66
-
67
50
void * Zalloc (size_t sz ) {
68
51
void * ptr = umf_ba_global_alloc (sz );
69
52
if (ptr ) {
@@ -81,36 +64,6 @@ char *Strdup(const char *s) {
81
64
return p ;
82
65
}
83
66
84
- umf_result_t umfCtlGet (const char * name , void * ctx , void * arg ) {
85
- if (name == NULL || arg == NULL || ctx == NULL ) {
86
- return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
87
- }
88
- return ctl_query (NULL , ctx , CTL_QUERY_PROGRAMMATIC , name , CTL_QUERY_READ ,
89
- arg )
90
- ? UMF_RESULT_ERROR_UNKNOWN
91
- : UMF_RESULT_SUCCESS ;
92
- }
93
-
94
- umf_result_t umfCtlSet (const char * name , void * ctx , void * arg ) {
95
- if (name == NULL || arg == NULL || ctx == NULL ) {
96
- return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
97
- }
98
- return ctl_query (NULL , ctx , CTL_QUERY_PROGRAMMATIC , name , CTL_QUERY_WRITE ,
99
- arg )
100
- ? UMF_RESULT_ERROR_UNKNOWN
101
- : UMF_RESULT_SUCCESS ;
102
- }
103
-
104
- umf_result_t umfCtlExec (const char * name , void * ctx , void * arg ) {
105
- if (name == NULL || arg == NULL || ctx == NULL ) {
106
- return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
107
- }
108
- return ctl_query (NULL , ctx , CTL_QUERY_PROGRAMMATIC , name ,
109
- CTL_QUERY_RUNNABLE , arg )
110
- ? UMF_RESULT_ERROR_UNKNOWN
111
- : UMF_RESULT_SUCCESS ;
112
- }
113
-
114
67
/*
115
68
* ctl_find_node -- (internal) searches for a matching entry point in the
116
69
* provided nodes
@@ -287,10 +240,10 @@ static void ctl_query_cleanup_real_args(const umf_ctl_node_t *n, void *real_arg,
287
240
*/
288
241
static int ctl_exec_query_read (void * ctx , const umf_ctl_node_t * n ,
289
242
umf_ctl_query_source_t source , void * arg ,
290
- umf_ctl_index_utlist_t * indexes ,
243
+ size_t size , umf_ctl_index_utlist_t * indexes ,
291
244
const char * extra_name ,
292
245
umf_ctl_query_type_t query_type ) {
293
- (void )extra_name , ( void ) query_type ;
246
+ (void )query_type ;
294
247
assert (n != NULL );
295
248
assert (n -> cb [CTL_QUERY_READ ] != NULL );
296
249
assert (MAX_CTL_QUERY_TYPE != query_type );
@@ -300,7 +253,7 @@ static int ctl_exec_query_read(void *ctx, const umf_ctl_node_t *n,
300
253
return -1 ;
301
254
}
302
255
303
- return n -> cb [CTL_QUERY_READ ](ctx , source , arg , indexes , NULL ,
256
+ return n -> cb [CTL_QUERY_READ ](ctx , source , arg , size , indexes , extra_name ,
304
257
MAX_CTL_QUERY_TYPE );
305
258
}
306
259
@@ -309,10 +262,10 @@ static int ctl_exec_query_read(void *ctx, const umf_ctl_node_t *n,
309
262
*/
310
263
static int ctl_exec_query_write (void * ctx , const umf_ctl_node_t * n ,
311
264
umf_ctl_query_source_t source , void * arg ,
312
- umf_ctl_index_utlist_t * indexes ,
265
+ size_t size , umf_ctl_index_utlist_t * indexes ,
313
266
const char * extra_name ,
314
267
umf_ctl_query_type_t query_type ) {
315
- (void )extra_name , ( void ) query_type ;
268
+ (void )query_type ;
316
269
assert (n != NULL );
317
270
assert (n -> cb [CTL_QUERY_WRITE ] != NULL );
318
271
assert (MAX_CTL_QUERY_TYPE != query_type );
@@ -327,8 +280,8 @@ static int ctl_exec_query_write(void *ctx, const umf_ctl_node_t *n,
327
280
return -1 ;
328
281
}
329
282
330
- int ret = n -> cb [CTL_QUERY_WRITE ](ctx , source , real_arg , indexes , NULL ,
331
- MAX_CTL_QUERY_TYPE );
283
+ int ret = n -> cb [CTL_QUERY_WRITE ](ctx , source , real_arg , size , indexes ,
284
+ extra_name , MAX_CTL_QUERY_TYPE );
332
285
ctl_query_cleanup_real_args (n , real_arg , source );
333
286
334
287
return ret ;
@@ -339,31 +292,32 @@ static int ctl_exec_query_write(void *ctx, const umf_ctl_node_t *n,
339
292
*/
340
293
static int ctl_exec_query_runnable (void * ctx , const umf_ctl_node_t * n ,
341
294
umf_ctl_query_source_t source , void * arg ,
342
- umf_ctl_index_utlist_t * indexes ,
295
+ size_t size , umf_ctl_index_utlist_t * indexes ,
343
296
const char * extra_name ,
344
297
umf_ctl_query_type_t query_type ) {
345
298
(void )extra_name , (void )query_type ;
346
299
assert (n != NULL );
347
300
assert (n -> cb [CTL_QUERY_RUNNABLE ] != NULL );
348
301
assert (MAX_CTL_QUERY_TYPE != query_type );
349
- return n -> cb [CTL_QUERY_RUNNABLE ](ctx , source , arg , indexes , NULL ,
350
- MAX_CTL_QUERY_TYPE );
302
+ return n -> cb [CTL_QUERY_RUNNABLE ](ctx , source , arg , size , indexes ,
303
+ extra_name , MAX_CTL_QUERY_TYPE );
351
304
}
352
305
353
306
static int ctl_exec_query_subtree (void * ctx , const umf_ctl_node_t * n ,
354
307
umf_ctl_query_source_t source , void * arg ,
355
- umf_ctl_index_utlist_t * indexes ,
308
+ size_t size , umf_ctl_index_utlist_t * indexes ,
356
309
const char * extra_name ,
357
310
umf_ctl_query_type_t query_type ) {
358
311
assert (n != NULL );
359
312
assert (n -> cb [CTL_QUERY_SUBTREE ] != NULL );
360
313
assert (MAX_CTL_QUERY_TYPE != query_type );
361
- return n -> cb [CTL_QUERY_SUBTREE ](ctx , source , arg , indexes , extra_name ,
314
+ return n -> cb [CTL_QUERY_SUBTREE ](ctx , source , arg , size , indexes , extra_name ,
362
315
query_type );
363
316
}
364
317
365
318
typedef int (* umf_ctl_exec_query_t )(void * ctx , const umf_ctl_node_t * n ,
366
319
umf_ctl_query_source_t source , void * arg ,
320
+ size_t size ,
367
321
umf_ctl_index_utlist_t * indexes ,
368
322
const char * extra_name ,
369
323
umf_ctl_query_type_t query_type );
@@ -380,7 +334,8 @@ static umf_ctl_exec_query_t ctl_exec_query[MAX_CTL_QUERY_TYPE] = {
380
334
* from the ctl tree
381
335
*/
382
336
int ctl_query (struct ctl * ctl , void * ctx , umf_ctl_query_source_t source ,
383
- const char * name , umf_ctl_query_type_t type , void * arg ) {
337
+ const char * name , umf_ctl_query_type_t type , void * arg ,
338
+ size_t size ) {
384
339
if (name == NULL ) {
385
340
errno = EINVAL ;
386
341
return -1 ;
@@ -417,10 +372,9 @@ int ctl_query(struct ctl *ctl, void *ctx, umf_ctl_query_source_t source,
417
372
goto out ;
418
373
}
419
374
420
- const char * extra_name = & name [0 ] + name_offset ;
421
375
ret =
422
376
ctl_exec_query [n -> type == CTL_NODE_SUBTREE ? CTL_QUERY_SUBTREE : type ](
423
- ctx , n , source , arg , indexes , extra_name , type );
377
+ ctx , n , source , arg , size , indexes , name + name_offset , type );
424
378
out :
425
379
ctl_delete_indexes (indexes );
426
380
@@ -487,7 +441,7 @@ static int ctl_load_config(struct ctl *ctl, void *ctx, char *buf) {
487
441
}
488
442
489
443
r = ctl_query (ctl , ctx , CTL_QUERY_CONFIG_INPUT , name , CTL_QUERY_WRITE ,
490
- value );
444
+ value , 0 );
491
445
492
446
if (r < 0 && ctx != NULL ) {
493
447
return -1 ;
0 commit comments