twproxy.cpp 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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/utility/setup/common_attributes.hpp>
  13. #include <boost/log/core.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. void init_logging(void) {
  25. /*
  26. std::ifstream file("log_settings.ini");
  27. if (!file.is_open()) {
  28. std::cerr << "Could not open log_settings.ini file." << std::endl;
  29. exit(1);
  30. }
  31. boost::log::init_from_stream(file);
  32. */
  33. // boost::log::add_file_log("proxy.log"); // WAT?
  34. // boost::shared_ptr< boost::log::core > core = boost::log::core::get();
  35. // core->add_global_attribute("TimeStamp", boost::attrs::local_clock());
  36. boost::log::add_common_attributes();
  37. boost::log::add_file_log(
  38. boost::log::keywords::file_name = "proxy.log",
  39. boost::log::keywords::format = "[%TimeStamp%]: %Message%"
  40. );
  41. boost::log::core::get()->set_filter(boost::log::trivial::severity >=
  42. boost::log::trivial::info);
  43. }
  44. int main(int argc, char *argv[]) {
  45. // boost::json::json_value config;
  46. if (argc != 2) {
  47. std::cerr << "Usage: twproxy <filename>" << std::endl;
  48. return EXIT_FAILURE;
  49. }
  50. init_logging();
  51. std::map<std::string, std::string> config = yaml_parse(argv[1]);
  52. /*
  53. try {
  54. // Parse the file as JSON
  55. config = yaml_parse( argv[1] );
  56. } catch (std::exception const &e) {
  57. std::cerr << "Caught exception: " << e.what() << std::endl;
  58. return EXIT_FAILURE;
  59. }
  60. */
  61. bool config_ok = true;
  62. // for (const char *key : {"server", "host", "port"}) {
  63. for (auto key : {"server", "host", "port"}) {
  64. auto pos = config.find(key);
  65. if (pos == config.end()) {
  66. config_ok = false;
  67. std::cout << "Config file missing: " << key << std::endl;
  68. BOOST_LOG_TRIVIAL(fatal) << "Config file missing: " << key;
  69. }
  70. BOOST_LOG_TRIVIAL(info) << "Config: " << key << " : " << config[key];
  71. }
  72. if (!config_ok)
  73. return 2;
  74. int port = std::stoi(config["server"]);
  75. // int port = 9999; // 2002;
  76. try {
  77. boost::asio::io_service io_service;
  78. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  79. port); // std::atoi(argv[i]));
  80. // connect to the BBS
  81. server s(io_service, endpoint, config["host"], config["port"]);
  82. //"127.0.0.1", "2023");
  83. io_service.run();
  84. } catch (std::exception &e) {
  85. std::cerr << "Exception: " << e.what() << "\n";
  86. }
  87. return EXIT_SUCCESS;
  88. }