galaxy.cpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. #include "galaxy.h"
  2. #include <boost/format.hpp>
  3. #include <ostream>
  4. #include <string>
  5. bool buysell::operator==(const buysell &rhs) const {
  6. return ((foe[0] == rhs.foe[0]) && (foe[1] == rhs.foe[1]) &&
  7. (foe[2] == rhs.foe[2]));
  8. }
  9. std::ostream &operator<<(std::ostream &os, const buysell &bs) {
  10. os << bs.foe[0] << bs.foe[1] << bs.foe[2];
  11. return os;
  12. }
  13. bool buysell_text::operator==(const buysell_text &rhs) const {
  14. return ((txt[0] == rhs.txt[0]) && (txt[1] == rhs.txt[1]) &&
  15. (txt[2] == rhs.txt[2]));
  16. }
  17. std::ostream &operator<<(std::ostream &os, const buysell_text &bst) {
  18. os << '"' << bst.txt[0] << bst.txt[1] << bst.txt[2] << '"';
  19. return os;
  20. }
  21. std::ostream &operator<<(std::ostream &os, const port &p) {
  22. if (p.type == 0) {
  23. os << p.sector << ": " << (int)p.type;
  24. } else {
  25. os << p.sector << ": " << (int)p.type << " " << text_from_type(p.type)
  26. << " " << p.amount[0] << "," << p.amount[1] << "," << p.amount[2];
  27. }
  28. return os;
  29. }
  30. sector_warps::sector_warps() {
  31. sector = 0;
  32. for (int x = 0; x < MAX_WARPS; ++x)
  33. warps[x] = 0;
  34. }
  35. void sector_warps::add(sector_type new_sector) {
  36. for (int x = 0; x < MAX_WARPS; ++x) {
  37. if (warps[x] == new_sector)
  38. return;
  39. if (warps[x] == 0) {
  40. warps[x] = new_sector;
  41. return;
  42. }
  43. }
  44. std::string message = str(boost::format("More then MAX %1% sectors for %2%") %
  45. MAX_WARPS % (int)sector);
  46. throw std::out_of_range(message);
  47. }
  48. std::ostream& operator<<(std::ostream& os, const sector_warps& warps) {
  49. os << "Sector: " << warps.sector << " ";
  50. for (int x = 0; x < MAX_WARPS; ++x) {
  51. if (warps.warps[x] != 0) {
  52. if (x != 0)
  53. os << ",";
  54. os << warps.warps[x];
  55. }
  56. }
  57. return os;
  58. }
  59. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  60. // #define GTEST_DEBUG
  61. struct port parse_portcim(const std::string line) {
  62. struct port p;
  63. p.sector = std::stoi(line);
  64. // 20 - 1708 97% - 710 56% 287 15%
  65. static std::regex portrx(
  66. "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
  67. "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
  68. std::regex_constants::ECMAScript);
  69. // does it not understand {3} ??
  70. // NO, it does not, from regex101.com:
  71. // A repeated capturing group will only capture the last iteration. Put a
  72. // capturing group around the repeated group to capture all iterations or use
  73. // a non-capturing group instead if you're not interested in the data
  74. //
  75. // static std::regex portrx("[ ]*([0-9]+)( (.)[ ]+([0-9]+)[ ]+([0-9]+%)){3}[
  76. // ]*",
  77. // std::regex_constants::ECMAScript);
  78. // sector + amount pct + amount pct + amount pct
  79. // 1 2 3 4 5 6 7 8 9 10
  80. #ifdef GTEST_DEBUG
  81. GTEST_COUT << "Sector: " << p.sector << std::endl;
  82. GTEST_COUT << "Line: [" << line << "]" << std::endl;
  83. #endif
  84. buysell port_buysell;
  85. std::smatch matches;
  86. if (std::regex_match(line, matches, portrx)) {
  87. #ifdef GTEST_DEBUG
  88. for (size_t x = 1; x < matches.size(); ++x) {
  89. GTEST_COUT << x << " : " << matches[x] << std::endl;
  90. }
  91. #endif
  92. if (matches.size() != 11) {
  93. #ifdef GTEST_DEBUG
  94. GTEST_COUT << "Now you have 101 problems." << std::endl;
  95. #endif
  96. p.sector = 0;
  97. p.type = 0;
  98. return p;
  99. }
  100. // GTEST_COUT << "matches: " << matches.size() << std::endl;
  101. p.sector = stoi(matches[1]);
  102. // GTEST_COUT << "sector: " << matches[1] << std::endl;
  103. // for (int x = 1; x < 11; ++x) {
  104. // GTEST_COUT << x << " : " << matches[x] << std::endl;
  105. // }
  106. for (int x = 0; x < 3; ++x) {
  107. int pos = x * 3;
  108. port_buysell.foe[x] = matches[pos + 2] == "-";
  109. p.amount[x] = stoi(matches[pos + 3]);
  110. p.percent[x] = stoi(matches[pos + 4]);
  111. }
  112. p.type = type_from_buysell(port_buysell);
  113. #ifdef GTEST_DEBUG
  114. GTEST_COUT << "port is type " << (int)p.type << std::endl;
  115. #endif
  116. return p;
  117. } else {
  118. #ifdef GTEST_DEBUG
  119. GTEST_COUT << "regex_match failed." << std::endl;
  120. #endif
  121. p.type = 0;
  122. p.sector = 0;
  123. return p;
  124. }
  125. }