23 #ifndef INCLUDED_GR_RUNTIME_BLOCK_H
24 #define INCLUDED_GR_RUNTIME_BLOCK_H
66 WORK_CALLED_PRODUCE = -2,
87 unsigned history()
const;
88 void set_history(
unsigned history);
109 void declare_sample_delay(
int which,
unsigned delay);
115 void declare_sample_delay(
unsigned delay);
125 unsigned sample_delay(
int which)
const;
148 virtual void forecast(
int noutput_items,
165 virtual int general_work(
int noutput_items,
178 virtual bool start();
195 void set_output_multiple(
int multiple);
216 void set_alignment(
int multiple);
219 void set_unaligned(
int na);
221 void set_is_unaligned(
bool u);
229 void consume(
int which_input,
int how_many_items);
235 void consume_each(
int how_many_items);
244 void produce(
int which_output,
int how_many_items);
255 void set_relative_rate(
double relative_rate);
274 virtual int fixed_rate_ninput_to_noutput(
int ninput);
281 virtual int fixed_rate_noutput_to_ninput(
int noutput);
286 uint64_t nitems_read(
unsigned int which_input);
291 uint64_t nitems_written(
unsigned int which_output);
324 int max_noutput_items();
332 void set_max_noutput_items(
int m);
349 void unset_max_noutput_items();
355 bool is_set_max_noutput_items();
364 void expand_minmax_buffer(
int port);
369 long max_output_buffer(
size_t i);
387 void set_max_output_buffer(
long max_output_buffer);
406 void set_max_output_buffer(
int port,
long max_output_buffer);
411 long min_output_buffer(
size_t i);
430 void set_min_output_buffer(
long min_output_buffer);
449 void set_min_output_buffer(
int port,
long min_output_buffer);
456 float pc_noutput_items();
461 float pc_noutput_items_avg();
466 float pc_noutput_items_var();
471 float pc_nproduced();
476 float pc_nproduced_avg();
481 float pc_nproduced_var();
486 float pc_input_buffers_full(
int which);
491 float pc_input_buffers_full_avg(
int which);
496 float pc_input_buffers_full_var(
int which);
501 std::vector<float> pc_input_buffers_full();
506 std::vector<float> pc_input_buffers_full_avg();
511 std::vector<float> pc_input_buffers_full_var();
516 float pc_output_buffers_full(
int which);
521 float pc_output_buffers_full_avg(
int which);
526 float pc_output_buffers_full_var(
int which);
531 std::vector<float> pc_output_buffers_full();
536 std::vector<float> pc_output_buffers_full_avg();
541 std::vector<float> pc_output_buffers_full_var();
546 float pc_work_time();
551 float pc_work_time_avg();
556 float pc_work_time_var();
561 float pc_work_time_total();
566 float pc_throughput_avg();
571 void reset_perf_counters();
600 void set_processor_affinity(
const std::vector<int> &mask);
605 void unset_processor_affinity();
615 int active_thread_priority();
627 bool update_rate()
const;
642 int d_output_multiple;
643 bool d_output_multiple_set;
646 double d_relative_rate;
647 block_detail_sptr d_detail;
649 unsigned d_attr_delay;
651 bool d_max_noutput_items_set;
652 int d_max_noutput_items;
653 int d_min_noutput_items;
655 std::vector<int> d_affinity;
663 block(
const std::string &name,
690 this->add_item_tag(which_output, tag);
699 void add_item_tag(
unsigned int which_output,
const tag_t &tag);
724 this->remove_item_tag(which_input, tag);
733 void remove_item_tag(
unsigned int which_input,
const tag_t &tag);
748 void get_tags_in_range(std::vector<tag_t> &
v,
749 unsigned int which_input,
768 void get_tags_in_range(std::vector<tag_t> &
v,
769 unsigned int which_input,
795 void get_tags_in_window(std::vector<tag_t> &
v,
796 unsigned int which_input,
812 void get_tags_in_window(std::vector<tag_t> &
v,
813 unsigned int which_input,
818 void enable_update_rate(
bool en);
839 block_detail_sptr
detail()
const {
return d_detail; }
840 void set_detail(block_detail_sptr detail) { d_detail = detail; }
844 void notify_msg_neighbors();
855 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:833
std::vector< int > processor_affinity()
Get the current processor affinity.
Definition: block.h:610
std::vector< block_sptr > block_vector_t
Definition: block.h:852
block_detail_sptr detail() const
Definition: block.h:839
void set_fixed_rate(bool fixed_rate)
Definition: block.h:667
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:679
bool output_multiple_set() const
Definition: block.h:197
#define PMT_F
Definition: pmt.h:105
gr::thread::mutex d_setlock
Definition: block.h:828
gr::logger_ptr d_logger
Definition: block.h:832
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:220
#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:310
void clear_finished()
Make sure we dont think we are finished.
Definition: block.h:848
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:821
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:853
tag_propagation_policy_t
Definition: block.h:70
std::vector< long > d_max_output_buffer
Definition: block.h:820
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:132
block(void)
Definition: block.h:662
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:318
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:583
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:222
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:260
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:840
int alignment() const
Definition: block.h:217
void no_pc_rpc()
If the block calls this in its constructor, it's perf. counters will not be exported.
Definition: block.h:589
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:713
int output_multiple() const
Definition: block.h:196