irc.h 3.1 KB

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