dispatchers.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. // This was the original idea, but we've lost our "Main Dispatch" at this point
  94. // I might bring this back, as a way to test the Input and Menu parts.
  95. /**
  96. * The main/first proxy Dispatcher.
  97. *
  98. * Don't follow this as an example. On disable,
  99. * it resets everything back to nothing active.
  100. * (Which is likely not what you want.)
  101. *
  102. */
  103. class MainDispatch : public Dispatch {
  104. private:
  105. InputDispatch id;
  106. MenuDispatch md;
  107. public:
  108. MainDispatch(Director &);
  109. ~MainDispatch();
  110. void activate(void) override;
  111. void deactivate(void) override;
  112. void have_input(void);
  113. void menu_choice(void);
  114. void server_line(const std::string &line, const std::string &raw_line) override;
  115. void server_prompt(const std::string &prompt) override;
  116. // void client_input(const std::string &input);
  117. private:
  118. int count;
  119. std::string old_prompt;
  120. };
  121. class CIMDispatch : public Dispatch {
  122. public:
  123. CIMDispatch(Director &);
  124. int count;
  125. void activate(void) override;
  126. void deactivate(void) override;
  127. // optional here
  128. void server_line(const std::string &line, const std::string &raw_line) override;
  129. };
  130. class CoreDispatch : public Dispatch {
  131. public:
  132. CoreDispatch(Director &);
  133. void activate(void) override;
  134. void deactivate(void) override;
  135. // optional here
  136. void server_line(const std::string &line, const std::string &raw_line) override;
  137. void server_prompt(const std::string &prompt) override;
  138. void client_input(const std::string &input) override;
  139. };
  140. #endif