utils.cpp 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #include "utils.h"
  2. #include <regex>
  3. #include <string>
  4. #include <vector>
  5. /**
  6. * Clean up the trailing ../ in __FILE__
  7. *
  8. * This is used by the logging macro.
  9. *
  10. * @param filepath
  11. * @return const char*
  12. */
  13. const char *trim_path(const char *filepath) {
  14. if (strncmp(filepath, "../", 3) == 0) {
  15. filepath += 3;
  16. }
  17. return filepath;
  18. }
  19. #include <fstream>
  20. bool file_exists(const std::string &name) {
  21. std::ifstream f(name.c_str());
  22. return f.good();
  23. }
  24. bool replace(std::string &str, const std::string &from, const std::string &to) {
  25. size_t start_pos = str.find(from);
  26. if (start_pos == std::string::npos) return false;
  27. do {
  28. str.replace(start_pos, from.length(), to);
  29. } while ((start_pos = str.find(from)) != std::string::npos);
  30. return true;
  31. }
  32. bool replace(std::string &str, const char *from, const char *to) {
  33. size_t start_pos = str.find(from);
  34. if (start_pos == std::string::npos) return false;
  35. do {
  36. str.replace(start_pos, strlen(from), to);
  37. } while ((start_pos = str.find(from)) != std::string::npos);
  38. return true;
  39. }
  40. void ansi_clean(std::string &str) {
  41. static std::regex ansi_cleaner("\x1b\[[0-9;]*[A-Zmh]",
  42. std::regex_constants::ECMAScript);
  43. str = std::regex_replace(str, ansi_cleaner, "");
  44. }
  45. void high_ascii(std::string &str) {
  46. // the + replaces all of them into one. I want each high ascii replaced with
  47. // #.
  48. static std::regex high_cleaner("[\x80-\xff]",
  49. std::regex_constants::ECMAScript);
  50. str = std::regex_replace(str, high_cleaner, "#");
  51. }
  52. std::smatch ansi_newline(const std::string &str) {
  53. static std::regex ansi_nl("\x1b\[[0-9;]*[JK]",
  54. std::regex_constants::ECMAScript);
  55. std::smatch m;
  56. std::regex_search(str, m, ansi_nl);
  57. return m;
  58. }
  59. std::string repr(const std::string &source) {
  60. std::string output = source;
  61. replace(output, "\n", "\\n");
  62. replace(output, "\r", "\\r");
  63. replace(output, "\b", "\\b");
  64. replace(output, "\x1b", "\\[");
  65. high_ascii(output);
  66. return output;
  67. }
  68. std::string clean_string(const std::string &source) {
  69. std::string clean = source;
  70. /*
  71. replace(clean, "\n", "\\n");
  72. replace(clean, "\r", "\\r");
  73. replace(clean, "\b", "\\b");
  74. replace(clean, "\x1b", "\\[");
  75. */
  76. replace(clean, "\n", "");
  77. replace(clean, "\r", "");
  78. // ANSI too
  79. ansi_clean(clean);
  80. // BUGZ_LOG(error) << "cleaned: " << clean;
  81. high_ascii(clean);
  82. // replace(clean, "\x1b", "^");
  83. return clean;
  84. }
  85. std::vector<std::string> split(const std::string &line) {
  86. static std::regex rx_split("[^\\s]+");
  87. std::vector<std::string> results;
  88. for (auto it = std::sregex_iterator(line.begin(), line.end(), rx_split);
  89. it != std::sregex_iterator(); ++it) {
  90. results.push_back(it->str());
  91. }
  92. return results;
  93. }
  94. std::vector<std::string> split(const std::string &line, const std::string &by) {
  95. std::string work = line;
  96. std::vector<std::string> results;
  97. size_t pos;
  98. while ( (pos = work.find(by) ) != std::string::npos ) {
  99. results.push_back(work.substr(0, pos));
  100. work.erase(0, pos + by.length());
  101. }
  102. if (!work.empty())
  103. results.push_back(work);
  104. return results;
  105. }
  106. bool in(const std::string &line, const std::string &has) {
  107. return (line.find(has) != std::string::npos);
  108. }
  109. bool startswith(const std::string &line, const std::string &has) {
  110. return (line.substr(0, has.length()) == has);
  111. }
  112. bool endswith(const std::string &line, const std::string &has) {
  113. if (line.length() < has.length()) return false;
  114. return (line.substr(line.length() - has.length()) == has);
  115. }
  116. void trim(std::string &str) {
  117. while (str.substr(0,1) == " ")
  118. str.erase(0, 1);
  119. while (str.substr(str.length() -1) == " ")
  120. str.erase(str.length() -1);
  121. }