session.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. #define MAX_BUFFER 256
  7. /*
  8. Dispatch Manager:
  9. Handles:
  10. [ ] Does whatever we received from the server get sent to the client?
  11. [SHOW-CLIENT]
  12. [ ] Where does client input go? [CLIENT]
  13. [ ] Client input go directly to the server? [TALK-DIRECT]
  14. [ ] Where does server input go? [SERVER-LINE] [SERVER-PROMPT]
  15. I'm thinking a dispatcher would know how to:
  16. [ ] Save the current state (and current dispatcher/setup).
  17. [ ] Set itself up with the director.
  18. [ ] Restore the previous state (when destructing -- but only if it is the
  19. current active receiver).
  20. [ ] Take a command [goto SECTOR][trade FOE] (fuel organics equipment),
  21. and return a result. [1 SUCCESS][0 FAIL][-1 USER ABORTED]
  22. [ ] Tell director where results should go (callback).
  23. [ ] Tell director where callback messages/events should go. (dynamic)
  24. Director:
  25. [ ] Handles server lines, server prompt, client input.
  26. [ ] Has to_client, to_server.
  27. [ ] Has low-level flags for show_client, talk-direct
  28. [ ] Has a std::stack of dispatchers. Uses .top() for calls.
  29. [ ] Reset -- would pop all but the last/master dispatchers.
  30. It seems like the director wants to be the session, or at least parts of it.
  31. */
  32. /*
  33. The session:
  34. */
  35. class session : public std::enable_shared_from_this<session> {
  36. public:
  37. session(boost::asio::ip::tcp::socket socket,
  38. boost::asio::io_service &io_service, std::string hostname,
  39. std::string port);
  40. void start(void);
  41. ~session();
  42. void parse_auth(void);
  43. void on_connect(const boost::system::error_code error);
  44. void server_read(void);
  45. void on_resolve(const boost::system::error_code error,
  46. const boost::asio::ip::tcp::resolver::results_type results);
  47. void do_read(void);
  48. void to_client(std::string message);
  49. void to_server(std::string message);
  50. void on_shutdown(boost::system::error_code ec);
  51. void dispatch_line(std::string line);
  52. void process_lines(std::string &received);
  53. private:
  54. // FOR NOW: These will go into the director
  55. bool show_client = true;
  56. bool talk_direct = true;
  57. /**
  58. * The client's socket
  59. */
  60. boost::asio::ip::tcp::socket socket_;
  61. boost::asio::io_service &io_service_;
  62. boost::asio::ip::tcp::resolver resolver_;
  63. /**
  64. * The server's socket
  65. */
  66. boost::asio::ip::tcp::socket server_;
  67. /**
  68. * The time that we'll use to fire off the "prompt" event.
  69. *
  70. * The idea being that we'd receive chars, processing lines.
  71. * And if we have something in server_prompt start the timer.
  72. * If we receive more, process lines, if !server_prompt.empty()
  73. * reset the timer.
  74. *
  75. * If the timer fires (and isn't aborted), fire off the prompt.
  76. *
  77. * I'm not so sure about this -- because this adds delay to the
  78. * proxy. [It might be better to just fire off "some" text, and
  79. * have it ignored, rather then adding a delay.] Or, this might
  80. * not matter at all, I'm thinking milliseconds here!
  81. */
  82. boost::asio::high_resolution_timer timer_;
  83. /**
  84. * What characters have been received from the server,
  85. * that weren't \n terminated?
  86. *
  87. * This needs to be reset/cleared if there's a \r (carriage return).
  88. */
  89. std::string server_prompt;
  90. /**
  91. * FAIL-WHALE: This was supposed to hold the number of characters
  92. * already sent to the user at this point in time, but I'm having
  93. * a hard time tracking those.
  94. *
  95. */
  96. int server_sent;
  97. /**
  98. * The client read buffer.
  99. *
  100. * This is too big, we don't get that many characters from the client.
  101. *
  102. */
  103. char read_buffer[MAX_BUFFER + 1];
  104. /**
  105. * The server read buffer.
  106. * This is MAX_BUFFER + 1 (to store the \0 to terminate the string)
  107. */
  108. char server_buffer[MAX_BUFFER + 1];
  109. /**
  110. * The rlogin information received from the client.
  111. *
  112. * We check this, and if it isn't valid, we spoof some rlogin
  113. * connection.
  114. */
  115. std::string rlogin_auth;
  116. /**
  117. * The username passed in via rlogin. We need this so we know what
  118. * name we need to store the data under.
  119. */
  120. std::string rlogin_name;
  121. std::string host;
  122. std::string port;
  123. /**
  124. * Are we connected to the server?
  125. *
  126. * Don't shutdown the server socket if we aren't connected.
  127. */
  128. bool connected = false;
  129. };
  130. /*
  131. maybe move the resolver part to the server, so I don't need io_service?
  132. I'm not sure what the socket connection part is going to need just yet,
  133. so I probably won't move that just yet. [NNY!]
  134. */
  135. class server {
  136. public:
  137. server(boost::asio::io_service &io_service,
  138. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  139. std::string port);
  140. private:
  141. void do_accept(void);
  142. boost::asio::io_service &io_service_;
  143. boost::asio::ip::tcp::acceptor acceptor_;
  144. /**
  145. * The host to connect to (from config)
  146. */
  147. std::string host_;
  148. /**
  149. * The port to connect to (from config)
  150. *
  151. */
  152. std::string port_;
  153. };
  154. #endif