twproxy.cpp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 <cstdlib>
  12. #include <iostream>
  13. #include <string>
  14. #include <map>
  15. #include "config.h"
  16. #include "session.h"
  17. int main(int argc, char *argv[]) {
  18. // boost::json::json_value config;
  19. if (argc != 2) {
  20. std::cerr << "Usage: twproxy <filename>" << std::endl;
  21. return EXIT_FAILURE;
  22. }
  23. std::map<std::string, std::string> config = yaml_parse(argv[1]);
  24. /*
  25. try {
  26. // Parse the file as JSON
  27. config = yaml_parse( argv[1] );
  28. } catch (std::exception const &e) {
  29. std::cerr << "Caught exception: " << e.what() << std::endl;
  30. return EXIT_FAILURE;
  31. }
  32. */
  33. bool config_ok = true;
  34. // for (const char *key : {"server", "host", "port"}) {
  35. for (auto key : {"server", "host", "port"}) {
  36. auto pos = config.find(key);
  37. if (pos == config.end()) {
  38. config_ok = false;
  39. std::cout << "Config file missing: " << key << std::endl;
  40. }
  41. }
  42. if (!config_ok)
  43. return 2;
  44. int port = std::stoi(config["server"]);
  45. // int port = 9999; // 2002;
  46. try {
  47. boost::asio::io_service io_service;
  48. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  49. port); // std::atoi(argv[i]));
  50. // connect to the BBS
  51. server s(io_service, endpoint, config["host"], config["port"]);
  52. //"127.0.0.1", "2023");
  53. io_service.run();
  54. } catch (std::exception &e) {
  55. std::cerr << "Exception: " << e.what() << "\n";
  56. }
  57. return EXIT_SUCCESS;
  58. }