irc.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. #include <boost/asio/io_context.hpp>
  18. #define SENDQ
  19. void string_toupper(std::string &str);
  20. std::vector<std::string> split_limit(std::string &text, int max = -1);
  21. std::vector<std::string> irc_split(std::string &text);
  22. std::string parse_nick(std::string &name);
  23. void remove_channel_modes(std::string &nick);
  24. class message_stamp {
  25. public:
  26. message_stamp() { time(&stamp); }
  27. std::time_t stamp;
  28. std::vector<std::string> buffer;
  29. };
  30. // using error_code = boost::system::error_code;
  31. class ircClient {
  32. using error_code = boost::system::error_code;
  33. public:
  34. ircClient(boost::asio::io_context &io_context);
  35. // async startup
  36. void begin(void);
  37. // thread-safe write to IRC
  38. void write(std::string output);
  39. #ifdef SENDQ
  40. // queued writer
  41. void write_queue(std::string target, std::string output);
  42. void on_sendq(error_code error);
  43. #endif
  44. // configuration
  45. std::string hostname;
  46. std::string port;
  47. std::string nick;
  48. std::string username = "bzbz";
  49. std::string realname;
  50. std::string autojoin;
  51. std::string version;
  52. // filename to use for logfile
  53. std::string debug_output;
  54. std::ofstream debug_file;
  55. protected:
  56. boost::signals2::mutex talkto_lock;
  57. std::string _talkto;
  58. public:
  59. std::string talkto(void) {
  60. talkto_lock.lock();
  61. std::string ret{_talkto};
  62. talkto_lock.unlock();
  63. return ret;
  64. };
  65. void talkto(std::string talkvalue) {
  66. talkto_lock.lock();
  67. _talkto = talkvalue;
  68. talkto_lock.unlock();
  69. };
  70. // channels / users
  71. std::atomic<bool> channels_updated;
  72. boost::signals2::mutex channels_lock;
  73. std::map<std::string, std::set<std::string>> channels;
  74. std::atomic<int> max_nick_length;
  75. void message(std::string msg);
  76. std::atomic<bool> shutdown;
  77. // thread-safe messages access
  78. virtual void message_append(message_stamp &msg);
  79. boost::optional<message_stamp> message_pop(void);
  80. std::vector<std::string> errors;
  81. std::atomic<bool> registered;
  82. private:
  83. void find_max_nick_length(void);
  84. boost::signals2::mutex lock;
  85. std::vector<message_stamp> messages;
  86. std::string original_nick;
  87. int nick_retry;
  88. bool logging;
  89. std::ofstream &log(void);
  90. // async callbacks
  91. void on_resolve(error_code error,
  92. boost::asio::ip::tcp::resolver::results_type results);
  93. void on_connect(error_code error,
  94. boost::asio::ip::tcp::endpoint const &endpoint);
  95. void on_handshake(error_code error);
  96. void on_write(error_code error, std::size_t bytes_transferred);
  97. void read_until(error_code error, std::size_t bytes);
  98. void on_shutdown(error_code error);
  99. // end async callback
  100. void receive(std::string &text);
  101. std::string registration(void);
  102. // initialization order matters for socket, ssl_context!
  103. //
  104. // socket up here causes segmentation fault!
  105. // boost::asio::ssl::stream<ip::tcp::socket> socket;
  106. boost::asio::ip::tcp::resolver resolver;
  107. boost::asio::ssl::context ssl_context;
  108. boost::asio::streambuf response;
  109. boost::asio::ssl::stream<boost::asio::ip::tcp::socket> socket;
  110. #ifdef SENDQ
  111. boost::asio::high_resolution_timer sendq_timer;
  112. std::map<std::string, std::vector<std::string>> sendq;
  113. std::vector<std::string> sendq_targets;
  114. int sendq_current;
  115. std::atomic<bool> sendq_active;
  116. int sendq_ms;
  117. #endif
  118. boost::asio::io_context &context;
  119. };
  120. #endif