source: libcfa/src/parseconfig.cfa @ a434e92

ADTast-experimentalenumforall-pointer-decayjacob/cs343-translationpthread-emulationqualifiedEnum
Last change on this file since a434e92 was a434e92, checked in by Jacob Prud'homme <jafprudhomme@…>, 3 years ago

Changed quotes used for clarity

  • Property mode set to 100644
File size: 4.2 KB
Line 
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
11EHM_VIRTUAL_TABLE(Validation_Failure, Validation_Failure_main_table);
12void ?{}( 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}
17void throwValidation_Failure( config_entry & entry ) {
18        Validation_Failure exc = { entry };
19}
20
21
22// *********************************** main code ***********************************
23
24
25struct KVPairs {
26        unsigned int size, max_size;
27        * [ char *, char * ] data;
28};
29void ?{}( KVPairs & kvp ) with ( kvp ) {                                // default constructor
30        size = 0; max_size = 0; data = 0p;
31}
32void ?{}( KVPairs & kvp, size_t size ) {                                // initialization
33        kvp.[ size, max_size ] = [ 0, size ];
34        kvp.data = alloc( size );
35}
36void ^?{}( KVPairs & kvp ) with ( kvp ) {                               // destructor
37        free( data );
38        size = 0; max_size = 0; data = 0p;
39}
40
41void add_kv_pair( KVPairs & kv_pairs, char * k, char * v ) with ( kv_pairs ) {
42        if ( max_size == 0 ) {
43                max_size = 1;
44                data = alloc( max_size );
45        } else if ( size == max_size ) {
46                max_size *= 2;
47                data = resize( data, max_size );
48        }
49
50        data[size].0 = alloc( strlen( k ) );
51        data[size].1 = alloc( strlen( v ) );
52        strcpy( data[size].0, k );
53        strcpy( data[size].1, v );
54        ++size;
55}
56
57
58bool comments( ifstream & in, char name[] ) {
59        while () {
60                in | name;
61          if ( eof( in ) ) return true;
62          if ( name[0] != '#' ) return false;
63                in | nl;                                                                        // ignore remainder of line
64        } // while
65} // comments
66
67// Parse configuration from a file formatted in shell style
68KVPairs * parse_tabular_config_format( const char * config_file, size_t num_entries ) {
69        * KVPairs kv_pairs = new( num_entries );
70
71        ifstream in;
72        try {
73                open( in, config_file );                                        // open the configuration file for input
74
75                char key[64];
76                char value[256];
77
78                while () {                                                                      // parameter names can appear in any order
79                        // Must add check to see if already read in a key-value pair,
80                        // once we switch to using hash table as intermediate storage
81                  if ( comments( in, key ) ) break;                     // eof ?
82                        in | value;
83
84                        add_kv_pair( *kv_pairs, key, value );
85
86                  if ( eof( in ) ) break;
87                        in | nl;                                                                // ignore remainder of line
88                } // for
89        } catch( Open_Failure * ex; ex->istream == &in ) {
90                ^(*kv_pairs){};
91                exit | "Error: could not open input file '" | config_file | "'";
92        } // try
93        close( in );
94
95        return kv_pairs;
96}
97
98// Parse configuration values from intermediate format
99void parse_config( const char * config_file, config_entry entries[], size_t num_entries, config_format format ) {
100        KVPairs * kv_pairs;
101        choose ( format ) {
102                case TABULAR_CONFIG:
103                        kv_pairs = parse_tabular_config_format( config_file, num_entries );
104                default:
105                        exit | "Error: config file format " | format | " is not supported";
106        }
107
108        int entries_so_far = 0;
109        for ( i; kv_pairs->size ) {
110          if ( entries_so_far == num_entries ) break;
111
112                char * src_key, * src_value;
113                [ src_key, src_value ] = kv_pairs->data[i];
114
115                for ( j; num_entries ) {
116                  if ( strcmp( src_key, entries[j].key ) != 0 ) continue;
117                        if ( entries[j].parse( src_value, entries[j].variable ) ) {
118                                ++entries_so_far;
119
120                                // Validate the parsed data, if necessary
121                                if ( entries[j].validate != (bool (*)(void *))0p ) {
122                                        if ( !entries[j].validate( entries[j].variable ) ) throwValidation_Failure( entries[j] );
123                                }
124
125                                break;
126                        }
127
128                        serr | "Value '" | src_value | "' for key '" | src_key | "' could not be parsed";
129                }
130        }
131
132        ^(*kv_pairs){};
133} // processConfigFile
134
135
136// *********************************** validation ***********************************
137
138
139forall(T | Relational( T ))
140bool is_nonnegative( T & value ) {
141        T zero_val = 0;
142        return value >= zero_val;
143}
144
145forall(T | Relational( T ))
146bool is_positive( T & value ) {
147        T zero_val = 0;
148        return value > zero_val;
149}
150
151forall(T | Relational( T ))
152bool is_nonpositive( T & value ) {
153        T zero_val = 0;
154        return value <= zero_val;
155}
156
157forall(T | Relational( T ))
158bool is_negative( T & value ) {
159        T zero_val = 0;
160        return value < zero_val;
161}
162
163
164// Local Variables: //
165// tab-width: 4 //
166// compile-command: "cfa parseconfig.cfa" //
167// End: //
Note: See TracBrowser for help on using the repository browser.