dispatchers.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. /*
  32. * Some options for input:
  33. *
  34. * numeric only
  35. *
  36. */
  37. class InputDispatch : public Dispatch {
  38. private:
  39. DispatchSettings ds;
  40. public:
  41. InputDispatch(Session *);
  42. std::string prompt;
  43. size_t max_length;
  44. std::string input;
  45. void activate(void) override;
  46. void deactivate(void) override;
  47. // optional here
  48. void server_line(const std::string &line);
  49. // void server_prompt(const std::string &prompt);
  50. void client_input(const std::string &cinput);
  51. };
  52. class MenuDispatch : public Dispatch {
  53. private:
  54. DispatchSettings ds;
  55. public:
  56. MenuDispatch(Session *);
  57. int choice;
  58. void activate(void) override;
  59. void deactivate(void) override;
  60. // optional here
  61. void server_line(const std::string &line);
  62. // void server_prompt(const std::string &prompt);
  63. void client_input(const std::string &cinput);
  64. };
  65. /**
  66. * The main/first proxy Dispatcher.
  67. *
  68. * Don't follow this as an example. On disable,
  69. * it resets everything back to nothing active.
  70. * (Which is likely not what you want.)
  71. *
  72. */
  73. class MainDispatch : public Dispatch {
  74. private:
  75. InputDispatch id;
  76. public:
  77. MainDispatch(Session *);
  78. ~MainDispatch();
  79. void activate(void) override;
  80. void deactivate(void) override;
  81. void have_input(void);
  82. void server_line(const std::string &line);
  83. void server_prompt(const std::string &prompt);
  84. // void client_input(const std::string &input);
  85. private:
  86. int count;
  87. std::string old_prompt;
  88. };
  89. class CoreDispatch : public Dispatch {
  90. public:
  91. CoreDispatch(Session *);
  92. void activate(void) override;
  93. void deactivate(void) override;
  94. // optional here
  95. void server_line(const std::string &line);
  96. void server_prompt(const std::string &prompt);
  97. void client_input(const std::string &input);
  98. };
  99. #include "session.h"
  100. #endif