Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/util/substring.cc @ 9316

Last change on this file since 9316 was 9316, checked in by bensch, 18 years ago

faster substring

File size: 13.0 KB
Line 
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 */
33SubString::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 */
42SubString::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 */
57SubString::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 */
69SubString::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 */
82SubString::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 */
93SubString::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 */
102SubString::~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 */
108const std::string SubString::WhiteSpaces = " \n\t";
109/** @brief Helper that gets you a String consisting of all WhiteSpaces and the Comma */
110const 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 */
117SubString& 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 */
129bool 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 */
139bool 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 */
149bool 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 */
166SubString 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 */
177SubString& 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 */
190unsigned 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 */
211unsigned 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 */
226std::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 */
251SubString SubString::getSubSet(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 */
266SubString SubString::getSubSet(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 *
292 */
293SubString::SPLIT_LINE_STATE
294SubString::splitLine(std::vector<std::string>& ret,
295                     const std::string& line,
296                     const std::string& delimiters,
297                     const std::string& delimiterNeighbours,
298                     bool emptyEntries,
299                     char escape_char,
300                     char safemode_char,
301                     char comment_char,
302                     SPLIT_LINE_STATE start_state)
303{
304  SPLIT_LINE_STATE state = start_state;
305  unsigned int i = 0;
306  unsigned int fallBackNeighbours = 0;
307
308  std::string token;
309
310  if(start_state != SL_NORMAL && ret.size() > 0)
311  {
312    token = ret[ret.size()-1];
313    ret.pop_back();
314  }
315
316  while(i < line.size())
317  {
318    switch(state)
319    {
320      case SL_NORMAL:
321        if(line[i] == escape_char)
322        {
323          state = SL_ESCAPE;
324        }
325        else if(line[i] == safemode_char)
326        {
327          state = SL_SAFEMODE;
328        }
329        else if(line[i] == comment_char)
330        {
331          if (fallBackNeighbours > 0)
332            token = token.substr(0, token.size() - fallBackNeighbours);
333          /// FINISH
334          if(emptyEntries || token.size() > 0)
335          {
336            ret.push_back(token);
337            token.clear();
338          }
339          token += line[i];       // EAT
340          state = SL_COMMENT;
341        }
342        else if(delimiters.find(line[i]) != std::string::npos)
343        {
344          // line[i] is a delimiter
345          if (fallBackNeighbours > 0)
346            token = token.substr(0, token.size() - fallBackNeighbours);
347          /// FINISH
348          if(emptyEntries || token.size() > 0)
349          {
350            ret.push_back(token);
351            token.clear();
352          }
353          state = SL_NORMAL;
354        }
355        else
356        {
357          if (delimiterNeighbours.find(line[i]) != std::string::npos)
358          {
359            if (token.size() > 0)
360              ++fallBackNeighbours;
361            else
362            {
363              i++;
364              continue;
365            }
366          }
367          else
368            fallBackNeighbours = 0;
369          token += line[i];       // EAT
370        }
371        break;
372      case SL_ESCAPE:
373        if(line[i] == 'n') token += '\n';
374        else if(line[i] == 't') token += '\t';
375        else if(line[i] == 'v') token += '\v';
376        else if(line[i] == 'b') token += '\b';
377        else if(line[i] == 'r') token += '\r';
378        else if(line[i] == 'f') token += '\f';
379        else if(line[i] == 'a') token += '\a';
380        else if(line[i] == '?') token += '\?';
381        else token += line[i];  // EAT
382        state = SL_NORMAL;
383        break;
384      case SL_SAFEMODE:
385        if(line[i] == safemode_char)
386        {
387          state = SL_NORMAL;
388        }
389        else if(line[i] == escape_char)
390        {
391          state = SL_SAFEESCAPE;
392        }
393        else
394        {
395          token += line[i];       // EAT
396        }
397        break;
398
399      case SL_SAFEESCAPE:
400        if(line[i] == 'n') token += '\n';
401        else if(line[i] == 't') token += '\t';
402        else if(line[i] == 'v') token += '\v';
403        else if(line[i] == 'b') token += '\b';
404        else if(line[i] == 'r') token += '\r';
405        else if(line[i] == 'f') token += '\f';
406        else if(line[i] == 'a') token += '\a';
407        else if(line[i] == '?') token += '\?';
408        else token += line[i];  // EAT
409        state = SL_SAFEMODE;
410        break;
411
412      case SL_COMMENT:
413        if(line[i] == '\n')
414        {
415          /// FINISH
416          if(token.size() > 0)
417          {
418            ret.push_back(token);
419            token.clear();
420          }
421          state = SL_NORMAL;
422        }
423        else
424        {
425          token += line[i];       // EAT
426        }
427        break;
428
429      default:
430        // nothing
431        break;
432    }
433    i++;
434  }
435
436  /// FINISH
437  if (fallBackNeighbours > 0)
438    token = token.substr(0, token.size() - fallBackNeighbours);
439  if(emptyEntries || token.size() > 0)
440  {
441    ret.push_back(token);
442    token.clear();
443  }
444  return(state);
445}
446
447
448/**
449 * @brief Some nice debug information about this SubString
450 */
451void SubString::debug() const
452{
453  printf("Substring-information::count=%d ::", this->strings.size());
454  for (unsigned int i = 0; i < this->strings.size(); i++)
455    printf("s%d='%s'::", i, this->strings[i].c_str());
456  printf("\n");
457}
Note: See TracBrowser for help on using the repository browser.