session.h 5.4 KB

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