twproxy.cpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. BOOST_LOG_ATTRIBUTE_KEYWORD(scope, "Scope",
  34. boost::log::attributes::named_scope::value_type)
  35. void init_logging(void) {
  36. // because TimeStamp is missing by default.
  37. boost::log::add_common_attributes();
  38. /*
  39. auto fmtScope = boost::log::expressions::format_named_scope(
  40. "Scope", boost::log::keywords::format = "%n(%f:%l)",
  41. boost::log::keywords::iteration = boost::log::expressions::reverse,
  42. boost::log::keywords::depth = 2);
  43. */
  44. boost::log::add_file_log(
  45. // This gives dated logfile name.
  46. boost::log::keywords::file_name = "proxy-%Y-%m-%d.log",
  47. // This appends to the logfile (instead of overwrite)
  48. boost::log::keywords::open_mode = std::ios_base::out | std::ios_base::app,
  49. boost::log::keywords::auto_flush = true,
  50. // boost::log::keywords::format = "[%TimeStamp%] %Severity% : %Message%"
  51. boost::log::keywords::format =
  52. (boost::log::expressions::stream
  53. << boost::log::expressions::format_date_time<
  54. boost::posix_time::ptime>("TimeStamp", "%H:%M:%S.%f")
  55. << " " << std::setw(8) << boost::log::trivial::severity
  56. << " "
  57. // << fmtScope << " : "
  58. << boost::log::expressions::smessage)
  59. );
  60. auto core = boost::log::core::get();
  61. // boost::log::core::get()->set_filter(boost::log::trivial::severity >=
  62. // boost::log::trivial::info);
  63. core->set_filter(boost::log::trivial::severity >= boost::log::trivial::info);
  64. // core->add_global_attribute("Scopes", boost::log::keywords::format = "%n
  65. // (%f:%l)"); core->set_formatter("Scopes", boost::log::keywords::format = "%n
  66. // (%f:%l)"); logging::core::get()->add_global_attribute("Scopes",
  67. // attributes::named_scope());
  68. core->add_global_attribute("Scope", boost::log::attributes::named_scope());
  69. }
  70. int main(int argc, char *argv[]) {
  71. // boost::json::json_value config;
  72. if (argc != 2) {
  73. std::cerr << "Usage: twproxy <filename>" << std::endl;
  74. return EXIT_FAILURE;
  75. }
  76. init_logging();
  77. BOOST_LOG_NAMED_SCOPE("main");
  78. std::map<std::string, std::string> config = yaml_parse(argv[1]);
  79. /*
  80. try {
  81. // Parse the file as JSON
  82. config = yaml_parse( argv[1] );
  83. } catch (std::exception const &e) {
  84. std::cerr << "Caught exception: " << e.what() << std::endl;
  85. return EXIT_FAILURE;
  86. }
  87. */
  88. bool config_ok = true;
  89. // for (const char *key : {"server", "host", "port"}) {
  90. for (auto key : {"server", "host", "port"}) {
  91. auto pos = config.find(key);
  92. if (pos == config.end()) {
  93. config_ok = false;
  94. std::cout << "Config file missing: " << key << std::endl;
  95. BOOST_LOG_TRIVIAL(fatal) << "Config file missing: " << key;
  96. }
  97. BOOST_LOG_TRIVIAL(info) << "Config: " << key << " : " << config[key];
  98. }
  99. if (!config_ok)
  100. return 2;
  101. int port = std::stoi(config["server"]);
  102. // int port = 9999; // 2002;
  103. try {
  104. boost::asio::io_service io_service;
  105. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  106. port); // std::atoi(argv[i]));
  107. // connect to the BBS
  108. server s(io_service, endpoint, config["host"], config["port"]);
  109. //"127.0.0.1", "2023");
  110. io_service.run();
  111. } catch (std::exception &e) {
  112. std::cerr << "Exception: " << e.what() << "\n";
  113. }
  114. return EXIT_SUCCESS;
  115. }