123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- #ifndef DISPATCHERS_H
- #define DISPATCHERS_H
- #include <map>
- #include <string>
- #include "session_common.h"
- /*
- Item of the day:
- class Result {
- // holds unique_ptr or shared_ptr to the "dispatcher"
- // when I'm done -- delete the result, cleaning up
- // the dispatcher
- }
- How does this call another?
- How does it return a result?
- possibly: io_service::post( DONE ); !
- */
- class Session;
- class Dispatch {
- protected:
- Session *sess;
- notifyFunc notify_;
- public:
- Dispatch(Session *);
- virtual ~Dispatch();
- void setNotify(notifyFunc nf);
- void notify(void);
- virtual void activate(void) = 0;
- virtual void deactivate(void) = 0;
- const std::string &get_prompt(void);
- void to_server(const std::string &send);
- void to_client(const std::string &send);
- };
- /*
- * Some options for input:
- *
- * numeric only
- *
- */
- class InputDispatch : public Dispatch {
- private:
- DispatchSettings ds;
- public:
- InputDispatch(Session *);
- ~InputDispatch();
- std::string prompt;
- size_t max_length;
- std::string input;
- void activate(void) override;
- void deactivate(void) override;
- // optional here
- void server_line(const std::string &line);
- // void server_prompt(const std::string &prompt);
- void client_input(const std::string &cinput);
- };
- class MenuDispatch : public Dispatch {
- private:
- DispatchSettings ds;
- void help(void);
- void menubox(void);
- size_t max_width;
- size_t max_option_width;
- bool instant = false;
- void calculate_widths(void);
- std::string centered(int length, const std::string &);
- public:
- MenuDispatch(Session *);
- ~MenuDispatch();
- std::string menu_box_color;
- std::string menu_text_color;
- std::string menu_title;
- std::string menu_options_color;
- std::string menu_prompt;
- bool lazy = true;
- std::map<std::string, std::string> menu;
- bool case_sensitive = false;
- std::string input;
- int choice;
- void activate(void) override;
- void deactivate(void) override;
- // optional here
- void server_line(const std::string &line);
- // void server_prompt(const std::string &prompt);
- void client_input(const std::string &cinput);
- };
- /**
- * The main/first proxy Dispatcher.
- *
- * Don't follow this as an example. On disable,
- * it resets everything back to nothing active.
- * (Which is likely not what you want.)
- *
- */
- class MainDispatch : public Dispatch {
- private:
- InputDispatch id;
- MenuDispatch md;
- public:
- MainDispatch(Session *);
- ~MainDispatch();
- void activate(void) override;
- void deactivate(void) override;
- void have_input(void);
- void menu_choice(void);
- void server_line(const std::string &line);
- void server_prompt(const std::string &prompt);
- // void client_input(const std::string &input);
- private:
- int count;
- std::string old_prompt;
- };
- class CoreDispatch : public Dispatch {
- public:
- CoreDispatch(Session *);
- void activate(void) override;
- void deactivate(void) override;
- // optional here
- void server_line(const std::string &line);
- void server_prompt(const std::string &prompt);
- void client_input(const std::string &input);
- };
- #include "session.h"
- #endif
|