session.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. #ifndef SESSION_H
  2. #define SESSION_H
  3. #include <boost/asio.hpp>
  4. #include <boost/asio/ip/basic_resolver.hpp>
  5. #include <boost/asio/signal_set.hpp>
  6. #include <map>
  7. #include <string>
  8. #include "director.h"
  9. #include "session_common.h"
  10. // don't want this here!
  11. #include "dispatchers.h"
  12. #define MAX_BUFFER 256
  13. /*
  14. The Session:
  15. */
  16. class Session : public std::enable_shared_from_this<Session> {
  17. public:
  18. Session(boost::asio::ip::tcp::socket socket,
  19. boost::asio::io_service &io_service, std::string hostname,
  20. std::string port);
  21. ~Session();
  22. void start(void);
  23. const std::string &get_prompt(void);
  24. void set_prompt(const std::string &prompt);
  25. void to_client(const std::string &message);
  26. void to_server(const std::string &message);
  27. /*
  28. DispatchSettings save_settings(void);
  29. void restore_settings(const DispatchSettings &ss);
  30. */
  31. // The session line parsing needs show_client
  32. // these move to Director
  33. // bool show_client = true;
  34. bool talk_direct = true;
  35. void post(notifyFunc nf);
  36. private:
  37. Director director;
  38. void on_server_line(const std::string &line, const std::string &raw_line);
  39. void on_server_prompt(const std::string &prompt,
  40. const std::string &raw_prompt);
  41. void parse_auth(void);
  42. void on_connect(const boost::system::error_code error);
  43. void server_read(void);
  44. void on_resolve(const boost::system::error_code error,
  45. const boost::asio::ip::tcp::resolver::results_type results);
  46. void client_read(void);
  47. void client_input(const std::string &input);
  48. void on_shutdown(boost::system::error_code ec);
  49. void split_lines(std::string line);
  50. void process_lines(std::string &received);
  51. private:
  52. /*
  53. Move to director -?
  54. StringFunc SL_parser;
  55. void SL_cimline(const std::string &line);
  56. void SL_thiefline(const std::string &line);
  57. void SL_sectorline(const std::string &line);
  58. void SL_portline(const std::string &line);
  59. void SL_warpline(const std::string &line);
  60. */
  61. void set_prompt_timer(void);
  62. void reset_prompt_timer(void);
  63. void on_prompt_timeout(const boost::system::error_code error);
  64. void stayin_alive(const boost::system::error_code error);
  65. void start_keepin_alive(void);
  66. int time_ms;
  67. int keepalive_secs;
  68. // Move this to director. This controls if the "keep alive" fires or not.
  69. bool active = false;
  70. /* Move to director.
  71. MainDispatch main;
  72. void proxy_activate(void);
  73. void proxy_deactivate(void);
  74. // std::stack<Dispatch *> director;
  75. bool active = false;
  76. */
  77. /**
  78. * The client's socket
  79. */
  80. boost::asio::ip::tcp::socket socket_;
  81. boost::asio::io_service &io_service_;
  82. boost::asio::ip::tcp::resolver resolver_;
  83. /**
  84. * The server's socket
  85. */
  86. boost::asio::ip::tcp::socket server_;
  87. /**
  88. * The time that we'll use to fire off the "prompt" event.
  89. *
  90. * The idea being that we'd receive chars, processing lines.
  91. * And if we have something in server_prompt start the timer.
  92. * If we receive more, process lines, if !server_prompt.empty()
  93. * reset the timer.
  94. *
  95. * If the timer fires (and isn't aborted), fire off the prompt.
  96. *
  97. * I'm not so sure about this -- because this adds delay to the
  98. * proxy. [It might be better to just fire off "some" text, and
  99. * have it ignored, rather then adding a delay.] Or, this might
  100. * not matter at all, I'm thinking milliseconds here!
  101. */
  102. boost::asio::high_resolution_timer prompt_timer_;
  103. /**
  104. * Keep connection alive, don't timeout.
  105. *
  106. * This gets set by to_server config[keepalive], and sends a
  107. * space ' ' if we haven't sent anything to the server in that
  108. * many seconds.
  109. */
  110. boost::asio::high_resolution_timer keep_alive_;
  111. /**
  112. * What characters have been received from the server,
  113. * that weren't \n terminated?
  114. *
  115. * This needs to be reset/cleared if there's a \r (carriage return).
  116. */
  117. std::string server_prompt;
  118. /**
  119. * The client read buffer.
  120. *
  121. * This is too big, we don't get that many characters from the client.
  122. *
  123. */
  124. char read_buffer[MAX_BUFFER];
  125. /**
  126. * The server read buffer.
  127. */
  128. char server_buffer[MAX_BUFFER];
  129. /**
  130. * The rlogin information received from the client.
  131. *
  132. * We check this, and if it isn't valid, we spoof some rlogin
  133. * connection.
  134. */
  135. std::string rlogin_auth;
  136. /**
  137. * The username passed in via rlogin. We need this so we know what
  138. * name we need to store the data under.
  139. */
  140. std::string rlogin_name;
  141. std::string host;
  142. std::string port;
  143. char game = 0;
  144. /**
  145. * Are we connected to the server?
  146. *
  147. * Don't shutdown the server socket if we aren't connected.
  148. */
  149. bool connected = false;
  150. };
  151. /*
  152. maybe move the resolver part to the server, so I don't need io_service?
  153. I'm not sure what the socket connection part is going to need just yet,
  154. so I probably won't move that just yet. [NNY!]
  155. */
  156. class Server {
  157. public:
  158. Server(boost::asio::io_service &io_service,
  159. const boost::asio::ip::tcp::endpoint &endpoint,
  160. const std::string &host, const std::string &port);
  161. ~Server();
  162. private:
  163. void do_accept(void);
  164. void on_signal(const boost::system::error_code &ec, int signal);
  165. boost::asio::io_service &io_service_;
  166. boost::asio::ip::tcp::acceptor acceptor_;
  167. boost::asio::signal_set signal_;
  168. bool keep_accepting;
  169. /**
  170. * The host to connect to (from config)
  171. */
  172. std::string host_;
  173. /**
  174. * The port to connect to (from config)
  175. *
  176. */
  177. std::string port_;
  178. };
  179. #endif