|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 2011 |
STL Include files. More...
#include <Tokenizer.h>

Classes | |
| class | Token |
| Definition of the sub-class Token. More... | |
Public Types | |
| typedef Token | Item |
| typedef std::vector< Token > | Items |
Public Member Functions | |
| Tokenizer () | |
| Standard (dummy) constructor. | |
| Tokenizer (bool resolve) | |
| Initializing constructor. | |
| virtual | ~Tokenizer () |
| Standard destructor. | |
| void | analyse (const std::string &s, const char *delim, const char *tagBegin, const char *tagEnd, const char *eq, const char *valBegin, const char *valEnd) |
| Analyse tokens from string. | |
| void | analyse (const std::string &s, const char *delim, const char *tag, const char *eq, const char *val) |
| Analyse tokens from string. | |
| void | analyse (const std::string &s, const char *delim, const char *eq, const char *val) |
| Analyse tokens from string. | |
| void | analyse (const std::string &s, const char *delim=" ", const char *eq="=") |
| Analyse tokens from string. | |
| Items & | items () |
| Access token collection. | |
| const Items & | items () const |
| Access token collection (CONST). | |
Protected Attributes | |
| Items | m_tokens |
| Assigned tokens within string. | |
| bool | m_resolve |
| Flag to resolve environment. | |
STL Include files.
definition of class Tokenizer
Definition at line 24 of file Tokenizer.h.
| typedef Token Tokenizer::Item |
Definition at line 68 of file Tokenizer.h.
| typedef std::vector<Token> Tokenizer::Items |
Definition at line 69 of file Tokenizer.h.
| Tokenizer::Tokenizer | ( | ) | [inline] |
Standard (dummy) constructor.
Definition at line 77 of file Tokenizer.h.
00077 : m_resolve(false) {}
| Tokenizer::Tokenizer | ( | bool | resolve | ) | [inline] |
| virtual Tokenizer::~Tokenizer | ( | ) | [inline, virtual] |
| void Tokenizer::analyse | ( | const std::string & | s, | |
| const char * | delim = " ", |
|||
| const char * | eq = "=" | |||
| ) | [inline] |
Analyse tokens from string.
Definition at line 95 of file Tokenizer.h.
| void Tokenizer::analyse | ( | const std::string & | s, | |
| const char * | delim, | |||
| const char * | eq, | |||
| const char * | val | |||
| ) | [inline] |
Analyse tokens from string.
Definition at line 91 of file Tokenizer.h.
| void Tokenizer::analyse | ( | const std::string & | s, | |
| const char * | delim, | |||
| const char * | tag, | |||
| const char * | eq, | |||
| const char * | val | |||
| ) | [inline] |
Analyse tokens from string.
Definition at line 87 of file Tokenizer.h.
| void Tokenizer::analyse | ( | const std::string & | s, | |
| const char * | delim, | |||
| const char * | tagBegin, | |||
| const char * | tagEnd, | |||
| const char * | eq, | |||
| const char * | valBegin, | |||
| const char * | valEnd | |||
| ) |
Analyse tokens from string.
Definition at line 37 of file Tokenizer.cpp.
00037 { 00038 m_tokens.clear(); 00039 if ( valEnd == 0 ) valEnd = valBegin; 00040 long start = 0; 00041 Token tok; 00042 do { 00043 tok.make(s, start, delim, tagBegin, tagEnd, eq, valBegin, valEnd); 00044 if ( tok.length() > 0 ) { 00045 start += tok.length(); 00046 m_tokens.push_back(tok); 00047 } 00048 else { 00049 start += s.length(); 00050 } 00051 } while ( start < long(s.length()) ); 00052 if ( m_resolve ) { 00053 for(Items::iterator i=m_tokens.begin(); i != m_tokens.end(); ++i) { 00054 (*i).resolveValue(); 00055 } 00056 } 00057 }
| const Items& Tokenizer::items | ( | ) | const [inline] |
Access token collection (CONST).
Definition at line 103 of file Tokenizer.h.
00103 { 00104 return m_tokens; 00105 }
| Items& Tokenizer::items | ( | ) | [inline] |
Access token collection.
Definition at line 99 of file Tokenizer.h.
00099 { 00100 return m_tokens; 00101 }
bool Tokenizer::m_resolve [protected] |
Flag to resolve environment.
Definition at line 74 of file Tokenizer.h.
Items Tokenizer::m_tokens [protected] |
Assigned tokens within string.
Definition at line 72 of file Tokenizer.h.