irc.h 2.7 KB

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