galaxy.cpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #include "galaxy.h"
  2. #include <ostream>
  3. bool buysell::operator==(const buysell &rhs) const {
  4. return ((foe[0] == rhs.foe[0]) && (foe[1] == rhs.foe[1]) &&
  5. (foe[2] == rhs.foe[2]));
  6. }
  7. std::ostream &operator<<(std::ostream &os, const buysell &bs) {
  8. os << bs.foe[0] << bs.foe[1] << bs.foe[2];
  9. return os;
  10. }
  11. bool buysell_text::operator==(const buysell_text &rhs) const {
  12. return ((txt[0] == rhs.txt[0]) && (txt[1] == rhs.txt[1]) &&
  13. (txt[2] == rhs.txt[2]));
  14. }
  15. std::ostream &operator<<(std::ostream &os, const buysell_text &bst) {
  16. os << '"' << bst.txt[0] << bst.txt[1] << bst.txt[2] << '"';
  17. return os;
  18. }
  19. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  20. struct port parse_portcim(const std::string line) {
  21. struct port p;
  22. p.sector = std::stoi(line);
  23. // 20 - 1708 97% - 710 56% 287 15%
  24. static std::regex portrx(
  25. "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
  26. "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
  27. std::regex_constants::ECMAScript);
  28. // does it not understand {3} ??
  29. // NO, it does not, from regex101.com:
  30. // A repeated capturing group will only capture the last iteration. Put a
  31. // capturing group around the repeated group to capture all iterations or use
  32. // a non-capturing group instead if you're not interested in the data
  33. //
  34. // static std::regex portrx("[ ]*([0-9]+)( (.)[ ]+([0-9]+)[ ]+([0-9]+%)){3}[
  35. // ]*",
  36. // std::regex_constants::ECMAScript);
  37. // sector + amount pct + amount pct + amount pct
  38. // 1 2 3 4 5 6 7 8 9 10
  39. // GTEST_COUT << "Sector: " << p.sector << std::endl;
  40. // GTEST_COUT << "Line: [" << line << "]" << std::endl;
  41. buysell port_buysell;
  42. std::smatch matches;
  43. if (std::regex_match(line, matches, portrx)) {
  44. /*
  45. for (size_t x = 1; x < matches.size(); ++x) {
  46. GTEST_COUT << x << " : " << matches[x] << std::endl;
  47. }
  48. */
  49. if (matches.size() != 11) {
  50. // GTEST_COUT << "Now you have 101 problems." << std::endl;
  51. p.sector = 0;
  52. p.type = 0;
  53. return p;
  54. }
  55. // GTEST_COUT << "matches: " << matches.size() << std::endl;
  56. p.sector = stoi(matches[1]);
  57. // GTEST_COUT << "sector: " << matches[1] << std::endl;
  58. // for (int x = 1; x < 11; ++x) {
  59. // GTEST_COUT << x << " : " << matches[x] << std::endl;
  60. // }
  61. for (int x = 0; x < 3; ++x) {
  62. int pos = x * 3;
  63. port_buysell.foe[x] = matches[pos + 2] == "-";
  64. p.amount[x] = stoi(matches[pos + 3]);
  65. p.percent[x] = stoi(matches[pos + 4]);
  66. }
  67. p.type = type_from_buysell(port_buysell);
  68. // GTEST_COUT << "port is type " << (int)p.type << std::endl;
  69. return p;
  70. } else {
  71. // GTEST_COUT << "regex_match failed." << std::endl;
  72. p.type = 0;
  73. p.sector = 0;
  74. return p;
  75. }
  76. }