فهرست منبع

Try using atomic bool rather then lock & check.

I was hoping to reduce the cpu usage down, and this
seemed to help some.  (checking an atomic bool, rather
then lock and checking messages.)
Steve Thielemann 3 سال پیش
والد
کامیت
d6a9963869
2فایلهای تغییر یافته به همراه7 افزوده شده و 0 حذف شده
  1. 6 0
      irc.cpp
  2. 1 0
      irc.h

+ 6 - 0
irc.cpp

@@ -101,6 +101,7 @@ ircClient::ircClient(boost::asio::io_context &io_context)
   nick_retry = 1;
   shutdown = false;
   logging = false;
+  channels_updated = false;
 }
 
 std::ofstream &ircClient::log(void) {
@@ -142,6 +143,7 @@ void ircClient::write(std::string output) {
 void ircClient::message_append(message_stamp &msg) {
   lock.lock();
   messages.push_back(msg);
+  channels_updated = true;
   lock.unlock();
 }
 
@@ -154,6 +156,7 @@ boost::optional<message_stamp> ircClient::message_pop(void) {
   lock.lock();
   message_stamp msg;
   if (messages.empty()) {
+    channels_updated = false;
     lock.unlock();
     return boost::optional<message_stamp>{};
   }
@@ -428,6 +431,9 @@ void ircClient::receive(std::string &text) {
       }
 
       channels_lock.unlock();
+      // Is this us?  If so, change our nick.
+      if (source == nick)
+        nick = msg_to;
     }
 
     if (cmd == "PRIVMSG") {

+ 1 - 0
irc.h

@@ -77,6 +77,7 @@ public:
   };
 
   // channels / users
+  std::atomic<bool> channels_updated;
   boost::signals2::mutex channels_lock;
   std::map<std::string, std::set<std::string>> channels;