dispatchers.h 4.1 KB

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