session.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767
  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. 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. const std::string &raw_line) {
  124. BUGZ_LOG(info) << "SL: [" << line << "]";
  125. director.server_line(line, raw_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, line);
  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 (director.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 (director.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 (director.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. std::string temp = repr(prompt);
  324. BUGZ_LOG(warning) << "SP: [" << temp << "]";
  325. director.server_prompt(prompt, raw_prompt);
  326. }
  327. void Session::on_prompt_timeout(const boost::system::error_code error) {
  328. if (error != boost::asio::error::operation_aborted) {
  329. // Ok, VALID timeout
  330. if (!server_prompt.empty()) {
  331. // Here's what is happening:
  332. // SP: [ESC[2JESC[H]
  333. // which after clean_string is empty.
  334. std::string clean = server_prompt; // clean_string(server_prompt);
  335. ansi_clean(clean);
  336. if (!clean.empty()) {
  337. on_server_prompt(clean, server_prompt);
  338. }
  339. // BUGZ_LOG(trace) << "SP: [" << server_prompt << "]";
  340. }
  341. }
  342. }
  343. void Session::server_read(void) {
  344. auto self(shared_from_this());
  345. boost::asio::async_read(
  346. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  347. boost::asio::transfer_at_least(1),
  348. [this, self](boost::system::error_code ec, std::size_t length) {
  349. if (!ec) {
  350. // server_buffer[length] = 0;
  351. // server_prompt.append(server_buffer, length);
  352. std::string received(server_buffer, length);
  353. process_lines(received);
  354. /*
  355. I don't believe I need to consume this,
  356. I'm not async_reading from a stream.
  357. */
  358. /*
  359. if (length) {
  360. // std::cout << length << std::endl;
  361. std::cout << "S: " << server_buffer << std::endl;
  362. do_write(server_buffer);
  363. }
  364. */
  365. server_read();
  366. } else {
  367. BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
  368. connected = false;
  369. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  370. }
  371. });
  372. }
  373. void Session::on_resolve(
  374. const boost::system::error_code error,
  375. const boost::asio::ip::tcp::resolver::results_type results) {
  376. //
  377. auto self(shared_from_this());
  378. if (!error) {
  379. // Take the first endpoint.
  380. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  381. server_.async_connect(endpoint,
  382. boost::bind(&Session::on_connect, this,
  383. boost::asio::placeholders::error));
  384. } else {
  385. // TO DO:
  386. // BOOST_LOG_NAMED_SCOPE("Session");
  387. BUGZ_LOG(error) << "Unable to resolve: " << host;
  388. std::string output =
  389. str(boost::format("Unable to resolve: %1%\n\r") % host);
  390. to_client(output);
  391. BUGZ_LOG(warning) << "socket.shutdown()";
  392. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  393. }
  394. }
  395. void Session::client_input(const std::string &input) {
  396. std::string temp = repr(input);
  397. BUGZ_LOG(info) << "CI: [" << temp << "]";
  398. director.client_input(input);
  399. #ifdef DECOUPLE
  400. // Is "proxy" active
  401. if (active) {
  402. // do something amazing with the user's input.
  403. } else {
  404. if (input == "\x1b" || input == "~") {
  405. std::string prompt = clean_string(get_prompt());
  406. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  407. if (prompt == "Selection (? for menu): ") {
  408. to_client(
  409. "\n\rThere's not much we can do here. Activate in-game at a "
  410. "Command prompt.\n\r");
  411. to_client(get_prompt());
  412. return;
  413. }
  414. // easter-eggs:
  415. if (prompt == "Enter your choice: ") {
  416. to_client(
  417. "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  418. "that's how I was coded.\n\r");
  419. to_client(get_prompt());
  420. return;
  421. }
  422. // easter-egg
  423. if (prompt == "[Pause]") {
  424. to_client(" \x1b[1;36mMeow\x1b[0m\n\r");
  425. to_client(get_prompt());
  426. return;
  427. }
  428. //
  429. // The command prompt that we're looking for:
  430. //
  431. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  432. // the time, and the sector number vary...
  433. if (prompt.substr(0, 9) == "Command [") {
  434. int len = prompt.length();
  435. if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  436. proxy_activate();
  437. /*
  438. to_client("\n\r\x1b[1;34mWELCOME! This is where the proxy would "
  439. "activate.\n\r");
  440. // active = true;
  441. // show_client = true; // because if something comes (unexpected)
  442. // from the server? talk_direct = false;
  443. // but we aren't activating (NNY)
  444. to_client(get_prompt());
  445. */
  446. return;
  447. }
  448. }
  449. // eat this input.
  450. BUGZ_LOG(warning) << "CI: unable to activate, prompt was: [" << prompt
  451. << "]";
  452. return;
  453. }
  454. }
  455. // as the above code matures, talk_direct might get changed.
  456. // keep this part here (and not above).
  457. if (talk_direct) {
  458. to_server(input);
  459. }
  460. if (emit_client_input) {
  461. emit_client_input(input);
  462. }
  463. #endif
  464. }
  465. /*
  466. DispatchSettings Session::save_settings(void) {
  467. DispatchSettings ss{emit_server_line, emit_server_prompt, emit_client_input,
  468. show_client, talk_direct};
  469. return ss;
  470. }
  471. void Session::restore_settings(const DispatchSettings &ss) {
  472. emit_server_line = ss.server_line;
  473. emit_server_prompt = ss.server_prompt;
  474. emit_client_input = ss.client_input;
  475. show_client = ss.show_client;
  476. talk_direct = ss.talk_direct;
  477. }
  478. void Session::proxy_activate(void) {
  479. active = true;
  480. start_keepin_alive(); // kickstart the keepalive timer
  481. main.setNotify([this](void) { this->proxy_deactivate(); });
  482. main.activate();
  483. }
  484. void Session::proxy_deactivate(void) {
  485. // Ok, how do we return?
  486. active = false;
  487. to_client(get_prompt());
  488. // to_client(" \b");
  489. }
  490. */
  491. void Session::client_read(void) {
  492. auto self(shared_from_this());
  493. boost::asio::async_read( // why can't I async_read_some here?
  494. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  495. boost::asio::transfer_at_least(1),
  496. [this, self](boost::system::error_code ec, std::size_t length) {
  497. if (!ec) {
  498. // read_buffer[length] = 0;
  499. if (rlogin_auth.empty()) {
  500. // first read should be rlogin information
  501. rlogin_auth.assign(read_buffer, length);
  502. // parse authentication information
  503. parse_auth();
  504. to_client(std::string(1, 0));
  505. to_client("Welcome, ");
  506. to_client(rlogin_name);
  507. to_client("\n\r");
  508. // Activate the connection to the server
  509. /* // this fails, and I'm not sure why. I've used code like this
  510. before. resolver_.async_resolve( host, port, std::bind(
  511. &Session::on_resolve, this, _1, _2)); */
  512. // This example shows using boost::bind, which WORKS.
  513. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  514. resolver_.async_resolve(
  515. host, port,
  516. boost::bind(&Session::on_resolve, this,
  517. boost::asio::placeholders::error,
  518. boost::asio::placeholders::iterator));
  519. } else if (length) {
  520. // Proxy Active?
  521. // BOOST_LOG_NAMED_SCOPE("Session");
  522. std::string line(read_buffer, length);
  523. client_input(line);
  524. // do_write(output);
  525. }
  526. client_read();
  527. } else {
  528. BUGZ_LOG(warning) << "CI: read_failed " << ec;
  529. if (connected) {
  530. BUGZ_LOG(warning) << "Server.shutdown()";
  531. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  532. }
  533. }
  534. });
  535. }
  536. void Session::to_client(const std::string &message) {
  537. auto self(shared_from_this());
  538. // output the cleaned string (so I can see what we're sending in the
  539. // logs)
  540. std::string clean = clean_string(message);
  541. BUGZ_LOG(trace) << "2C: " << clean;
  542. boost::asio::async_write(
  543. socket_, boost::asio::buffer(message),
  544. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  545. if (!ec) {
  546. } else {
  547. BUGZ_LOG(warning)
  548. << "2C: write failed? closed? Server.shutdown()" << ec;
  549. if (connected) {
  550. BUGZ_LOG(warning) << "Server.shutdown()";
  551. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  552. }
  553. }
  554. });
  555. }
  556. void Session::to_server(const std::string &message) {
  557. auto self(shared_from_this());
  558. BUGZ_LOG(trace) << "2S: " << message;
  559. boost::asio::async_write(
  560. server_, boost::asio::buffer(message),
  561. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  562. if (!ec) {
  563. } else {
  564. BUGZ_LOG(warning)
  565. << "S: write failed? closed? socket.shutdown() " << ec;
  566. // we're no longer connected.
  567. connected = false;
  568. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  569. }
  570. });
  571. if (director.active) {
  572. start_keepin_alive();
  573. }
  574. }
  575. void Session::start_keepin_alive(void) {
  576. // keep alive timer
  577. keep_alive_.expires_after(std::chrono::seconds(keepalive_secs));
  578. keep_alive_.async_wait(boost::bind(&Session::stayin_alive, this,
  579. boost::asio::placeholders::error));
  580. }
  581. void Session::stayin_alive(const boost::system::error_code error) {
  582. if (error != boost::asio::error::operation_aborted) {
  583. // stayin' alive, stayin' alive...
  584. if (director.active) {
  585. to_server(" ");
  586. BUGZ_LOG(warning) << "Session::stayin_alive()";
  587. }
  588. }
  589. }
  590. Server::Server(boost::asio::io_service &io_service,
  591. const boost::asio::ip::tcp::endpoint &endpoint,
  592. const std::string &host, const std::string &port)
  593. : io_service_{io_service},
  594. acceptor_{io_service_, endpoint},
  595. signal_{io_service, SIGUSR1, SIGTERM},
  596. host_{host},
  597. port_{port} {
  598. keep_accepting = true;
  599. BUGZ_LOG(info) << "Server::Server()";
  600. signal_.async_wait(boost::bind(&Server::on_signal, this,
  601. boost::asio::placeholders::error,
  602. boost::asio::placeholders::signal_number));
  603. do_accept();
  604. }
  605. void Server::on_signal(const boost::system::error_code &ec, int signal) {
  606. BUGZ_LOG(info) << "on_signal() :" << signal;
  607. keep_accepting = false;
  608. boost::system::error_code error;
  609. acceptor_.cancel(error);
  610. BUGZ_LOG(info) << "cancel: " << error;
  611. acceptor_.close(error);
  612. BUGZ_LOG(info) << "close: " << error;
  613. }
  614. Server::~Server() {
  615. CONFIG = YAML::Node();
  616. BUGZ_LOG(info) << "Server::~Server()";
  617. }
  618. /**
  619. * setup async connect accept
  620. *
  621. * This creates a session for each connection. Using make_shared allows the
  622. * session to automatically clean up when it is no longer active/has anything
  623. * running in the reactor.
  624. */
  625. void Server::do_accept(void) {
  626. acceptor_.async_accept([this](boost::system::error_code ec,
  627. boost::asio::ip::tcp::socket socket) {
  628. if (!ec) {
  629. BUGZ_LOG(info) << "Server::do_accept()";
  630. std::make_shared<Session>(std::move(socket), io_service_, host_, port_)
  631. ->start();
  632. }
  633. if (keep_accepting) {
  634. BUGZ_LOG(info) << "do_accept()";
  635. do_accept();
  636. }
  637. });
  638. }
  639. /**
  640. * Clean up the trailing ../ in __FILE__
  641. *
  642. * This is used by the logging macro.
  643. *
  644. * @param filepath
  645. * @return const char*
  646. */
  647. const char *trim_path(const char *filepath) {
  648. if (strncmp(filepath, "../", 3) == 0) {
  649. filepath += 3;
  650. }
  651. return filepath;
  652. }