38 #ifdef CHECK_MEMORY_LEAKS
40 #endif // CHECK_MEMORY_LEAKS
50 const std::string& defDelim,
51 const std::string& lineDelim,
52 bool prune,
bool ignoreCase)
53 : myLineDelimiter(lineDelim), myAmCaseInsensitive(ignoreCase) {
63 const std::string& defDelim,
64 const std::string& lineDelim,
65 bool prune,
bool ignoreCase) {
89 int pos = (*i).second;
110 int pos = (*i).second;
123 const std::string& delim,
132 std::string next = st.
next();
134 myDefinitionsMap.insert(std::map<std::string, int>::value_type(next, pos++));
144 std::string::size_type idx = str.find_first_not_of(
" ");
145 if (idx != std::string::npos) {
146 str = str.substr(idx);
148 idx = str.find_last_not_of(
" ");
149 if (idx != std::string::npos && idx != str.length() - 1) {
150 str = str.substr(0, idx + 1);
PosMap myDefinitionsMap
The map of column item names to their positions within the table.
std::string get(const std::string &name, bool prune=false) const
Returns the named information.
void reinit(const std::string &def, const std::string &defDelim=";", const std::string &lineDelim=";", bool chomp=false, bool ignoreCase=true)
Reinitialises the parser.
NamedColumnsParser()
Constructor.
bool hasFullDefinition() const
Returns whether the number of named columns matches the actual number.
void checkPrune(std::string &str, bool prune) const
Prunes the given string if it shall be done.
bool know(const std::string &name) const
Returns the information whether the named column is known.
~NamedColumnsParser()
Destructor.
static std::string to_lower_case(std::string str)
Transfers the content to lower case.
StringTokenizer myLineParser
The contents of the current line.
std::string get(int pos) const
void reinitMap(std::string def, const std::string &delim=";", bool chomp=false)
Rebuilds the map of attribute names to their positions in a table.
bool myAmCaseInsensitive
Information whether case insensitive match shall be done.
void parseLine(const std::string &line)
Parses the contents of the line.
std::string myLineDelimiter
The delimiter to split the column items on.