dispatchers.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #ifndef DISPATCHERS_H
  2. #define DISPATCHERS_H
  3. #include <functional>
  4. typedef std::function<void(const std::string &)> StringFunc;
  5. typedef std::function<void(void)> notifyFunc;
  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. const std::string &get_prompt(void);
  28. void to_server(const std::string &send);
  29. void to_client(const std::string &send);
  30. };
  31. class MainDispatch : public Dispatch {
  32. public:
  33. MainDispatch(Session*);
  34. void activate(void);
  35. void deactivate(void);
  36. void server_line(const std::string &line);
  37. void server_prompt(const std::string &prompt);
  38. void client_input(const std::string &input);
  39. private:
  40. int count;
  41. std::string old_prompt;
  42. };
  43. class CoreDispatch : public Dispatch {
  44. public:
  45. CoreDispatch(Session *);
  46. void server_line(const std::string &line);
  47. void server_prompt(const std::string &prompt);
  48. void client_input(const std::string &input);
  49. };
  50. #include "session.h"
  51. #endif