通过参考传递矢量然后调用清除

时间:2017-06-24 03:14:28

标签: c++ multithreading vector pass-by-reference ownership

我很好奇是否在通过引用传递后清除client.cpp中的data_received向量时处理未定义的行为?我从来没有遇到无效数据的问题,但我可以看到这可能是一个问题潜伏。 vector通过引用一直传递到最终队列 - 同时另一个线程将在queue_event.notify_all()触发后以自己的速率进行队列化。

如果这是一个问题,我相信解决方案可能会在阻止客户端 - >接收呼叫之后移动清除。想法?

blocking_queue.h

template <typename T>
class BlockingQueue {
    ...
    std::queue<T> queue;
    ...
};

blocking_queue.cpp

template <class T>
void BlockingQueue<T>::enqueue(T const &item)
{
    std::unique_lock<std::mutex> lk (queue_lock);
    queue.push(item);
    lk.unlock();
    queue_event.notify_all(); 
}

template <class T>
T BlockingQueue<T>::dequeue()
{
    std::unique_lock<std::mutex> lk (queue_lock);
    if(queue_event.wait_for(lk, std::chrono::milliseconds(dequeue_timeout))  == std::cv_status::no_timeout)
    {
        T rval = queue.front();
        queue.pop();
        return rval;
    }
    else
    {
        throw std::runtime_error("dequeue timeout");
    }
}

client.cpp

void Client::read_from_server()
{
    std::vector<uint8_t> data_received;

    while(run)
    {
        if (client->is_connected())
        {   
            uint8_t buf[MAX_SERVER_BUFFER_SIZE];
            int returned;

            memset(buf, 0, MAX_SERVER_BUFFER_SIZE);
            returned = client->receive(client->get_socket_descriptor(), buf, MAX_SERVER_BUFFER_SIZE);
            // should probably move data_received.clear() to here!!
            if (returned > 0)
            {
                for (int i = 0; i < returned; i++)
                {
                    data_received.push_back(buf[i]);
                }

                if (incoming_queue)
                {
                    incoming_queue->enqueue(data_received);
                }

                data_received.clear();
            }
            else
            {
                client->set_connected(false);
            }
        }    
    }
}

1 个答案:

答案 0 :(得分:1)

由于data_received.clear();我没有看到任何潜在的UB,因为std::queue<T> queue;会在调用incoming_queue->enqueue(data_received);时保留传递的项目(向量)的副本。

如果对队列的访问很好地同步,这似乎是这种情况,那么代码应该是安全的。