用C++11实现一个有界的阻塞队列

2021-07-13 22:06

阅读:677

标签:sse   ble   wait   res   his   result   put   inter   int   

对于一个无界的阻塞队列而言,其实现非常简单,即用一个锁(锁队列)+ 一个条件变量(判空)即可。那么对于一个有界阻塞队列而言,其队列的容量有上限,其实只要再加一个条件变量用来判断是否满即可。
综上,我们需要

  • mutex: 保护队列的读写操作
  • notEmptyCV: 条件变量,在take时wait, 在put之后notify
  • notFullCV: 条件变量, 在put时wait, 在take之后notify.

C++11提供了丰富的多线程编程库,包括加锁解锁、同步原语等封装。我的实现如下:

#pragma once
// Must use it higher than C++11

#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std::chrono_literals;

template
class BoundedBlockingQueue {
public:
    // make class non-copyable
    BoundedBlockingQueue(const BoundedBlockingQueue&) = delete;
    BoundedBlockingQueue& operator=(const BoundedBlockingQueue&) = delete;

    explicit BoundedBlockingQueue(size_t maxSize)
        : mtx_(),
        maxSize_(maxSize)
    {

    }

    void put(const T& x) {
    //  std::cout  locker(mtx_);
        notFullCV_.wait(locker, [this]() {return queue_.size()  locker(mtx_);
        notEmptyCV_.wait(locker, [this]() {return !queue_.empty(); });
        assert(locker.owns_lock());
        assert(!queue_.empty());

        T front(queue_.front());
        queue_.pop();
        notFullCV_.notify_one();

        return front;
    }

    // with time out
    // @param timeout: max wait time, ms
    // @param outRes: reference result if take successfully
    // @return take successfully or not
    bool take(int timeout, T& outRes) {
        std::unique_lock<:mutex> locker(mtx_);
        notEmptyCV_.wait_for(locker, timeout*1ms, [this]() {return !queue_.empty(); });
        assert(locker.owns_lock());
        if(queue_.empty()) return false;
        
        outRes = queue_.front(); queue_.pop();
        notFullCV_.notify_one();

        return true;
    }

    // Checking BlockingQueue status from outside
    // DO NOT use it as internal call, which will cause DEADLOCK
    bool empty() const {
        std::unique_lock<:mutex> locker(mtx_);
        return queue_.empty();
    }

    size_t size() const {
        std::unique_lock<:mutex> locker(mtx_);
        return queue_.size();
    }

    size_t maxSize() const {
        return maxSize_;
    }

private:
    mutable std::mutex mtx_;
    std::condition_variable notEmptyCV_;
    std::condition_variable notFullCV_;
    size_t maxSize_;
    std::queue queue_;
};

用C++11实现一个有界的阻塞队列

标签:sse   ble   wait   res   his   result   put   inter   int   

原文地址:https://www.cnblogs.com/loskyer/p/9541299.html


评论


亲,登录后才可以留言!