1 | #include <fstream.hfa> |
---|
2 | #include <parseargs.hfa> |
---|
3 | #include <stdlib.hfa> |
---|
4 | #include <string.h> |
---|
5 | #include "parseconfig.hfa" |
---|
6 | |
---|
7 | |
---|
8 | // *********************************** exceptions *********************************** |
---|
9 | |
---|
10 | |
---|
11 | EHM_VIRTUAL_TABLE(Validation_Failure, Validation_Failure_main_table); |
---|
12 | void ?{}( Validation_Failure & this, config_entry & entry ) with ( entry ) { |
---|
13 | this.virtual_table = &Validation_Failure_main_table; |
---|
14 | this.key = key; |
---|
15 | this.variable = variable; |
---|
16 | } |
---|
17 | void throwValidation_Failure( config_entry & entry ) { |
---|
18 | Validation_Failure exc = { entry }; |
---|
19 | } |
---|
20 | |
---|
21 | |
---|
22 | // *********************************** main code *********************************** |
---|
23 | |
---|
24 | |
---|
25 | struct KVPairs { |
---|
26 | int size, max_size; |
---|
27 | * [ char *, char * ] data; |
---|
28 | }; |
---|
29 | void ?{}( KVPairs & kvp ) with ( kvp ) { // default constructor |
---|
30 | size = 0; max_size = 0; data = 0p; |
---|
31 | } |
---|
32 | void ?{}( KVPairs & kvp, int size ) { // initialization |
---|
33 | kvp.[ size, max_size ] = [ 0, size ]; |
---|
34 | kvp.data = alloc( size ); |
---|
35 | } |
---|
36 | /* |
---|
37 | void ?{}( KVPairs & kvp, KVPairs val ) with( val ) { // copy, deep |
---|
38 | kvp.[ size, max_size ] = [ size, max_size ]; |
---|
39 | kvp.data = alloc( size, data ); |
---|
40 | } |
---|
41 | */ |
---|
42 | void ^?{}( KVPairs & kvp ) with ( kvp ) { // destructor |
---|
43 | free( data ); |
---|
44 | size = 0; max_size = 0; data = 0p; |
---|
45 | } |
---|
46 | |
---|
47 | void add_kv_pair( KVPairs & kv_pairs, char * k, char * v ) with ( kv_pairs ) { |
---|
48 | if ( size == max_size ) { |
---|
49 | max_size *= 2; |
---|
50 | data = resize( data, max_size ); |
---|
51 | } |
---|
52 | |
---|
53 | data[size] = [ k, v ]; |
---|
54 | ++size; |
---|
55 | } |
---|
56 | |
---|
57 | |
---|
58 | struct StringBuilder { |
---|
59 | int size, max_size; |
---|
60 | * char string; |
---|
61 | }; |
---|
62 | void ?{}( StringBuilder & sb ) with ( sb ) { // default constructor |
---|
63 | size = 1; max_size = 1; string = alloc( 1 ); |
---|
64 | string[0] = '\0'; |
---|
65 | } |
---|
66 | void ?{}( StringBuilder & sb, int size ) { // initialization |
---|
67 | sb.[ size, max_size ] = [ 1, size+1 ]; |
---|
68 | sb.string = alloc( size ); |
---|
69 | sb.string[0] = '\0'; |
---|
70 | } |
---|
71 | void ^?{}( StringBuilder & sb ) with ( sb ) { // destructor |
---|
72 | free( string ); |
---|
73 | size = 0; max_size = 0; string = 0p; |
---|
74 | } |
---|
75 | |
---|
76 | void add_char( StringBuilder & sb, char c ) with ( sb ) { |
---|
77 | if ( size == max_size ) { |
---|
78 | max_size *= 2; |
---|
79 | string = resize( string, max_size ); |
---|
80 | } |
---|
81 | |
---|
82 | string[size-1] = c; |
---|
83 | string[size] = '\0'; |
---|
84 | ++size; |
---|
85 | } |
---|
86 | |
---|
87 | |
---|
88 | bool comments( ifstream & in, char * name ) { |
---|
89 | StringBuilder sb; |
---|
90 | |
---|
91 | char c; |
---|
92 | while () { |
---|
93 | in | c; |
---|
94 | add_char( sb, c ); |
---|
95 | |
---|
96 | if ( fail( in ) ) { |
---|
97 | name = alloc( sb.size ); |
---|
98 | strcpy( name, sb.string ); |
---|
99 | |
---|
100 | return true; |
---|
101 | } |
---|
102 | if ( c != '#' ) break; |
---|
103 | in | nl; // ignore remainder of line |
---|
104 | } // for |
---|
105 | |
---|
106 | name = alloc( sb.size ); |
---|
107 | strcpy( name, sb.string ); |
---|
108 | |
---|
109 | return false; |
---|
110 | } // comments |
---|
111 | |
---|
112 | // Parse configuration from a file formatted in shell style |
---|
113 | KVPairs & parse_tabular_config_format( const char * config_file, size_t num_entries ) { |
---|
114 | // * KVPairs kv_pairs; |
---|
115 | KVPairs kv_pairs = { num_entries }; |
---|
116 | |
---|
117 | try { |
---|
118 | ifstream in = { config_file }; // open the configuration file for input |
---|
119 | |
---|
120 | while () { |
---|
121 | // * char key; |
---|
122 | // * char value; |
---|
123 | // if ( comments( in, key ) ) break; // eof ? |
---|
124 | |
---|
125 | // THE CODE BELOW IS TEMPORARY, TO TRY AND GET SOMETHING WORKING |
---|
126 | |
---|
127 | // Right now doesn't handle duplicate keys. Should use hashmap for that |
---|
128 | char c; |
---|
129 | [1024] char key; |
---|
130 | [1024] char value; |
---|
131 | //StringBuilder key_sb; |
---|
132 | //StringBuilder value_sb; |
---|
133 | |
---|
134 | // Doesn't handle comments |
---|
135 | in | key; |
---|
136 | /* |
---|
137 | while () { |
---|
138 | in | c; |
---|
139 | if ( c == ' ' || c == '\t' ) { |
---|
140 | while ( c == ' ' || c == '\t' ) in | c; |
---|
141 | break; |
---|
142 | } else { |
---|
143 | add_char( key_sb, c ); |
---|
144 | } |
---|
145 | } |
---|
146 | */ |
---|
147 | |
---|
148 | //* char key = alloc( key_sb.size ); |
---|
149 | //strcpy( key, key_sb.string ); |
---|
150 | |
---|
151 | // Doesn't handle comments |
---|
152 | in | value; |
---|
153 | /* |
---|
154 | while () { |
---|
155 | in | c; |
---|
156 | if ( c == ' ' || c == '\t' || c == '\n' ) break; |
---|
157 | add_char( value_sb, c ); |
---|
158 | } |
---|
159 | */ |
---|
160 | |
---|
161 | //* char value = alloc( value_sb.size ); |
---|
162 | //strcpy( value, value_sb.string ); |
---|
163 | |
---|
164 | add_kv_pair( kv_pairs, key, value ); |
---|
165 | |
---|
166 | if ( fail( in ) ) break; |
---|
167 | in | nl; // ignore remainder of line |
---|
168 | } // for |
---|
169 | } catch( Open_Failure * ex; ex->istream == &in ) { |
---|
170 | ^kv_pairs{}; |
---|
171 | exit | "Error: could not open input file \"" | config_file | "\""; |
---|
172 | } // try |
---|
173 | close( in ); |
---|
174 | |
---|
175 | return kv_pairs; |
---|
176 | } |
---|
177 | |
---|
178 | // Parse configuration values from intermediate format |
---|
179 | void parse_config( const char * config_file, config_entry entries[], size_t num_entries ) { |
---|
180 | KVPairs kv_pairs = parse_tabular_config_format( config_file, num_entries ); |
---|
181 | |
---|
182 | int entries_so_far = 0; |
---|
183 | for ( i; kv_pairs.size ) { |
---|
184 | if ( entries_so_far == num_entries ) break; |
---|
185 | |
---|
186 | char * src_key, * src_value; |
---|
187 | [ src_key, src_value ] = kv_pairs.data[i]; |
---|
188 | |
---|
189 | for ( j; num_entries ) { |
---|
190 | if ( strcmp( src_key, entries[j].key ) != 0 ) continue; |
---|
191 | if ( entries[j].parse( src_value, entries[j].variable ) ) { |
---|
192 | ++entries_so_far; |
---|
193 | |
---|
194 | // Validate the parsed data, if necessary |
---|
195 | if ( entries[j].validate != (bool (*)(void *))0p ) { |
---|
196 | if ( !entries[j].validate( entries[j].variable ) ) throwValidation_Failure( entries[j] ); |
---|
197 | } |
---|
198 | |
---|
199 | break; |
---|
200 | } |
---|
201 | |
---|
202 | serr | "Value '" | src_value | "' for key '" | src_key | "' could not be parsed"; |
---|
203 | } |
---|
204 | } |
---|
205 | } // processConfigFile |
---|
206 | |
---|
207 | |
---|
208 | // *********************************** validation *********************************** |
---|
209 | |
---|
210 | |
---|
211 | forall(T | Relational( T )) |
---|
212 | bool is_nonnegative( T & value ) { |
---|
213 | T zero_val = 0; |
---|
214 | return value >= zero_val; |
---|
215 | } |
---|
216 | |
---|
217 | forall(T | Relational( T )) |
---|
218 | bool is_positive( T & value ) { |
---|
219 | T zero_val = 0; |
---|
220 | return value > zero_val; |
---|
221 | } |
---|
222 | |
---|
223 | forall(T | Relational( T )) |
---|
224 | bool is_nonpositive( T & value ) { |
---|
225 | T zero_val = 0; |
---|
226 | return value <= zero_val; |
---|
227 | } |
---|
228 | |
---|
229 | forall(T | Relational( T )) |
---|
230 | bool is_negative( T & value ) { |
---|
231 | T zero_val = 0; |
---|
232 | return value < zero_val; |
---|
233 | } |
---|
234 | |
---|
235 | |
---|
236 | // Local Variables: // |
---|
237 | // tab-width: 4 // |
---|
238 | // compile-command: "cfa parseconfig.cfa" // |
---|
239 | // End: // |
---|