session.cpp 21 KB

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