session.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. private:
  23. boost::asio::ip::tcp::socket socket_;
  24. boost::asio::io_service &io_service_;
  25. boost::asio::ip::tcp::resolver resolver_;
  26. boost::asio::ip::tcp::socket server_;
  27. boost::asio::high_resolution_timer timer_;
  28. // std::string read_buffer;
  29. char read_buffer[257];
  30. char server_buffer[257];
  31. std::string rlogin_auth;
  32. std::string rlogin_name;
  33. std::string host;
  34. std::string port;
  35. bool connected = false;
  36. };
  37. /*
  38. maybe move the resolver part to the server, so I don't need io_service?
  39. I'm not sure what the socket connection part is going to need just yet,
  40. so I probably won't move that just yet. [NNY!]
  41. */
  42. class server {
  43. public:
  44. server(boost::asio::io_service &io_service,
  45. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  46. std::string port)
  47. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  48. port_{port} {
  49. do_accept();
  50. }
  51. private:
  52. void do_accept() {
  53. acceptor_.async_accept([this](boost::system::error_code ec,
  54. boost::asio::ip::tcp::socket socket) {
  55. if (!ec) {
  56. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  57. ->start();
  58. }
  59. do_accept();
  60. });
  61. }
  62. boost::asio::io_service &io_service_;
  63. boost::asio::ip::tcp::acceptor acceptor_;
  64. std::string host_;
  65. std::string port_;
  66. };
  67. #endif