dispatchers.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. #ifndef DISPATCHERS_H
  2. #define DISPATCHERS_H
  3. #include "session_common.h"
  4. /*
  5. Item of the day:
  6. class Result {
  7. // holds unique_ptr or shared_ptr to the "dispatcher"
  8. // when I'm done -- delete the result, cleaning up
  9. // the dispatcher
  10. }
  11. How does this call another?
  12. How does it return a result?
  13. possibly: io_service::post( DONE ); !
  14. */
  15. class Session;
  16. class Dispatch {
  17. protected:
  18. Session *sess;
  19. notifyFunc notify_;
  20. public:
  21. Dispatch(Session *);
  22. virtual ~Dispatch();
  23. void setNotify(notifyFunc nf);
  24. void notify(void);
  25. virtual void activate(void) = 0;
  26. virtual void deactivate(void) = 0;
  27. const std::string &get_prompt(void);
  28. void to_server(const std::string &send);
  29. void to_client(const std::string &send);
  30. };
  31. class InputDispatch : public Dispatch {
  32. private:
  33. DispatchSettings ds;
  34. public:
  35. InputDispatch(Session *);
  36. std::string prompt;
  37. size_t max_length;
  38. std::string input;
  39. void activate(void) override;
  40. void deactivate(void) override;
  41. // optional here
  42. void server_line(const std::string &line);
  43. // void server_prompt(const std::string &prompt);
  44. void client_input(const std::string &cinput);
  45. };
  46. class MenuDispatch : public Dispatch {
  47. private:
  48. DispatchSettings ds;
  49. public:
  50. MenuDispatch(Session *);
  51. int choice;
  52. void activate(void) override;
  53. void deactivate(void) override;
  54. // optional here
  55. void server_line(const std::string &line);
  56. // void server_prompt(const std::string &prompt);
  57. void client_input(const std::string &cinput);
  58. };
  59. /**
  60. * The main/first proxy Dispatcher.
  61. *
  62. * Don't follow this as an example. On disable,
  63. * it resets everything back to nothing active.
  64. * (Which is likely not what you want.)
  65. *
  66. */
  67. class MainDispatch : public Dispatch {
  68. private:
  69. InputDispatch id;
  70. public:
  71. MainDispatch(Session *);
  72. ~MainDispatch();
  73. void activate(void) override;
  74. void deactivate(void) override;
  75. void have_input(void);
  76. void server_line(const std::string &line);
  77. void server_prompt(const std::string &prompt);
  78. // void client_input(const std::string &input);
  79. private:
  80. int count;
  81. std::string old_prompt;
  82. };
  83. class CoreDispatch : public Dispatch {
  84. public:
  85. CoreDispatch(Session *);
  86. void activate(void) override;
  87. void deactivate(void) override;
  88. // optional here
  89. void server_line(const std::string &line);
  90. void server_prompt(const std::string &prompt);
  91. void client_input(const std::string &input);
  92. };
  93. #include "session.h"
  94. #endif