twproxy.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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"])
  45. log_filename = CONFIG["log_file"].as<std::string>();
  46. // = from_config("log_file", "proxy.log");
  47. // "%I:%M:%S.%f %p"
  48. std::string log_timeformat = "%H:%M:%S.%f";
  49. if (CONFIG["log_timeformat"])
  50. log_timeformat = CONFIG["log_timeformat"].as<std::string>();
  51. // from_config("log_timeformat", "%H:%M:%S.%f");
  52. bool log_autoflush = false;
  53. if (CONFIG["log_autoflush"]) {
  54. log_autoflush = CONFIG["log_autoflush"].as<int>() == 1;
  55. }
  56. int log_level = 2;
  57. if (CONFIG["log_level"]) {
  58. log_level = CONFIG["log_level"].as<int>();
  59. }
  60. bool console = false;
  61. if (CONFIG["log_console"]) {
  62. console = CONFIG["log_console"].as<int>() == 1;
  63. }
  64. std::cout << "Logging to: ";
  65. if (console)
  66. std::cout << "console + ";
  67. std::cout << log_filename << " level: " << log_level
  68. << " flush: " << log_autoflush << " format: " << log_timeformat
  69. << std::endl;
  70. if (console)
  71. boost::log::add_console_log(
  72. std::clog, boost::log::keywords::auto_flush = log_autoflush,
  73. boost::log::keywords::format =
  74. (boost::log::expressions::stream
  75. << boost::log::expressions::format_date_time<
  76. boost::posix_time::ptime>("TimeStamp", log_timeformat)
  77. << " " << std::setw(8) << boost::log::trivial::severity << " "
  78. << boost::log::expressions::smessage));
  79. boost::log::add_file_log(
  80. boost::log::keywords::file_name = log_filename,
  81. // This appends to the logfile (instead of overwrite)
  82. boost::log::keywords::open_mode = std::ios_base::out | std::ios_base::app,
  83. boost::log::keywords::auto_flush = log_autoflush,
  84. // boost::log::keywords::format = "[%TimeStamp%] %Severity% : %Message%"
  85. boost::log::keywords::format =
  86. (boost::log::expressions::stream
  87. << boost::log::expressions::format_date_time<
  88. boost::posix_time::ptime>("TimeStamp", log_timeformat)
  89. << " " << std::setw(8) << boost::log::trivial::severity << " "
  90. << boost::log::expressions::smessage));
  91. auto core = boost::log::core::get();
  92. core->set_filter(boost::log::trivial::severity >= log_level);
  93. }
  94. int main(int argc, char *argv[]) {
  95. if (argc != 2) {
  96. std::cerr << "Usage: twproxy <filename>" << std::endl;
  97. return EXIT_FAILURE;
  98. }
  99. CONFIG = YAML::LoadFile(argv[1]);
  100. init_logging();
  101. bool config_ok = true;
  102. // for (const char *key : {"server", "host", "port"}) {
  103. for (auto key : {"server", "host", "port", "db"}) {
  104. if (!CONFIG[key]) {
  105. config_ok = false;
  106. std::cout << "Config file missing: " << key << std::endl;
  107. BUGZ_LOG(fatal) << "Config file missing: " << key;
  108. }
  109. // The leaks are reported here, because this is the first usage of the
  110. // BOOST_LOG_TRIVIAL()! Comment these out, and the leaks are reported at the
  111. // next logging usage instance.
  112. std::string value = CONFIG[key].as<std::string>();
  113. BUGZ_LOG(info) << "Config: " << key << " : " << value;
  114. }
  115. if (!config_ok)
  116. return EXIT_FAILURE;
  117. int port = CONFIG["server"].as<int>();
  118. // int port = 9999; // 2002;
  119. try {
  120. boost::asio::io_service io_service;
  121. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  122. port); // std::atoi(argv[i]));
  123. // connect to the game server
  124. std::string host = CONFIG["host"].as<std::string>();
  125. std::string port = CONFIG["port"].as<std::string>();
  126. BUGZ_LOG(fatal) << "host: " << host << " port: " << port;
  127. Server serve(io_service, endpoint, host, port);
  128. io_service.run();
  129. } catch (std::exception &e) {
  130. BUGZ_LOG(fatal) << "Exception: " << e.what();
  131. std::cerr << "Exception: " << e.what() << "\n";
  132. }
  133. return EXIT_SUCCESS;
  134. }