| 1 | /* | 
|---|
| 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: | 
|---|
| 12 |    main-programmer: Christian Meyer | 
|---|
| 13 |    co-programmer: Benjamin Grauer | 
|---|
| 14 |  | 
|---|
| 15 |    2005-06-10: some naming conventions | 
|---|
| 16 |  | 
|---|
| 17 | // | 
|---|
| 18 | //  splitLine | 
|---|
| 19 | //  STL string tokenizer | 
|---|
| 20 | // | 
|---|
| 21 | //  Created by Clemens Wacha. | 
|---|
| 22 | //  Version 1.0 | 
|---|
| 23 | //  Copyright (c) 2005 Clemens Wacha. All rights reserved. | 
|---|
| 24 | // | 
|---|
| 25 |  | 
|---|
| 26 | */ | 
|---|
| 27 |  | 
|---|
| 28 | #include "substring.h" | 
|---|
| 29 |  | 
|---|
| 30 | /** | 
|---|
| 31 |  * @brief default constructor | 
|---|
| 32 |  */ | 
|---|
| 33 | SubString::SubString() | 
|---|
| 34 | {} | 
|---|
| 35 |  | 
|---|
| 36 |  | 
|---|
| 37 | /** | 
|---|
| 38 |  * @brief create a SubString from | 
|---|
| 39 |  * @param string the String to Spilit | 
|---|
| 40 |  * @param delimiter the Character at which to split string (delimiter) | 
|---|
| 41 |  */ | 
|---|
| 42 | SubString::SubString(const std::string& string, char delimiter) | 
|---|
| 43 | { | 
|---|
| 44 |   this->split(string, delimiter); | 
|---|
| 45 | } | 
|---|
| 46 |  | 
|---|
| 47 |  | 
|---|
| 48 | /** | 
|---|
| 49 |  * @brief Splits a String into multiple splitters. | 
|---|
| 50 |  * @param string the String to split | 
|---|
| 51 |  * @param delimiters multiple set of characters at what to split. (delimiters) | 
|---|
| 52 |  * @param delimiterNeighbours neighbours of the delimiters, that will be erased only when near a delimiter. | 
|---|
| 53 |  * @param escapeChar The Escape Character that overrides splitters commends and so on... | 
|---|
| 54 |  * @param safemode_char within these characters splitting won't happen | 
|---|
| 55 |  * @param comment_char the Comment character. | 
|---|
| 56 |  */ | 
|---|
| 57 | SubString::SubString(const std::string& string, | 
|---|
| 58 |                      const std::string& delimiters, const std::string& delimiterNeighbours, bool emptyEntries, | 
|---|
| 59 |                      char escapeChar, char safemode_char, char comment_char) | 
|---|
| 60 | { | 
|---|
| 61 |   SubString::splitLine(this->strings, string, delimiters, delimiterNeighbours, emptyEntries, escapeChar, safemode_char, comment_char); | 
|---|
| 62 | } | 
|---|
| 63 |  | 
|---|
| 64 | /** | 
|---|
| 65 |  * @brief creates a SubSet of a SubString. | 
|---|
| 66 |  * @param subString the SubString to take a set from. | 
|---|
| 67 |  * @param subSetBegin the beginning to the end | 
|---|
| 68 |  */ | 
|---|
| 69 | SubString::SubString(const SubString& subString, unsigned int subSetBegin) | 
|---|
| 70 | { | 
|---|
| 71 |   for (unsigned int i = subSetBegin; i < subString.size(); i++) | 
|---|
| 72 |     this->strings.push_back(subString[i]); | 
|---|
| 73 | } | 
|---|
| 74 |  | 
|---|
| 75 |  | 
|---|
| 76 | /** | 
|---|
| 77 |  * @brief creates a SubSet of a SubString. | 
|---|
| 78 |  * @param subString the SubString to take a Set from | 
|---|
| 79 |  * @param subSetBegin the beginning to the end | 
|---|
| 80 |  * @param subSetEnd the end of the SubSet (max subString.size() will be checked internaly) | 
|---|
| 81 |  */ | 
|---|
| 82 | SubString::SubString(const SubString& subString, unsigned int subSetBegin, unsigned int subSetEnd) | 
|---|
| 83 | { | 
|---|
| 84 |   for (unsigned int i = subSetBegin; i < subString.size() || i < subSetEnd; i++) | 
|---|
| 85 |     this->strings.push_back(subString[i]); | 
|---|
| 86 | } | 
|---|
| 87 |  | 
|---|
| 88 | /** | 
|---|
| 89 |  * @brief creates a Substring from a count and values set. | 
|---|
| 90 |  * @param argc: the Arguments Count. | 
|---|
| 91 |  * @param argv: Argument Values. | 
|---|
| 92 |  */ | 
|---|
| 93 | SubString::SubString(unsigned int argc, const char** argv) | 
|---|
| 94 | { | 
|---|
| 95 |   for(unsigned int i = 0; i < argc; ++i) | 
|---|
| 96 |     this->strings.push_back(std::string(argv[i])); | 
|---|
| 97 | } | 
|---|
| 98 |  | 
|---|
| 99 | /** | 
|---|
| 100 |  * @brief removes the object from memory | 
|---|
| 101 |  */ | 
|---|
| 102 | SubString::~SubString() | 
|---|
| 103 | { } | 
|---|
| 104 |  | 
|---|
| 105 | /** @brief An empty String */ | 
|---|
| 106 | // const std::string SubString::emptyString = ""; | 
|---|
| 107 | /** @brief Helper that gets you a String consisting of all White Spaces */ | 
|---|
| 108 | const std::string SubString::WhiteSpaces = " \n\t"; | 
|---|
| 109 | /** @brief Helper that gets you a String consisting of all WhiteSpaces and the Comma */ | 
|---|
| 110 | const std::string SubString::WhiteSpacesWithComma = " \n\t,"; | 
|---|
| 111 |  | 
|---|
| 112 | /** | 
|---|
| 113 |  * @brief stores the Value of subString in this SubString | 
|---|
| 114 |  * @param subString will be copied into this String. | 
|---|
| 115 |  * @returns this SubString. | 
|---|
| 116 |  */ | 
|---|
| 117 | SubString& SubString::operator=(const SubString& subString) | 
|---|
| 118 | { | 
|---|
| 119 |   this->strings = subString.strings; | 
|---|
| 120 |   return *this; | 
|---|
| 121 | } | 
|---|
| 122 |  | 
|---|
| 123 |  | 
|---|
| 124 | /** | 
|---|
| 125 |  * @brief comparator. | 
|---|
| 126 |  * @param subString the SubString to compare against this one. | 
|---|
| 127 |  * @returns true if the Stored Strings match | 
|---|
| 128 |  */ | 
|---|
| 129 | bool SubString::operator==(const SubString& subString) const | 
|---|
| 130 | { | 
|---|
| 131 |   return (this->strings == subString.strings); | 
|---|
| 132 | } | 
|---|
| 133 |  | 
|---|
| 134 | /** | 
|---|
| 135 |  * @brief comparator. | 
|---|
| 136 |  * @param subString the SubString to compare against this one. | 
|---|
| 137 |  * @returns true if the Stored Strings match | 
|---|
| 138 |  */ | 
|---|
| 139 | bool SubString::compare(const SubString& subString) const | 
|---|
| 140 | { | 
|---|
| 141 |   return (*this == subString); | 
|---|
| 142 | } | 
|---|
| 143 |  | 
|---|
| 144 | /** | 
|---|
| 145 |  * @brief comparator. | 
|---|
| 146 |  * @param subString the SubString to compare against this one. | 
|---|
| 147 |  * @returns true if the Stored Strings match | 
|---|
| 148 |  */ | 
|---|
| 149 | bool SubString::compare(const SubString& subString, unsigned int length) const | 
|---|
| 150 | { | 
|---|
| 151 |   if (length > this->size() || length > subString.size()) | 
|---|
| 152 |     return false; | 
|---|
| 153 |  | 
|---|
| 154 |   for (unsigned int i = 0; i < length; i++) | 
|---|
| 155 |     if (this->strings[i] != subString.strings[i]) | 
|---|
| 156 |       return false; | 
|---|
| 157 |   return true; | 
|---|
| 158 | } | 
|---|
| 159 |  | 
|---|
| 160 |  | 
|---|
| 161 | /** | 
|---|
| 162 |  * @brief append operator | 
|---|
| 163 |  * @param subString the String to append. | 
|---|
| 164 |  * @returns a SubString where this and subString are appended. | 
|---|
| 165 |  */ | 
|---|
| 166 | SubString SubString::operator+(const SubString& subString) const | 
|---|
| 167 | { | 
|---|
| 168 |   return SubString(*this) += subString; | 
|---|
| 169 | } | 
|---|
| 170 |  | 
|---|
| 171 |  | 
|---|
| 172 | /** | 
|---|
| 173 |  * @brief append operator. | 
|---|
| 174 |  * @param subString append subString to this SubString. | 
|---|
| 175 |  * @returns this substring appended with subString | 
|---|
| 176 |  */ | 
|---|
| 177 | SubString& SubString::operator+=(const SubString& subString) | 
|---|
| 178 | { | 
|---|
| 179 |   for (unsigned int i = 0; i < subString.size(); i++) | 
|---|
| 180 |     this->strings.push_back(subString[i]); | 
|---|
| 181 |   return *this; | 
|---|
| 182 | } | 
|---|
| 183 |  | 
|---|
| 184 |  | 
|---|
| 185 | /** | 
|---|
| 186 |  * @brief Split the String at | 
|---|
| 187 |  * @param string where to split | 
|---|
| 188 |  * @param splitter delimiter. | 
|---|
| 189 |  */ | 
|---|
| 190 | unsigned int SubString::split(const std::string& string, char splitter) | 
|---|
| 191 | { | 
|---|
| 192 |   this->strings.clear(); | 
|---|
| 193 |   char split[2]; | 
|---|
| 194 |   split[0] = splitter; | 
|---|
| 195 |   split[1] = '\0'; | 
|---|
| 196 |   SubString::splitLine(this->strings, string, split); | 
|---|
| 197 |   return strings.size(); | 
|---|
| 198 | } | 
|---|
| 199 |  | 
|---|
| 200 |  | 
|---|
| 201 | /** | 
|---|
| 202 |  * @brief Splits a String into multiple splitters. | 
|---|
| 203 |  * @param string the String to split | 
|---|
| 204 |  * @param delimiters multiple set of characters at what to split. (delimiters) | 
|---|
| 205 |  * @param delimiterNeighbours: Neighbours to the Delimiters that will be erased too. | 
|---|
| 206 |  * @param emptyEntries: If empty entries are added to the List of SubStrings | 
|---|
| 207 |  * @param escapeChar The Escape Character that overrides splitters commends and so on... | 
|---|
| 208 |  * @param safemode_char within these characters splitting won't happen | 
|---|
| 209 |  * @param comment_char the Comment character. | 
|---|
| 210 |  */ | 
|---|
| 211 | unsigned int SubString::split(const std::string& string, | 
|---|
| 212 |                               const std::string& delimiters, const std::string& delimiterNeighbours, bool emptyEntries, | 
|---|
| 213 |                               char escapeChar,char safemode_char, char comment_char) | 
|---|
| 214 | { | 
|---|
| 215 |   this->strings.clear(); | 
|---|
| 216 |   SubString::splitLine(this->strings, string, delimiters, delimiterNeighbours, emptyEntries, escapeChar, safemode_char, comment_char); | 
|---|
| 217 |   return this->strings.size(); | 
|---|
| 218 | } | 
|---|
| 219 |  | 
|---|
| 220 |  | 
|---|
| 221 | /** | 
|---|
| 222 |  * @brief joins together all Strings of this Substring. | 
|---|
| 223 |  * @param delimiter the String between the subStrings. | 
|---|
| 224 |  * @returns the joined String. | 
|---|
| 225 |  */ | 
|---|
| 226 | std::string SubString::join(const std::string& delimiter) const | 
|---|
| 227 | { | 
|---|
| 228 |   if (!this->strings.empty()) | 
|---|
| 229 |   { | 
|---|
| 230 |     std::string retVal = this->strings[0]; | 
|---|
| 231 |     for (unsigned int i = 1; i < this->strings.size(); i++) | 
|---|
| 232 |       retVal += delimiter + this->strings[i]; | 
|---|
| 233 |     return retVal; | 
|---|
| 234 |   } | 
|---|
| 235 |   else | 
|---|
| 236 |   { | 
|---|
| 237 |     static std::string empty; | 
|---|
| 238 |     return empty; | 
|---|
| 239 |   } | 
|---|
| 240 | } | 
|---|
| 241 |  | 
|---|
| 242 |  | 
|---|
| 243 | /** | 
|---|
| 244 |  * @brief creates a SubSet of a SubString. | 
|---|
| 245 |  * @param subSetBegin the beginning to the end | 
|---|
| 246 |  * @returns the SubSet | 
|---|
| 247 |  * | 
|---|
| 248 |  * This function is added for your convenience, and does the same as | 
|---|
| 249 |  * SubString::SubString(const SubString& subString, unsigned int subSetBegin) | 
|---|
| 250 |  */ | 
|---|
| 251 | SubString SubString::subSet(unsigned int subSetBegin) const | 
|---|
| 252 | { | 
|---|
| 253 |   return SubString(*this, subSetBegin); | 
|---|
| 254 | } | 
|---|
| 255 |  | 
|---|
| 256 |  | 
|---|
| 257 | /** | 
|---|
| 258 |  * @brief creates a SubSet of a SubString. | 
|---|
| 259 |  * @param subSetBegin the beginning to | 
|---|
| 260 |  * @param subSetEnd the end of the SubSet to select (if bigger than subString.size() it will be downset.) | 
|---|
| 261 |  * @returns the SubSet | 
|---|
| 262 |  * | 
|---|
| 263 |  * This function is added for your convenience, and does the same as | 
|---|
| 264 |  * SubString::SubString(const SubString& subString, unsigned int subSetBegin) | 
|---|
| 265 |  */ | 
|---|
| 266 | SubString SubString::subSet(unsigned int subSetBegin, unsigned int subSetEnd) const | 
|---|
| 267 | { | 
|---|
| 268 |   return SubString(*this, subSetBegin, subSetEnd); | 
|---|
| 269 | } | 
|---|
| 270 |  | 
|---|
| 271 |  | 
|---|
| 272 | /** | 
|---|
| 273 |  * @brief splits line into tokens and stores them in ret. | 
|---|
| 274 |  * @param ret the Array, where the Splitted strings will be stored in | 
|---|
| 275 |  * @param offsets an Array of Offsets, here the distance from the inputstring | 
|---|
| 276 |  * to the beginning of the current token is stored | 
|---|
| 277 |  * @param line the inputLine to split | 
|---|
| 278 |  * @param delimiters a String of Delimiters (here the input will be splitted) | 
|---|
| 279 |  * @param delimiterNeighbour Naighbours to the Delimitter, that will be removed if they are to the left or the right of a Delimiter. | 
|---|
| 280 |  * @param emptyEntries: if empty Strings are added to the List of Strings. | 
|---|
| 281 |  * @param escape_char: Escape carater (escapes splitters) | 
|---|
| 282 |  * @param safemode_char: the beginning of the safemode is marked with this | 
|---|
| 283 |  * @param comment_char: the beginning of a comment is marked with this: (until the end of a Line) | 
|---|
| 284 |  * @param start_state: the Initial state on how to parse the String. | 
|---|
| 285 |  * @returns SPLIT_LINE_STATE the parser was in when returning | 
|---|
| 286 |  * | 
|---|
| 287 |  * This is the Actual Splitting Algorithm from Clemens Wacha | 
|---|
| 288 |  * Supports delimiters, escape characters, | 
|---|
| 289 |  * ignores special  characters between safemode_char and between comment_char and linend '\n'. | 
|---|
| 290 |  */ | 
|---|
| 291 | SubString::SPLIT_LINE_STATE | 
|---|
| 292 | SubString::splitLine(std::vector<std::string>& ret, | 
|---|
| 293 |                      const std::string& line, | 
|---|
| 294 |                      const std::string& delimiters, | 
|---|
| 295 |                      const std::string& delimiterNeighbours, | 
|---|
| 296 |                      bool emptyEntries, | 
|---|
| 297 |                      char escape_char, | 
|---|
| 298 |                      char safemode_char, | 
|---|
| 299 |                      char comment_char, | 
|---|
| 300 |                      SPLIT_LINE_STATE start_state) | 
|---|
| 301 | { | 
|---|
| 302 |   SPLIT_LINE_STATE state = start_state; | 
|---|
| 303 |   unsigned int i = 0; | 
|---|
| 304 |   unsigned int fallBackNeighbours = 0; | 
|---|
| 305 |  | 
|---|
| 306 |   std::string token; | 
|---|
| 307 |  | 
|---|
| 308 |   if(start_state != SL_NORMAL && ret.size() > 0) | 
|---|
| 309 |   { | 
|---|
| 310 |     token = ret[ret.size()-1]; | 
|---|
| 311 |     ret.pop_back(); | 
|---|
| 312 |   } | 
|---|
| 313 |  | 
|---|
| 314 |   while(i < line.size()) | 
|---|
| 315 |   { | 
|---|
| 316 |     switch(state) | 
|---|
| 317 |     { | 
|---|
| 318 |       case SL_NORMAL: | 
|---|
| 319 |         if(line[i] == escape_char) | 
|---|
| 320 |         { | 
|---|
| 321 |           state = SL_ESCAPE; | 
|---|
| 322 |         } | 
|---|
| 323 |         else if(line[i] == safemode_char) | 
|---|
| 324 |         { | 
|---|
| 325 |           state = SL_SAFEMODE; | 
|---|
| 326 |         } | 
|---|
| 327 |         else if(line[i] == comment_char) | 
|---|
| 328 |         { | 
|---|
| 329 |           if (fallBackNeighbours > 0) | 
|---|
| 330 |             token = token.substr(0, token.size() - fallBackNeighbours); | 
|---|
| 331 |           /// FINISH | 
|---|
| 332 |           if(emptyEntries || token.size() > 0) | 
|---|
| 333 |           { | 
|---|
| 334 |             ret.push_back(token); | 
|---|
| 335 |             token.clear(); | 
|---|
| 336 |           } | 
|---|
| 337 |           token += line[i];       // EAT | 
|---|
| 338 |           state = SL_COMMENT; | 
|---|
| 339 |         } | 
|---|
| 340 |         else if(delimiters.find(line[i]) != std::string::npos) | 
|---|
| 341 |         { | 
|---|
| 342 |           // line[i] is a delimiter | 
|---|
| 343 |           if (fallBackNeighbours > 0) | 
|---|
| 344 |             token = token.substr(0, token.size() - fallBackNeighbours); | 
|---|
| 345 |           /// FINISH | 
|---|
| 346 |           if(emptyEntries || token.size() > 0) | 
|---|
| 347 |           { | 
|---|
| 348 |             ret.push_back(token); | 
|---|
| 349 |             token.clear(); | 
|---|
| 350 |           } | 
|---|
| 351 |           state = SL_NORMAL; | 
|---|
| 352 |         } | 
|---|
| 353 |         else | 
|---|
| 354 |         { | 
|---|
| 355 |           if (delimiterNeighbours.find(line[i]) != std::string::npos) | 
|---|
| 356 |           { | 
|---|
| 357 |             if (token.size() > 0) | 
|---|
| 358 |               ++fallBackNeighbours; | 
|---|
| 359 |             else | 
|---|
| 360 |             { | 
|---|
| 361 |               i++; | 
|---|
| 362 |               continue; | 
|---|
| 363 |             } | 
|---|
| 364 |           } | 
|---|
| 365 |           else | 
|---|
| 366 |             fallBackNeighbours = 0; | 
|---|
| 367 |           token += line[i];       // EAT | 
|---|
| 368 |         } | 
|---|
| 369 |         break; | 
|---|
| 370 |       case SL_ESCAPE: | 
|---|
| 371 |         if(line[i] == 'n') token += '\n'; | 
|---|
| 372 |         else if(line[i] == 't') token += '\t'; | 
|---|
| 373 |         else if(line[i] == 'v') token += '\v'; | 
|---|
| 374 |         else if(line[i] == 'b') token += '\b'; | 
|---|
| 375 |         else if(line[i] == 'r') token += '\r'; | 
|---|
| 376 |         else if(line[i] == 'f') token += '\f'; | 
|---|
| 377 |         else if(line[i] == 'a') token += '\a'; | 
|---|
| 378 |         else if(line[i] == '?') token += '\?'; | 
|---|
| 379 |         else token += line[i];  // EAT | 
|---|
| 380 |         state = SL_NORMAL; | 
|---|
| 381 |         break; | 
|---|
| 382 |       case SL_SAFEMODE: | 
|---|
| 383 |         if(line[i] == safemode_char) | 
|---|
| 384 |         { | 
|---|
| 385 |           state = SL_NORMAL; | 
|---|
| 386 |         } | 
|---|
| 387 |         else if(line[i] == escape_char) | 
|---|
| 388 |         { | 
|---|
| 389 |           state = SL_SAFEESCAPE; | 
|---|
| 390 |         } | 
|---|
| 391 |         else | 
|---|
| 392 |         { | 
|---|
| 393 |           token += line[i];       // EAT | 
|---|
| 394 |         } | 
|---|
| 395 |         break; | 
|---|
| 396 |  | 
|---|
| 397 |       case SL_SAFEESCAPE: | 
|---|
| 398 |         if(line[i] == 'n') token += '\n'; | 
|---|
| 399 |         else if(line[i] == 't') token += '\t'; | 
|---|
| 400 |         else if(line[i] == 'v') token += '\v'; | 
|---|
| 401 |         else if(line[i] == 'b') token += '\b'; | 
|---|
| 402 |         else if(line[i] == 'r') token += '\r'; | 
|---|
| 403 |         else if(line[i] == 'f') token += '\f'; | 
|---|
| 404 |         else if(line[i] == 'a') token += '\a'; | 
|---|
| 405 |         else if(line[i] == '?') token += '\?'; | 
|---|
| 406 |         else token += line[i];  // EAT | 
|---|
| 407 |         state = SL_SAFEMODE; | 
|---|
| 408 |         break; | 
|---|
| 409 |  | 
|---|
| 410 |       case SL_COMMENT: | 
|---|
| 411 |         if(line[i] == '\n') | 
|---|
| 412 |         { | 
|---|
| 413 |           /// FINISH | 
|---|
| 414 |           if(token.size() > 0) | 
|---|
| 415 |           { | 
|---|
| 416 |             ret.push_back(token); | 
|---|
| 417 |             token.clear(); | 
|---|
| 418 |           } | 
|---|
| 419 |           state = SL_NORMAL; | 
|---|
| 420 |         } | 
|---|
| 421 |         else | 
|---|
| 422 |         { | 
|---|
| 423 |           token += line[i];       // EAT | 
|---|
| 424 |         } | 
|---|
| 425 |         break; | 
|---|
| 426 |  | 
|---|
| 427 |       default: | 
|---|
| 428 |         // nothing | 
|---|
| 429 |         break; | 
|---|
| 430 |     } | 
|---|
| 431 |     i++; | 
|---|
| 432 |   } | 
|---|
| 433 |  | 
|---|
| 434 |   /// FINISH | 
|---|
| 435 |   if (fallBackNeighbours > 0) | 
|---|
| 436 |     token = token.substr(0, token.size() - fallBackNeighbours); | 
|---|
| 437 |   if(emptyEntries || token.size() > 0) | 
|---|
| 438 |   { | 
|---|
| 439 |     ret.push_back(token); | 
|---|
| 440 |     token.clear(); | 
|---|
| 441 |   } | 
|---|
| 442 |   return(state); | 
|---|
| 443 | } | 
|---|
| 444 |  | 
|---|
| 445 |  | 
|---|
| 446 | /** | 
|---|
| 447 |  * @brief Some nice debug information about this SubString | 
|---|
| 448 |  */ | 
|---|
| 449 | void SubString::debug() const | 
|---|
| 450 | { | 
|---|
| 451 |   printf("Substring-information::count=%d ::", this->strings.size()); | 
|---|
| 452 |   for (unsigned int i = 0; i < this->strings.size(); i++) | 
|---|
| 453 |     printf("s%d='%s'::", i, this->strings[i].c_str()); | 
|---|
| 454 |   printf("\n"); | 
|---|
| 455 | } | 
|---|