threadsafe_queue: Add WaitIfEmpty and use it in logging
This commit is contained in:
		@@ -40,9 +40,7 @@ public:
 | 
			
		||||
    const Impl& operator=(Impl const&) = delete;
 | 
			
		||||
 | 
			
		||||
    void PushEntry(Entry e) {
 | 
			
		||||
        std::lock_guard<std::mutex> lock(message_mutex);
 | 
			
		||||
        message_queue.Push(std::move(e));
 | 
			
		||||
        message_cv.notify_one();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void AddBackend(std::unique_ptr<Backend> backend) {
 | 
			
		||||
@@ -85,16 +83,13 @@ private:
 | 
			
		||||
                    backend->Write(e);
 | 
			
		||||
                }
 | 
			
		||||
            };
 | 
			
		||||
            while (true) {
 | 
			
		||||
                {
 | 
			
		||||
                    std::unique_lock<std::mutex> lock(message_mutex);
 | 
			
		||||
                    message_cv.wait(lock, [&] { return !running || message_queue.Pop(entry); });
 | 
			
		||||
                }
 | 
			
		||||
                if (!running) {
 | 
			
		||||
            while (message_queue.PopWait(entry)) {
 | 
			
		||||
                if (entry.final_entry) {
 | 
			
		||||
                    break;
 | 
			
		||||
                }
 | 
			
		||||
                write_logs(entry);
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Drain the logging queue. Only writes out up to MAX_LOGS_TO_WRITE to prevent a case
 | 
			
		||||
            // where a system is repeatedly spamming logs even on close.
 | 
			
		||||
            const int MAX_LOGS_TO_WRITE = filter.IsDebug() ? INT_MAX : 100;
 | 
			
		||||
@@ -106,14 +101,13 @@ private:
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    ~Impl() {
 | 
			
		||||
        running = false;
 | 
			
		||||
        message_cv.notify_one();
 | 
			
		||||
        Entry entry;
 | 
			
		||||
        entry.final_entry = true;
 | 
			
		||||
        message_queue.Push(entry);
 | 
			
		||||
        backend_thread.join();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    std::atomic_bool running{true};
 | 
			
		||||
    std::mutex message_mutex, writing_mutex;
 | 
			
		||||
    std::condition_variable message_cv;
 | 
			
		||||
    std::mutex writing_mutex;
 | 
			
		||||
    std::thread backend_thread;
 | 
			
		||||
    std::vector<std::unique_ptr<Backend>> backends;
 | 
			
		||||
    Common::MPSCQueue<Log::Entry> message_queue;
 | 
			
		||||
 
 | 
			
		||||
@@ -27,6 +27,7 @@ struct Entry {
 | 
			
		||||
    unsigned int line_num;
 | 
			
		||||
    std::string function;
 | 
			
		||||
    std::string message;
 | 
			
		||||
    bool final_entry = false;
 | 
			
		||||
 | 
			
		||||
    Entry() = default;
 | 
			
		||||
    Entry(Entry&& o) = default;
 | 
			
		||||
 
 | 
			
		||||
@@ -8,6 +8,7 @@
 | 
			
		||||
// single reader, single writer queue
 | 
			
		||||
 | 
			
		||||
#include <atomic>
 | 
			
		||||
#include <condition_variable>
 | 
			
		||||
#include <cstddef>
 | 
			
		||||
#include <mutex>
 | 
			
		||||
#include <utility>
 | 
			
		||||
@@ -39,12 +40,13 @@ public:
 | 
			
		||||
    template <typename Arg>
 | 
			
		||||
    void Push(Arg&& t) {
 | 
			
		||||
        // create the element, add it to the queue
 | 
			
		||||
        write_ptr->current = std::forward<Arg>(t);
 | 
			
		||||
        write_ptr->current = std::move(t);
 | 
			
		||||
        // set the next pointer to a new element ptr
 | 
			
		||||
        // then advance the write pointer
 | 
			
		||||
        ElementPtr* new_ptr = new ElementPtr();
 | 
			
		||||
        write_ptr->next.store(new_ptr, std::memory_order_release);
 | 
			
		||||
        write_ptr = new_ptr;
 | 
			
		||||
        cv.notify_one();
 | 
			
		||||
 | 
			
		||||
        ++size;
 | 
			
		||||
    }
 | 
			
		||||
@@ -67,6 +69,7 @@ public:
 | 
			
		||||
        --size;
 | 
			
		||||
 | 
			
		||||
        ElementPtr* tmpptr = read_ptr;
 | 
			
		||||
 | 
			
		||||
        read_ptr = tmpptr->next.load(std::memory_order_acquire);
 | 
			
		||||
        t = std::move(tmpptr->current);
 | 
			
		||||
        tmpptr->next.store(nullptr);
 | 
			
		||||
@@ -74,6 +77,14 @@ public:
 | 
			
		||||
        return true;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    bool PopWait(T& t) {
 | 
			
		||||
        if (Empty()) {
 | 
			
		||||
            std::unique_lock<std::mutex> lock(cv_mutex);
 | 
			
		||||
            cv.wait(lock, [this]() { return !Empty(); });
 | 
			
		||||
        }
 | 
			
		||||
        return Pop(t);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // not thread-safe
 | 
			
		||||
    void Clear() {
 | 
			
		||||
        size.store(0);
 | 
			
		||||
@@ -101,6 +112,8 @@ private:
 | 
			
		||||
    ElementPtr* write_ptr;
 | 
			
		||||
    ElementPtr* read_ptr;
 | 
			
		||||
    std::atomic_size_t size{0};
 | 
			
		||||
    std::mutex cv_mutex;
 | 
			
		||||
    std::condition_variable cv;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// a simple thread-safe,
 | 
			
		||||
@@ -135,6 +148,10 @@ public:
 | 
			
		||||
        return spsc_queue.Pop(t);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    bool PopWait(T& t) {
 | 
			
		||||
        return spsc_queue.PopWait(t);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // not thread-safe
 | 
			
		||||
    void Clear() {
 | 
			
		||||
        spsc_queue.Clear();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user