twproxy.cpp 4.2 KB

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