twproxy.cpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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/sinks/text_file_backend.hpp>
  15. #include <boost/log/trivial.hpp>
  16. #include <boost/log/utility/setup/file.hpp>
  17. #include <cstdlib>
  18. #include <fstream>
  19. #include <iomanip>
  20. #include <iostream>
  21. #include <map>
  22. #include <string>
  23. #include "config.h"
  24. #include "session.h"
  25. #include "logging.h"
  26. // #define BOOST_ASIO_ENABLE_HANDLER_TRACKING
  27. std::map<std::string, std::string> CONFIG;
  28. // #include <boost/date_time/posix_time/posix_time_types.hpp>
  29. #include <boost/log/expressions.hpp>
  30. #include <boost/log/support/date_time.hpp>
  31. /*
  32. boost log linking -
  33. undefined reference to `void boost::log::v2_mt_posix::init_from_stream
  34. https://github.com/boostorg/log/issues/46
  35. */
  36. void init_logging(void) {
  37. // because TimeStamp is missing by default.
  38. boost::log::add_common_attributes();
  39. // "proxy-%Y-%m-%d.log"
  40. std::string log_filename = from_config("log_file", "proxy.log");
  41. // "%I:%M:%S.%f %p"
  42. std::string log_timeformat = from_config("log_timeformat", "%H:%M:%S.%f");
  43. bool log_autoflush = (bool)stoi(from_config("log_autoflush", "0"));
  44. int log_level = std::stoi(from_config("log_level", "2"));
  45. std::cout << "Logging to: " << log_filename << " level: " << log_level
  46. << " flush: " << log_autoflush << std::endl;
  47. boost::log::add_file_log(
  48. boost::log::keywords::file_name = log_filename,
  49. // This appends to the logfile (instead of overwrite)
  50. boost::log::keywords::open_mode = std::ios_base::out | std::ios_base::app,
  51. boost::log::keywords::auto_flush = log_autoflush,
  52. // boost::log::keywords::format = "[%TimeStamp%] %Severity% : %Message%"
  53. boost::log::keywords::format =
  54. (boost::log::expressions::stream
  55. << boost::log::expressions::format_date_time<
  56. boost::posix_time::ptime>("TimeStamp", log_timeformat)
  57. << " " << std::setw(8) << boost::log::trivial::severity << " "
  58. << boost::log::expressions::smessage));
  59. auto core = boost::log::core::get();
  60. core->set_filter(boost::log::trivial::severity >= log_level);
  61. }
  62. int main(int argc, char *argv[]) {
  63. if (argc != 2) {
  64. std::cerr << "Usage: twproxy <filename>" << std::endl;
  65. return EXIT_FAILURE;
  66. }
  67. CONFIG = yaml_parse(argv[1]);
  68. init_logging();
  69. bool config_ok = true;
  70. // for (const char *key : {"server", "host", "port"}) {
  71. for (auto key : {"server", "host", "port"}) {
  72. auto pos = CONFIG.find(key);
  73. if (pos == CONFIG.end()) {
  74. config_ok = false;
  75. std::cout << "Config file missing: " << key << std::endl;
  76. BUGZ_LOG(fatal) << "Config file missing: " << key;
  77. }
  78. BUGZ_LOG(info) << "Config: " << key << " : " << CONFIG[key];
  79. }
  80. if (!config_ok)
  81. return EXIT_FAILURE;
  82. int port = std::stoi(CONFIG["server"]);
  83. // int port = 9999; // 2002;
  84. try {
  85. boost::asio::io_service io_service;
  86. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  87. port); // std::atoi(argv[i]));
  88. // connect to the game server
  89. Server s(io_service, endpoint, CONFIG["host"], CONFIG["port"]);
  90. io_service.run();
  91. } catch (std::exception &e) {
  92. BUGZ_LOG(fatal) << "Exception: " << e.what();
  93. std::cerr << "Exception: " << e.what() << "\n";
  94. }
  95. return EXIT_SUCCESS;
  96. }