dispatchers.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. ~InputDispatch();
  43. std::string prompt;
  44. size_t max_length;
  45. std::string input;
  46. void activate(void) override;
  47. void deactivate(void) override;
  48. // optional here
  49. void server_line(const std::string &line);
  50. // void server_prompt(const std::string &prompt);
  51. void client_input(const std::string &cinput);
  52. };
  53. class MenuDispatch : public Dispatch {
  54. private:
  55. DispatchSettings ds;
  56. void help(void);
  57. void menubox(void);
  58. size_t max_width;
  59. size_t max_option_width;
  60. bool instant = false;
  61. void calculate_widths(void);
  62. std::string centered(int length, const std::string &);
  63. public:
  64. MenuDispatch(Session *);
  65. ~MenuDispatch();
  66. std::string menu_box_color;
  67. std::string menu_text_color;
  68. std::string menu_title;
  69. std::string menu_options_color;
  70. std::string menu_prompt;
  71. bool lazy = true;
  72. std::map<std::string, std::string> menu;
  73. bool case_sensitive = false;
  74. std::string input;
  75. int choice;
  76. void activate(void) override;
  77. void deactivate(void) override;
  78. // optional here
  79. void server_line(const std::string &line);
  80. // void server_prompt(const std::string &prompt);
  81. void client_input(const std::string &cinput);
  82. };
  83. /**
  84. * The main/first proxy Dispatcher.
  85. *
  86. * Don't follow this as an example. On disable,
  87. * it resets everything back to nothing active.
  88. * (Which is likely not what you want.)
  89. *
  90. */
  91. class MainDispatch : public Dispatch {
  92. private:
  93. InputDispatch id;
  94. MenuDispatch md;
  95. public:
  96. MainDispatch(Session *);
  97. ~MainDispatch();
  98. void activate(void) override;
  99. void deactivate(void) override;
  100. void have_input(void);
  101. void menu_choice(void);
  102. void server_line(const std::string &line);
  103. void server_prompt(const std::string &prompt);
  104. // void client_input(const std::string &input);
  105. private:
  106. int count;
  107. std::string old_prompt;
  108. };
  109. class CoreDispatch : public Dispatch {
  110. public:
  111. CoreDispatch(Session *);
  112. void activate(void) override;
  113. void deactivate(void) override;
  114. // optional here
  115. void server_line(const std::string &line);
  116. void server_prompt(const std::string &prompt);
  117. void client_input(const std::string &input);
  118. };
  119. #include "session.h"
  120. #endif