blob: c5c255b70766a2e21d2972024ad71394bf1d5b82 [file] [log] [blame]
kurtis.heimerl8aea56e2011-11-26 03:18:30 +00001/*
2 * Written by Thomas Tsou <ttsou@vt.edu>
3 * Based on code by Harvind S Samra <hssamra@kestrelsp.com>
4 *
5 * Copyright 2011 Free Software Foundation, Inc.
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 * See the COPYING file in the main directory for details.
20 */
21
22#ifndef RADIOVECTOR_H
23#define RADIOVECTOR_H
24
25#include "sigProcLib.h"
26#include "GSMCommon.h"
Alexander Chemerisd734e2d2013-06-16 14:30:58 +040027#include "Interthread.h"
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000028
29class radioVector : public signalVector {
30public:
31 radioVector(const signalVector& wVector, GSM::Time& wTime);
Thomas Tsoue0fa2bf2013-11-09 02:46:29 -050032 radioVector(size_t size, GSM::Time& wTime);
Thomas Tsoud0f3ca32013-11-09 22:05:23 -050033 radioVector(size_t size, size_t start, GSM::Time& wTime);
kurtis.heimerl06286132011-11-26 03:18:43 +000034 GSM::Time getTime() const;
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000035 void setTime(const GSM::Time& wTime);
36 bool operator>(const radioVector& other) const;
37
38private:
39 GSM::Time mTime;
40};
41
Thomas Tsoufa3a7872013-10-17 21:23:34 -040042class noiseVector : std::vector<float> {
43public:
44 noiseVector(size_t len = 0);
45 bool insert(float val);
46 float avg();
47
48private:
49 std::vector<float>::iterator it;
50};
51
Thomas Tsou204a9f12013-10-29 18:34:16 -040052class VectorFIFO : public InterthreadQueue<radioVector> { };
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000053
54class VectorQueue : public InterthreadPriorityQueue<radioVector> {
55public:
56 GSM::Time nextTime() const;
57 radioVector* getStaleBurst(const GSM::Time& targTime);
58 radioVector* getCurrentBurst(const GSM::Time& targTime);
59};
60
61#endif /* RADIOVECTOR_H */