2 * Insane tester of reading configuration files
4 * (c) 2006 Robert Spalek <robert@ucw.cz>
9 #include "lib/clists.h"
23 init_sec_1(struct sub_sect_1 *s)
33 commit_sec_1(struct sub_sect_1 *s)
35 if (s->confidence[0] < 0 || s->confidence[0] > 10)
36 return "Well, this can't be";
40 static struct cf_section cf_sec_1 = {
41 CF_TYPE(struct sub_sect_1),
43 CF_COMMIT(commit_sec_1),
44 #define F(x) PTR_TO(struct sub_sect_1, x)
46 CF_STRING("name", F(name)),
47 CF_STRING("level", F(level)),
48 CF_INT_ARY("confidence", F(confidence[0]), 2), // XXX: the [0] is needed for the sake of type checking
49 CF_DOUBLE_DYN("list", F(list), 100),
56 static int *nrs1 = DYN_ALLOC(int, 5, 5, 4, 3, 2, 1);
58 static byte *str1 = "no worries";
59 static byte **str2 = DYN_ALLOC(byte *, 2, "Alice", "Bob");
60 static u64 u1 = 0xCafeBeefDeadC00ll;
61 static double d1 = -1.1;
62 static struct sub_sect_1 sec1 = { {}, "Charlie", "WBAFC", { 0, -1} };
63 static struct clist secs;
67 init_top(void *ptr UNUSED)
69 for (uns i=0; i<5; i++)
71 struct sub_sect_1 *s = cf_malloc(sizeof(struct sub_sect_1));
72 cf_init_section("slaves", &cf_sec_1, s);
74 clist_add_tail(&secs, &s->n);
80 commit_top(void *ptr UNUSED)
83 return "Don't touch my variable!";
88 time_parser(uns number, byte **pars, time_t *ptr)
90 *ptr = number ? atoi(pars[0]) : time(NULL);
94 static struct cf_section cf_top UNUSED = {
96 CF_COMMIT(commit_top),
99 CF_INT_DYN("nrs1", &nrs1, 1000),
100 CF_INT_ARY("nrs2", nrs2, 5),
101 CF_STRING("str1", &str1),
102 CF_STRING_DYN("str2", &str2, 2),
104 CF_DOUBLE("d1", &d1),
105 CF_PARSER("FirstTime", &t1, time_parser, -1),
106 CF_PARSER("SecondTime", &t2, time_parser, 1),
107 CF_SECTION("master", &sec1, &cf_sec_1),
108 CF_LIST("slaves", &secs, &cf_sec_1),