]> mj.ucw.cz Git - libucw.git/blob - lib/conf2-test.c
conf2: implement clearing a dynamic array
[libucw.git] / lib / conf2-test.c
1 /*
2  *      Insane tester of reading configuration files
3  *
4  *      (c) 2006 Robert Spalek <robert@ucw.cz>
5  */
6
7 #include "lib/lib.h"
8 #include "lib/conf2.h"
9 #include "lib/clists.h"
10
11 #include <stdlib.h>
12 #include <time.h>
13
14 struct sub_sect_1 {
15   struct cnode n;
16   byte *name;
17   byte *level;
18   int confidence[2];
19   double *list;
20 };
21
22 static byte *
23 init_sec_1(struct sub_sect_1 *s)
24 {
25   s->name = "unknown";
26   s->level = "default";
27   s->confidence[0] = 5;
28   s->confidence[1] = 6;
29   // leave s->list==NULL
30   return NULL;
31 }
32
33 static byte *
34 commit_sec_1(struct sub_sect_1 *s)
35 {
36   if (s->confidence[0] < 0 || s->confidence[0] > 10)
37     return "Well, this can't be";
38   return NULL;
39 }
40
41 static struct cf_section cf_sec_1 = {
42   CF_TYPE(struct sub_sect_1),
43   CF_INIT(init_sec_1),
44   CF_COMMIT(commit_sec_1),
45 #define F(x)    PTR_TO(struct sub_sect_1, x)
46   CF_ITEMS {
47     CF_STRING("name", F(name)),
48     CF_STRING("level", F(level)),
49     CF_INT_ARY("confidence", F(confidence[0]), 2),              // XXX: the [0] is needed for the sake of type checking
50     CF_DOUBLE_DYN("list", F(list), 100),
51     CF_END
52   }
53 #undef F
54 };
55
56 static uns nr1 = 15;
57 static int *nrs1 = DYN_ALLOC(int, 5, 5, 4, 3, 2, 1);
58 static int nrs2[5];
59 static byte *str1 = "no worries";
60 static byte **str2 = DYN_ALLOC(byte *, 2, "Alice", "Bob");
61 static u64 u1 = 0xCafeBeefDeadC00ll;
62 static double d1 = -1.1;
63 static struct sub_sect_1 sec1 = { {}, "Charlie", "WBAFC", { 0, -1} };
64 static struct clist secs;
65 static time_t t1, t2;
66
67 static byte *
68 init_top(void *ptr UNUSED)
69 {
70   for (uns i=0; i<5; i++)
71   {
72     struct sub_sect_1 *s = cf_malloc(sizeof(struct sub_sect_1));
73     cf_init_section("slaves", &cf_sec_1, s);
74     s->confidence[1] = i;
75     clist_add_tail(&secs, &s->n);
76   }
77   return NULL;
78 }
79
80 static byte *
81 commit_top(void *ptr UNUSED)
82 {
83   if (nr1 != 15)
84     return "Don't touch my variable!";
85   return NULL;
86 }
87
88 static byte *
89 time_parser(uns number, byte **pars, time_t *ptr)
90 {
91   *ptr = number ? atoi(pars[0]) : time(NULL);
92   return NULL;
93 }
94
95 static struct cf_section cf_top UNUSED = {
96   CF_COMMIT(init_top),
97   CF_COMMIT(commit_top),
98   CF_ITEMS {
99     CF_UNS("nr1", &nr1),
100     CF_INT_DYN("nrs1", &nrs1, 1000),
101     CF_INT_ARY("nrs2", nrs2, 5),
102     CF_STRING("str1", &str1),
103     CF_STRING_DYN("str2", &str2, 2),
104     CF_U64("u1", &u1),
105     CF_DOUBLE("d1", &d1),
106     CF_PARSER("FirstTime", &t1, time_parser, -1),
107     CF_PARSER("SecondTime", &t2, time_parser, 1),
108     CF_SECTION("master", &sec1, &cf_sec_1),
109     CF_LIST("slaves", &secs, &cf_sec_1),
110     CF_END
111   }
112 };
113
114 int
115 main(void)
116 {
117   return 0;
118 }