summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/vector_source_impl.cc
blob: 58bfa96f8e3016ab6a8a883edd5fd92c75676208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* -*- c++ -*- */
/*
 * Copyright 2004,2008,2010,2013,2018 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */


#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "vector_source_impl.h"
#include <gnuradio/io_signature.h>
#include <algorithm>
#include <stdexcept>

namespace gr {
namespace blocks {

template <class T>
typename vector_source<T>::sptr vector_source<T>::make(const std::vector<T>& data,
                                                       bool repeat,
                                                       unsigned int vlen,
                                                       const std::vector<tag_t>& tags)
{
    return gnuradio::make_block_sptr<vector_source_impl<T>>(data, repeat, vlen, tags);
}

template <class T>
vector_source_impl<T>::vector_source_impl(const std::vector<T>& data,
                                          bool repeat,
                                          unsigned int vlen,
                                          const std::vector<tag_t>& tags)
    : sync_block("vector_source",
                 io_signature::make(0, 0, 0),
                 io_signature::make(1, 1, sizeof(T) * vlen)),
      d_data(data),
      d_repeat(repeat),
      d_offset(0),
      d_vlen(vlen),
      d_tags(tags)
{
    if (tags.empty()) {
        d_settags = 0;
    } else {
        d_settags = 1;
        this->set_output_multiple(data.size() / vlen);
    }
    if ((data.size() % vlen) != 0)
        throw std::invalid_argument("data length must be a multiple of vlen");
}

template <class T>
vector_source_impl<T>::~vector_source_impl()
{
}

template <class T>
void vector_source_impl<T>::set_data(const std::vector<T>& data,
                                     const std::vector<tag_t>& tags)
{
    d_data = data;
    d_tags = tags;
    rewind();
    if (tags.empty()) {
        d_settags = false;
    } else {
        d_settags = true;
    }
}

template <class T>
int vector_source_impl<T>::work(int noutput_items,
                                gr_vector_const_void_star& input_items,
                                gr_vector_void_star& output_items)
{
    T* optr = (T*)output_items[0];

    if (d_repeat) {
        unsigned int size = d_data.size();
        unsigned int offset = d_offset;
        if (size == 0)
            return -1;

        if (d_settags) {
            int n_outputitems_per_vector = d_data.size() / d_vlen;
            for (int i = 0; i < noutput_items; i += n_outputitems_per_vector) {
                // FIXME do proper vector copy
                memcpy((void*)optr, (const void*)&d_data[0], size * sizeof(T));
                optr += size;
                for (unsigned t = 0; t < d_tags.size(); t++) {
                    this->add_item_tag(0,
                                       this->nitems_written(0) + i + d_tags[t].offset,
                                       d_tags[t].key,
                                       d_tags[t].value,
                                       d_tags[t].srcid);
                }
            }
        } else {
            for (int i = 0; i < static_cast<int>(noutput_items * d_vlen); i++) {
                optr[i] = d_data[offset++];
                if (offset >= size) {
                    offset = 0;
                }
            }
        }

        d_offset = offset;
        return noutput_items;
    } else {
        if (d_offset >= d_data.size())
            return -1; // Done!

        unsigned n = std::min((unsigned)d_data.size() - d_offset,
                              (unsigned)noutput_items * d_vlen);
        for (unsigned i = 0; i < n; i++) {
            optr[i] = d_data[d_offset + i];
        }
        for (unsigned t = 0; t < d_tags.size(); t++) {
            if ((d_tags[t].offset >= d_offset) && (d_tags[t].offset < d_offset + n))
                this->add_item_tag(
                    0, d_tags[t].offset, d_tags[t].key, d_tags[t].value, d_tags[t].srcid);
        }
        d_offset += n;
        return n / d_vlen;
    }
}

template class vector_source<std::uint8_t>;
template class vector_source<std::int16_t>;
template class vector_source<std::int32_t>;
template class vector_source<float>;
template class vector_source<gr_complex>;
} /* namespace blocks */
} /* namespace gr */