director.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef DIRECTOR_H
  2. #define DIRECTOR_H
  3. #include <functional>
  4. #include <string>
  5. #include "session.h"
  6. typedef std::function<void(const std::string &)> stringFunc;
  7. struct OldValues {
  8. stringFunc server_line;
  9. stringFunc server_prompt;
  10. stringFunc client_input;
  11. bool to_client;
  12. };
  13. class Director;
  14. // possibly setup a timer to call Dispatch.
  15. class Dispatch {
  16. protected:
  17. OldValues original;
  18. Director &d;
  19. public:
  20. Dispatch(Director &);
  21. virtual void server_line(const std::string &line);
  22. virtual void server_prompt(const std::string &prompt);
  23. virtual void client_input(const std::string &input);
  24. void to_server(const std::string &send);
  25. void to_client(const std::string &send);
  26. };
  27. class Director {
  28. private:
  29. Session &session;
  30. public:
  31. Director(Session &);
  32. void server_line(const std::string &line);
  33. void server_prompt(const std::string &prompt);
  34. void client_input(const std::string &input);
  35. // These would be called by the Dispatch --
  36. // since it has direct access to us.
  37. void to_server(const std::string &send);
  38. void to_client(const std::string &send);
  39. void set_server_line(stringFunc new_sl);
  40. void set_server_prompt(stringFunc new_sp);
  41. void set_client_input(stringFunc new_ci);
  42. OldValues get_state(void); // save state and reset to blanks/nullptr
  43. void restore_state(OldValues);
  44. private:
  45. stringFunc server_line_;
  46. stringFunc server_prompt_;
  47. stringFunc client_input_;
  48. bool to_client_; // Send server input to the client
  49. // bool client_to_server; // WHEN would I ever have the client talking
  50. // directly to the server? [NEVER]
  51. };
  52. #endif