twproxy.cpp 4.6 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/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 <boost/date_time/posix_time/posix_time_types.hpp>
  26. #include <boost/log/expressions.hpp>
  27. #include <boost/log/support/date_time.hpp>
  28. /*
  29. boost log linking -
  30. undefined reference to `void boost::log::v2_mt_posix::init_from_stream
  31. https://github.com/boostorg/log/issues/46
  32. */
  33. /*
  34. BOOST_LOG_ATTRIBUTE_KEYWORD(scope, "Scope",
  35. boost::log::attributes::named_scope::value_type)
  36. */
  37. void init_logging(int logging_level) {
  38. // because TimeStamp is missing by default.
  39. boost::log::add_common_attributes();
  40. /*
  41. auto fmtScope = boost::log::expressions::format_named_scope(
  42. "Scope", boost::log::keywords::format = "%n(%f:%l)",
  43. boost::log::keywords::iteration = boost::log::expressions::reverse,
  44. boost::log::keywords::depth = 2);
  45. */
  46. boost::log::add_file_log(
  47. // This gives dated logfile name.
  48. boost::log::keywords::file_name = "proxy-%Y-%m-%d.log",
  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 = true,
  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", "%I:%M:%S.%f %p")
  57. boost::posix_time::ptime>("TimeStamp", "%H:%M:%S.%f")
  58. << " " << std::setw(8) << boost::log::trivial::severity
  59. << " "
  60. // << fmtScope << " : "
  61. << boost::log::expressions::smessage)
  62. );
  63. auto core = boost::log::core::get();
  64. // boost::log::core::get()->set_filter(boost::log::trivial::severity >=
  65. // boost::log::trivial::info);
  66. // core->set_filter(boost::log::trivial::severity >=
  67. // boost::log::trivial::info);
  68. core->set_filter(boost::log::trivial::severity >= logging_level);
  69. // core->add_global_attribute("Scopes", boost::log::keywords::format = "%n
  70. // (%f:%l)"); core->set_formatter("Scopes", boost::log::keywords::format = "%n
  71. // (%f:%l)"); logging::core::get()->add_global_attribute("Scopes",
  72. // attributes::named_scope());
  73. // core->add_global_attribute("Scope", boost::log::attributes::named_scope());
  74. }
  75. int main(int argc, char *argv[]) {
  76. // boost::json::json_value config;
  77. if (argc != 2) {
  78. std::cerr << "Usage: twproxy <filename>" << std::endl;
  79. return EXIT_FAILURE;
  80. }
  81. std::map<std::string, std::string> config = yaml_parse(argv[1]);
  82. auto value = config.find("log_level");
  83. int log_level = 3;
  84. if (value != config.end()) {
  85. log_level = std::stoi( value->second ); // config[value]);
  86. }
  87. init_logging(log_level);
  88. /*
  89. try {
  90. // Parse the file as JSON
  91. config = yaml_parse( argv[1] );
  92. } catch (std::exception const &e) {
  93. std::cerr << "Caught exception: " << e.what() << std::endl;
  94. return EXIT_FAILURE;
  95. }
  96. */
  97. bool config_ok = true;
  98. // for (const char *key : {"server", "host", "port"}) {
  99. for (auto key : {"server", "host", "port"}) {
  100. auto pos = config.find(key);
  101. if (pos == config.end()) {
  102. config_ok = false;
  103. std::cout << "Config file missing: " << key << std::endl;
  104. BOOST_LOG_TRIVIAL(fatal) << "Config file missing: " << key;
  105. }
  106. BOOST_LOG_TRIVIAL(info) << "Config: " << key << " : " << config[key];
  107. }
  108. if (!config_ok)
  109. return 2;
  110. int port = std::stoi(config["server"]);
  111. // int port = 9999; // 2002;
  112. try {
  113. boost::asio::io_service io_service;
  114. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  115. port); // std::atoi(argv[i]));
  116. // connect to the BBS
  117. server s(io_service, endpoint, config["host"], config["port"]);
  118. //"127.0.0.1", "2023");
  119. io_service.run();
  120. } catch (std::exception &e) {
  121. std::cerr << "Exception: " << e.what() << "\n";
  122. }
  123. return EXIT_SUCCESS;
  124. }