summaryrefslogtreecommitdiff
path: root/src/miav_config.cc
blob: 9364131736af7d2ad75614c1db8c387f97b25d2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            miav_config.cc
 *
 *  Sat Feb 19 14:13:19 CET 2005
 *  Copyright  2005 Bent Bisballe
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Library General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include <config.h>
#include "miav_config.h"

MiavConfig::MiavConfig(char *file)
{
  configs = NULL;

  // Read config file
  FILE* fp = fopen(file, "r");
  
  if(!fp) {
    fprintf(stderr, "Error reading configuration file %s\n", file);
    return;
  }
  fseek(fp, 0, SEEK_END);
  int fsz = ftell(fp);
  fseek(fp, 0, SEEK_SET);
  
  char *raw = (char*)calloc(fsz, 1);
  fread(raw, 1, fsz, fp);

  fclose(fp);

  parse(raw);
  free(raw);
}

MiavConfig::~MiavConfig()
{
  _cfg *die = NULL;
  _cfg *cfg = configs;

  while(cfg) {
    if(die) free(die);
    die = cfg;
    cfg = cfg->next;
  }
  if(die) free(die);
}

_cfg *MiavConfig::addConfig(_cfg *parent, char* conf)
{
  _cfg *cfg;

  printf("[%s]\n", conf);

  cfg = (_cfg*) malloc(sizeof(_cfg));
  if(!parent) configs = cfg;

  int namelen = strchr(conf, '=') - conf;
  char* name = (char*)calloc(namelen + 1, 1);
  strncpy(name, conf, namelen);
  printf("name [%s]#%d - ", name, namelen);

  int vallen = conf + strlen(conf) - (strchr(conf, '=') + 1);
  char* val = (char*)calloc(vallen + 1, 1);
  strncpy(val, conf + strlen(conf) - vallen, vallen);
  printf("val [%s]#%d\n", val, vallen);

  cfg->name = new string((const char*)name);
  free(name);

  cfg->stringval = new string((const char*)val);
  cfg->intval = atoi(val);
  cfg->floatval = atof(val);
  cfg->boolval = atoi(val) != 0;
  free(val);

  cfg->next = NULL;

  if(parent) parent->next = cfg;
  return cfg;
}

int MiavConfig::parse(char* raw)
{
  // Strip the string
  char *conf = strip(raw);
  char *conf_end = conf + strlen(conf);
  char *start = conf;
  char *p;

  _cfg *cfg = NULL;

  // Iterate the lines in the string
  for(p = conf; p < conf_end; p++) {
    if(*p == '\n') {
      *p = '\0';
      cfg = addConfig(cfg, start);
      start = p+1;
    }
  }
  free(conf);
  printf("done!\n");
  return 0;
}

char* MiavConfig::strip(char* conf)
{
  char *stripped = (char*)calloc(strlen(conf) + 2, 1);
  char *r;
  char *w = stripped;

  bool instring = false;
  bool incomment = false;

  // Iterate over the characters in the input string.
  for(r = conf; r < conf + strlen(conf); r++) {
    if(strchr("#", *r)) incomment = true;
    if(strchr("\n", *r)) incomment = false;

    if(!incomment) {
      if(instring) {
        // When in a string, accept anything, except ".
        if(*r != '\"') {
          *w = *r;
          w++;
        }
      } else {
        // Only copy valid characters
        if(strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-_,.=", *r)) {
          // Change comma into dot
          if(*r == ',') *r = '.';
          *w = *r;
          w++;
        }
        // We don't want double newlines and initial newline!
        if((*r == '\n') && (*(w-1) != '\n') && (w != stripped)) {
          *w = *r;
          w++;
        }
      }
    }

    if(strchr("\"", *r)) instring = !instring;
  }

  // If we are not ending on a newline, we better append one
  if(*(w-1) != '\n') {
    *w = '\n';
    w++;
  }

  // Make sure we are nullterminated.
  *w = '\0';

  return stripped;
}

int MiavConfig::readInt(char *node)
{
  return findNode(node)->intval;
}

bool MiavConfig::readBool(char *node)
{
  return findNode(node)->boolval;
}

string *MiavConfig::readString(char *node)
{
  return findNode(node)->stringval;
}

float MiavConfig::readFloat(char *node)
{
  return findNode(node)->floatval;
}

_cfg *MiavConfig::findNode(char* node)
{
  _cfg *cfg = configs;

  while(cfg) {
    if(!strcmp(node, cfg->name->c_str())) return cfg;
    cfg = cfg->next;
  }
  fprintf(stderr, "ERROR: Request for nonexisting node \"%s\"!\n", node);
  exit(1);
}