utils.cpp 3.1 KB

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