add meson support
[protos/libecoli.git] / src / ecoli_config.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2018, Olivier MATZ <zer0@droids-corp.org>
3  */
4
5 #include <sys/queue.h>
6 #include <stddef.h>
7 #include <stdio.h>
8 #include <errno.h>
9 #include <inttypes.h>
10
11 #include <ecoli_string.h>
12 #include <ecoli_malloc.h>
13 #include <ecoli_keyval.h>
14 #include <ecoli_node.h>
15 #include <ecoli_log.h>
16 #include <ecoli_test.h>
17 #include <ecoli_config.h>
18
19 EC_LOG_TYPE_REGISTER(config);
20
21 const char *ec_config_reserved_keys[] = {
22         "id",
23         "attrs",
24         "help",
25         "type",
26 };
27
28 static int
29 __ec_config_dump(FILE *out, const char *key, const struct ec_config *config,
30         size_t indent);
31 static int
32 ec_config_dict_validate(const struct ec_keyval *dict,
33                         const struct ec_config_schema *schema);
34
35 bool
36 ec_config_key_is_reserved(const char *name)
37 {
38         size_t i;
39
40         for (i = 0; i < EC_COUNT_OF(ec_config_reserved_keys); i++) {
41                 if (!strcmp(name, ec_config_reserved_keys[i]))
42                         return true;
43         }
44         return false;
45 }
46
47 /* return ec_value type as a string */
48 static const char *
49 ec_config_type_str(enum ec_config_type type)
50 {
51         switch (type) {
52         case EC_CONFIG_TYPE_BOOL: return "bool";
53         case EC_CONFIG_TYPE_INT64: return "int64";
54         case EC_CONFIG_TYPE_UINT64: return "uint64";
55         case EC_CONFIG_TYPE_STRING: return "string";
56         case EC_CONFIG_TYPE_NODE: return "node";
57         case EC_CONFIG_TYPE_LIST: return "list";
58         case EC_CONFIG_TYPE_DICT: return "dict";
59         default: return "unknown";
60         }
61 }
62
63 static size_t
64 ec_config_schema_len(const struct ec_config_schema *schema)
65 {
66         size_t i;
67
68         if (schema == NULL)
69                 return 0;
70         for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++)
71                 ;
72         return i;
73 }
74
75 static int
76 __ec_config_schema_validate(const struct ec_config_schema *schema,
77                         enum ec_config_type type)
78 {
79         size_t i, j;
80         int ret;
81
82         if (type == EC_CONFIG_TYPE_LIST) {
83                 if (schema[0].key != NULL) {
84                         errno = EINVAL;
85                         EC_LOG(EC_LOG_ERR, "list schema key must be NULL\n");
86                         return -1;
87                 }
88         } else if (type == EC_CONFIG_TYPE_DICT) {
89                 for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++) {
90                         if (schema[i].key == NULL) {
91                                 errno = EINVAL;
92                                 EC_LOG(EC_LOG_ERR,
93                                         "dict schema key should not be NULL\n");
94                                 return -1;
95                         }
96                 }
97         } else {
98                 errno = EINVAL;
99                 EC_LOG(EC_LOG_ERR, "invalid schema type\n");
100                 return -1;
101         }
102
103         for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++) {
104                 if (schema[i].key != NULL &&
105                                 ec_config_key_is_reserved(schema[i].key)) {
106                         errno = EINVAL;
107                         EC_LOG(EC_LOG_ERR,
108                                 "key name <%s> is reserved\n", schema[i].key);
109                         return -1;
110                 }
111                 /* check for duplicate name if more than one element */
112                 for (j = i + 1; schema[j].type != EC_CONFIG_TYPE_NONE; j++) {
113                         if (!strcmp(schema[i].key, schema[j].key)) {
114                                 errno = EEXIST;
115                                 EC_LOG(EC_LOG_ERR,
116                                         "duplicate key <%s> in schema\n",
117                                         schema[i].key);
118                                 return -1;
119                         }
120                 }
121
122                 switch (schema[i].type) {
123                 case EC_CONFIG_TYPE_BOOL:
124                 case EC_CONFIG_TYPE_INT64:
125                 case EC_CONFIG_TYPE_UINT64:
126                 case EC_CONFIG_TYPE_STRING:
127                 case EC_CONFIG_TYPE_NODE:
128                         if (schema[i].subschema != NULL || ec_config_schema_len(
129                                         schema[i].subschema) != 0) {
130                                 errno = EINVAL;
131                                 EC_LOG(EC_LOG_ERR,
132                                         "key <%s> should not have subtype/subschema\n",
133                                         schema[i].key);
134                                 return -1;
135                         }
136                         break;
137                 case EC_CONFIG_TYPE_LIST:
138                         if (schema[i].subschema == NULL || ec_config_schema_len(
139                                         schema[i].subschema) != 1) {
140                                 errno = EINVAL;
141                                 EC_LOG(EC_LOG_ERR,
142                                         "key <%s> must have subschema of length 1\n",
143                                         schema[i].key);
144                                 return -1;
145                         }
146                         break;
147                 case EC_CONFIG_TYPE_DICT:
148                         if (schema[i].subschema == NULL || ec_config_schema_len(
149                                         schema[i].subschema) == 0) {
150                                 errno = EINVAL;
151                                 EC_LOG(EC_LOG_ERR,
152                                         "key <%s> must have subschema\n",
153                                         schema[i].key);
154                                 return -1;
155                         }
156                         break;
157                 default:
158                         EC_LOG(EC_LOG_ERR, "invalid type for key <%s>\n",
159                                 schema[i].key);
160                         errno = EINVAL;
161                         return -1;
162                 }
163
164                 if (schema[i].subschema == NULL)
165                         continue;
166
167                 ret = __ec_config_schema_validate(schema[i].subschema,
168                                                 schema[i].type);
169                 if (ret < 0) {
170                         EC_LOG(EC_LOG_ERR, "cannot parse subschema %s%s\n",
171                                 schema[i].key ? "key=" : "",
172                                 schema[i].key ? : "");
173                         return ret;
174                 }
175         }
176
177         return 0;
178 }
179
180 int
181 ec_config_schema_validate(const struct ec_config_schema *schema)
182 {
183         return __ec_config_schema_validate(schema, EC_CONFIG_TYPE_DICT);
184 }
185
186 static void
187 __ec_config_schema_dump(FILE *out, const struct ec_config_schema *schema,
188                         size_t indent)
189 {
190         size_t i;
191
192         for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++) {
193                 fprintf(out, "%*s" "%s%s%stype=%s desc='%s'\n",
194                         (int)indent * 4, "",
195                         schema[i].key ? "key=": "",
196                         schema[i].key ? : "",
197                         schema[i].key ? " ": "",
198                         ec_config_type_str(schema[i].type),
199                         schema[i].desc);
200                 if (schema[i].subschema == NULL)
201                         continue;
202                 __ec_config_schema_dump(out, schema[i].subschema,
203                                         indent + 1);
204         }
205 }
206
207 void
208 ec_config_schema_dump(FILE *out, const struct ec_config_schema *schema)
209 {
210         fprintf(out, "------------------- schema dump:\n");
211
212         if (schema == NULL) {
213                 fprintf(out, "no schema\n");
214                 return;
215         }
216
217         __ec_config_schema_dump(out, schema, 0);
218 }
219
220 enum ec_config_type ec_config_get_type(const struct ec_config *config)
221 {
222         return config->type;
223 }
224
225 struct ec_config *
226 ec_config_bool(bool boolean)
227 {
228         struct ec_config *value = NULL;
229
230         value = ec_calloc(1, sizeof(*value));
231         if (value == NULL)
232                 return NULL;
233
234         value->type = EC_CONFIG_TYPE_BOOL;
235         value->boolean = boolean;
236
237         return value;
238 }
239
240 struct ec_config *
241 ec_config_i64(int64_t i64)
242 {
243         struct ec_config *value = NULL;
244
245         value = ec_calloc(1, sizeof(*value));
246         if (value == NULL)
247                 return NULL;
248
249         value->type = EC_CONFIG_TYPE_INT64;
250         value->i64 = i64;
251
252         return value;
253 }
254
255 struct ec_config *
256 ec_config_u64(uint64_t u64)
257 {
258         struct ec_config *value = NULL;
259
260         value = ec_calloc(1, sizeof(*value));
261         if (value == NULL)
262                 return NULL;
263
264         value->type = EC_CONFIG_TYPE_UINT64;
265         value->u64 = u64;
266
267         return value;
268 }
269
270 /* duplicate string */
271 struct ec_config *
272 ec_config_string(const char *string)
273 {
274         struct ec_config *value = NULL;
275         char *s = NULL;
276
277         if (string == NULL)
278                 goto fail;
279
280         s = ec_strdup(string);
281         if (s == NULL)
282                 goto fail;
283
284         value = ec_calloc(1, sizeof(*value));
285         if (value == NULL)
286                 goto fail;
287
288         value->type = EC_CONFIG_TYPE_STRING;
289         value->string = s;
290
291         return value;
292
293 fail:
294         ec_free(value);
295         ec_free(s);
296         return NULL;
297 }
298
299 /* "consume" the node */
300 struct ec_config *
301 ec_config_node(struct ec_node *node)
302 {
303         struct ec_config *value = NULL;
304
305         if (node == NULL)
306                 goto fail;
307
308         value = ec_calloc(1, sizeof(*value));
309         if (value == NULL)
310                 goto fail;
311
312         value->type = EC_CONFIG_TYPE_NODE;
313         value->node = node;
314
315         return value;
316
317 fail:
318         ec_node_free(node);
319         ec_free(value);
320         return NULL;
321 }
322
323 struct ec_config *
324 ec_config_dict(void)
325 {
326         struct ec_config *value = NULL;
327         struct ec_keyval *dict = NULL;
328
329         dict = ec_keyval();
330         if (dict == NULL)
331                 goto fail;
332
333         value = ec_calloc(1, sizeof(*value));
334         if (value == NULL)
335                 goto fail;
336
337         value->type = EC_CONFIG_TYPE_DICT;
338         value->dict = dict;
339
340         return value;
341
342 fail:
343         ec_keyval_free(dict);
344         ec_free(value);
345         return NULL;
346 }
347
348 struct ec_config *
349 ec_config_list(void)
350 {
351         struct ec_config *value = NULL;
352
353         value = ec_calloc(1, sizeof(*value));
354         if (value == NULL)
355                 return NULL;
356
357         value->type = EC_CONFIG_TYPE_LIST;
358         TAILQ_INIT(&value->list);
359
360         return value;
361 }
362
363 ssize_t ec_config_count(const struct ec_config *config)
364 {
365         const struct ec_config *child;
366         ssize_t n;
367
368         switch (config->type) {
369         case EC_CONFIG_TYPE_LIST:
370                 n = 0;
371                 TAILQ_FOREACH(child, &config->list, next)
372                         n++;
373                 return n;
374         case EC_CONFIG_TYPE_DICT:
375                 // XXX todo
376         default:
377                 errno = EINVAL;
378                 return -1;
379         }
380 }
381
382 const struct ec_config_schema *
383 ec_config_schema_lookup(const struct ec_config_schema *schema,
384                         const char *key)
385 {
386         size_t i;
387
388         for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++) {
389                 if (!strcmp(key, schema[i].key))
390                         return &schema[i];
391         }
392
393         errno = ENOENT;
394         return NULL;
395 }
396
397 enum ec_config_type
398 ec_config_schema_type(const struct ec_config_schema *schema_elt)
399 {
400         return schema_elt->type;
401 }
402
403 const struct ec_config_schema *
404 ec_config_schema_sub(const struct ec_config_schema *schema_elt)
405 {
406         return schema_elt->subschema;
407 }
408
409 void
410 ec_config_free(struct ec_config *value)
411 {
412         if (value == NULL)
413                 return;
414
415         switch (value->type) {
416         case EC_CONFIG_TYPE_STRING:
417                 ec_free(value->string);
418                 break;
419         case EC_CONFIG_TYPE_NODE:
420                 ec_node_free(value->node);
421                 break;
422         case EC_CONFIG_TYPE_LIST:
423                 while (!TAILQ_EMPTY(&value->list)) {
424                         struct ec_config *v;
425                         v = TAILQ_FIRST(&value->list);
426                         TAILQ_REMOVE(&value->list, v, next);
427                         ec_config_free(v);
428                 }
429                 break;
430         case EC_CONFIG_TYPE_DICT:
431                 ec_keyval_free(value->dict);
432                 break;
433         default:
434                 break;
435         }
436
437         ec_free(value);
438 }
439
440 static int
441 ec_config_list_cmp(const struct ec_config_list *list1,
442                 const struct ec_config_list *list2)
443 {
444         const struct ec_config *v1, *v2;
445
446         for (v1 = TAILQ_FIRST(list1), v2 = TAILQ_FIRST(list2);
447              v1 != NULL && v2 != NULL;
448              v1 = TAILQ_NEXT(v1, next), v2 = TAILQ_NEXT(v2, next)) {
449                 if (ec_config_cmp(v1, v2))
450                         return -1;
451         }
452         if (v1 != NULL || v2 != NULL)
453                 return -1;
454
455         return 0;
456 }
457
458 /* XXX -> ec_keyval_cmp() */
459 static int
460 ec_config_dict_cmp(const struct ec_keyval *d1,
461                 const struct ec_keyval *d2)
462 {
463         const struct ec_config *v1, *v2;
464         struct ec_keyval_iter *iter = NULL;
465         const char *key;
466
467         if (ec_keyval_len(d1) != ec_keyval_len(d2))
468                 return -1;
469
470         for (iter = ec_keyval_iter(d1);
471              ec_keyval_iter_valid(iter);
472              ec_keyval_iter_next(iter)) {
473                 key = ec_keyval_iter_get_key(iter);
474                 v1 = ec_keyval_iter_get_val(iter);
475                 v2 = ec_keyval_get(d2, key);
476
477                 if (ec_config_cmp(v1, v2))
478                         goto fail;
479         }
480
481         ec_keyval_iter_free(iter);
482         return 0;
483
484 fail:
485         ec_keyval_iter_free(iter);
486         return -1;
487 }
488
489 int
490 ec_config_cmp(const struct ec_config *value1,
491                 const struct ec_config *value2)
492 {
493         if (value1 == NULL || value2 == NULL) {
494                 errno = EINVAL;
495                 return -1;
496         }
497
498         if (value1->type != value2->type)
499                 return -1;
500
501         switch (value1->type) {
502         case EC_CONFIG_TYPE_BOOL:
503                 if (value1->boolean == value2->boolean)
504                         return 0;
505         case EC_CONFIG_TYPE_INT64:
506                 if (value1->i64 == value2->i64)
507                         return 0;
508         case EC_CONFIG_TYPE_UINT64:
509                 if (value1->u64 == value2->u64)
510                         return 0;
511         case EC_CONFIG_TYPE_STRING:
512                 if (!strcmp(value1->string, value2->string))
513                         return 0;
514         case EC_CONFIG_TYPE_NODE:
515                 if (value1->node == value2->node)
516                         return 0;
517         case EC_CONFIG_TYPE_LIST:
518                 return ec_config_list_cmp(&value1->list, &value2->list);
519         case EC_CONFIG_TYPE_DICT:
520                 return ec_config_dict_cmp(value1->dict, value2->dict);
521         default:
522                 break;
523         }
524
525         return -1;
526 }
527
528 static int
529 ec_config_list_validate(const struct ec_config_list *list,
530                         const struct ec_config_schema *sch)
531 {
532         const struct ec_config *value;
533
534         TAILQ_FOREACH(value, list, next) {
535                 if (value->type != sch->type) {
536                         errno = EBADMSG;
537                         return -1;
538                 }
539
540                 if (value->type == EC_CONFIG_TYPE_LIST) {
541                         if (ec_config_list_validate(&value->list,
542                                                         sch->subschema) < 0)
543                                 return -1;
544                 } else if (value->type == EC_CONFIG_TYPE_DICT) {
545                         if (ec_config_dict_validate(value->dict,
546                                         sch->subschema) < 0)
547                                 return -1;
548                 }
549         }
550
551         return 0;
552 }
553
554 static int
555 ec_config_dict_validate(const struct ec_keyval *dict,
556                         const struct ec_config_schema *schema)
557 {
558         const struct ec_config *value;
559         struct ec_keyval_iter *iter = NULL;
560         const struct ec_config_schema *sch;
561         const char *key;
562
563         for (iter = ec_keyval_iter(dict);
564              ec_keyval_iter_valid(iter);
565              ec_keyval_iter_next(iter)) {
566
567                 key = ec_keyval_iter_get_key(iter);
568                 value = ec_keyval_iter_get_val(iter);
569                 sch = ec_config_schema_lookup(schema, key);
570                 if (sch == NULL || sch->type != value->type) {
571                         errno = EBADMSG;
572                         goto fail;
573                 }
574                 if (value->type == EC_CONFIG_TYPE_LIST) {
575                         if (ec_config_list_validate(&value->list,
576                                                         sch->subschema) < 0)
577                                 goto fail;
578                 } else if (value->type == EC_CONFIG_TYPE_DICT) {
579                         if (ec_config_dict_validate(value->dict,
580                                         sch->subschema) < 0)
581                                 goto fail;
582                 }
583         }
584
585         ec_keyval_iter_free(iter);
586         return 0;
587
588 fail:
589         ec_keyval_iter_free(iter);
590         return -1;
591 }
592
593 int
594 ec_config_validate(const struct ec_config *dict,
595                 const struct ec_config_schema *schema)
596 {
597         if (dict->type != EC_CONFIG_TYPE_DICT || schema == NULL) {
598                 errno = EINVAL;
599                 goto fail;
600         }
601
602         if (ec_config_dict_validate(dict->dict, schema) < 0)
603                 goto fail;
604
605         return 0
606 ;
607 fail:
608         return -1;
609 }
610
611 struct ec_config *
612 ec_config_dict_get(const struct ec_config *config, const char *key)
613 {
614         if (config == NULL) {
615                 errno = EINVAL;
616                 return NULL;
617         }
618
619         if (config->type != EC_CONFIG_TYPE_DICT) {
620                 errno = EINVAL;
621                 return NULL;
622         }
623
624         return ec_keyval_get(config->dict, key);
625 }
626
627 struct ec_config *
628 ec_config_list_first(struct ec_config *list)
629 {
630         if (list  == NULL || list->type != EC_CONFIG_TYPE_LIST) {
631                 errno = EINVAL;
632                 return NULL;
633         }
634
635         return TAILQ_FIRST(&list->list);
636 }
637
638 struct ec_config *
639 ec_config_list_next(struct ec_config *list, struct ec_config *config)
640 {
641         (void)list;
642         return TAILQ_NEXT(config, next);
643 }
644
645 /* value is consumed */
646 int ec_config_dict_set(struct ec_config *config, const char *key,
647                 struct ec_config *value)
648 {
649         void (*free_cb)(struct ec_config *) = ec_config_free;
650
651         if (config == NULL || key == NULL || value == NULL) {
652                 errno = EINVAL;
653                 goto fail;
654         }
655         if (config->type != EC_CONFIG_TYPE_DICT) {
656                 errno = EINVAL;
657                 goto fail;
658         }
659
660         return ec_keyval_set(config->dict, key, value,
661                         (void (*)(void *))free_cb);
662
663 fail:
664         ec_config_free(value);
665         return -1;
666 }
667
668 int ec_config_dict_del(struct ec_config *config, const char *key)
669 {
670         if (config == NULL || key == NULL) {
671                 errno = EINVAL;
672                 return -1;
673         }
674         if (config->type != EC_CONFIG_TYPE_DICT) {
675                 errno = EINVAL;
676                 return -1;
677         }
678
679         return ec_keyval_del(config->dict, key);
680 }
681
682 /* value is consumed */
683 int
684 ec_config_list_add(struct ec_config *list,
685                 struct ec_config *value)
686 {
687         if (list == NULL || list->type != EC_CONFIG_TYPE_LIST || value == NULL) {
688                 errno = EINVAL;
689                 goto fail;
690         }
691
692         TAILQ_INSERT_TAIL(&list->list, value, next);
693
694         return 0;
695
696 fail:
697         ec_config_free(value);
698         return -1;
699 }
700
701 int ec_config_list_del(struct ec_config *list, struct ec_config *config)
702 {
703         if (list == NULL || list->type != EC_CONFIG_TYPE_LIST) {
704                 errno = EINVAL;
705                 return -1;
706         }
707
708         TAILQ_REMOVE(&list->list, config, next);
709         ec_config_free(config);
710         return 0;
711 }
712
713 static struct ec_config *
714 ec_config_list_dup(const struct ec_config_list *list)
715 {
716         struct ec_config *dup = NULL, *v, *value;
717
718         dup = ec_config_list();
719         if (dup == NULL)
720                 goto fail;
721
722         TAILQ_FOREACH(v, list, next) {
723                 value = ec_config_dup(v);
724                 if (value == NULL)
725                         goto fail;
726                 if (ec_config_list_add(dup, value) < 0)
727                         goto fail;
728         }
729
730         return dup;
731
732 fail:
733         ec_config_free(dup);
734         return NULL;
735 }
736
737 static struct ec_config *
738 ec_config_dict_dup(const struct ec_keyval *dict)
739 {
740         struct ec_config *dup = NULL, *value;
741         struct ec_keyval_iter *iter = NULL;
742         const char *key;
743
744         dup = ec_config_dict();
745         if (dup == NULL)
746                 goto fail;
747
748         for (iter = ec_keyval_iter(dict);
749              ec_keyval_iter_valid(iter);
750              ec_keyval_iter_next(iter)) {
751                 key = ec_keyval_iter_get_key(iter);
752                 value = ec_config_dup(ec_keyval_iter_get_val(iter));
753                 if (value == NULL)
754                         goto fail;
755                 if (ec_config_dict_set(dup, key, value) < 0)
756                         goto fail;
757         }
758         ec_keyval_iter_free(iter);
759
760         return dup;
761
762 fail:
763         ec_config_free(dup);
764         ec_keyval_iter_free(iter);
765         return NULL;
766 }
767
768 struct ec_config *
769 ec_config_dup(const struct ec_config *config)
770 {
771         if (config == NULL) {
772                 errno = EINVAL;
773                 return NULL;
774         }
775
776         switch (config->type) {
777         case EC_CONFIG_TYPE_BOOL:
778                 return ec_config_bool(config->boolean);
779         case EC_CONFIG_TYPE_INT64:
780                 return ec_config_i64(config->i64);
781         case EC_CONFIG_TYPE_UINT64:
782                 return ec_config_u64(config->u64);
783         case EC_CONFIG_TYPE_STRING:
784                 return ec_config_string(config->string);
785         case EC_CONFIG_TYPE_NODE:
786                 return ec_config_node(ec_node_clone(config->node));
787         case EC_CONFIG_TYPE_LIST:
788                 return ec_config_list_dup(&config->list);
789         case EC_CONFIG_TYPE_DICT:
790                 return ec_config_dict_dup(config->dict);
791         default:
792                 errno = EINVAL;
793                 break;
794         }
795
796         return NULL;
797 }
798
799 static int
800 ec_config_list_dump(FILE *out, const char *key,
801                 const struct ec_config_list *list, size_t indent)
802 {
803         const struct ec_config *v;
804
805         fprintf(out, "%*s" "%s%s%stype=list\n", (int)indent * 4, "",
806                 key ? "key=": "",
807                 key ? key: "",
808                 key ? " ": "");
809
810         TAILQ_FOREACH(v, list, next) {
811                 if (__ec_config_dump(out, NULL, v, indent + 1) < 0)
812                         return -1;
813         }
814
815         return 0;
816 }
817
818 static int
819 ec_config_dict_dump(FILE *out, const char *key, const struct ec_keyval *dict,
820                 size_t indent)
821 {
822         const struct ec_config *value;
823         struct ec_keyval_iter *iter;
824         const char *k;
825
826         fprintf(out, "%*s" "%s%s%stype=dict\n", (int)indent * 4, "",
827                 key ? "key=": "",
828                 key ? key: "",
829                 key ? " ": "");
830
831         for (iter = ec_keyval_iter(dict);
832              ec_keyval_iter_valid(iter);
833              ec_keyval_iter_next(iter)) {
834                 k = ec_keyval_iter_get_key(iter);
835                 value = ec_keyval_iter_get_val(iter);
836                 if (__ec_config_dump(out, k, value, indent + 1) < 0)
837                         goto fail;
838         }
839         ec_keyval_iter_free(iter);
840         return 0;
841
842 fail:
843         ec_keyval_iter_free(iter);
844         return -1;
845 }
846
847 static int
848 __ec_config_dump(FILE *out, const char *key, const struct ec_config *value,
849                 size_t indent)
850 {
851         char *val_str = NULL;
852
853         switch (value->type) {
854         case EC_CONFIG_TYPE_BOOL:
855                 if (value->boolean)
856                         ec_asprintf(&val_str, "true");
857                 else
858                         ec_asprintf(&val_str, "false");
859                 break;
860         case EC_CONFIG_TYPE_INT64:
861                 ec_asprintf(&val_str, "%"PRIu64, value->u64);
862                 break;
863         case EC_CONFIG_TYPE_UINT64:
864                 ec_asprintf(&val_str, "%"PRIi64, value->i64);
865                 break;
866         case EC_CONFIG_TYPE_STRING:
867                 ec_asprintf(&val_str, "%s", value->string);
868                 break;
869         case EC_CONFIG_TYPE_NODE:
870                 ec_asprintf(&val_str, "%p", value->node);
871                 break;
872         case EC_CONFIG_TYPE_LIST:
873                 return ec_config_list_dump(out, key, &value->list, indent);
874         case EC_CONFIG_TYPE_DICT:
875                 return ec_config_dict_dump(out, key, value->dict, indent);
876         default:
877                 errno = EINVAL;
878                 break;
879         }
880
881         /* errno is already set on error */
882         if (val_str == NULL)
883                 goto fail;
884
885         fprintf(out, "%*s" "%s%s%stype=%s val=%s\n", (int)indent * 4, "",
886                 key ? "key=": "",
887                 key ? key: "",
888                 key ? " ": "",
889                 ec_config_type_str(value->type), val_str);
890
891         ec_free(val_str);
892         return 0;
893
894 fail:
895         ec_free(val_str);
896         return -1;
897 }
898
899 void
900 ec_config_dump(FILE *out, const struct ec_config *config)
901 {
902         fprintf(out, "------------------- config dump:\n");
903
904         if (config == NULL) {
905                 fprintf(out, "no config\n");
906                 return;
907         }
908
909         if (__ec_config_dump(out, NULL, config, 0) < 0)
910                 fprintf(out, "error while dumping\n");
911 }
912
913 /* LCOV_EXCL_START */
914 static const struct ec_config_schema sch_intlist_elt[] = {
915         {
916                 .desc = "This is a description for int",
917                 .type = EC_CONFIG_TYPE_INT64,
918         },
919         {
920                 .type = EC_CONFIG_TYPE_NONE,
921         },
922 };
923
924 static const struct ec_config_schema sch_dict[] = {
925         {
926                 .key = "my_int",
927                 .desc = "This is a description for int",
928                 .type = EC_CONFIG_TYPE_INT64,
929         },
930         {
931                 .key = "my_int2",
932                 .desc = "This is a description for int2",
933                 .type = EC_CONFIG_TYPE_INT64,
934         },
935         {
936                 .type = EC_CONFIG_TYPE_NONE,
937         },
938 };
939
940 static const struct ec_config_schema sch_dictlist_elt[] = {
941         {
942                 .desc = "This is a description for dict",
943                 .type = EC_CONFIG_TYPE_DICT,
944                 .subschema = sch_dict,
945         },
946         {
947                 .type = EC_CONFIG_TYPE_NONE,
948         },
949 };
950
951 static const struct ec_config_schema sch_baseconfig[] = {
952         {
953                 .key = "my_bool",
954                 .desc = "This is a description for bool",
955                 .type = EC_CONFIG_TYPE_BOOL,
956         },
957         {
958                 .key = "my_int",
959                 .desc = "This is a description for int",
960                 .type = EC_CONFIG_TYPE_INT64,
961         },
962         {
963                 .key = "my_string",
964                 .desc = "This is a description for string",
965                 .type = EC_CONFIG_TYPE_STRING,
966         },
967         {
968                 .key = "my_node",
969                 .desc = "This is a description for node",
970                 .type = EC_CONFIG_TYPE_NODE,
971         },
972         {
973                 .key = "my_intlist",
974                 .desc = "This is a description for list",
975                 .type = EC_CONFIG_TYPE_LIST,
976                 .subschema = sch_intlist_elt,
977         },
978         {
979                 .key = "my_dictlist",
980                 .desc = "This is a description for list",
981                 .type = EC_CONFIG_TYPE_LIST,
982                 .subschema = sch_dictlist_elt,
983         },
984         {
985                 .type = EC_CONFIG_TYPE_NONE,
986         },
987 };
988
989 static int ec_config_testcase(void)
990 {
991         struct ec_node *node = NULL;
992         struct ec_keyval *dict = NULL;
993         const struct ec_config *value = NULL;
994         struct ec_config *config = NULL, *config2 = NULL;
995         struct ec_config *list = NULL, *subconfig = NULL;
996         struct ec_config *list_, *config_;
997         int testres = 0;
998         int ret;
999
1000         testres |= EC_TEST_CHECK(ec_config_key_is_reserved("id"),
1001                 "'id' should be reserved");
1002         testres |= EC_TEST_CHECK(!ec_config_key_is_reserved("foo"),
1003                 "'foo' should not be reserved");
1004
1005         node = ec_node("empty", EC_NO_ID);
1006         if (node == NULL)
1007                 goto fail;
1008
1009         if (ec_config_schema_validate(sch_baseconfig) < 0) {
1010                 EC_LOG(EC_LOG_ERR, "invalid config schema\n");
1011                 goto fail;
1012         }
1013
1014         ec_config_schema_dump(stdout, sch_baseconfig);
1015
1016         config = ec_config_dict();
1017         if (config == NULL)
1018                 goto fail;
1019
1020         ret = ec_config_dict_set(config, "my_bool", ec_config_bool(true));
1021         testres |= EC_TEST_CHECK(ret == 0, "cannot set boolean");
1022         value = ec_config_dict_get(config, "my_bool");
1023         testres |= EC_TEST_CHECK(
1024                 value != NULL &&
1025                 value->type == EC_CONFIG_TYPE_BOOL &&
1026                 value->boolean == true,
1027                 "unexpected boolean value");
1028
1029         ret = ec_config_dict_set(config, "my_int", ec_config_i64(1234));
1030         testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1031         value = ec_config_dict_get(config, "my_int");
1032         testres |= EC_TEST_CHECK(
1033                 value != NULL &&
1034                 value->type == EC_CONFIG_TYPE_INT64 &&
1035                 value->i64 == 1234,
1036                 "unexpected int value");
1037
1038         testres |= EC_TEST_CHECK(
1039                 ec_config_validate(config, sch_baseconfig) == 0,
1040                 "cannot validate config\n");
1041
1042         ret = ec_config_dict_set(config, "my_string", ec_config_string("toto"));
1043         testres |= EC_TEST_CHECK(ret == 0, "cannot set string");
1044         value = ec_config_dict_get(config, "my_string");
1045         testres |= EC_TEST_CHECK(
1046                 value != NULL &&
1047                 value->type == EC_CONFIG_TYPE_STRING &&
1048                 !strcmp(value->string, "toto"),
1049                 "unexpected string value");
1050
1051         list = ec_config_list();
1052         if (list == NULL)
1053                 goto fail;
1054
1055         subconfig = ec_config_dict();
1056         if (subconfig == NULL)
1057                 goto fail;
1058
1059         ret = ec_config_dict_set(subconfig, "my_int", ec_config_i64(1));
1060         testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1061         value = ec_config_dict_get(subconfig, "my_int");
1062         testres |= EC_TEST_CHECK(
1063                 value != NULL &&
1064                 value->type == EC_CONFIG_TYPE_INT64 &&
1065                 value->i64 == 1,
1066                 "unexpected int value");
1067
1068         ret = ec_config_dict_set(subconfig, "my_int2", ec_config_i64(2));
1069         testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1070         value = ec_config_dict_get(subconfig, "my_int2");
1071         testres |= EC_TEST_CHECK(
1072                 value != NULL &&
1073                 value->type == EC_CONFIG_TYPE_INT64 &&
1074                 value->i64 == 2,
1075                 "unexpected int value");
1076
1077         testres |= EC_TEST_CHECK(
1078                 ec_config_validate(subconfig, sch_dict) == 0,
1079                 "cannot validate subconfig\n");
1080
1081         ret = ec_config_list_add(list, subconfig);
1082         subconfig = NULL; /* freed */
1083         testres |= EC_TEST_CHECK(ret == 0, "cannot add in list");
1084
1085         subconfig = ec_config_dict();
1086         if (subconfig == NULL)
1087                 goto fail;
1088
1089         ret = ec_config_dict_set(subconfig, "my_int", ec_config_i64(3));
1090         testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1091         value = ec_config_dict_get(subconfig, "my_int");
1092         testres |= EC_TEST_CHECK(
1093                 value != NULL &&
1094                 value->type == EC_CONFIG_TYPE_INT64 &&
1095                 value->i64 == 3,
1096                 "unexpected int value");
1097
1098         ret = ec_config_dict_set(subconfig, "my_int2", ec_config_i64(4));
1099         testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1100         value = ec_config_dict_get(subconfig, "my_int2");
1101         testres |= EC_TEST_CHECK(
1102                 value != NULL &&
1103                 value->type == EC_CONFIG_TYPE_INT64 &&
1104                 value->i64 == 4,
1105                 "unexpected int value");
1106
1107         testres |= EC_TEST_CHECK(
1108                 ec_config_validate(subconfig, sch_dict) == 0,
1109                 "cannot validate subconfig\n");
1110
1111         ret = ec_config_list_add(list, subconfig);
1112         subconfig = NULL; /* freed */
1113         testres |= EC_TEST_CHECK(ret == 0, "cannot add in list");
1114
1115         ret = ec_config_dict_set(config, "my_dictlist", list);
1116         list = NULL;
1117         testres |= EC_TEST_CHECK(ret == 0, "cannot set list");
1118
1119         testres |= EC_TEST_CHECK(
1120                 ec_config_validate(config, sch_baseconfig) == 0,
1121                 "cannot validate config\n");
1122
1123         list_ = ec_config_dict_get(config, "my_dictlist");
1124         for (config_ = ec_config_list_first(list_); config_ != NULL;
1125              config_ = ec_config_list_next(list_, config_)) {
1126                 ec_config_dump(stdout, config_);
1127         }
1128
1129         ec_config_dump(stdout, config);
1130
1131         config2 = ec_config_dup(config);
1132         testres |= EC_TEST_CHECK(config2 != NULL, "cannot duplicate config");
1133         testres |= EC_TEST_CHECK(
1134                 ec_config_cmp(config, config2) == 0,
1135                 "fail to compare config");
1136         ec_config_free(config2);
1137         config2 = NULL;
1138
1139         /* remove the first element */
1140         ec_config_list_del(list_, ec_config_list_first(list_));
1141         testres |= EC_TEST_CHECK(
1142                 ec_config_validate(config, sch_baseconfig) == 0,
1143                 "cannot validate config\n");
1144
1145         ec_config_dump(stdout, config);
1146
1147         ec_config_free(list);
1148         ec_config_free(subconfig);
1149         ec_config_free(config);
1150         ec_keyval_free(dict);
1151         ec_node_free(node);
1152
1153         return testres;
1154
1155 fail:
1156         ec_config_free(list);
1157         ec_config_free(subconfig);
1158         ec_config_free(config);
1159         ec_config_free(config2);
1160         ec_keyval_free(dict);
1161         ec_node_free(node);
1162
1163         return -1;
1164 }
1165 /* LCOV_EXCL_STOP */
1166
1167 static struct ec_test ec_config_test = {
1168         .name = "config",
1169         .test = ec_config_testcase,
1170 };
1171
1172 EC_TEST_REGISTER(ec_config_test);