blob: bf3be992ae25820fcfa8da1dd42074ed3a4af5e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/* -*- c++ -*- */
/*
* Copyright 2015 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef RPCBUFFEREDGET_H
#define RPCBUFFEREDGET_H
#include <boost/thread/condition_variable.hpp>
#include <boost/thread/mutex.hpp>
template <typename TdataType>
class rpcbufferedget
{
public:
rpcbufferedget(const unsigned int init_buffer_size = 4096)
: d_data_needed(false),
d_data_ready(),
d_buffer_lock(),
d_buffer(init_buffer_size)
{
;
}
~rpcbufferedget() { d_data_ready.notify_all(); }
void offer_data(const TdataType& data)
{
if (!d_data_needed)
return;
{
boost::mutex::scoped_lock lock(d_buffer_lock);
d_buffer = data;
d_data_needed = false;
}
d_data_ready.notify_one();
}
TdataType get()
{
boost::mutex::scoped_lock lock(d_buffer_lock);
d_data_needed = true;
d_data_ready.wait(lock);
return d_buffer;
}
private:
bool d_data_needed;
boost::condition_variable d_data_ready;
boost::mutex d_buffer_lock;
TdataType d_buffer;
};
#endif
|