11 #ifndef INCLUDED_GR_RUNTIME_BUFFER_H
12 #define INCLUDED_GR_RUNTIME_BUFFER_H
32 class buffer_reader_sm;
36 typedef std::function<
void*(
void*,
const void*, std::size_t)>
mem_func_t;
57 uint64_t downstream_lcm_nitems,
58 uint32_t downstream_max_out_mult,
59 block_sptr link = block_sptr(),
60 block_sptr buf_owner = block_sptr());
87 unsigned int bufsize()
const {
return d_bufsize; }
92 const char*
base()
const {
return static_cast<const char*
>(d_base); }
115 bool done()
const {
return d_done; }
120 block_sptr
link() {
return block_sptr(d_link); }
122 size_t nreaders()
const {
return d_readers.size(); }
132 d_abs_write_offset = 0;
143 d_max_reader_history = std::max(d_max_reader_history, history);
144 d_has_history = (d_max_reader_history > 1);
177 return d_item_tags.begin();
179 std::multimap<uint64_t, tag_t>::iterator
get_tags_end() {
return d_item_tags.end(); }
182 return d_item_tags.lower_bound(x);
186 return d_item_tags.upper_bound(x);
201 [[maybe_unused]]
unsigned read_index)
211 [[maybe_unused]]
int items_avail,
212 [[maybe_unused]]
unsigned read_index)
233 [[maybe_unused]]
bool force =
false)
245 d_cv.wait(lock, [
this]() {
return d_callback_flag ==
false; });
246 ++d_active_pointer_counter;
257 if (--d_active_pointer_counter == 0)
286 uint64_t downstream_lcm_nitems,
367 uint64_t downstream_lcm_nitems,
368 uint32_t downstream_max_out_mult,
Definition: buffer_reader_sm.h:22
How we keep track of the readers of a gr::buffer.
Definition: buffer_reader.h:49
Single writer, multiple reader fifo.
Definition: buffer.h:67
uint32_t d_active_pointer_counter
Definition: buffer.h:326
size_t nreaders() const
Definition: buffer.h:122
virtual void update_reader_block_history(unsigned history, [[maybe_unused]] int delay)
Definition: buffer.h:141
unsigned d_max_reader_delay
Definition: buffer.h:299
void remove_item_tag(const tag_t &tag, long id)
Removes an existing tag from the buffer.
gr::thread::mutex d_mutex
Definition: buffer.h:317
std::weak_ptr< block > d_link
Definition: buffer.h:310
const char * base() const
return the base address of the buffer
Definition: buffer.h:92
buffer_reader * reader(size_t index)
Definition: buffer.h:123
uint64_t get_downstream_lcm_nitems()
Definition: buffer.h:137
uint64_t d_write_multiple
Definition: buffer.h:329
void prune_tags(uint64_t max_time)
Removes all tags before max_time from buffer.
bool done() const
Definition: buffer.h:115
void decrement_active()
Decrement the number of active pointers for this buffer and signal anyone waiting when the count reac...
Definition: buffer.h:253
void increment_active()
Increment the number of active pointers for this buffer.
Definition: buffer.h:241
void add_item_tag(const tag_t &tag)
Adds a new tag to the buffer.
virtual void post_work(int nitems)=0
Function to be executed after this object's owner completes the call to general_work()
gr::logger_ptr d_logger
Definition: buffer.h:69
gr::thread::mutex * mutex()
Definition: buffer.h:125
virtual unsigned index_add(unsigned a, unsigned b)=0
Increment read or write index for this buffer.
friend GR_RUNTIME_API buffer_sptr make_buffer(int nitems, size_t sizeof_item, uint64_t downstream_lcm_nitems, block_sptr link)
unsigned int d_bufsize
Definition: buffer.h:295
std::multimap< uint64_t, tag_t >::iterator get_tags_upper_bound(uint64_t x)
Definition: buffer.h:184
virtual bool output_blkd_cb_ready([[maybe_unused]] int output_multiple)
Returns true if the current thread is ready to execute output_blocked_callback(), false otherwise....
Definition: buffer.h:223
virtual bool allocate_buffer([[maybe_unused]] int nitems)
Definition: buffer.h:344
std::multimap< uint64_t, tag_t >::iterator get_tags_lower_bound(uint64_t x)
Definition: buffer.h:180
uint32_t d_max_reader_output_multiple
Definition: buffer.h:330
virtual void * write_pointer()
return pointer to write buffer.
virtual const void * _read_pointer(unsigned int read_index)
return pointer to read buffer.
void reset_nitem_counter()
Definition: buffer.h:129
void on_unlock() override
"on_unlock" function from the custom_lock_if.
uint64_t d_abs_write_offset
Definition: buffer.h:319
buffer_mapping_type d_buf_map_type
Definition: buffer.h:296
friend std::ostream & operator<<(std::ostream &os, const buffer &buf)
virtual bool output_blocked_callback([[maybe_unused]] int output_multiple, [[maybe_unused]] bool force=false)
Callback function that the scheduler will call when it determines that the output is blocked....
Definition: buffer.h:232
uint32_t get_max_reader_output_multiple()
Definition: buffer.h:139
bool d_has_history
Definition: buffer.h:306
virtual int space_available()=0
return number of items worth of space available for writing
virtual bool input_blocked_callback([[maybe_unused]] int items_required, [[maybe_unused]] int items_avail, [[maybe_unused]] unsigned read_index)
Callback function that the scheduler will call when it determines that the input is blocked....
Definition: buffer.h:210
void drop_reader(buffer_reader *reader)
disassociate reader from this buffer
block_sptr link()
Return the block that writes to this buffer.
Definition: buffer.h:120
buffer_mapping_type get_mapping_type()
return the buffer's mapping type
Definition: buffer.h:77
void set_transfer_type(const transfer_type &type)
Assign buffer's transfer_type.
size_t get_sizeof_item()
Definition: buffer.h:135
unsigned int bufsize() const
return size of this buffer in items
Definition: buffer.h:87
uint64_t d_downstream_lcm_nitems
Definition: buffer.h:328
std::multimap< uint64_t, tag_t > d_item_tags
Definition: buffer.h:321
std::vector< buffer_reader * > d_readers
Definition: buffer.h:309
friend GR_RUNTIME_API buffer_reader_sptr buffer_add_reader(buffer_sptr buf, int nzero_preload, block_sptr link, int delay)
Create a new gr::buffer_reader and attach it to buffer buf.
virtual bool input_blkd_cb_ready([[maybe_unused]] int items_required, [[maybe_unused]] unsigned read_index)
Returns true when the current thread is ready to call the callback, false otherwise....
Definition: buffer.h:200
void on_lock(gr::thread::scoped_lock &lock) override
"on_lock" function from the custom_lock_if.
unsigned d_max_reader_history
Definition: buffer.h:303
void update_write_pointer(int nitems)
tell buffer that we wrote nitems into it
bool d_done
Definition: buffer.h:320
unsigned int d_write_index
Definition: buffer.h:318
char * d_base
Definition: buffer.h:294
virtual unsigned index_sub(unsigned a, unsigned b)=0
Decrement read or write index for this buffer.
uint64_t nitems_written()
Definition: buffer.h:127
size_t d_sizeof_item
Definition: buffer.h:308
buffer(buffer_mapping_type buftype, int nitems, size_t sizeof_item, uint64_t downstream_lcm_nitems, uint32_t downstream_max_out_mult, block_sptr link)
constructor is private. Use gr_make_buffer to create instances.
std::multimap< uint64_t, tag_t >::iterator get_tags_end()
Definition: buffer.h:179
transfer_type d_transfer_type
Definition: buffer.h:332
gr::thread::condition_variable d_cv
Definition: buffer.h:324
std::multimap< uint64_t, tag_t >::iterator get_tags_begin()
Definition: buffer.h:175
gr::logger_ptr d_debug_logger
Definition: buffer.h:70
uint64_t d_last_min_items_read
Definition: buffer.h:322
bool d_callback_flag
Definition: buffer.h:325
Definition: custom_lock.h:27
#define GR_RUNTIME_API
Definition: gnuradio-runtime/include/gnuradio/api.h:18
boost::mutex mutex
Definition: thread.h:37
boost::unique_lock< boost::mutex > scoped_lock
Definition: thread.h:38
boost::condition_variable condition_variable
Definition: thread.h:39
GNU Radio logging wrapper.
Definition: basic_block.h:29
std::function< void *(void *, const void *, std::size_t)> mem_func_t
Definition: buffer.h:36
std::shared_ptr< logger > logger_ptr
Definition: logger.h:250
GR_RUNTIME_API buffer_sptr make_buffer(int nitems, size_t sizeof_item, uint64_t downstream_lcm_nitems, uint32_t downstream_max_out_mult, block_sptr link=block_sptr(), block_sptr buf_owner=block_sptr())
Allocate a buffer that holds at least nitems of size sizeof_item.
transfer_type
Definition: transfer_type.h:19
buffer_mapping_type
Definition: buffer.h:34
GR_RUNTIME_API long buffer_ncurrently_allocated()
returns # of buffers currently allocated
Template used to create buffer types. Note that the factory_class parameter must contain a static fun...
Definition: buffer_type.h:94