【发布时间】:2014-07-13 07:20:59
【问题描述】:
只是为了好玩(谁知道我以后可能会使用它),我用 C++ 编写了一个配置文件解析器。它似乎并不困难,并且在我编写它时看不到任何问题。但是,当我对其进行测试时,配置解析器没有捕获任何内容。我已经通过代码三遍了。谁能告诉我这个问题?
#include <istream> // for std::basic_stream<char> (aka std::string)
#include <string> // for std::basic_string<char> (aka std::string)
#include <map> // for std::map<t, t>
#include <cctype> // for character type testing, c style
std::map<std::string, std::string> configParser(std::istream &stream, const char &comment, const char &seperator) {
std::map<std::string, std::string> options; // to hold key, value pairs
std::string key, value; // so options[key] = value
bool seperatorFound; // for differentiating between key and value
while(stream) { // operate on the stream while its good
char current = stream.get(); // current will hold the next character returned from the stream
if(current == '\n') { // current is a newline
options[key] = value; // add the key, value pair as an option found
key = ""; // reset key
value = ""; // reset value
seperatorFound = false; // reset seperatorFound
continue; // jump back up to the top
}
else if(isspace(current)) { // current is one of: \r, \t, [SPACE]
continue; // eat the white space and jump back up to the top
}
else if(current == comment) { // current is a comment marker
getline(stream, key, '\n'); // eat the rest of the line. i use key since its alreay there
// no since in creating a string object to eat a line
key = ""; // reset key
continue; // jump back up to the top
}
else if(current == seperator) { // current is a seperator marker
seperatorFound = true; // update the seperator state
continue; // jump back up to the top
}
else { // current must be a symbol
if(!seperatorFound) { // haven't found the seperator yet. as a result, must be a key
key += current; // give key the next letter
continue; // jump back up to the top
}
// otherwise, it must be a value
value += current; // give value the next letter instead.
}
}
return options;
}
#include <iostream>
#include <sstream>
int main() {
std::map<std::string, std::string> options;
std::string line;
while(true) {
getline(std::cin, line);
std::istringstream stream(line);
options = configParser(stream, '#', ':');
for(auto iterator = options.begin(); iterator != options.end(); iterator++) {
std::cout<< iterator->first <<" : "<< iterator->second << std::endl;
}
std::cout<< std::endl << std::endl;
}
}
【问题讨论】:
-
科林发现了错误,我想;但通常只是做一些调试,以一种或另一种方式来查找错误。即使是简单的 printf 调试也会有所帮助。