dispatchers.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. #ifndef DISPATCHERS_H
  2. #define DISPATCHERS_H
  3. #include <map>
  4. #include <string>
  5. #include "session_common.h"
  6. /*
  7. Item of the day:
  8. class Result {
  9. // holds unique_ptr or shared_ptr to the "dispatcher"
  10. // when I'm done -- delete the result, cleaning up
  11. // the dispatcher
  12. }
  13. How does this call another?
  14. How does it return a result?
  15. possibly: io_service::post( DONE ); !
  16. */
  17. class Session;
  18. class Dispatch {
  19. protected:
  20. Session *sess;
  21. notifyFunc notify_;
  22. public:
  23. Dispatch(Session *);
  24. virtual ~Dispatch();
  25. void setNotify(notifyFunc nf);
  26. void notify(void);
  27. virtual void activate(void) = 0;
  28. virtual void deactivate(void) = 0;
  29. const std::string &get_prompt(void);
  30. void to_server(const std::string &send);
  31. void to_client(const std::string &send);
  32. };
  33. /*
  34. * Some options for input:
  35. *
  36. * numeric only
  37. *
  38. */
  39. class InputDispatch : public Dispatch {
  40. private:
  41. DispatchSettings ds;
  42. public:
  43. InputDispatch(Session *);
  44. ~InputDispatch();
  45. std::string prompt;
  46. size_t max_length;
  47. std::string input;
  48. void activate(void) override;
  49. void deactivate(void) override;
  50. // optional here
  51. void server_line(const std::string &line);
  52. // void server_prompt(const std::string &prompt);
  53. void client_input(const std::string &cinput);
  54. };
  55. class MenuDispatch : public Dispatch {
  56. private:
  57. DispatchSettings ds;
  58. void help(void);
  59. void menubox(void);
  60. size_t max_width;
  61. size_t max_option_width;
  62. bool instant = false;
  63. void calculate_widths(void);
  64. std::string centered(int length, const std::string &);
  65. public:
  66. MenuDispatch(Session *);
  67. ~MenuDispatch();
  68. std::string menu_box_color;
  69. std::string menu_text_color;
  70. std::string menu_title;
  71. std::string menu_options_color;
  72. std::string menu_prompt;
  73. bool lazy = true;
  74. std::map<std::string, std::string> menu;
  75. bool case_sensitive = false;
  76. std::string input;
  77. int choice;
  78. void activate(void) override;
  79. void deactivate(void) override;
  80. // optional here
  81. void server_line(const std::string &line);
  82. // void server_prompt(const std::string &prompt);
  83. void client_input(const std::string &cinput);
  84. };
  85. /**
  86. * The main/first proxy Dispatcher.
  87. *
  88. * Don't follow this as an example. On disable,
  89. * it resets everything back to nothing active.
  90. * (Which is likely not what you want.)
  91. *
  92. */
  93. class MainDispatch : public Dispatch {
  94. private:
  95. InputDispatch id;
  96. MenuDispatch md;
  97. public:
  98. MainDispatch(Session *);
  99. ~MainDispatch();
  100. void activate(void) override;
  101. void deactivate(void) override;
  102. void have_input(void);
  103. void menu_choice(void);
  104. void server_line(const std::string &line);
  105. void server_prompt(const std::string &prompt);
  106. // void client_input(const std::string &input);
  107. private:
  108. int count;
  109. std::string old_prompt;
  110. };
  111. class CoreDispatch : public Dispatch {
  112. public:
  113. CoreDispatch(Session *);
  114. void activate(void) override;
  115. void deactivate(void) override;
  116. // optional here
  117. void server_line(const std::string &line);
  118. void server_prompt(const std::string &prompt);
  119. void client_input(const std::string &input);
  120. };
  121. #include "session.h"
  122. #endif