session.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #ifndef SESSION_H
  2. #define SESSION_H
  3. #include <boost/asio.hpp>
  4. #include <boost/asio/ip/basic_resolver.hpp>
  5. #include <string>
  6. class session : public std::enable_shared_from_this<session> {
  7. public:
  8. session(boost::asio::ip::tcp::socket socket,
  9. boost::asio::io_service &io_service, std::string hostname,
  10. std::string port);
  11. void start(void);
  12. ~session();
  13. void parse_auth(void);
  14. void on_connect(const boost::system::error_code error);
  15. void server_read(void);
  16. void on_resolve(const boost::system::error_code error,
  17. const boost::asio::ip::tcp::resolver::results_type results);
  18. void do_read(void);
  19. void do_write(std::string message);
  20. void server_write(std::string message);
  21. void on_shutdown(boost::system::error_code ec);
  22. void dispatch_line(std::string line);
  23. void process_lines(void);
  24. private:
  25. boost::asio::ip::tcp::socket socket_;
  26. boost::asio::io_service &io_service_;
  27. boost::asio::ip::tcp::resolver resolver_;
  28. boost::asio::ip::tcp::socket server_;
  29. boost::asio::high_resolution_timer timer_;
  30. // std::string read_buffer;
  31. std::string server_prompt;
  32. int server_sent;
  33. char read_buffer[257];
  34. char server_buffer[257];
  35. std::string rlogin_auth;
  36. std::string rlogin_name;
  37. std::string host;
  38. std::string port;
  39. bool connected = false;
  40. };
  41. /*
  42. maybe move the resolver part to the server, so I don't need io_service?
  43. I'm not sure what the socket connection part is going to need just yet,
  44. so I probably won't move that just yet. [NNY!]
  45. */
  46. class server {
  47. public:
  48. server(boost::asio::io_service &io_service,
  49. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  50. std::string port)
  51. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  52. port_{port} {
  53. do_accept();
  54. }
  55. private:
  56. void do_accept() {
  57. acceptor_.async_accept([this](boost::system::error_code ec,
  58. boost::asio::ip::tcp::socket socket) {
  59. if (!ec) {
  60. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  61. ->start();
  62. }
  63. do_accept();
  64. });
  65. }
  66. boost::asio::io_service &io_service_;
  67. boost::asio::ip::tcp::acceptor acceptor_;
  68. std::string host_;
  69. std::string port_;
  70. };
  71. #endif