从boost lock free spsc队列获取错误输出

时间:2015-10-22 06:58:29

标签: c++11 boost queue lock-free

我正在尝试使用boost库实现用户定义数据类型的无锁队列,但是我得到了错误的结果。

请帮我解决我做错的地方。

#include <boost/lockfree/spsc_queue.hpp>
#include <thread>
#include <iostream>
#include <string.h>
#include <time.h>   


class Queue
{
 private:
       unsigned char *m_data;
       int m_len;

 public:
       Queue(unsigned char *data,int len);

       Queue(const Queue &obj);

       ~Queue();  

       Queue & operator =(const Queue &obj);


       unsigned char *getdata()
       {
         return m_data;
       }

       int getint()
       {
           return m_len;
       }
};

Queue::Queue(unsigned char* data, int len)
{
      m_len=len;

      m_data=new unsigned char[m_len];

      memcpy(m_data,data,m_len);
}

Queue::Queue(const Queue& obj)
{
      m_len=  obj.m_len;

      m_data=new unsigned char[m_len];

      memcpy(m_data,(unsigned char *)obj.m_data,m_len);
}

Queue::~Queue()
{
   delete[] m_data;
   m_len=0;
}

Queue & Queue::operator =(const Queue &obj)
{
   if(this != &obj)
   {
      m_len=obj.m_len;

      m_data=new unsigned char[m_len];

      memcpy(m_data,(unsigned char *)obj.m_data,m_len);
   }

   return *this;
}

boost::lockfree::spsc_queue<Queue*> q(10);



void produce()
{
    int i=0;
    unsigned char* data=(unsigned char *)malloc(10);
    memset(data,1,9);

    Queue obj(data,10);

    Queue *pqueue=&obj;

    printf("%d\n",pqueue->getint());


    q.push(pqueue);

}

void consume()
{

    Queue *obj;

    q.pop(&obj);

    printf("%d\n",obj->getint());

}


int main(int argc, char** argv) {


//  std::thread t1{produce};
//  std::thread t2{consume};
//  
//  t1.join();
//  t2.join();
    produce();
    consume();

    return 0;
}

根据我在课堂上创建的boost :: lockfree :: queue要求。

  • 复制构造函数
  • 作业运营商
  • 析构

如果有其他要求,请告诉我。 谢谢。

1 个答案:

答案 0 :(得分:15)

  1. 您在C ++中使用malloc

    你死了。

      

    你还有2条生命。

    说真的,不要这样做。特别是因为与delete[]一起使用它是明确的Undefined Behaviour

  2. 可悲的是,你在这里失去了另一种生命:

    Queue obj(data,10);
    
    Queue *pqueue=&obj;
    q.push(pqueue);
    

    您存储指向本地的指针。更多Undefined Behaviour

      

    你剩下1点生命。

  3. 上次生活

    q.pop(&obj);
    

    使用迭代器进行弹出。它将被视为输出迭代器。 您将获得一个返回,指示弹出的元素数和项目 将写入&obj[0]&obj[1]&obj[2]

    猜猜是什么? Undefined Behaviour

    另请参阅:Boost spsc queue segfault

      你死了。

  4. 你已经死了。但你放弃了你的来世

    printf("%d\n",obj->getint());
    

    由于pop可能没有弹出任何内容(队列可能已为空),因此本身就是Undefined Behaviour

  5. 有趣的是,你谈论所有这些构造函数的要求但是你将指针存储在lockfree队列中......?!写下来吧:

    typedef std::vector<unsigned char> Data;
    
    class Queue {
        private:
        Data m_data;
    
        public:
        Queue(Data data) : m_data(std::move(data)) {}
        Queue() : m_data() {}
        unsigned char const *getdata() const { return m_data.data(); } 
        size_t               getint()  const { return m_data.size(); } 
    };
    
    boost::lockfree::spsc_queue<Queue> q(10);
    

    <强> Live On Coliru

    注意:

    • 需要让消费者检查pop的返回代码。推送可能没有发生,锁定免费队列不会阻止。

    • 你不需要那个装置。只需传递矢量:

    C ++代码

    <强> Live On Coliru

    #include <boost/lockfree/spsc_queue.hpp>
    #include <thread>
    #include <iostream>
    #include <vector>
    
    typedef std::vector<unsigned char> Queue;
    
    boost::lockfree::spsc_queue<Queue> q(10);
    
    void produce() {
        Queue obj(10, 1);
    
        std::cout << __FUNCTION__ << " - " << obj.size() << "\n";
    
        q.push(std::move(obj));
    }
    
    void consume() {
        Queue obj;
        while (!q.pop(obj)) { }
    
        std::cout << __FUNCTION__ << " - " << obj.size() << "\n";
    }
    
    int main() {
        std::thread t1 {produce};
        std::thread t2 {consume};
    
        t1.join();
        t2.join();
    }