فهرست منبع

Added max_nick_length tracking.

Steve Thielemann 3 سال پیش
والد
کامیت
34621d55d2
2فایلهای تغییر یافته به همراه37 افزوده شده و 0 حذف شده
  1. 35 0
      irc.cpp
  2. 2 0
      irc.h

+ 35 - 0
irc.cpp

@@ -325,7 +325,10 @@ void ircClient::receive(std::string &text) {
         std::string output = source + " has joined " += msg_to;
         message(output);
         channels[msg_to].insert(source);
+        if ((int)source.size() > max_nick_length)
+          max_nick_length = (int)source.size();
       }
+
       channels_lock.unlock();
     }
 
@@ -354,6 +357,8 @@ void ircClient::receive(std::string &text) {
         message(output);
         channels[msg_to].erase(source);
       }
+
+      find_max_nick_length();
       channels_lock.unlock();
     }
 
@@ -374,6 +379,8 @@ void ircClient::receive(std::string &text) {
       } else {
         channels[msg_to].erase(wholeft);
       }
+
+      find_max_nick_length();
       channels_lock.unlock();
       message(output);
     }
@@ -392,6 +399,7 @@ void ircClient::receive(std::string &text) {
           // would it be possible that channel is empty now?
           // no, because we're still in it.
         }
+        find_max_nick_length();
       }
       channels_lock.unlock();
     }
@@ -417,6 +425,8 @@ void ircClient::receive(std::string &text) {
         remove_channel_modes(name);
         channels[channel].insert(name);
       }
+
+      find_max_nick_length();
       channels_lock.unlock();
     }
 
@@ -430,6 +440,7 @@ void ircClient::receive(std::string &text) {
         }
       }
 
+      find_max_nick_length();
       channels_lock.unlock();
       // Is this us?  If so, change our nick.
       if (source == nick)
@@ -525,6 +536,7 @@ void ircClient::receive(std::string &text) {
 
     if ((parts[1] == "376") or (parts[1] == "422")) {
       // END MOTD, or MOTD MISSING
+      find_max_nick_length(); // start with ourself.
       registered = true;
       if (!autojoin.empty()) {
         std::string msg = "JOIN " + autojoin;
@@ -545,6 +557,29 @@ void ircClient::receive(std::string &text) {
   // std::cout << text << "\n";
 }
 
+/**
+ * @brief find max nick length
+ *
+ * This is for formatting the messages.
+ * We run through the channels checking all the users,
+ * and also checking our own nick.
+ *
+ * This updates \ref max_nick_length
+ */
+void ircClient::find_max_nick_length(void) {
+  int max = 0;
+  for (auto const &ch : channels) {
+    for (auto const &nick : ch.second) {
+      if ((int)nick.size() > max)
+        max = (int)nick.size();
+    }
+  }
+  // check our nick against this too.
+  if ((int)nick.size() > max)
+    max = (int)nick.size();
+  max_nick_length = max;
+}
+
 std::string ircClient::registration(void) {
   std::string text;
   text = "NICK " + nick + "\r\n" + "USER " + username + " 0 * :" + realname +

+ 2 - 0
irc.h

@@ -80,6 +80,7 @@ public:
   std::atomic<bool> channels_updated;
   boost::signals2::mutex channels_lock;
   std::map<std::string, std::set<std::string>> channels;
+  std::atomic<int> max_nick_length;
 
   void message(std::string msg);
   std::atomic<bool> shutdown;
@@ -92,6 +93,7 @@ public:
   std::atomic<bool> registered;
 
 private:
+  void find_max_nick_length(void);
   boost::signals2::mutex lock;
   std::vector<message_stamp> messages;