irc.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #ifndef IRC_H
  2. #define IRC_H
  3. #include <boost/asio.hpp>
  4. #include <boost/asio/ssl.hpp>
  5. #include <boost/format.hpp>
  6. #include <boost/lexical_cast.hpp>
  7. #include <boost/optional.hpp>
  8. #include <boost/signals2/mutex.hpp>
  9. #include <chrono>
  10. #include <iomanip> // put_time
  11. #include <string>
  12. // #include <vector>
  13. #include <algorithm>
  14. #include <ctime> // time_t
  15. #include <fstream>
  16. #include <set>
  17. void string_toupper(std::string &str);
  18. std::vector<std::string> split_limit(std::string &text, int max = -1);
  19. std::vector<std::string> irc_split(std::string &text);
  20. std::string parse_nick(std::string &name);
  21. void remove_channel_modes(std::string &nick);
  22. class message_stamp {
  23. public:
  24. message_stamp() { time(&stamp); }
  25. std::time_t stamp;
  26. std::vector<std::string> buffer;
  27. };
  28. // using error_code = boost::system::error_code;
  29. class ircClient {
  30. using error_code = boost::system::error_code;
  31. public:
  32. ircClient(boost::asio::io_context &io_context);
  33. // async startup
  34. void begin(void);
  35. // thread-safe write to IRC
  36. void write(std::string output);
  37. // configuration
  38. std::string hostname;
  39. std::string port;
  40. std::string nick;
  41. std::string username = "bzbz";
  42. std::string realname;
  43. std::string autojoin;
  44. // filename to use for logfile
  45. std::string debug_output;
  46. std::ofstream debug_file;
  47. protected:
  48. boost::signals2::mutex talkto_lock;
  49. std::string _talkto;
  50. public:
  51. std::string talkto(void) {
  52. talkto_lock.lock();
  53. std::string ret{_talkto};
  54. talkto_lock.unlock();
  55. return ret;
  56. };
  57. void talkto(std::string talkvalue) {
  58. talkto_lock.lock();
  59. _talkto = talkvalue;
  60. talkto_lock.unlock();
  61. };
  62. // channels / users
  63. boost::signals2::mutex channels_lock;
  64. std::map<std::string, std::set<std::string>> channels;
  65. /*
  66. std::set<std::string> channels;
  67. std::set<std::string> users;
  68. std::vector<std::string> motd;
  69. */
  70. // thread-safe buffer access
  71. /*
  72. void buffer_append(std::vector<std::string> &data);
  73. int buffer_size(void);
  74. std::vector<std::string> buffer_pop(void);
  75. boost::optional<std::vector<std::string>> buffer_maybe_pop(void);
  76. */
  77. void message(std::string msg);
  78. std::atomic<bool> shutdown;
  79. // thread-safe messages access
  80. void message_append(message_stamp &msg);
  81. boost::optional<message_stamp> message_pop(void);
  82. private:
  83. boost::signals2::mutex lock;
  84. // std::vector<std::vector<std::string>> buffer;
  85. std::vector<message_stamp> messages;
  86. bool registered;
  87. std::string original_nick;
  88. int nick_retry;
  89. bool logging;
  90. std::ofstream &log(void);
  91. // async callbacks
  92. void on_resolve(error_code error,
  93. boost::asio::ip::tcp::resolver::results_type results);
  94. void on_connect(error_code error,
  95. boost::asio::ip::tcp::endpoint const &endpoint);
  96. void on_handshake(error_code error);
  97. void on_write(error_code error, std::size_t bytes_transferred);
  98. void read_until(error_code error, std::size_t bytes);
  99. void on_shutdown(error_code error);
  100. // end async callback
  101. void receive(std::string &text);
  102. std::string registration(void);
  103. // initialization order matters for socket, ssl_context!
  104. //
  105. // socket up here causes segmentation fault!
  106. // boost::asio::ssl::stream<ip::tcp::socket> socket;
  107. boost::asio::ip::tcp::resolver resolver;
  108. boost::asio::ssl::context ssl_context;
  109. boost::asio::streambuf response;
  110. boost::asio::ssl::stream<boost::asio::ip::tcp::socket> socket;
  111. boost::asio::io_context &context;
  112. };
  113. #endif