dispatchers.cpp 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #include <boost/format.hpp>
  2. #include "dispatchers.h"
  3. #include "logging.h"
  4. Dispatch::Dispatch(Session *s) : sess{s} {};
  5. Dispatch::~Dispatch(){};
  6. void Dispatch::to_server(const std::string &send) { sess->to_server(send); }
  7. void Dispatch::to_client(const std::string &send) { sess->to_client(send); }
  8. const std::string &Dispatch::get_prompt(void) { return sess->get_prompt(); }
  9. void Dispatch::setNotify(notifyFunc nf) { notify_ = nf; }
  10. void Dispatch::notify(void) {
  11. if (notify_) {
  12. sess->post(notify_);
  13. notify_ = nullptr;
  14. }
  15. }
  16. MainDispatch::MainDispatch(Session *s) : Dispatch{s} {
  17. BUGZ_LOG(warning) << "MainDispatch()";
  18. }
  19. void MainDispatch::activate(void) {
  20. // how to set this event to our method?
  21. sess->emit_server_line = [this](const std::string &s) { server_line(s); };
  22. sess->emit_server_prompt = [this](const std::string &s) { server_prompt(s); };
  23. sess->emit_client_input = [this](const std::string &s) { client_input(s); };
  24. sess->show_client = false; // don not auto-send server to client
  25. sess->talk_direct = false; // do not auto-send client to server
  26. count = 0;
  27. old_prompt = sess->get_prompt();
  28. to_client("\n\r\x1b[1;34mWELCOME! You are now in the proxy zone...\n\r");
  29. }
  30. void MainDispatch::deactivate(void) {
  31. // Since we're the main thing there --
  32. sess->emit_server_line = nullptr;
  33. sess->emit_server_prompt = nullptr;
  34. sess->emit_client_input = nullptr;
  35. sess->show_client = true;
  36. sess->talk_direct = true;
  37. sess->set_prompt(old_prompt);
  38. notify();
  39. }
  40. void MainDispatch::server_line(const std::string &line) {
  41. BUGZ_LOG(info) << "MDSL: " << line;
  42. to_client("SL: ");
  43. to_client(line);
  44. to_client("\n\r");
  45. }
  46. void MainDispatch::server_prompt(const std::string &prompt) {
  47. BUGZ_LOG(info) << "MDSP: " << prompt;
  48. }
  49. void MainDispatch::client_input(const std::string &input) {
  50. // I don't care what the old prompt looked liked at this point.
  51. BUGZ_LOG(warning) << "Got: " << input; // << " prompt=" << get_prompt();
  52. // Serious problem when the input = "\x1b" ESC. The output gets gummed/locked
  53. // up.
  54. if (input == "\x1b") {
  55. return;
  56. }
  57. ++count;
  58. std::string output = str(boost::format("MSG %1%: [%2%]\n\r") % count % input);
  59. to_client(output);
  60. if (count >= 5) {
  61. to_client("And we're outta here!\n\r");
  62. deactivate();
  63. }
  64. }
  65. CoreDispatch::CoreDispatch(Session *s) : Dispatch{s} {
  66. BUGZ_LOG(warning) << "CoreDispatch()";
  67. }
  68. void CoreDispatch::server_line(const std::string &line) {}
  69. void CoreDispatch::server_prompt(const std::string &prompt) {}
  70. void CoreDispatch::client_input(const std::string &input) {
  71. BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
  72. }