blob: 9368cdfbaf76aa519e8033b39aef1547996d0cc1 (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
//
// Copyright 2010-2011 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#ifndef INCLUDED_UHD_TRANSPORT_BOUNDED_BUFFER_HPP
#define INCLUDED_UHD_TRANSPORT_BOUNDED_BUFFER_HPP
#include <uhd/transport/bounded_buffer.ipp> //detail
namespace uhd { namespace transport {
/*!
* Implement a templated bounded buffer:
* Used for passing elements between threads in a producer-consumer model.
* The bounded buffer implemented waits and timed waits with condition variables.
* The pop operation blocks on the bounded_buffer to become non empty.
* The push operation blocks on the bounded_buffer to become non full.
*/
template <typename elem_type>
class bounded_buffer
{
public:
/*!
* Create a new bounded buffer object.
* \param capacity the bounded_buffer capacity
*/
bounded_buffer(size_t capacity) : _detail(capacity)
{
/* NOP */
}
/*!
* Push a new element into the bounded buffer immediately.
* The element will not be pushed when the buffer is full.
* \param elem the element reference pop to
* \return false when the buffer is full
*/
UHD_INLINE bool push_with_haste(const elem_type& elem)
{
return _detail.push_with_haste(elem);
}
/*!
* Push a new element into the bounded buffer.
* If the buffer is full prior to the push,
* make room by popping the oldest element.
* \param elem the new element to push
* \return true if the element fit without popping for space
*/
UHD_INLINE bool push_with_pop_on_full(const elem_type& elem)
{
return _detail.push_with_pop_on_full(elem);
}
/*!
* Push a new element into the bounded_buffer.
* Wait until the bounded_buffer becomes non-full.
* \param elem the new element to push
*/
UHD_INLINE void push_with_wait(const elem_type& elem)
{
return _detail.push_with_wait(elem);
}
/*!
* Push a new element into the bounded_buffer.
* Wait until the bounded_buffer becomes non-full or timeout.
* \param elem the new element to push
* \param timeout the timeout in seconds
* \return false when the operation times out
*/
UHD_INLINE bool push_with_timed_wait(const elem_type& elem, double timeout)
{
return _detail.push_with_timed_wait(elem, timeout);
}
/*!
* Pop an element from the bounded buffer immediately.
* The element will not be popped when the buffer is empty.
* \param elem the element reference pop to
* \return false when the buffer is empty
*/
UHD_INLINE bool pop_with_haste(elem_type& elem)
{
return _detail.pop_with_haste(elem);
}
/*!
* Pop an element from the bounded_buffer.
* Wait until the bounded_buffer becomes non-empty.
* \param elem the element reference pop to
*/
UHD_INLINE void pop_with_wait(elem_type& elem)
{
return _detail.pop_with_wait(elem);
}
/*!
* Pop an element from the bounded_buffer.
* Wait until the bounded_buffer becomes non-empty or timeout.
* \param elem the element reference pop to
* \param timeout the timeout in seconds
* \return false when the operation times out
*/
UHD_INLINE bool pop_with_timed_wait(elem_type& elem, double timeout)
{
return _detail.pop_with_timed_wait(elem, timeout);
}
private:
bounded_buffer_detail<elem_type> _detail;
};
}} // namespace uhd::transport
#endif /* INCLUDED_UHD_TRANSPORT_BOUNDED_BUFFER_HPP */
|