twproxy.cpp 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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 "yaml-cpp/yaml.h"
  25. YAML::Node CONFIG;
  26. #include "config.h"
  27. #include "logging.h"
  28. #include "session.h"
  29. // #define BOOST_ASIO_ENABLE_HANDLER_TRACKING
  30. // std::map<std::string, std::string> CONFIG;
  31. // #include <boost/date_time/posix_time/posix_time_types.hpp>
  32. #include <boost/log/expressions.hpp>
  33. #include <boost/log/support/date_time.hpp>
  34. /*
  35. boost log linking -
  36. undefined reference to `void boost::log::v2_mt_posix::init_from_stream
  37. https://github.com/boostorg/log/issues/46
  38. */
  39. void init_logging(void) {
  40. // because TimeStamp is missing by default.
  41. boost::log::add_common_attributes();
  42. // "proxy-%Y-%m-%d.log"
  43. std::string log_filename = "proxy.log";
  44. if (CONFIG["log_file"]) log_filename = CONFIG["log_file"].as<std::string>();
  45. // = from_config("log_file", "proxy.log");
  46. // "%I:%M:%S.%f %p"
  47. std::string log_timeformat = "%H:%M:%S.%f";
  48. if (CONFIG["log_timeformat"])
  49. log_timeformat = CONFIG["log_timeformat"].as<std::string>();
  50. // from_config("log_timeformat", "%H:%M:%S.%f");
  51. bool log_autoflush = false;
  52. if (CONFIG["log_autoflush"]) {
  53. log_autoflush = CONFIG["log_autoflush"].as<int>() == 1;
  54. }
  55. int log_level = 2;
  56. if (CONFIG["log_level"]) {
  57. log_level = CONFIG["log_level"].as<int>();
  58. }
  59. bool console = false;
  60. if (CONFIG["log_console"]) {
  61. console = CONFIG["log_console"].as<int>() == 1;
  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. CONFIG = YAML::LoadFile(argv[1]);
  98. init_logging();
  99. bool config_ok = true;
  100. // for (const char *key : {"server", "host", "port"}) {
  101. for (auto key : {"server", "host", "port"}) {
  102. if (!CONFIG[key]) {
  103. config_ok = false;
  104. std::cout << "Config file missing: " << key << std::endl;
  105. BUGZ_LOG(fatal) << "Config file missing: " << key;
  106. }
  107. // The leaks are reported here, because this is the first usage of the
  108. // BOOST_LOG_TRIVIAL()! Comment these out, and the leaks are reported at the
  109. // next logging usage instance.
  110. std::string value = CONFIG[key].as<std::string>();
  111. BUGZ_LOG(info) << "Config: " << key << " : " << value;
  112. }
  113. if (!config_ok) return EXIT_FAILURE;
  114. int port = CONFIG["server"].as<int>();
  115. // int port = 9999; // 2002;
  116. try {
  117. bool telnet = false;
  118. if (CONFIG["server_telnet"]) {
  119. telnet = true;
  120. BUGZ_LOG(fatal) << "Connect to server via TELNET";
  121. }
  122. boost::asio::io_service io_service;
  123. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  124. port); // std::atoi(argv[i]));
  125. // connect to the game server
  126. std::string host = CONFIG["host"].as<std::string>();
  127. std::string port = CONFIG["port"].as<std::string>();
  128. BUGZ_LOG(fatal) << "host: " << host << " port: " << port;
  129. Server serve(io_service, endpoint, host, port, telnet);
  130. io_service.run();
  131. } catch (std::exception &e) {
  132. BUGZ_LOG(fatal) << "Exception: " << e.what();
  133. std::cerr << "Exception: " << e.what() << "\n";
  134. }
  135. return EXIT_SUCCESS;
  136. }