23 #ifndef INCLUDED_GR_RUNTIME_BLOCK_H
24 #define INCLUDED_GR_RUNTIME_BLOCK_H
66 WORK_CALLED_PRODUCE = -2,
85 unsigned history()
const;
86 void set_history(
unsigned history);
107 void declare_sample_delay(
int which,
unsigned delay);
113 void declare_sample_delay(
unsigned delay);
123 unsigned sample_delay(
int which)
const;
146 virtual void forecast(
int noutput_items,
163 virtual int general_work(
int noutput_items,
176 virtual bool start();
193 void set_output_multiple(
int multiple);
214 void set_alignment(
int multiple);
217 void set_unaligned(
int na);
219 void set_is_unaligned(
bool u);
227 void consume(
int which_input,
int how_many_items);
233 void consume_each(
int how_many_items);
242 void produce(
int which_output,
int how_many_items);
253 void set_relative_rate(
double relative_rate);
272 virtual int fixed_rate_ninput_to_noutput(
int ninput);
279 virtual int fixed_rate_noutput_to_ninput(
int noutput);
284 uint64_t nitems_read(
unsigned int which_input);
289 uint64_t nitems_written(
unsigned int which_output);
322 int max_noutput_items();
330 void set_max_noutput_items(
int m);
347 void unset_max_noutput_items();
353 bool is_set_max_noutput_items();
362 void expand_minmax_buffer(
int port);
367 long max_output_buffer(
size_t i);
385 void set_max_output_buffer(
long max_output_buffer);
404 void set_max_output_buffer(
int port,
long max_output_buffer);
409 long min_output_buffer(
size_t i);
428 void set_min_output_buffer(
long min_output_buffer);
447 void set_min_output_buffer(
int port,
long min_output_buffer);
454 float pc_noutput_items();
459 float pc_noutput_items_avg();
464 float pc_noutput_items_var();
469 float pc_nproduced();
474 float pc_nproduced_avg();
479 float pc_nproduced_var();
484 float pc_input_buffers_full(
int which);
489 float pc_input_buffers_full_avg(
int which);
494 float pc_input_buffers_full_var(
int which);
499 std::vector<float> pc_input_buffers_full();
504 std::vector<float> pc_input_buffers_full_avg();
509 std::vector<float> pc_input_buffers_full_var();
514 float pc_output_buffers_full(
int which);
519 float pc_output_buffers_full_avg(
int which);
524 float pc_output_buffers_full_var(
int which);
529 std::vector<float> pc_output_buffers_full();
534 std::vector<float> pc_output_buffers_full_avg();
539 std::vector<float> pc_output_buffers_full_var();
544 float pc_work_time();
549 float pc_work_time_avg();
554 float pc_work_time_var();
559 float pc_work_time_total();
564 float pc_throughput_avg();
569 void reset_perf_counters();
598 void set_processor_affinity(
const std::vector<int> &mask);
603 void unset_processor_affinity();
613 int active_thread_priority();
625 bool update_rate()
const;
640 int d_output_multiple;
641 bool d_output_multiple_set;
644 double d_relative_rate;
645 block_detail_sptr d_detail;
647 unsigned d_attr_delay;
649 bool d_max_noutput_items_set;
650 int d_max_noutput_items;
651 int d_min_noutput_items;
653 std::vector<int> d_affinity;
661 block(
const std::string &name,
688 this->add_item_tag(which_output, tag);
697 void add_item_tag(
unsigned int which_output,
const tag_t &tag);
722 this->remove_item_tag(which_input, tag);
731 void remove_item_tag(
unsigned int which_input,
const tag_t &tag);
746 void get_tags_in_range(std::vector<tag_t> &
v,
747 unsigned int which_input,
766 void get_tags_in_range(std::vector<tag_t> &
v,
767 unsigned int which_input,
793 void get_tags_in_window(std::vector<tag_t> &
v,
794 unsigned int which_input,
810 void get_tags_in_window(std::vector<tag_t> &
v,
811 unsigned int which_input,
816 void enable_update_rate(
bool en);
837 block_detail_sptr
detail()
const {
return d_detail; }
838 void set_detail(block_detail_sptr detail) { d_detail = detail; }
842 void notify_msg_neighbors();
853 inline block_sptr cast_to_block_sptr(basic_block_sptr p)
boost::shared_ptr< io_signature > sptr
Definition: io_signature.h:45
pmt::pmt_t value
the value of tag (as a PMT)
Definition: tags.h:40
uint64_t offset
the item tag occurred at (as a uint64_t)
Definition: tags.h:34
gr::logger_ptr d_debug_logger
Definition: block.h:831
std::vector< int > processor_affinity()
Get the current processor affinity.
Definition: block.h:608
std::vector< block_sptr > block_vector_t
Definition: block.h:850
block_detail_sptr detail() const
Definition: block.h:837
void set_fixed_rate(bool fixed_rate)
Definition: block.h:665
void add_item_tag(unsigned int which_output, uint64_t abs_offset, const pmt::pmt_t &key, const pmt::pmt_t &value, const pmt::pmt_t &srcid=pmt::PMT_F)
Adds a new tag onto the given output buffer.
Definition: block.h:677
bool output_multiple_set() const
Definition: block.h:195
#define PMT_F
Definition: pmt.h:105
gr::thread::mutex d_setlock
Definition: block.h:826
gr::logger_ptr d_logger
Definition: block.h:830
std::vector< const void * > gr_vector_const_void_star
Definition: gnuradio-runtime/include/gnuradio/types.h:38
Definition: cc_common.h:45
int unaligned() const
Definition: block.h:218
#define GR_RUNTIME_API
Definition: gnuradio-runtime/include/gnuradio/api.h:30
int min_noutput_items() const
Return the minimum number of output items this block can produce during a call to work...
Definition: block.h:308
void clear_finished()
Make sure we dont think we are finished.
Definition: block.h:846
GR_RUNTIME_API int set_thread_priority(gr_thread_t thread, int priority)
set current thread priority for a given thread ID
std::vector< long > d_min_output_buffer
Definition: block.h:819
std::vector< void * > gr_vector_void_star
Definition: gnuradio-runtime/include/gnuradio/types.h:37
Definition: block_gateway.h:46
std::vector< int > gr_vector_int
Definition: gnuradio-runtime/include/gnuradio/types.h:33
std::vector< block_sptr >::iterator block_viter_t
Definition: block.h:851
tag_propagation_policy_t
Definition: block.h:70
std::vector< long > d_max_output_buffer
Definition: block.h:818
Include this header to use the message passing features.
Definition: logger.h:131
The abstract base class for all signal processing blocks.Basic blocks are the bare abstraction of an ...
Definition: basic_block.h:58
bool fixed_rate() const
Return true if this block has a fixed input to output rate.
Definition: block.h:130
block(void)
Definition: block.h:660
void set_min_noutput_items(int m)
Set the minimum number of output items this block can produce during a call to work.
Definition: block.h:316
GR_RUNTIME_API int thread_priority(gr_thread_t thread)
get current thread priority for a given thread ID
bool is_pc_rpc_set()
Checks if this block is already exporting perf. counters to ControlPort.
Definition: block.h:581
pmt::pmt_t key
the key of tag (as a PMT symbol)
Definition: tags.h:37
log4cpp::Category * logger_ptr
GR_LOG macrosThese macros wrap the standard LOG4CPP_LEVEL macros. The availablie macros are: LOG_DEBU...
Definition: logger.h:149
Definition: block_gateway.h:45
std::ostream & operator<<(std::ostream &os, basic_block_sptr basic_block)
Definition: basic_block.h:399
bool is_unaligned() const
Definition: block.h:220
boost::mutex mutex
Definition: thread.h:46
Definition: block_gateway.h:47
double relative_rate() const
return the approximate output rate / input rate
Definition: block.h:258
pmt::pmt_t srcid
the source ID of tag (as a PMT)
Definition: tags.h:43
boost::intrusive_ptr< pmt_base > pmt_t
typedef for shared pointer (transparent reference counting). See http://www.boost.org/libs/smart_ptr/smart_ptr.htm
Definition: pmt.h:56
The abstract base class for all 'terminal' processing blocks.A signal processing flow is constructed ...
Definition: block.h:60
tag_propagation_policy_t
Definition: block_gateway.h:44
void set_detail(block_detail_sptr detail)
Definition: block.h:838
int alignment() const
Definition: block.h:215
void no_pc_rpc()
If the block calls this in its constructor, it's perf. counters will not be exported.
Definition: block.h:587
void remove_item_tag(unsigned int which_input, uint64_t abs_offset, const pmt::pmt_t &key, const pmt::pmt_t &value, const pmt::pmt_t &srcid=pmt::PMT_F)
DEPRECATED. Will be removed in 3.8.
Definition: block.h:711
int output_multiple() const
Definition: block.h:194