twproxy.cpp 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. //
  2. // client.cpp
  3. // ~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #include <boost/asio.hpp>
  11. #include <boost/log/attributes.hpp>
  12. #include <boost/log/core.hpp>
  13. #include <boost/log/utility/setup/common_attributes.hpp>
  14. #include <boost/log/utility/setup/console.hpp>
  15. // #include <boost/log/sinks/text_file_backend.hpp>
  16. #include <boost/log/trivial.hpp>
  17. #include <boost/log/utility/setup/file.hpp>
  18. #include <cstdlib>
  19. #include <fstream>
  20. #include <iomanip>
  21. #include <iostream>
  22. #include <map>
  23. #include <string>
  24. #include "config.h"
  25. #include "logging.h"
  26. #include "session.h"
  27. // #define BOOST_ASIO_ENABLE_HANDLER_TRACKING
  28. // std::map<std::string, std::string> CONFIG;
  29. // #include <boost/date_time/posix_time/posix_time_types.hpp>
  30. #include <boost/log/expressions.hpp>
  31. #include <boost/log/support/date_time.hpp>
  32. /*
  33. boost log linking -
  34. undefined reference to `void boost::log::v2_mt_posix::init_from_stream
  35. https://github.com/boostorg/log/issues/46
  36. */
  37. void init_logging(void) {
  38. // because TimeStamp is missing by default.
  39. boost::log::add_common_attributes();
  40. // "proxy-%Y-%m-%d.log"
  41. std::string log_filename = "proxy.log";
  42. if (CONFIG.contains("log_file")) log_filename = CONFIG["log_file"];
  43. // = from_config("log_file", "proxy.log");
  44. // "%I:%M:%S.%f %p"
  45. std::string log_timeformat = "%H:%M:%S.%f";
  46. if (CONFIG.contains("log_timeformat"))
  47. log_timeformat = CONFIG["log_timeformat"];
  48. // from_config("log_timeformat", "%H:%M:%S.%f");
  49. bool log_autoflush = false;
  50. /*
  51. if (CONFIG["log_autoflush"]) {
  52. log_autoflush = CONFIG["log_autoflush"];
  53. }
  54. */
  55. int log_level = 2;
  56. if (CONFIG.contains("log_level")) {
  57. log_level = (int)CONFIG["log_level"];
  58. }
  59. bool console = false;
  60. if (CONFIG.contains("log_console")) {
  61. console = CONFIG["log_console"];
  62. }
  63. std::cout << "Logging to: ";
  64. if (console) std::cout << "console + ";
  65. std::cout << log_filename << " level: " << log_level
  66. << " flush: " << log_autoflush << " format: " << log_timeformat
  67. << std::endl;
  68. if (console)
  69. boost::log::add_console_log(
  70. std::clog, boost::log::keywords::auto_flush = log_autoflush,
  71. boost::log::keywords::format =
  72. (boost::log::expressions::stream
  73. << boost::log::expressions::format_date_time<
  74. boost::posix_time::ptime>("TimeStamp", log_timeformat)
  75. << " " << std::setw(8) << boost::log::trivial::severity << " "
  76. << boost::log::expressions::smessage));
  77. boost::log::add_file_log(
  78. boost::log::keywords::file_name = log_filename,
  79. // This appends to the logfile (instead of overwrite)
  80. boost::log::keywords::open_mode = std::ios_base::out | std::ios_base::app,
  81. boost::log::keywords::auto_flush = log_autoflush,
  82. // boost::log::keywords::format = "[%TimeStamp%] %Severity% : %Message%"
  83. boost::log::keywords::format =
  84. (boost::log::expressions::stream
  85. << boost::log::expressions::format_date_time<
  86. boost::posix_time::ptime>("TimeStamp", log_timeformat)
  87. << " " << std::setw(8) << boost::log::trivial::severity << " "
  88. << boost::log::expressions::smessage));
  89. auto core = boost::log::core::get();
  90. core->set_filter(boost::log::trivial::severity >= log_level);
  91. }
  92. int main(int argc, char *argv[]) {
  93. if (argc != 2) {
  94. std::cerr << "Usage: twproxy <filename>" << std::endl;
  95. return EXIT_FAILURE;
  96. }
  97. {
  98. std::ifstream fin(argv[1]);
  99. CONFIG = json::parse(fin); // YAML::LoadFile(argv[1]);
  100. }
  101. init_logging();
  102. bool config_ok = true;
  103. // for (const char *key : {"server", "host", "port"}) {
  104. for (auto key : {"server", "host", "port", "basename"}) {
  105. if (!CONFIG.contains(key)) {
  106. config_ok = false;
  107. std::cout << "Config file missing: " << key << std::endl;
  108. BUGZ_LOG(fatal) << "Config file missing: " << key;
  109. }
  110. // The leaks are reported here, because this is the first usage of the
  111. // BOOST_LOG_TRIVIAL()! Comment these out, and the leaks are reported at the
  112. // next logging usage instance.
  113. if (CONFIG[key].is_string()) {
  114. std::string value = CONFIG[key].get<std::string>();
  115. BUGZ_LOG(info) << "Config: " << key << " : " << value;
  116. } else if (CONFIG[key].is_number_integer()) {
  117. int value = CONFIG[key].get<int>();
  118. BUGZ_LOG(info) << "Config: " << key << " : " << value;
  119. } else {
  120. BUGZ_LOG(info) << "Config: " << key << " : ??";
  121. }
  122. }
  123. if (!config_ok) return EXIT_FAILURE;
  124. int port = CONFIG["server"].get<int>();
  125. // int port = 9999; // 2002;
  126. try {
  127. bool telnet = false;
  128. if (CONFIG.contains("server_telnet")) {
  129. telnet = true;
  130. BUGZ_LOG(fatal) << "Connect to server via TELNET";
  131. }
  132. boost::asio::io_service io_service;
  133. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  134. port); // std::atoi(argv[i]));
  135. // connect to the game server
  136. std::string host = CONFIG["host"].get<std::string>();
  137. int port = CONFIG["port"].get<int>();
  138. std::string port_text = std::to_string(port);
  139. BUGZ_LOG(fatal) << "host: " << host << " port: " << port;
  140. Server serve(io_service, endpoint, host, port_text, telnet);
  141. io_service.run();
  142. } catch (std::exception &e) {
  143. BUGZ_LOG(fatal) << "Exception: " << e.what();
  144. std::cerr << "Exception: " << e.what() << "\n";
  145. }
  146. return EXIT_SUCCESS;
  147. }