// // Copyright 2012 Josh Blum // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with io_sig program. If not, see . #include "element_impl.hpp" #include #include using namespace gnuradio; Block::Block(void) { //NOP } Block::Block(const std::string &name): Element(name) { //create internal block object tsbe::BlockConfig config; config.input_callback = boost::bind(&ElementImpl::handle_input_msg, this->get(), _1, _2, _3); config.output_callback = boost::bind(&ElementImpl::handle_output_msg, this->get(), _1, _2, _3); config.block_callback = boost::bind(&ElementImpl::handle_block_msg, this->get(), _1, _2); config.changed_callback = boost::bind(&ElementImpl::topology_update, this->get(), _1); (*this)->block = tsbe::Block(config); //setup some state variables (*this)->topology_init = false; (*this)->forecast_fail = false; (*this)->block_ptr = this; (*this)->hint = 0; (*this)->block_state = ElementImpl::BLOCK_STATE_INIT; //call block methods to init stuff this->set_input_history(0); this->set_output_multiple(1); this->set_fixed_rate(true); this->set_relative_rate(1.0); this->set_tag_propagation_policy(TPP_ALL_TO_ALL); } template void vector_set(V &v, const T &t, const size_t index) { if (v.size() <= index) { v.resize(index+1, t); } v[index] = t; } template typename V::value_type vector_get(const V &v, const size_t index) { if (v.size() <= index) { return v.front(); } return v[index]; } size_t Block::input_history(const size_t which_input) const { return vector_get((*this)->input_history_items, which_input); } void Block::set_input_history(const size_t history, const size_t which_input) { vector_set((*this)->input_history_items, history, which_input); if ((*this)->topology_init) (*this)->block.post_msg(UpdateInputsMessage()); } size_t Block::output_multiple(const size_t which_output) const { return vector_get((*this)->output_multiple_items, which_output); } void Block::set_output_multiple(const size_t multiple, const size_t which_output) { vector_set((*this)->output_multiple_items, multiple, which_output); if ((*this)->topology_init) (*this)->block.post_msg(UpdateInputsMessage()); } void Block::consume(const size_t which_input, const size_t how_many_items) { (*this)->consume_items[which_input] += how_many_items; (*this)->consume_called[which_input] = true; } void Block::consume_each(const size_t how_many_items) { for (size_t i = 0; i < (*this)->consume_items.size(); i++) { (*this)->consume_items[i] += how_many_items; (*this)->consume_called[i] = true; } } void Block::produce(const size_t which_output, const size_t how_many_items) { (*this)->produce_items[which_output] += how_many_items; } void Block::set_input_inline(const size_t which_input, const bool enb) { vector_set((*this)->input_inline_enables, enb, which_input); } bool Block::input_inline(const size_t which_input) const { return vector_get((*this)->input_inline_enables, which_input); } void Block::set_fixed_rate(const bool fixed_rate) { (*this)->enable_fixed_rate = fixed_rate; } void Block::set_relative_rate(double relative_rate) { (*this)->relative_rate = relative_rate; this->set_fixed_rate(true); } double Block::relative_rate(void) const { return (*this)->relative_rate; } uint64_t Block::nitems_read(const size_t which_input) { return (*this)->items_consumed[which_input]; } uint64_t Block::nitems_written(const size_t which_output) { return (*this)->items_produced[which_output]; } Block::tag_propagation_policy_t Block::tag_propagation_policy(void) { return (*this)->tag_prop_policy; } void Block::set_tag_propagation_policy(Block::tag_propagation_policy_t p) { (*this)->tag_prop_policy = p; } void Block::add_item_tag( const size_t which_output, const Tag &tag ){ ASSERT((*this)->work_task_iface); (*this)->work_task_iface.post_downstream(which_output, tag); } void Block::add_item_tag( const size_t which_output, uint64_t abs_offset, const pmt::pmt_t &key, const pmt::pmt_t &value, const pmt::pmt_t &srcid ){ Tag t; t.offset = abs_offset; t.key = key; t.value = value; t.srcid = srcid; this->add_item_tag(which_output, t); } void Block::get_tags_in_range( std::vector &tags, const size_t which_input, uint64_t abs_start, uint64_t abs_end ){ const std::vector &input_tags = (*this)->input_tags[which_input]; tags.clear(); for (size_t i = 0; i < input_tags.size(); i++) { if (input_tags[i].offset >= abs_start and input_tags[i].offset <= abs_end) { tags.push_back(input_tags[i]); } } } void Block::get_tags_in_range( std::vector &tags, const size_t which_input, uint64_t abs_start, uint64_t abs_end, const pmt::pmt_t &key ){ const std::vector &input_tags = (*this)->input_tags[which_input]; tags.clear(); for (size_t i = 0; i < input_tags.size(); i++) { if ( input_tags[i].offset >= abs_start and input_tags[i].offset <= abs_end and pmt::pmt_equal(input_tags[i].key, key) ){ tags.push_back(input_tags[i]); } } } void Block::forecast(int, std::vector &) { //NOP } bool Block::start(void) { return true; } bool Block::stop(void) { return true; } bool Block::check_topology(int, int) { return true; } void Block::set_buffer_affinity(const Affinity &affinity) { (*this)->buffer_affinity = affinity; }