session.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  1. #include <boost/bind.hpp>
  2. #include <boost/format.hpp>
  3. #include <functional>
  4. #include <iostream>
  5. // #include <boost/log/core.hpp>
  6. // #include <boost/log/trivial.hpp>
  7. #include <regex>
  8. #include <string>
  9. #include "config.h"
  10. #include "galaxy.h"
  11. #include "logging.h"
  12. #include "session.h"
  13. #include "utils.h"
  14. // #include <boost/log/attributes/named_scope.hpp>
  15. Session::Session(boost::asio::ip::tcp::socket socket,
  16. boost::asio::io_service &io_service, std::string hostname,
  17. std::string port)
  18. : socket_(std::move(socket)),
  19. io_service_{io_service},
  20. resolver_{io_service},
  21. server_{io_service},
  22. prompt_timer_{io_service},
  23. keep_alive_{io_service},
  24. host{hostname},
  25. port{port} {
  26. BUGZ_LOG(info) << "Session::Session()";
  27. // server_sent = 0;
  28. time_ms = 50;
  29. if (CONFIG["prompt_timeout"]) time_ms = CONFIG["prompt_timeout"].as<int>();
  30. keepalive_secs = 45;
  31. if (CONFIG["keepalive"]) keepalive_secs = CONFIG["keepalive"].as<int>();
  32. // Initialize the director
  33. director.to_server = boost::bind(&Session::to_server, this, _1);
  34. director.to_client = boost::bind(&Session::to_client, this, _1);
  35. director.post = boost::bind(&Session::post, this, _1);
  36. // too soon!
  37. // director.username = rlogin_name;
  38. // replace emit_ with below: if (director.server_line)
  39. // director.server_line(s);
  40. /*
  41. emit_server_line = [this](const std::string &s) {
  42. if (director.server_line) {
  43. director.server_line(s);
  44. }
  45. };
  46. emit_server_prompt = [this](const std::string &s) {
  47. if (director.server_prompt) {
  48. director.server_prompt(s);
  49. }
  50. };
  51. emit_client_input ... => director.client_input
  52. */
  53. }
  54. void Session::start(void) {
  55. BUGZ_LOG(info) << "Session::start()";
  56. // auto self(shared_from_this());
  57. client_read();
  58. }
  59. Session::~Session() { BUGZ_LOG(info) << "~Session"; }
  60. /**
  61. * Returns the current server prompt.
  62. *
  63. * NOTE: This is the raw string from the server, so it can contain
  64. * color codes. Make sure you clean it before trying to test it for
  65. * any text.
  66. *
  67. * @return const std::string&
  68. */
  69. const std::string &Session::get_prompt(void) { return server_prompt; }
  70. void Session::set_prompt(const std::string &prompt) { server_prompt = prompt; }
  71. void Session::post(notifyFunc nf) {
  72. if (nf) {
  73. BUGZ_LOG(info) << "Session::post()";
  74. io_service_.post(nf);
  75. } else {
  76. BUGZ_LOG(error) << "Session::post( nullptr )";
  77. }
  78. }
  79. void Session::parse_auth(void) {
  80. // how many nulls should I be seeing?
  81. // \0user\0pass\0terminal/SPEED\0
  82. // If I don't have a proper rlogin value here, it isn't going
  83. // to work when I try to connect to the rlogin server.
  84. if (rlogin_auth.size() > 10)
  85. rlogin_name = rlogin_auth.c_str() + 1;
  86. else
  87. rlogin_name = "?";
  88. director.username = rlogin_name;
  89. }
  90. void Session::on_connect(const boost::system::error_code error) {
  91. // We've connected to the server! WOOT WOOT!
  92. // BOOST_LOG_NAMED_SCOPE("Session");
  93. if (!error) {
  94. BUGZ_LOG(info) << "Connected to " << host;
  95. to_client("Connected...\n\r");
  96. connected = true;
  97. if (rlogin_auth[0] != 0) {
  98. // Ok, the rlogin information was junk --
  99. to_client("Let me make up some fake rlogin data for you...\n\r");
  100. char temp[] = "\0test\0test\0terminal/9600\0";
  101. std::string tmp(temp, sizeof(temp));
  102. to_server(tmp);
  103. } else {
  104. to_server(rlogin_auth);
  105. }
  106. server_read();
  107. } else {
  108. std::string output =
  109. str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
  110. to_client(output);
  111. BUGZ_LOG(error) << "Failed to connect to " << host << ":" << port;
  112. BUGZ_LOG(warning) << "socket.shutdown()";
  113. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  114. }
  115. }
  116. /**
  117. * Called with the current line received from the server.
  118. *
  119. * This will do server parsing. Sector/Ports/Connecting Sectors.
  120. * Port status/inventory/%.
  121. *
  122. * See \ref split_lines()
  123. * @param line
  124. */
  125. void Session::on_server_line(const std::string &line,
  126. const std::string &raw_line) {
  127. BUGZ_LOG(info) << "SL: [" << line << "]";
  128. director.server_line(line, raw_line);
  129. #ifdef DECOUPLE
  130. if (line.find("TradeWars Game Server ") != std::string::npos) {
  131. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  132. game = 0;
  133. // reset "active game" -- we're back at the menu
  134. }
  135. /*
  136. ____ _ _
  137. / ___| ___ _ ____ _____ _ __ | | (_)_ __ ___
  138. \___ \ / _ \ '__\ \ / / _ \ '__| | | | | '_ \ / _ \
  139. ___) | __/ | \ V / __/ | | |___| | | | | __/
  140. |____/ \___|_| \_/ \___|_| |_____|_|_| |_|\___|
  141. ____ _
  142. | _ \ __ _ _ __ ___(_)_ __ __ _
  143. | |_) / _` | '__/ __| | '_ \ / _` |
  144. | __/ (_| | | \__ \ | | | | (_| |
  145. |_| \__,_|_| |___/_|_| |_|\__, |
  146. |___/
  147. This is where all of the server lines are gleaned for all the
  148. information that we can get out of them.
  149. */
  150. if (line.find("Selection (? for menu): ") != std::string::npos) {
  151. char ch = line[line.length() - 1];
  152. if (ch >= 'A' && ch < 'Q') {
  153. game = ch;
  154. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  155. }
  156. // not needed (handled by above Game Server check).
  157. if (ch == 'Q') game = 0;
  158. }
  159. // Do I need to run through the tests (below) before calling the parser here?
  160. // Or will the parsers know when they are done processing, and clear?
  161. // Yes, run through the various tests, then call SL_parser.
  162. if ((line.substr(0, 19) == "The shortest path (") ||
  163. (line.substr(0, 7) == " TO > ")) {
  164. SL_parser = [this](const std::string s) { this->SL_warpline(s); };
  165. } else {
  166. if (line.substr(0, 43) == " Items Status Trading % of max OnBoard") {
  167. SL_parser = [this](const std::string s) { this->SL_portline(s); };
  168. } else {
  169. if (line.substr(0, 10) == "<Thievery>") {
  170. SL_parser = [this](const std::string s) { this->SL_thiefline(s); };
  171. } else {
  172. if (line == ": ") {
  173. SL_parser = [this](const std::string s) { this->SL_cimline(s); };
  174. } else {
  175. if (line.substr(0, 1) == "Sector : ") {
  176. SL_parser = [this](const std::string s) { this->SL_sectorline(s); };
  177. }
  178. }
  179. }
  180. }
  181. }
  182. if (SL_parser) {
  183. SL_parser(line);
  184. }
  185. // should I have an internal emit_server_line for parsing sections?
  186. // rather then having a weird state machine to track where we are?
  187. if (emit_server_line) emit_server_line(line);
  188. #endif
  189. }
  190. /**
  191. * Split server input into lines.
  192. *
  193. * @param line
  194. */
  195. void Session::split_lines(std::string line) {
  196. // Does this have \n\r still on it? I don't want them.
  197. // cleanup backspaces
  198. size_t pos;
  199. while ((pos = line.find('\b')) != std::string::npos) {
  200. // backspace? OK! (unless)
  201. if (pos == 0) {
  202. // first character, so there's nothing "extra" to erase.
  203. line = line.erase(pos, 1);
  204. } else
  205. line = line.erase(pos - 1, 2);
  206. }
  207. std::string temp = clean_string(line);
  208. on_server_line(temp, line);
  209. }
  210. /*
  211. Call this with whatever we just received.
  212. That will allow me to send "just whatever I got"
  213. this time around, rather then trying to figure out
  214. what was just added to server_prompt.
  215. What about \r, \b ? Should that "reset" the server_prompt?
  216. \r should not, because it is followed by \n (eventually)
  217. and that completes my line.
  218. */
  219. void Session::process_lines(std::string &received) {
  220. // break server_prompt into lines and send/process one by one.
  221. size_t pos, rpos;
  222. server_prompt.append(received);
  223. // I also need to break on r"\x1b[\[0-9;]*JK", treat these like \n
  224. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  225. std::string line;
  226. std::smatch m = ansi_newline(server_prompt);
  227. if (!m.empty()) {
  228. // We found one.
  229. size_t mpos = m.prefix().length();
  230. // int mlen = m[0].length();
  231. if (mpos < pos) {
  232. // Ok, the ANSI newline is before the \n
  233. // perform this process with the received line
  234. std::smatch rm = ansi_newline(received);
  235. if (!rm.empty()) {
  236. size_t rpos = rm.prefix().length();
  237. int rlen = rm[0].length();
  238. if (director.show_client) {
  239. line = received.substr(0, rpos + rlen);
  240. to_client(line);
  241. }
  242. received = rm.suffix();
  243. }
  244. // perform this on the server_prompt line
  245. line = m.prefix();
  246. split_lines(line);
  247. server_prompt = m.suffix();
  248. // redo this loop -- there's still a \n in there
  249. continue;
  250. }
  251. }
  252. // process "line" in received
  253. rpos = received.find('\n', 0);
  254. // get line to send to the client
  255. if (director.show_client) {
  256. // that is, if we're sending to the client!
  257. line = received.substr(0, rpos + 1);
  258. /*
  259. std::string clean = clean_string(line);
  260. BUGZ_LOG(error) << "rpos/show_client:" << clean;
  261. */
  262. to_client(line);
  263. }
  264. received = received.substr(rpos + 1);
  265. // process "line" in server_prompt
  266. line = server_prompt.substr(0, pos + 1);
  267. server_prompt = server_prompt.substr(pos + 1);
  268. // Remove \n for dispatching
  269. std::string part = line.substr(0, pos);
  270. /*
  271. if (server_sent != 0) {
  272. line = line.substr(server_sent);
  273. server_sent = 0;
  274. };
  275. */
  276. // display on?
  277. // to_client(line);
  278. // How should I handle \r in lines? For now, remove it
  279. // but LOG that we did.
  280. replace(part, "\r", "");
  281. /*
  282. if (replace(part, "\r", "")) {
  283. BUGZ_LOG(warning) << "\\r removed from line";
  284. }
  285. */
  286. split_lines(part);
  287. }
  288. // Ok, we have sent all of the \n lines.
  289. if (!received.empty())
  290. if (director.show_client) {
  291. to_client(received);
  292. // std::string clean = clean_string(received);
  293. // BUGZ_LOG(error) << "show_client/leftovers:" << clean;
  294. }
  295. // This is eating the entire string. String is partial line
  296. // portcim line, ending with '\r', this eats the line.
  297. /*
  298. // check the server prompt here:
  299. if ((pos = server_prompt.rfind('\r')) != std::string::npos) {
  300. // server_prompt contains \r, remove it.
  301. server_prompt = server_prompt.substr(pos + 1);
  302. }
  303. */
  304. while ((pos = server_prompt.find('\b')) != std::string::npos) {
  305. // backspace? OK! (unless)
  306. if (pos == 0) {
  307. // first character, so there's nothing "extra" to erase.
  308. server_prompt = server_prompt.erase(pos, 1);
  309. } else
  310. server_prompt = server_prompt.erase(pos - 1, 2);
  311. }
  312. if (!server_prompt.empty()) {
  313. // We have something remaining -- start the timer!
  314. set_prompt_timer();
  315. }
  316. }
  317. void Session::set_prompt_timer(void) {
  318. prompt_timer_.expires_after(std::chrono::milliseconds(time_ms));
  319. prompt_timer_.async_wait(boost::bind(&Session::on_prompt_timeout, this,
  320. boost::asio::placeholders::error));
  321. }
  322. void Session::reset_prompt_timer(void) { prompt_timer_.cancel(); }
  323. // probably no longer needed --
  324. void Session::on_server_prompt(const std::string &prompt,
  325. const std::string &raw_prompt) {
  326. std::string temp = repr(prompt);
  327. BUGZ_LOG(warning) << "SP: [" << temp << "]";
  328. director.server_prompt(prompt, raw_prompt);
  329. }
  330. void Session::on_prompt_timeout(const boost::system::error_code error) {
  331. if (error != boost::asio::error::operation_aborted) {
  332. // Ok, VALID timeout
  333. if (!server_prompt.empty()) {
  334. // Here's what is happening:
  335. // SP: [ESC[2JESC[H]
  336. // which after clean_string is empty.
  337. std::string clean = server_prompt; // clean_string(server_prompt);
  338. ansi_clean(clean);
  339. if (!clean.empty()) {
  340. on_server_prompt(clean, server_prompt);
  341. }
  342. // BUGZ_LOG(trace) << "SP: [" << server_prompt << "]";
  343. }
  344. }
  345. }
  346. void Session::server_read(void) {
  347. auto self(shared_from_this());
  348. boost::asio::async_read(
  349. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  350. boost::asio::transfer_at_least(1),
  351. [this, self](boost::system::error_code ec, std::size_t length) {
  352. if (!ec) {
  353. // server_buffer[length] = 0;
  354. // server_prompt.append(server_buffer, length);
  355. std::string received(server_buffer, length);
  356. process_lines(received);
  357. /*
  358. I don't believe I need to consume this,
  359. I'm not async_reading from a stream.
  360. */
  361. /*
  362. if (length) {
  363. // std::cout << length << std::endl;
  364. std::cout << "S: " << server_buffer << std::endl;
  365. do_write(server_buffer);
  366. }
  367. */
  368. server_read();
  369. } else {
  370. BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
  371. connected = false;
  372. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  373. }
  374. });
  375. }
  376. void Session::on_resolve(
  377. const boost::system::error_code error,
  378. const boost::asio::ip::tcp::resolver::results_type results) {
  379. //
  380. auto self(shared_from_this());
  381. if (!error) {
  382. // Take the first endpoint.
  383. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  384. server_.async_connect(endpoint,
  385. boost::bind(&Session::on_connect, this,
  386. boost::asio::placeholders::error));
  387. } else {
  388. // TO DO:
  389. // BOOST_LOG_NAMED_SCOPE("Session");
  390. BUGZ_LOG(error) << "Unable to resolve: " << host;
  391. std::string output =
  392. str(boost::format("Unable to resolve: %1%\n\r") % host);
  393. to_client(output);
  394. BUGZ_LOG(warning) << "socket.shutdown()";
  395. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  396. }
  397. }
  398. void Session::client_input(const std::string &input) {
  399. std::string temp = repr(input);
  400. BUGZ_LOG(info) << "CI: [" << temp << "]";
  401. director.client_input(input);
  402. #ifdef DECOUPLE
  403. // Is "proxy" active
  404. if (active) {
  405. // do something amazing with the user's input.
  406. } else {
  407. if (input == "\x1b" || input == "~") {
  408. std::string prompt = clean_string(get_prompt());
  409. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  410. if (prompt == "Selection (? for menu): ") {
  411. to_client(
  412. "\n\rThere's not much we can do here. Activate in-game at a "
  413. "Command prompt.\n\r");
  414. to_client(get_prompt());
  415. return;
  416. }
  417. // easter-eggs:
  418. if (prompt == "Enter your choice: ") {
  419. to_client(
  420. "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  421. "that's how I was coded.\n\r");
  422. to_client(get_prompt());
  423. return;
  424. }
  425. // easter-egg
  426. if (prompt == "[Pause]") {
  427. to_client(" \x1b[1;36mMeow\x1b[0m\n\r");
  428. to_client(get_prompt());
  429. return;
  430. }
  431. //
  432. // The command prompt that we're looking for:
  433. //
  434. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  435. // the time, and the sector number vary...
  436. if (prompt.substr(0, 9) == "Command [") {
  437. int len = prompt.length();
  438. if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  439. proxy_activate();
  440. /*
  441. to_client("\n\r\x1b[1;34mWELCOME! This is where the proxy would "
  442. "activate.\n\r");
  443. // active = true;
  444. // show_client = true; // because if something comes (unexpected)
  445. // from the server? talk_direct = false;
  446. // but we aren't activating (NNY)
  447. to_client(get_prompt());
  448. */
  449. return;
  450. }
  451. }
  452. // eat this input.
  453. BUGZ_LOG(warning) << "CI: unable to activate, prompt was: [" << prompt
  454. << "]";
  455. return;
  456. }
  457. }
  458. // as the above code matures, talk_direct might get changed.
  459. // keep this part here (and not above).
  460. if (talk_direct) {
  461. to_server(input);
  462. }
  463. if (emit_client_input) {
  464. emit_client_input(input);
  465. }
  466. #endif
  467. }
  468. /*
  469. DispatchSettings Session::save_settings(void) {
  470. DispatchSettings ss{emit_server_line, emit_server_prompt, emit_client_input,
  471. show_client, talk_direct};
  472. return ss;
  473. }
  474. void Session::restore_settings(const DispatchSettings &ss) {
  475. emit_server_line = ss.server_line;
  476. emit_server_prompt = ss.server_prompt;
  477. emit_client_input = ss.client_input;
  478. show_client = ss.show_client;
  479. talk_direct = ss.talk_direct;
  480. }
  481. void Session::proxy_activate(void) {
  482. active = true;
  483. start_keepin_alive(); // kickstart the keepalive timer
  484. main.setNotify([this](void) { this->proxy_deactivate(); });
  485. main.activate();
  486. }
  487. void Session::proxy_deactivate(void) {
  488. // Ok, how do we return?
  489. active = false;
  490. to_client(get_prompt());
  491. // to_client(" \b");
  492. }
  493. */
  494. void Session::client_read(void) {
  495. auto self(shared_from_this());
  496. boost::asio::async_read( // why can't I async_read_some here?
  497. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  498. boost::asio::transfer_at_least(1),
  499. [this, self](boost::system::error_code ec, std::size_t length) {
  500. if (!ec) {
  501. // read_buffer[length] = 0;
  502. if (rlogin_auth.empty()) {
  503. // first read should be rlogin information
  504. rlogin_auth.assign(read_buffer, length);
  505. // parse authentication information
  506. parse_auth();
  507. to_client(std::string(1, 0));
  508. to_client("Welcome, ");
  509. to_client(rlogin_name);
  510. to_client("\n\r");
  511. // Activate the connection to the server
  512. /* // this fails, and I'm not sure why. I've used code like this
  513. before. resolver_.async_resolve( host, port, std::bind(
  514. &Session::on_resolve, this, _1, _2)); */
  515. // This example shows using boost::bind, which WORKS.
  516. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  517. resolver_.async_resolve(
  518. host, port,
  519. boost::bind(&Session::on_resolve, this,
  520. boost::asio::placeholders::error,
  521. boost::asio::placeholders::iterator));
  522. } else if (length) {
  523. // Proxy Active?
  524. // BOOST_LOG_NAMED_SCOPE("Session");
  525. std::string line(read_buffer, length);
  526. client_input(line);
  527. // do_write(output);
  528. }
  529. client_read();
  530. } else {
  531. BUGZ_LOG(warning) << "CI: read_failed " << ec;
  532. if (connected) {
  533. BUGZ_LOG(warning) << "Server.shutdown()";
  534. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  535. }
  536. }
  537. });
  538. }
  539. void Session::to_client(const std::string &message) {
  540. auto self(shared_from_this());
  541. // output the cleaned string (so I can see what we're sending in the
  542. // logs)
  543. std::string clean = clean_string(message);
  544. BUGZ_LOG(trace) << "2C: " << clean;
  545. boost::asio::async_write(
  546. socket_, boost::asio::buffer(message),
  547. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  548. if (!ec) {
  549. } else {
  550. BUGZ_LOG(warning)
  551. << "2C: write failed? closed? Server.shutdown()" << ec;
  552. if (connected) {
  553. BUGZ_LOG(warning) << "Server.shutdown()";
  554. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  555. }
  556. }
  557. });
  558. }
  559. void Session::to_server(const std::string &message) {
  560. auto self(shared_from_this());
  561. BUGZ_LOG(trace) << "2S: " << message;
  562. boost::asio::async_write(
  563. server_, boost::asio::buffer(message),
  564. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  565. if (!ec) {
  566. } else {
  567. BUGZ_LOG(warning)
  568. << "S: write failed? closed? socket.shutdown() " << ec;
  569. // we're no longer connected.
  570. connected = false;
  571. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  572. }
  573. });
  574. if (director.active) {
  575. start_keepin_alive();
  576. }
  577. }
  578. void Session::start_keepin_alive(void) {
  579. // keep alive timer
  580. keep_alive_.expires_after(std::chrono::seconds(keepalive_secs));
  581. keep_alive_.async_wait(boost::bind(&Session::stayin_alive, this,
  582. boost::asio::placeholders::error));
  583. }
  584. void Session::stayin_alive(const boost::system::error_code error) {
  585. if (error != boost::asio::error::operation_aborted) {
  586. // stayin' alive, stayin' alive...
  587. if (director.active) {
  588. to_server(" ");
  589. BUGZ_LOG(warning) << "Session::stayin_alive()";
  590. }
  591. }
  592. }
  593. Server::Server(boost::asio::io_service &io_service,
  594. const boost::asio::ip::tcp::endpoint &endpoint,
  595. const std::string &host, const std::string &port)
  596. : io_service_{io_service},
  597. acceptor_{io_service_, endpoint},
  598. signal_{io_service, SIGUSR1, SIGTERM},
  599. host_{host},
  600. port_{port} {
  601. keep_accepting = true;
  602. BUGZ_LOG(info) << "Server::Server()";
  603. signal_.async_wait(boost::bind(&Server::on_signal, this,
  604. boost::asio::placeholders::error,
  605. boost::asio::placeholders::signal_number));
  606. do_accept();
  607. }
  608. void Server::on_signal(const boost::system::error_code &ec, int signal) {
  609. BUGZ_LOG(info) << "on_signal() :" << signal;
  610. keep_accepting = false;
  611. boost::system::error_code error;
  612. acceptor_.cancel(error);
  613. BUGZ_LOG(info) << "cancel: " << error;
  614. acceptor_.close(error);
  615. BUGZ_LOG(info) << "close: " << error;
  616. }
  617. Server::~Server() {
  618. CONFIG = YAML::Node();
  619. BUGZ_LOG(info) << "Server::~Server()";
  620. }
  621. /**
  622. * setup async connect accept
  623. *
  624. * This creates a session for each connection. Using make_shared allows the
  625. * session to automatically clean up when it is no longer active/has anything
  626. * running in the reactor.
  627. */
  628. void Server::do_accept(void) {
  629. acceptor_.async_accept([this](boost::system::error_code ec,
  630. boost::asio::ip::tcp::socket socket) {
  631. if (!ec) {
  632. BUGZ_LOG(info) << "Server::do_accept()";
  633. std::make_shared<Session>(std::move(socket), io_service_, host_, port_)
  634. ->start();
  635. }
  636. if (keep_accepting) {
  637. BUGZ_LOG(info) << "do_accept()";
  638. do_accept();
  639. }
  640. });
  641. }