dispatchers.cpp 1.0 KB

12345678910111213141516171819202122232425262728
  1. #include "dispatchers.h"
  2. #include "logging.h"
  3. Dispatch::Dispatch(Director &dir) : d{dir} {};
  4. // virtuals
  5. /*
  6. void Dispatch::server_line(const std::string &line){};
  7. void Dispatch::server_prompt(const std::string &prompt){};
  8. void Dispatch::client_input(const std::string &input){};
  9. */
  10. void Dispatch::to_server(const std::string &send) { d.to_server(send); }
  11. void Dispatch::to_client(const std::string &send) { d.to_client(send); }
  12. const std::string &Dispatch::get_prompt(void) { return d.get_prompt(); }
  13. CoreDispatch::CoreDispatch(Director &d) : Dispatch{d} {
  14. d.set_server_line( [this](const std::string &s){ server_line(s); } );
  15. d.set_server_prompt( [this](const std::string &s){ server_prompt(s); } );
  16. d.set_client_input( [this](const std::string &s){ client_input(s); } );
  17. }
  18. void CoreDispatch::server_line(const std::string &line) {}
  19. void CoreDispatch::server_prompt(const std::string &prompt) {}
  20. void CoreDispatch::client_input(const std::string &input) {
  21. BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
  22. }