twproxy.cpp 3.6 KB

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