twproxy.cpp 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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(void) {
  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", "%H:%M:%S.%f %I:%M %p")
  57. // boost::posix_time::ptime>("TimeStamp", "%H:%M:%S.%f")
  58. << " " << std::setw(8) << boost::log::trivial::severity << " "
  59. << boost::log::expressions::smessage)
  60. );
  61. /*
  62. auto core = boost::log::core::get();
  63. // boost::log::core::get()->set_filter(boost::log::trivial::severity >=
  64. // boost::log::trivial::info);
  65. // core->set_filter(boost::log::trivial::severity >=
  66. // boost::log::trivial::info);
  67. core->set_filter(boost::log::trivial::severity >= logging_level);
  68. // core->add_global_attribute("Scopes", boost::log::keywords::format = "%n
  69. // (%f:%l)"); core->set_formatter("Scopes", boost::log::keywords::format =
  70. "%n
  71. // (%f:%l)"); logging::core::get()->add_global_attribute("Scopes",
  72. // attributes::named_scope());
  73. // core->add_global_attribute("Scope",
  74. boost::log::attributes::named_scope());
  75. */
  76. }
  77. int main(int argc, char *argv[]) {
  78. // boost::json::json_value config;
  79. if (argc != 2) {
  80. std::cerr << "Usage: twproxy <filename>" << std::endl;
  81. return EXIT_FAILURE;
  82. }
  83. std::map<std::string, std::string> config = yaml_parse(argv[1]);
  84. auto value = config.find("log_level");
  85. int log_level = 2;
  86. if (value != config.end()) {
  87. log_level = std::stoi(value->second); // config[value]);
  88. }
  89. init_logging();
  90. auto core = boost::log::core::get();
  91. core->set_filter(boost::log::trivial::severity >= log_level);
  92. BUGZ_LOG(error) << "Logging level:" << log_level;
  93. /*
  94. try {
  95. // Parse the file as JSON
  96. config = yaml_parse( argv[1] );
  97. } catch (std::exception const &e) {
  98. std::cerr << "Caught exception: " << e.what() << std::endl;
  99. return EXIT_FAILURE;
  100. }
  101. */
  102. bool config_ok = true;
  103. // for (const char *key : {"server", "host", "port"}) {
  104. for (auto key : {"server", "host", "port"}) {
  105. auto pos = config.find(key);
  106. if (pos == config.end()) {
  107. config_ok = false;
  108. std::cout << "Config file missing: " << key << std::endl;
  109. BOOST_LOG_TRIVIAL(fatal) << "Config file missing: " << key;
  110. }
  111. BOOST_LOG_TRIVIAL(info) << "Config: " << key << " : " << config[key];
  112. }
  113. if (!config_ok)
  114. return 2;
  115. int port = std::stoi(config["server"]);
  116. // int port = 9999; // 2002;
  117. try {
  118. boost::asio::io_service io_service;
  119. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  120. port); // std::atoi(argv[i]));
  121. // connect to the BBS
  122. server s(io_service, endpoint, config["host"], config["port"]);
  123. //"127.0.0.1", "2023");
  124. io_service.run();
  125. } catch (std::exception &e) {
  126. std::cerr << "Exception: " << e.what() << "\n";
  127. }
  128. return EXIT_SUCCESS;
  129. }