]> mj.ucw.cz Git - libucw.git/blob - lib/conf2-test.c
conf2: insert a node into a list as soon as possible instead of at the end
[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 #include "lib/fastbuf.h"
11
12 #include <stdlib.h>
13 #include <stdio.h>
14 #include <time.h>
15 #include <getopt.h>
16
17 static int verbose;
18
19 struct sub_sect_1 {
20   struct cnode n;
21   byte *name;
22   byte *level;
23   int confidence[2];
24   double *list;
25 };
26
27 static struct sub_sect_1 sec1 = { {}, "Charlie", "WBAFC", { 0, -1}, DARY_ALLOC(double, 3, 1e4, -1e-4, 8) };
28
29 static byte *
30 init_sec_1(struct sub_sect_1 *s)
31 {
32   if (s == &sec1) {                     // this is a static variable; skip clearing
33     DARY_LEN(sec1.list) = 3;            // XXX: fix for the bug in DARY_ALLOC()
34     return NULL;
35   }
36   s->name = "unknown";
37   s->level = "default";
38   s->confidence[0] = 5;
39   s->confidence[1] = 6;
40   // leave s->list==NULL
41   return NULL;
42 }
43
44 static byte *
45 commit_sec_1(struct sub_sect_1 *s)
46 {
47   if (s->confidence[0] < 0 || s->confidence[0] > 10)
48     return "Well, this can't be";
49   return NULL;
50 }
51
52 static struct cf_section cf_sec_1 = {
53   CF_TYPE(struct sub_sect_1),
54   CF_INIT(init_sec_1),
55   CF_COMMIT(commit_sec_1),
56 #define F(x)    PTR_TO(struct sub_sect_1, x)
57   CF_ITEMS {
58     CF_STRING("name", F(name)),
59     CF_STRING("level", F(level)),
60     CF_INT_ARY("confidence", F(confidence[0]), 2),              // XXX: the [0] is needed for the sake of type checking
61     CF_DOUBLE_DYN("list", F(list), 100),
62     CF_END
63   }
64 #undef F
65 };
66
67 static uns nr1 = 15;
68 static int *nrs1 = DARY_ALLOC(int, 5, 5, 4, 3, 2, 1);
69 static int nrs2[5];
70 static byte *str1 = "no worries";
71 static byte **str2 = DARY_ALLOC(byte *, 2, "Alice", "Bob");
72 static u64 u1 = 0xCafeBeefDeadC00ll;
73 static double d1 = -1.1;
74 static struct clist secs;
75 static time_t t1, t2;
76 static u32 ip;
77
78 static byte *
79 init_top(void *ptr UNUSED)
80 {
81   for (uns i=0; i<5; i++)
82   {
83     struct sub_sect_1 *s = xmalloc(sizeof(struct sub_sect_1));  // XXX: cannot by cf_malloc(), because it's deleted when cf_reload()'ed
84     cf_init_section("slaves", &cf_sec_1, s, 1);
85     s->confidence[1] = i;
86     clist_add_tail(&secs, &s->n);
87   }
88   return NULL;
89 }
90
91 static byte *
92 commit_top(void *ptr UNUSED)
93 {
94   if (nr1 != 15)
95     return "Don't touch my variable!";
96   return NULL;
97 }
98
99 static byte *
100 time_parser(uns number, byte **pars, time_t *ptr)
101 {
102   *ptr = number ? atoi(pars[0]) : time(NULL);
103   return NULL;
104 }
105
106 static struct cf_section cf_top = {
107   CF_INIT(init_top),
108   CF_COMMIT(commit_top),
109   CF_ITEMS {
110     CF_UNS("nr1", &nr1),
111     CF_INT_DYN("nrs1", &nrs1, 1000),
112     CF_INT_ARY("nrs2", nrs2, 5),
113     CF_STRING("str1", &str1),
114     CF_STRING_DYN("str2", &str2, 20),
115     CF_U64("u1", &u1),
116     CF_DOUBLE("d1", &d1),
117     CF_PARSER("FirstTime", &t1, time_parser, -1),
118     CF_PARSER("SecondTime", &t2, time_parser, 1),
119     CF_SECTION("master", &sec1, &cf_sec_1),
120     CF_LIST("slaves", &secs, &cf_sec_1),
121     CF_IP("ip", &ip),
122     CF_END
123   }
124 };
125
126 static byte short_opts[] = CF_SHORT_OPTS "v";
127 static struct option long_opts[] = {
128         CF_LONG_OPTS
129         {"verbose",     0, 0, 'v'},
130         {NULL,          0, 0, 0}
131 };
132
133 static char *help = "\
134 Usage: conf2-test <options>\n\
135 \n\
136 Options:\n"
137 CF_USAGE
138 "-v\t\t\tBe verbose\n\
139 ";
140
141 static void NONRET
142 usage(byte *msg, ...)
143 {
144   va_list va;
145   va_start(va, msg);
146   if (msg)
147     vfprintf(stderr, msg, va);
148   fputs(help, stderr);
149   exit(1);
150 }
151
152 int
153 main(int argc, char *argv[])
154 {
155   log_init(argv[0]);
156   cf_declare_section("top", &cf_top, 0);
157   cf_def_file = "lib/conf2.t";
158
159   int opt;
160   while ((opt = cf_get_opt(argc, argv, short_opts, long_opts, NULL)) >= 0)
161     switch (opt) {
162       case 'v': verbose++; break;
163       default: usage("unknown option %c\n", opt);
164     }
165   if (optind < argc)
166     usage("too many parameters (%d more)\n", argc-optind);
167
168   //cf_reload("non-existent file");
169
170   struct fastbuf *out = bfdopen(1, 1<<14);
171   cf_dump_sections(out);
172   bclose(out);
173
174   return 0;
175 }