diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-04-21 15:56:26 +0200 | 
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-04-21 15:56:26 +0200 | 
| commit | cd5ef5af74b7dbee8c27549cd219a4ce5a0999c5 (patch) | |
| tree | cbbf0814c367f39af3ce549fe76f6f82bf9a044f /lib/ThreadsafeQueue.h | |
| parent | a92840837bff745b499264ad5180232a1a9fc5d2 (diff) | |
| download | dabmux-cd5ef5af74b7dbee8c27549cd219a4ce5a0999c5.tar.gz dabmux-cd5ef5af74b7dbee8c27549cd219a4ce5a0999c5.tar.bz2 dabmux-cd5ef5af74b7dbee8c27549cd219a4ce5a0999c5.zip | |
Common 33a8362: EDI TCP output: handle disconnects
Diffstat (limited to 'lib/ThreadsafeQueue.h')
| -rw-r--r-- | lib/ThreadsafeQueue.h | 23 | 
1 files changed, 19 insertions, 4 deletions
| diff --git a/lib/ThreadsafeQueue.h b/lib/ThreadsafeQueue.h index 62f4c96..815dfe0 100644 --- a/lib/ThreadsafeQueue.h +++ b/lib/ThreadsafeQueue.h @@ -52,12 +52,21 @@ public:      /* Push one element into the queue, and notify another thread that       * might be waiting.       * +     * if max_size > 0 and the queue already contains at least max_size elements, +     * the element gets discarded. +     *       * returns the new queue size.       */ -    size_t push(T const& val) +    size_t push(T const& val, size_t max_size = 0)      {          std::unique_lock<std::mutex> lock(the_mutex); -        the_queue.push(val); +        size_t queue_size_before = the_queue.size(); +        if (max_size == 0) { +            the_queue.push(val); +        } +        else if (queue_size_before < max_size) { +            the_queue.push(val); +        }          size_t queue_size = the_queue.size();          lock.unlock(); @@ -66,10 +75,16 @@ public:          return queue_size;      } -    size_t push(T&& val) +    size_t push(T&& val, size_t max_size = 0)      {          std::unique_lock<std::mutex> lock(the_mutex); -        the_queue.emplace(std::move(val)); +        size_t queue_size_before = the_queue.size(); +        if (max_size == 0) { +            the_queue.emplace(std::move(val)); +        } +        else if (queue_size_before < max_size) { +            the_queue.emplace(std::move(val)); +        }          size_t queue_size = the_queue.size();          lock.unlock(); | 
