summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib/runtime/gr_block.cc
AgeCommit message (Collapse)Author
2013-06-01gras: moved name and id into compat layerJosh Blum
2013-04-15gras: copied in standard header w/ correct datesJosh Blum
2013-04-15gras: make use of work buffer's vec callJosh Blum
2013-04-15gras: inline a bunch of wrapper callsJosh Blum
Also simplify the work by reusing work buffers mins already calculated
2013-02-25gras: changes for port config APIJosh Blum
2013-02-23gras: implement io sig ontop of set/get size apiJosh Blum
2013-02-22gras: continuation from the last commitJosh Blum
Removed a bunch of GRAS_LIBRARIES, we do this in a common place to avoid extra changes. Added virtual destructors for many classes.
2013-02-22gras: linker stuff + moving around symbols and shitJosh Blum
Basically there were some issues on OSX linking, because gras wasnt explicitly specified, and was technically exposed by the gr wrappers. As part of this commit, some symbols were moved into the wrappers, and some of the interfaces which were in gras for backwards compat purposes, The compile is still going, but this already addresses a few issues. Now, I don't want to go copying every symbol over, the real solution is to link in gras into whatever library. Probably another commit to come...
2013-01-13gras: fixed the misc issues w/ gr python blockJosh Blum
There was an bug in the get_tags_in_range impl, found incidentally. Just a little swig + python misc changes.
2013-01-13gras: support changeset for 3.6.4Josh Blum
used volk from next branch cf5c930d89ac89ba5a0da4a616c88d3c37e018ae for grextras support (it uses the dispatcher) empty stubs for the gr_basic_block msg passing. This is going to be difficult to figure out. The alias stuff may or may not be related most qa pass, there seems to be some additional issues, will be working through them on futher commits Conflicts: gnuradio-core/CMakeLists.txt gnuradio-core/src/lib/runtime/CMakeLists.txt gnuradio-core/src/lib/runtime/gr_block.cc gnuradio-core/src/lib/runtime/gr_block.h gnuradio-core/src/lib/runtime/gr_hier_block2.h gnuradio-core/src/lib/runtime/gr_top_block.h gnuradio-core/src/python/gnuradio/gr/__init__.py gr-audio/examples/c++/CMakeLists.txt gr-fcd/examples/c++/CMakeLists.txt grc/python/Port.py
2012-11-30core: gr_blocks can now have only message ports with no general_work()Tim O'Shea
* msg only blocks now get thread context * added blocking msg queue delete call * added gr_message_strobe block * added grc definitions for message_debug, message_strobe, pdu_to_tagged_stream, tagged_stream_to_pdu. * allow message fan-in connections in GRC
2012-11-29Adding PDU to tagged stream and tagged stream to PDU blocks along with QA pythonJohnathan Corgan
non-stream-connected blocks still need a new thread context
2012-11-22runtime: moved setting of min/max buffer sizes from gr_basic_block to gr_block.Tom Rondeau
2012-06-04runtime: added ability for blocks to have their own max_noutput_items.Tom Rondeau
Setting a max_noutput_items for an individual block will override the global max that can be passed to the start/run method of the top_block. Also adds QA code for testing that these features run and complete a flowgraph.
2012-04-13Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵Tom Rondeau
this in the future. The sed script was provided by Moritz Fischer.
2012-01-22sched: first attempt at working with aligned data sets. A block has an ↵Tom Rondeau
indicator on whether or not the buffers are aligned; they can use this to determine which Volk function to use or if to use Volk at all.
2011-10-19tags: made tags object orientedJosh Blum
2010-11-28Changing propagation policy enum type name and making a few other minor edits.Tom Rondeau
2010-11-17Changing get_tags API to take in a vector reference instead of returning a ↵Tom Rondeau
vector.
2010-11-08Made propagate_tags a function to be called from block_executor to move tags ↵Tom Rondeau
downstream. Also made d_start_nitems_read a member of gr_block_executor to better handle allocation.
2010-11-08Renaming "handling_method" to "propagation_policy".Tom Rondeau
2010-11-08cleaning up; comments, naming, typos, excess code, etc. Moving to make ↵Tom Rondeau
gr_block_executor more readable.
2010-11-07Moving tag handling setup back into gr_block so it can be set in the ↵Tom Rondeau
constructor of a derived block.
2010-11-07Moving tags downstream is moved into gr_block_executor. Predefined three ↵Tom Rondeau
methods of moving tags that are selectable by a gr_block.
2010-11-07Cleaning up. Better use of PMTs; comment mods; returning vectors when ↵Tom Rondeau
getting tags.
2010-11-06Adding call in scheduler to handle tag movements between blocks and some ↵Tom Rondeau
helper functions to get access and keep track of tags.
2010-11-04Moves gr_block functions dealing with tags into protected space. Adds ↵Tom Rondeau
documentation to functions in header. Adds a "srcid" parameter to the add_item_tag function.
2010-11-04Fixing buffer to update abs_write_offset counter. Keeping access to counters ↵Tom Rondeau
exposed through gr_block for now, just remaining to nitem_*.
2010-11-02Moved number items read/written from gr_block_detail into gr_buffer ↵Tom Rondeau
(abs_written_offset) and gr_buffer_reader (abs_read_offset). Keeps the API exposed in gr_blocks for now.
2010-11-02Adding some protection to the nitems read/written accessors. Should this ↵Tom Rondeau
return 0 or throw?
2010-10-31Fix to get_tags_in_range. Returns proper list and handles times when list is ↵Tom Rondeau
empty.
2010-10-26First stab at adding get functions for item tags in a given range.Tom Rondeau
2010-10-26Giving gr_block_detail a list of pmt tuples to hold item tagging information.Tom Rondeau
Adds ability to add new tags from a block.
2010-10-19Adding vectors to gr_block_detail that keep track of the number of samples ↵Tom Rondeau
read and written from each block's input. Accessor functions allow query of values through gr_block. Had to add gr_uint64 typedef to SWIG for it to understand how to handle the type.
2009-08-15gr_blocks may now produce different number of output items on each output ↵eb
stream. Merged eb/varying -r11178:11595 into trunk. Needs QA and examples. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11597 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-07Fix for ticket:262.eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10789 221aa14e-8319-0410-a670-987f0aec2ac5
2008-08-19Merged features/mp-sched -r8915:9335 into the trunk. The trunk noweb
contains the SMP aware scheduler. This changeset introduces a dependency on boost 1.35 or later. See source:gnuradio/trunk/README.building-boost for additional info. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9336 221aa14e-8319-0410-a670-987f0aec2ac5
2007-07-21Updated license from GPL version 2 or later to GPL version 3 or later.eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6044 221aa14e-8319-0410-a670-987f0aec2ac5
2006-12-12Merge jcorgan/hier developer branch into trunk. Enables creation of true ↵jcorgan
hierarchical blocks, from either C++ or Python, as well as creating pure C++ gnuradio applications. EXPERIMENTAL. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4070 221aa14e-8319-0410-a670-987f0aec2ac5
2006-09-13Updated FSF address in all files. Fixes ticket:51eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3534 221aa14e-8319-0410-a670-987f0aec2ac5
2006-08-03Houston, we have a trunk.jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3122 221aa14e-8319-0410-a670-987f0aec2ac5