session.cpp 22 KB

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