twproxy.cpp 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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 << std::endl;
  69. if (console)
  70. boost::log::add_console_log(
  71. std::clog, boost::log::keywords::auto_flush = log_autoflush,
  72. boost::log::keywords::format =
  73. (boost::log::expressions::stream
  74. << boost::log::expressions::format_date_time<
  75. boost::posix_time::ptime>("TimeStamp", log_timeformat)
  76. << " " << std::setw(8) << boost::log::trivial::severity << " "
  77. << boost::log::expressions::smessage));
  78. boost::log::add_file_log(
  79. boost::log::keywords::file_name = log_filename,
  80. // This appends to the logfile (instead of overwrite)
  81. boost::log::keywords::open_mode = std::ios_base::out | std::ios_base::app,
  82. boost::log::keywords::auto_flush = log_autoflush,
  83. // boost::log::keywords::format = "[%TimeStamp%] %Severity% : %Message%"
  84. boost::log::keywords::format =
  85. (boost::log::expressions::stream
  86. << boost::log::expressions::format_date_time<
  87. boost::posix_time::ptime>("TimeStamp", log_timeformat)
  88. << " " << std::setw(8) << boost::log::trivial::severity << " "
  89. << boost::log::expressions::smessage));
  90. auto core = boost::log::core::get();
  91. core->set_filter(boost::log::trivial::severity >= log_level);
  92. }
  93. int main(int argc, char *argv[]) {
  94. if (argc != 2) {
  95. std::cerr << "Usage: twproxy <filename>" << std::endl;
  96. return EXIT_FAILURE;
  97. }
  98. CONFIG = YAML::LoadFile(argv[1]); // yaml_parse(argv[1]);
  99. init_logging();
  100. bool config_ok = true;
  101. // for (const char *key : {"server", "host", "port"}) {
  102. for (auto key : {"server", "host", "port", "db"}) {
  103. if (!CONFIG[key]) {
  104. config_ok = false;
  105. std::cout << "Config file missing: " << key << std::endl;
  106. BUGZ_LOG(fatal) << "Config file missing: " << key;
  107. }
  108. BUGZ_LOG(info) << "Config: " << key << " : " << CONFIG[key];
  109. }
  110. if (!config_ok)
  111. return EXIT_FAILURE;
  112. int port = CONFIG["server"].as<int>();
  113. // int port = 9999; // 2002;
  114. try {
  115. boost::asio::io_service io_service;
  116. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  117. port); // std::atoi(argv[i]));
  118. // connect to the game server
  119. Server s(io_service, endpoint, CONFIG["host"].as<std::string>(),
  120. CONFIG["port"].as<std::string>());
  121. io_service.run();
  122. } catch (std::exception &e) {
  123. BUGZ_LOG(fatal) << "Exception: " << e.what();
  124. std::cerr << "Exception: " << e.what() << "\n";
  125. }
  126. return EXIT_SUCCESS;
  127. }