summaryrefslogtreecommitdiff
path: root/gr-blocks
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks')
-rw-r--r--gr-blocks/grc/blocks_tag_object.xml6
-rw-r--r--gr-blocks/grc/blocks_vector_source_x.xml2
-rw-r--r--gr-blocks/lib/CMakeLists.txt4
-rw-r--r--gr-blocks/lib/vector_insert_X_impl.cc.t8
-rwxr-xr-xgr-blocks/python/blocks/qa_vector_insert.py61
5 files changed, 73 insertions, 8 deletions
diff --git a/gr-blocks/grc/blocks_tag_object.xml b/gr-blocks/grc/blocks_tag_object.xml
index d2ef9fc41f..7352d801a0 100644
--- a/gr-blocks/grc/blocks_tag_object.xml
+++ b/gr-blocks/grc/blocks_tag_object.xml
@@ -10,35 +10,31 @@
<import>import pmt</import>
<var_make>self.$(id) = $(id) = gr.tag_utils.python_to_tag(($offset, $key, $value, $src))</var_make>
<make></make>
-
+ <callback>self.set_$(id)(gr.tag_utils.python_to_tag(($offset, $key, $value, $src)))</callback>
<param>
<name>Offset</name>
<key>offset</key>
<value>0</value>
<type>int</type>
</param>
-
<param>
<name>Key</name>
<key>key</key>
<value>pmt.intern("key")</value>
<type>raw</type>
</param>
-
<param>
<name>Value</name>
<key>value</key>
<value>pmt.intern("value")</value>
<type>raw</type>
</param>
-
<param>
<name>Source ID</name>
<key>src</key>
<value>pmt.intern("src")</value>
<type>raw</type>
</param>
-
<doc>
This block creates a tag object. While tags are based on an
absolute offset, this is based on a relative offset that must be
diff --git a/gr-blocks/grc/blocks_vector_source_x.xml b/gr-blocks/grc/blocks_vector_source_x.xml
index c8714978ae..0417baa34a 100644
--- a/gr-blocks/grc/blocks_vector_source_x.xml
+++ b/gr-blocks/grc/blocks_vector_source_x.xml
@@ -9,7 +9,7 @@
<key>blocks_vector_source_x</key>
<import>from gnuradio import blocks</import>
<make>blocks.vector_source_$(type.fcn)($vector, $repeat, $vlen, $tags)</make>
- <callback>set_data($vector)</callback>
+ <callback>set_data($vector, $tags)</callback>
<param>
<name>Output Type</name>
<key>type</key>
diff --git a/gr-blocks/lib/CMakeLists.txt b/gr-blocks/lib/CMakeLists.txt
index 2af83aaaed..6e1a3f2ed3 100644
--- a/gr-blocks/lib/CMakeLists.txt
+++ b/gr-blocks/lib/CMakeLists.txt
@@ -143,6 +143,8 @@ list(APPEND gr_blocks_sources
multiply_const_vcc_impl.cc
multiply_const_ff_impl.cc
multiply_const_vff_impl.cc
+ multiply_matrix_cc_impl.cc
+ multiply_matrix_ff_impl.cc
nlog10_ff_impl.cc
nop_impl.cc
null_sink_impl.cc
@@ -202,8 +204,6 @@ list(APPEND gr_blocks_sources
vector_to_streams_impl.cc
wavfile_sink_impl.cc
wavfile_source_impl.cc
- multiply_matrix_cc_impl.cc
- multiply_matrix_ff_impl.cc
)
if(ENABLE_GR_CTRLPORT)
diff --git a/gr-blocks/lib/vector_insert_X_impl.cc.t b/gr-blocks/lib/vector_insert_X_impl.cc.t
index 4e1eb45da3..6464a4aba3 100644
--- a/gr-blocks/lib/vector_insert_X_impl.cc.t
+++ b/gr-blocks/lib/vector_insert_X_impl.cc.t
@@ -51,6 +51,7 @@ namespace gr {
d_offset(offset),
d_periodicity(periodicity)
{
+ set_tag_propagation_policy(TPP_DONT); // handle tags manually
//printf("INITIAL: periodicity = %d, offset = %d\n", periodicity, offset);
// some sanity checks
assert(offset < periodicity);
@@ -79,6 +80,13 @@ namespace gr {
if(d_offset >= ((int)d_data.size())) { // if we are in the copy region
int max_copy = std::min(std::min(noutput_items - oo, ninput_items[0] - ii),
d_periodicity - d_offset);
+ std::vector<tag_t> tags;
+ get_tags_in_range(tags, 0, nitems_read(0) + ii, nitems_read(0) + max_copy + ii);
+ for(unsigned i = 0; i < tags.size(); i++)
+ {
+ //printf("copy tag from in@%d to out@%d\n", int(tags[i].offset), int(nitems_written(0) + oo + (tags[i].offset-nitems_read(0)-ii)));
+ add_item_tag(0, nitems_written(0) + oo + (tags[i].offset-nitems_read(0)-ii), tags[i].key, tags[i].value, tags[i].srcid);
+ }
//printf("copy %d from input\n", max_copy);
memcpy( &out[oo], &in[ii], sizeof(@TYPE@)*max_copy );
//printf(" * memcpy returned.\n");
diff --git a/gr-blocks/python/blocks/qa_vector_insert.py b/gr-blocks/python/blocks/qa_vector_insert.py
index e4c4055125..b916e3d528 100755
--- a/gr-blocks/python/blocks/qa_vector_insert.py
+++ b/gr-blocks/python/blocks/qa_vector_insert.py
@@ -53,6 +53,67 @@ class test_vector_insert(gr_unittest.TestCase):
else:
self.assertEqual(0, result_data[i])
+ def test_002(self): # insert tags and check their propagation, zero offset
+ period = 11000
+ offset = 0
+ insert = [1.0,] * 1000
+
+ src = blocks.null_source(gr.sizeof_float)
+ s2ts = blocks.stream_to_tagged_stream(gr.sizeof_float, 1, period-len(insert), "packet")
+ head = blocks.head(gr.sizeof_float, 1000000)
+ ins = blocks.vector_insert_f(insert, period, offset)
+ dst = blocks.vector_sink_f()
+
+ self.tb.connect(src, s2ts, head, ins, dst)
+ self.tb.run()
+
+ expected_result = (1000, 12000, 23000, 34000, 45000, 56000, 67000)
+ tags = dst.tags()
+ offsets = [tag.offset for tag in tags]
+ for i in range(len(expected_result)):
+ self.assertTrue(expected_result[i] == offsets[i])
+
+ def test_003(self): # insert tags and check their propagation, non-zero offset
+ period = 11000
+ offset = 1000
+ insert = [1.0,] * 1000
+
+ src = blocks.null_source(gr.sizeof_float)
+ s2ts = blocks.stream_to_tagged_stream(gr.sizeof_float, 1, period-len(insert), "packet")
+ head = blocks.head(gr.sizeof_float, 1000000)
+ ins = blocks.vector_insert_f(insert, period, offset)
+ dst = blocks.vector_sink_f()
+
+ self.tb.connect(src, s2ts, head, ins, dst)
+ self.tb.run()
+
+ expected_result = (0, 11000, 22000, 33000, 44000, 55000, 66000)
+ tags = dst.tags()
+ offsets = [tag.offset for tag in tags]
+ for i in range(len(expected_result)):
+ self.assertTrue(expected_result[i] == offsets[i])
+
+ def test_004(self): # insert tags and check their propagation, non-zero offset, multiple tags per copy region
+ period = 11000
+ offset = 1000
+ packetlen = 2000
+ insert = [1.0,] * 1000
+
+ src = blocks.null_source(gr.sizeof_float)
+ s2ts = blocks.stream_to_tagged_stream(gr.sizeof_float, 1, packetlen, "packet")
+ head = blocks.head(gr.sizeof_float, 1000000)
+ ins = blocks.vector_insert_f(insert, period, offset)
+ dst = blocks.vector_sink_f()
+
+ self.tb.connect(src, s2ts, head, ins, dst)
+ self.tb.run()
+
+ expected_result = (0, 2000, 4000, 6000, 8000, 11000, 13000, 15000, 17000, 19000, 22000, 24000, 26000)
+ tags = dst.tags()
+ offsets = [tag.offset for tag in tags]
+ for i in range(len(expected_result)):
+ self.assertTrue(expected_result[i] == offsets[i])
+
if __name__ == '__main__':
gr_unittest.run(test_vector_insert, "test_vector_insert.xml")