[4597] | 1 | /* |
---|
[2064] | 2 | orxonox - the future of 3D-vertical-scrollers |
---|
| 3 | |
---|
| 4 | Copyright (C) 2004 orx |
---|
| 5 | |
---|
| 6 | This program is free software; you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 9 | any later version. |
---|
| 10 | |
---|
| 11 | ### File Specific: |
---|
[5014] | 12 | main-programmer: Benjamin Grauer |
---|
| 13 | co-programmer: Christian Meyer |
---|
| 14 | |
---|
| 15 | 2005-08-14: complete reimplementation: |
---|
| 16 | now the File is parsed at the initialisation, |
---|
| 17 | and informations is gathered there. |
---|
[2064] | 18 | */ |
---|
| 19 | |
---|
| 20 | |
---|
| 21 | #include "ini_parser.h" |
---|
[4381] | 22 | |
---|
[5014] | 23 | #include "list.h" |
---|
[5031] | 24 | #include <stdlib.h> |
---|
| 25 | #include <string.h> |
---|
[4381] | 26 | #include "debug.h" |
---|
[2064] | 27 | |
---|
| 28 | using namespace std; |
---|
| 29 | |
---|
[2141] | 30 | /** |
---|
[4836] | 31 | * constructs an IniParser using a file |
---|
[5017] | 32 | * @param fileName: the path and name of the file to parse |
---|
[2141] | 33 | */ |
---|
[5014] | 34 | IniParser::IniParser (const char* fileName) |
---|
[2064] | 35 | { |
---|
[5014] | 36 | this->currentEntry = NULL; |
---|
| 37 | this->currentSection = NULL; |
---|
| 38 | this->sections = NULL; |
---|
[5031] | 39 | this->fileName = NULL; |
---|
[5014] | 40 | if (fileName != NULL) |
---|
[5018] | 41 | this->readFile(fileName); |
---|
[2064] | 42 | } |
---|
| 43 | |
---|
[2141] | 44 | /** |
---|
[4836] | 45 | * removes the IniParser from memory |
---|
[2141] | 46 | */ |
---|
[2064] | 47 | IniParser::~IniParser () |
---|
| 48 | { |
---|
[5014] | 49 | deleteSections(); |
---|
[2064] | 50 | } |
---|
| 51 | |
---|
[5015] | 52 | /** |
---|
| 53 | * removes all the sections. This is like delete, but even cooler :) |
---|
| 54 | */ |
---|
[5014] | 55 | void IniParser::deleteSections() |
---|
[2064] | 56 | { |
---|
[5014] | 57 | if (this->sections) |
---|
| 58 | { |
---|
| 59 | tIterator<IniSection>* sectionIt = this->sections->getIterator(); |
---|
[5115] | 60 | IniSection* sectionEnum = sectionIt->firstElement(); |
---|
[5014] | 61 | while (sectionEnum) |
---|
[3231] | 62 | { |
---|
[5014] | 63 | tIterator<IniEntry>* entryIt = sectionEnum->entries->getIterator(); |
---|
[5115] | 64 | IniEntry* entryEnum = entryIt->firstElement(); |
---|
[5014] | 65 | while (entryEnum) |
---|
| 66 | { |
---|
| 67 | delete []entryEnum->name; |
---|
| 68 | delete []entryEnum->value; |
---|
| 69 | delete entryEnum; |
---|
| 70 | entryEnum = entryIt->nextElement(); |
---|
| 71 | } |
---|
| 72 | delete entryIt; |
---|
| 73 | |
---|
| 74 | delete []sectionEnum->name; |
---|
| 75 | delete sectionEnum->entries; |
---|
| 76 | delete sectionEnum; |
---|
| 77 | sectionEnum = sectionIt->nextElement(); |
---|
[3231] | 78 | } |
---|
[5014] | 79 | delete sectionIt; |
---|
| 80 | } |
---|
| 81 | delete this->sections; |
---|
[5015] | 82 | this->currentEntry = NULL; |
---|
| 83 | this->currentSection = NULL; |
---|
[5014] | 84 | this->sections = NULL; |
---|
[5031] | 85 | this->setFileName(NULL); |
---|
[2064] | 86 | } |
---|
| 87 | |
---|
[2141] | 88 | /** |
---|
[5014] | 89 | * opens another file to parse |
---|
[5017] | 90 | * @param fileName: path and name of the new file to parse |
---|
[5014] | 91 | * @return true on success false otherwise; |
---|
[2141] | 92 | */ |
---|
[5018] | 93 | bool IniParser::readFile(const char* fileName) |
---|
[2064] | 94 | { |
---|
[5014] | 95 | FILE* stream; //!< The stream we use to read the file. |
---|
| 96 | if (sections != NULL) |
---|
| 97 | deleteSections(); |
---|
[5015] | 98 | if( fileName == NULL) |
---|
| 99 | return false; |
---|
[5031] | 100 | this->setFileName(fileName); |
---|
[5014] | 101 | |
---|
[5015] | 102 | if( (stream = fopen (fileName, "r")) == NULL) |
---|
[5014] | 103 | { |
---|
[5015] | 104 | PRINTF(1)("IniParser could not open %s\n", fileName); |
---|
[5014] | 105 | return false; |
---|
| 106 | } |
---|
| 107 | else |
---|
| 108 | { |
---|
| 109 | this->currentEntry = NULL; |
---|
| 110 | this->currentSection = NULL; |
---|
| 111 | this->sections = new tList<IniSection>; |
---|
| 112 | |
---|
| 113 | ///////////////////////////// |
---|
| 114 | // READING IN THE INI-FILE // |
---|
| 115 | ///////////////////////////// |
---|
| 116 | char lineBuffer[PARSELINELENGHT]; |
---|
| 117 | char buffer[PARSELINELENGHT]; |
---|
[5021] | 118 | const char* lineBegin; |
---|
[5014] | 119 | char* ptr; |
---|
| 120 | |
---|
[5319] | 121 | while( fgets (lineBuffer, PARSELINELENGHT, stream)) |
---|
[2551] | 122 | { |
---|
[5021] | 123 | lineBegin = lineBuffer; |
---|
[5014] | 124 | // remove newline char, and \0-terminate |
---|
| 125 | if( (ptr = strchr( lineBuffer, '\n')) != NULL) |
---|
| 126 | *ptr = 0; |
---|
[5021] | 127 | // cut up to the beginning of the line. |
---|
| 128 | while((*lineBegin == ' ' || *lineBegin == '\t') && lineBegin < lineBuffer + strlen(lineBuffer)) |
---|
| 129 | ++lineBegin; |
---|
| 130 | if (strlen(lineBegin) <= 1 || *lineBegin == '#' || *lineBegin == ';') |
---|
| 131 | continue;//printf("empty Line\n"); |
---|
[2551] | 132 | // check for section identifyer |
---|
[5021] | 133 | else if( sscanf (lineBegin, "[%s", buffer) == 1) |
---|
[5014] | 134 | { |
---|
| 135 | if( (ptr = strchr( buffer, ']')) != NULL) |
---|
[4597] | 136 | { |
---|
[5014] | 137 | *ptr = 0; |
---|
[5020] | 138 | this->addSection(buffer); |
---|
[4597] | 139 | } |
---|
[5014] | 140 | } |
---|
[5018] | 141 | // check for Entry identifier (Entry = Value) |
---|
[5021] | 142 | else if( (ptr = strchr( lineBegin, '=')) != NULL) |
---|
[5014] | 143 | { |
---|
| 144 | if (currentSection == NULL) |
---|
| 145 | { |
---|
[5021] | 146 | PRINTF(2)("Not in a Section yet for %s\n", lineBegin); |
---|
[5014] | 147 | continue; |
---|
| 148 | } |
---|
[5021] | 149 | if( ptr == lineBegin) |
---|
[5014] | 150 | continue; |
---|
| 151 | char* valueBegin = ptr+1; |
---|
[5021] | 152 | while ((*valueBegin == ' ' || *valueBegin == '\t') && valueBegin <= lineBegin + strlen(lineBegin)) |
---|
[5014] | 153 | ++valueBegin; |
---|
[5022] | 154 | char* valueEnd = valueBegin + strlen(valueBegin)-1; |
---|
| 155 | while ((*valueEnd == ' ' || *valueEnd == '\t') && valueEnd >= valueBegin) |
---|
| 156 | --valueEnd; |
---|
| 157 | valueEnd[1] = '\0'; |
---|
[5018] | 158 | char* nameEnd = ptr-1; |
---|
[5021] | 159 | while ((*nameEnd == ' ' || *nameEnd == '\t' ) && nameEnd >= lineBegin) |
---|
[5014] | 160 | --nameEnd; |
---|
| 161 | nameEnd[1] = '\0'; |
---|
[5018] | 162 | |
---|
[5021] | 163 | this->addVar(lineBegin, valueBegin); |
---|
[5014] | 164 | } |
---|
[2551] | 165 | } |
---|
[5014] | 166 | } |
---|
| 167 | fclose(stream); |
---|
| 168 | return true; |
---|
[2064] | 169 | } |
---|
| 170 | |
---|
[2141] | 171 | /** |
---|
[5020] | 172 | * opens a file and writes to it |
---|
| 173 | * @param fileName: path and name of the new file to write to |
---|
| 174 | * @return true on success false otherwise |
---|
| 175 | */ |
---|
| 176 | bool IniParser::writeFile(const char* fileName) |
---|
| 177 | { |
---|
| 178 | FILE* stream; //!< The stream we use to read the file. |
---|
| 179 | if( fileName == NULL) |
---|
| 180 | return false; |
---|
| 181 | |
---|
| 182 | if( (stream = fopen (fileName, "w")) == NULL) |
---|
| 183 | { |
---|
| 184 | PRINTF(1)("IniParser could not open %s\n", fileName); |
---|
| 185 | return false; |
---|
| 186 | } |
---|
| 187 | else |
---|
| 188 | { |
---|
| 189 | if (this->sections) |
---|
| 190 | { |
---|
| 191 | tIterator<IniSection>* sectionIt = this->sections->getIterator(); |
---|
[5115] | 192 | IniSection* sectionEnum = sectionIt->firstElement(); |
---|
[5020] | 193 | while (sectionEnum) |
---|
| 194 | { |
---|
[5021] | 195 | fprintf(stream, "\n [%s]\n", sectionEnum->name); |
---|
[5020] | 196 | |
---|
| 197 | tIterator<IniEntry>* entryIt = sectionEnum->entries->getIterator(); |
---|
[5115] | 198 | IniEntry* entryEnum = entryIt->firstElement(); |
---|
[5020] | 199 | while (entryEnum) |
---|
| 200 | { |
---|
[5021] | 201 | fprintf(stream, " %s = %s\n", entryEnum->name, entryEnum->value); |
---|
[5020] | 202 | |
---|
| 203 | entryEnum = entryIt->nextElement(); |
---|
| 204 | } |
---|
| 205 | delete entryIt; |
---|
| 206 | |
---|
| 207 | sectionEnum = sectionIt->nextElement(); |
---|
| 208 | } |
---|
| 209 | delete sectionIt; |
---|
| 210 | } |
---|
| 211 | else |
---|
| 212 | PRINTF(1)("%s no sections defined yet\n", fileName); |
---|
| 213 | } |
---|
| 214 | fclose(stream); |
---|
| 215 | } |
---|
| 216 | |
---|
[5021] | 217 | /** |
---|
| 218 | * adds a section to the list of Sections, |
---|
| 219 | * if no Section list is availiable, it will create it |
---|
| 220 | * @param sectionName the Name of the section to add |
---|
| 221 | * @return true on success... there is only success or segfault :) |
---|
| 222 | */ |
---|
[5020] | 223 | bool IniParser::addSection(const char* sectionName) |
---|
| 224 | { |
---|
| 225 | if (this->sections == NULL) |
---|
| 226 | this->sections = new tList<IniSection>; |
---|
| 227 | |
---|
| 228 | IniSection* newSection = new IniSection; |
---|
| 229 | newSection->name = new char[strlen(sectionName)+1]; |
---|
| 230 | strcpy(newSection->name, sectionName); |
---|
| 231 | newSection->entries = new tList<IniEntry>; |
---|
| 232 | this->currentSection = newSection; |
---|
| 233 | this->sections->add(newSection); |
---|
[5031] | 234 | PRINTF(5)("Added Section %s\n", sectionName); |
---|
[5021] | 235 | return true; |
---|
[5020] | 236 | } |
---|
| 237 | |
---|
| 238 | /** |
---|
[5014] | 239 | * set the parsing cursor to the specified section |
---|
| 240 | * @param sectionName: the name of the section to set the cursor to |
---|
| 241 | * @return true on success or false if the section could not be found |
---|
[2141] | 242 | */ |
---|
[5014] | 243 | bool IniParser::getSection( const char* sectionName) |
---|
[2064] | 244 | { |
---|
[5014] | 245 | tIterator<IniSection>* sectionIt = this->sections->getIterator(); |
---|
[5115] | 246 | IniSection* sectionEnum = sectionIt->firstElement(); |
---|
[5014] | 247 | while (sectionEnum) |
---|
| 248 | { |
---|
| 249 | if (!strcmp(sectionEnum->name, sectionName)) |
---|
[3231] | 250 | { |
---|
[5014] | 251 | this->currentSection = sectionEnum; |
---|
[5015] | 252 | this->currentEntry = NULL; |
---|
[5014] | 253 | delete sectionIt; |
---|
| 254 | return true; |
---|
[3231] | 255 | } |
---|
[4597] | 256 | |
---|
[5014] | 257 | sectionEnum = sectionIt->nextElement(); |
---|
| 258 | } |
---|
| 259 | delete sectionIt; |
---|
| 260 | return false; |
---|
| 261 | } |
---|
[4597] | 262 | |
---|
[5014] | 263 | /** |
---|
[5015] | 264 | * moves to the first section |
---|
| 265 | */ |
---|
| 266 | void IniParser::getFirstSection() |
---|
| 267 | { |
---|
| 268 | if (this->sections) |
---|
| 269 | this->currentSection = this->sections->firstElement(); |
---|
| 270 | else |
---|
| 271 | this->currentSection = NULL; |
---|
| 272 | this->currentEntry = NULL; |
---|
| 273 | } |
---|
| 274 | |
---|
| 275 | /** |
---|
[5014] | 276 | * searches the next section |
---|
| 277 | * @returns the name of the section if found, NULL otherwise |
---|
| 278 | */ |
---|
| 279 | const char* IniParser::nextSection() |
---|
| 280 | { |
---|
| 281 | if (this->currentSection == NULL) |
---|
| 282 | return NULL; |
---|
| 283 | else |
---|
| 284 | { |
---|
| 285 | if (this->sections) |
---|
[5015] | 286 | { |
---|
| 287 | if (this->currentSection == this->sections->lastElement()) |
---|
| 288 | this->currentSection = NULL; |
---|
| 289 | else |
---|
| 290 | this->currentSection = this->sections->nextElement(this->currentSection); |
---|
| 291 | } |
---|
[5014] | 292 | } |
---|
[5015] | 293 | |
---|
[5014] | 294 | if (this->currentSection != NULL) |
---|
| 295 | return this->currentSection->name; |
---|
| 296 | else |
---|
| 297 | return NULL; |
---|
[2064] | 298 | } |
---|
| 299 | |
---|
[2141] | 300 | /** |
---|
[5015] | 301 | * moves to the first Variable of the current Section |
---|
| 302 | */ |
---|
| 303 | void IniParser::getFirstVar() |
---|
| 304 | { |
---|
| 305 | if (this->currentSection) |
---|
| 306 | this->currentEntry = this->currentSection->entries->firstElement(); |
---|
| 307 | else |
---|
| 308 | this->currentEntry = NULL; |
---|
| 309 | } |
---|
| 310 | |
---|
| 311 | /** |
---|
[5014] | 312 | * gets the next VarName=VarValue pair from the parsing stream |
---|
| 313 | * @return true on success, false otherwise (in the latter case name and value will be NULL) |
---|
| 314 | */ |
---|
| 315 | bool IniParser::nextVar() |
---|
| 316 | { |
---|
[5015] | 317 | if (this->currentSection == NULL |
---|
| 318 | || this->currentEntry == NULL |
---|
| 319 | || this->currentEntry == this->currentSection->entries->lastElement()) |
---|
[5014] | 320 | { |
---|
| 321 | this->currentEntry = NULL; |
---|
| 322 | return false; |
---|
| 323 | } |
---|
[5015] | 324 | this->currentEntry = this->currentSection->entries->nextElement(this->currentEntry); |
---|
[5014] | 325 | |
---|
| 326 | if (this->currentEntry == NULL) |
---|
| 327 | return false; |
---|
| 328 | else |
---|
| 329 | return true; |
---|
| 330 | } |
---|
| 331 | |
---|
| 332 | /** |
---|
[5020] | 333 | * adds a new Entry to either the currentSection or the section called by sectionName |
---|
| 334 | * @param entryName the Name of the Entry to add |
---|
| 335 | * @param value the value to assign to this entry |
---|
| 336 | * @param sectionName if NULL then this entry will be set to the currentSection |
---|
| 337 | * otherwise to the section refered to by sectionName. |
---|
| 338 | * If both are NULL no entry will be added |
---|
| 339 | * @return true if everything is ok false on error |
---|
| 340 | */ |
---|
| 341 | bool IniParser::addVar(const char* entryName, const char* value, const char* sectionName) |
---|
| 342 | { |
---|
| 343 | IniSection* addSection = NULL; |
---|
| 344 | if (sectionName != NULL) |
---|
| 345 | { |
---|
| 346 | tIterator<IniSection>* sectionIt = this->sections->getIterator(); |
---|
[5115] | 347 | IniSection* sectionEnum = sectionIt->firstElement(); |
---|
[5020] | 348 | while (sectionEnum) |
---|
| 349 | { |
---|
| 350 | if (!strcmp(sectionEnum->name, sectionName)) |
---|
| 351 | { |
---|
| 352 | addSection = sectionEnum; |
---|
| 353 | break; |
---|
| 354 | } |
---|
| 355 | sectionEnum = sectionIt->nextElement(); |
---|
| 356 | } |
---|
| 357 | delete sectionIt; |
---|
| 358 | } |
---|
| 359 | else |
---|
| 360 | addSection = this->currentSection; |
---|
| 361 | |
---|
| 362 | if (addSection == NULL) |
---|
| 363 | { |
---|
| 364 | PRINTF(2)("section not found for value %s\n", entryName); |
---|
| 365 | return false; |
---|
| 366 | } |
---|
| 367 | else |
---|
| 368 | { |
---|
| 369 | IniEntry* newEntry = new IniEntry; |
---|
| 370 | newEntry->name = new char[strlen (entryName)+1]; |
---|
| 371 | strcpy(newEntry->name, entryName); |
---|
| 372 | newEntry->value = new char[strlen(value)+1]; |
---|
| 373 | strcpy(newEntry->value, value); |
---|
| 374 | this->currentSection->entries->add(newEntry); |
---|
[5031] | 375 | PRINTF(5)("Added Entry %s with Value '%s' to Section %s\n", newEntry->name, newEntry->name, addSection->name); |
---|
[5020] | 376 | return true; |
---|
| 377 | } |
---|
| 378 | } |
---|
| 379 | |
---|
| 380 | /** |
---|
[4836] | 381 | * directly acesses an entry in a section |
---|
[5014] | 382 | * @param entryName: the name of the entry to find |
---|
| 383 | * @param sectionName: the section where the entry is to be found |
---|
| 384 | * @param defaultValue: what should be returned in case the entry cannot be found |
---|
[4836] | 385 | * @return a pointer to a buffer conatining the value of the specified entry. This buffer will contain the data specified in defvalue in case the entry wasn't found |
---|
[5020] | 386 | * |
---|
| 387 | * The returned pointer points to an internal buffer, so do not free it on your own. Do not give a NULL pointer to defvalue, this will certainly |
---|
| 388 | * lead to unwanted behaviour. |
---|
[2141] | 389 | */ |
---|
[5014] | 390 | const char* IniParser::getVar(const char* entryName, const char* sectionName, const char* defaultValue) const |
---|
[2065] | 391 | { |
---|
[5014] | 392 | if (this->sections) |
---|
| 393 | { |
---|
| 394 | tIterator<IniSection>* sectionIt = this->sections->getIterator(); |
---|
[5115] | 395 | IniSection* sectionEnum = sectionIt->firstElement(); |
---|
[5014] | 396 | while (sectionEnum) |
---|
[3231] | 397 | { |
---|
[5014] | 398 | if (!strcmp(sectionEnum->name, sectionName)) |
---|
| 399 | { |
---|
| 400 | tIterator<IniEntry>* entryIt = sectionEnum->entries->getIterator(); |
---|
[5115] | 401 | IniEntry* entryEnum = entryIt->firstElement(); |
---|
[5014] | 402 | while (entryEnum) |
---|
[4597] | 403 | { |
---|
[5014] | 404 | if (!strcmp(entryEnum->name, entryName)) |
---|
| 405 | { |
---|
| 406 | delete entryIt; |
---|
| 407 | delete sectionIt; |
---|
| 408 | return entryEnum->value; |
---|
| 409 | } |
---|
| 410 | entryEnum = entryIt->nextElement(); |
---|
[4597] | 411 | } |
---|
[5014] | 412 | delete entryIt; |
---|
| 413 | PRINTF(2)("Entry %s in section %s not found.\n", entryName, sectionName); |
---|
| 414 | break; |
---|
| 415 | } |
---|
| 416 | sectionEnum = sectionIt->nextElement(); |
---|
[3231] | 417 | } |
---|
[5014] | 418 | delete sectionIt; |
---|
| 419 | PRINTF(2)("Section %s that should be containing %s not found.\n", sectionName, entryName); |
---|
| 420 | } |
---|
| 421 | else |
---|
[5031] | 422 | PRINTF(1)("%s not opened\n", fileName); |
---|
[5014] | 423 | |
---|
| 424 | return defaultValue; |
---|
| 425 | |
---|
[2065] | 426 | } |
---|
[5014] | 427 | |
---|
[5031] | 428 | |
---|
| 429 | void IniParser::setFileName(const char* fileName) |
---|
| 430 | { |
---|
| 431 | if (this->fileName) |
---|
| 432 | delete []this->fileName; |
---|
| 433 | if (fileName) |
---|
| 434 | { |
---|
| 435 | this->fileName = new char[strlen(fileName)+1]; |
---|
| 436 | strcpy(this->fileName, fileName); |
---|
| 437 | } |
---|
| 438 | else |
---|
| 439 | this->fileName = NULL; |
---|
| 440 | } |
---|
| 441 | |
---|
| 442 | |
---|
[5017] | 443 | /** |
---|
| 444 | * output the whole tree in a nice and easy way. |
---|
| 445 | */ |
---|
[5014] | 446 | void IniParser::debug() const |
---|
| 447 | { |
---|
[5031] | 448 | PRINTF(0)("Iniparser %s - debug\n", this->fileName); |
---|
[5014] | 449 | if (this->sections) |
---|
| 450 | { |
---|
| 451 | tIterator<IniSection>* sectionIt = this->sections->getIterator(); |
---|
[5115] | 452 | IniSection* sectionEnum = sectionIt->firstElement(); |
---|
[5014] | 453 | while (sectionEnum) |
---|
| 454 | { |
---|
| 455 | PRINTF(0)(" [%s]\n", sectionEnum->name); |
---|
| 456 | |
---|
| 457 | tIterator<IniEntry>* entryIt = sectionEnum->entries->getIterator(); |
---|
[5115] | 458 | IniEntry* entryEnum = entryIt->firstElement(); |
---|
[5014] | 459 | while (entryEnum) |
---|
| 460 | { |
---|
| 461 | PRINTF(0)(" :%s: -> '%s'\n", entryEnum->name, entryEnum->value); |
---|
| 462 | |
---|
| 463 | entryEnum = entryIt->nextElement(); |
---|
| 464 | } |
---|
| 465 | delete entryIt; |
---|
| 466 | |
---|
| 467 | sectionEnum = sectionIt->nextElement(); |
---|
| 468 | } |
---|
| 469 | delete sectionIt; |
---|
| 470 | } |
---|
| 471 | else |
---|
[5031] | 472 | PRINTF(1)("%s not opened\n", fileName); |
---|
[5014] | 473 | } |
---|