session.h 5.1 KB

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