session.cpp 22 KB

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