config.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #include "config.h"
  2. #include <fstream>
  3. #include <iostream>
  4. // just in case if I need it.
  5. void string_trim(std::string &value) {
  6. while (*value.begin() == ' ')
  7. value.erase(value.begin());
  8. while (*(value.end() - 1) == ' ')
  9. value.erase(value.end() - 1);
  10. }
  11. /*
  12. #include <algorithm>
  13. void string_toupper(std::string &str) {
  14. std::transform(str.begin(), str.end(),str.begin(), ::toupper);
  15. }
  16. */
  17. std::map<std::string, std::string> yaml_parse(std::string filename) {
  18. std::map<std::string, std::string> results;
  19. std::string line;
  20. std::ifstream file(filename);
  21. if (!file.is_open())
  22. return results;
  23. while (std::getline(file, line)) {
  24. if (line.empty())
  25. continue;
  26. if (line[0] == '#' || line[0] == ';' || line[0] == ':' || line[0] == '%' ||
  27. line[0] == '-')
  28. continue;
  29. // We're going for YAML-like here
  30. // # comment
  31. // ; comment
  32. // KEY: value
  33. // KEY: "value is in here"
  34. size_t pos = line.find(": ");
  35. if (pos != std::string::npos) {
  36. // Ok, we found something
  37. std::string key = line.substr(0, pos);
  38. std::string value = line.substr(pos + 2);
  39. if (value[0] == '"' && value[value.size() - 1] == '"') {
  40. value = value.substr(1, value.size() - 2);
  41. }
  42. // std::cout << "KEY[" << key << "] : (" << value << ")" << std::endl;
  43. results[key] = value;
  44. }
  45. }
  46. return results;
  47. }