main.cpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #include <chrono>
  2. #include <iostream>
  3. #include <string>
  4. #include <thread> // sleep_for
  5. #include "door.h"
  6. #include "input.h"
  7. #include "irc.h"
  8. #include "render.h"
  9. #include "yaml-cpp/yaml.h"
  10. #include <boost/asio.hpp>
  11. // #include <boost/thread.hpp>
  12. YAML::Node config;
  13. std::function<std::ofstream &(void)> get_logger;
  14. bool file_exists(const std::string name) {
  15. std::ifstream f(name.c_str());
  16. return f.good();
  17. }
  18. int main(int argc, char *argv[]) {
  19. using namespace std::chrono_literals;
  20. boost::asio::io_context io_context;
  21. ircClient irc(io_context);
  22. door::Door door("irc-door", argc, argv);
  23. get_logger = [&door]() -> ofstream & { return door.log(); };
  24. if (file_exists("irc-door.yaml")) {
  25. config = YAML::LoadFile("irc-door.yaml");
  26. }
  27. bool update_config = false;
  28. if (!config["hostname"]) {
  29. config["hostname"] = "127.0.0.1";
  30. update_config = true;
  31. }
  32. if (!config["port"]) {
  33. config["port"] = "6697";
  34. update_config = true;
  35. }
  36. if (!config["allow_join"]) {
  37. config["allow_join"] = "0";
  38. update_config = true;
  39. }
  40. if (!config["autojoin"]) {
  41. config["autojoin"] = "#bugz";
  42. update_config = true;
  43. }
  44. if (!config["realname"]) {
  45. config["realname"] = "A poor soul on BZBZ BBS...";
  46. update_config = true;
  47. }
  48. if (!config["username"]) {
  49. config["username"] = "bzbz";
  50. update_config = true;
  51. }
  52. if (update_config) {
  53. std::ofstream fout("irc-door.yaml");
  54. fout << config << std::endl;
  55. }
  56. // configure
  57. irc.nick = door.handle;
  58. irc.realname = config["realname"].as<std::string>();
  59. irc.hostname = config["hostname"].as<std::string>();
  60. irc.port = config["port"].as<std::string>();
  61. irc.username = config["username"].as<std::string>();
  62. irc.autojoin = config["autojoin"].as<std::string>();
  63. if (config["log"]) {
  64. irc.debug_output = config["log"].as<std::string>();
  65. door << "irc debug logfile = " << config["log"].as<std::string>()
  66. << door::nl;
  67. }
  68. if (config["allow_join"].as<int>() == 1) {
  69. allow_part = true;
  70. allow_join = true;
  71. }
  72. irc.begin(); // start the initial request so io_context has work to do
  73. // boost::thread thread(boost::bind(&boost::asio::io_service::run,
  74. // &io_context));
  75. // thread Thread(boost::bind(&boost::asio::io_service::run, &io_context));
  76. thread Thread([&io_context]() -> void { io_context.run(); });
  77. door << "Welcome to the IRC chat door." << door::nl;
  78. // main "loop" -- not the proper way to do it.
  79. bool in_door = true;
  80. while (in_door) {
  81. // the main loop
  82. // custom input routine goes here
  83. if (check_for_input(door, irc)) {
  84. }
  85. boost::optional<std::vector<std::string>> msg;
  86. // hold list of users -- until end names received.
  87. // std::vector<std::string> names;
  88. bool input_cleared = false;
  89. do {
  90. msg = irc.buffer_maybe_pop();
  91. if (msg) {
  92. if (!input_cleared) {
  93. input_cleared = true;
  94. clear_input(door);
  95. }
  96. render(*msg, door, irc);
  97. }
  98. } while (msg);
  99. if (input_cleared)
  100. restore_input(door);
  101. // std::this_thread::sleep_for(200ms);
  102. if (irc.shutdown)
  103. in_door = false;
  104. }
  105. // We miss the ERROR / connection closed message
  106. io_context.stop();
  107. Thread.join();
  108. door << "Returning to the BBS..." << door::nl;
  109. // std::this_thread::sleep_for(2s);
  110. return 0;
  111. }