director.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. const std::string & get_prompt(void);
  25. void to_server(const std::string &send);
  26. void to_client(const std::string &send);
  27. };
  28. class Director {
  29. private:
  30. Session &session;
  31. public:
  32. Director(Session &);
  33. void server_line(const std::string &line);
  34. void server_prompt(const std::string &prompt);
  35. void client_input(const std::string &input);
  36. // These would be called by the Dispatch --
  37. // since it has direct access to us.
  38. void to_server(const std::string &send);
  39. void to_client(const std::string &send);
  40. const std::string& get_prompt(void);
  41. void set_server_line(stringFunc new_sl);
  42. void set_server_prompt(stringFunc new_sp);
  43. void set_client_input(stringFunc new_ci);
  44. OldValues get_state(void); // save state and reset to blanks/nullptr
  45. void restore_state(OldValues);
  46. private:
  47. stringFunc server_line_;
  48. stringFunc server_prompt_;
  49. stringFunc client_input_;
  50. bool to_client_; // Send server input to the client
  51. // bool client_to_server; // WHEN would I ever have the client talking
  52. // directly to the server? [NEVER]
  53. };
  54. #endif