blob: 5ddb6381fe7b801a67704f9e22e97859a61fc624 [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);
kurtis.heimerl06286132011-11-26 03:18:43 +000033 GSM::Time getTime() const;
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000034 void setTime(const GSM::Time& wTime);
35 bool operator>(const radioVector& other) const;
36
37private:
38 GSM::Time mTime;
39};
40
Thomas Tsoufa3a7872013-10-17 21:23:34 -040041class noiseVector : std::vector<float> {
42public:
43 noiseVector(size_t len = 0);
44 bool insert(float val);
45 float avg();
46
47private:
48 std::vector<float>::iterator it;
49};
50
Thomas Tsou204a9f12013-10-29 18:34:16 -040051class VectorFIFO : public InterthreadQueue<radioVector> { };
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000052
53class VectorQueue : public InterthreadPriorityQueue<radioVector> {
54public:
55 GSM::Time nextTime() const;
56 radioVector* getStaleBurst(const GSM::Time& targTime);
57 radioVector* getCurrentBurst(const GSM::Time& targTime);
58};
59
60#endif /* RADIOVECTOR_H */