twproxy.cpp 4.3 KB

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