blob: 8de4493c03f7a80d9488b69fc1bcf1553f1e9196 [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);
kurtis.heimerl06286132011-11-26 03:18:43 +000032 GSM::Time getTime() const;
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000033 void setTime(const GSM::Time& wTime);
34 bool operator>(const radioVector& other) const;
35
36private:
37 GSM::Time mTime;
38};
39
40class VectorFIFO {
41public:
42 unsigned size();
43 void put(radioVector *ptr);
44 radioVector *get();
45
46private:
47 PointerFIFO mQ;
48};
49
50class VectorQueue : public InterthreadPriorityQueue<radioVector> {
51public:
52 GSM::Time nextTime() const;
53 radioVector* getStaleBurst(const GSM::Time& targTime);
54 radioVector* getCurrentBurst(const GSM::Time& targTime);
55};
56
57#endif /* RADIOVECTOR_H */