source: ntrip/trunk/BNC/bnccaster.cpp@ 273

Last change on this file since 273 was 273, checked in by mervart, 17 years ago

* empty log message *

File size: 6.5 KB
Line 
1
2/* -------------------------------------------------------------------------
3 * BKG NTRIP Client
4 * -------------------------------------------------------------------------
5 *
6 * Class: bncCaster
7 *
8 * Purpose: buffers and disseminates the data
9 *
10 * Author: L. Mervart
11 *
12 * Created: 24-Dec-2005
13 *
14 * Changes:
15 *
16 * -----------------------------------------------------------------------*/
17
18#include <math.h>
19
20#include "bnccaster.h"
21#include "bncgetthread.h"
22#include "bncutils.h"
23#include "RTCM/GPSDecoder.h"
24
25// Constructor
26////////////////////////////////////////////////////////////////////////////
27bncCaster::bncCaster(const QString& outFileName, int port) {
28
29 if ( !outFileName.isEmpty() ) {
30 QString lName = outFileName;
31 expandEnvVar(lName);
32 _outFile = new QFile(lName);
33 _outFile->open(QIODevice::WriteOnly);
34 _out = new QTextStream(_outFile);
35 _out->setRealNumberNotation(QTextStream::FixedNotation);
36 _out->setRealNumberPrecision(5);
37 }
38 else {
39 _outFile = 0;
40 _out = 0;
41 }
42
43 _port = port;
44
45 if (_port != 0) {
46 _server = new QTcpServer;
47 _server->listen(QHostAddress::Any, _port);
48 connect(_server, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
49 _sockets = new QList<QTcpSocket*>;
50 }
51 else {
52 _server = 0;
53 _sockets = 0;
54 }
55
56 _epochs = new QMultiMap<long, Observation*>;
57
58 _lastDumpSec = 0;
59
60 QSettings settings;
61 _samplingRate = settings.value("rnxSampl").toInt();
62 _waitTime = settings.value("waitTime").toInt();
63 if (_waitTime < 1) {
64 _waitTime = 1;
65 }
66}
67
68// Destructor
69////////////////////////////////////////////////////////////////////////////
70bncCaster::~bncCaster() {
71 QListIterator<bncGetThread*> it(_threads);
72 while(it.hasNext()){
73 bncGetThread* thread = it.next();
74 thread->terminate();
75 thread->wait();
76 delete thread;
77 }
78 delete _out;
79 delete _outFile;
80 delete _server;
81 delete _sockets;
82 delete _epochs;
83}
84
85// New Observations
86////////////////////////////////////////////////////////////////////////////
87void bncCaster::newObs(const QByteArray& staID, const QUrl& mountPoint,
88 bool firstObs, Observation* obs) {
89
90 QMutexLocker locker(&_mutex);
91
92 long iSec = long(floor(obs->GPSWeeks+0.5));
93 long newTime = obs->GPSWeek * 7*24*3600 + iSec;
94
95 // Rename the Station
96 // ------------------
97 strncpy(obs->StatID, staID.constData(),sizeof(obs->StatID));
98
99 // Prepare RINEX Output
100 // --------------------
101 if (_rinexWriters.find(obs->StatID) == _rinexWriters.end()) {
102 _rinexWriters.insert(obs->StatID, new bncRinex(obs->StatID, mountPoint));
103 }
104 bncRinex* rnx = _rinexWriters.find(obs->StatID).value();
105 if (_samplingRate == 0 || iSec % _samplingRate == 0) {
106 rnx->deepCopy(obs);
107 }
108 rnx->dumpEpoch(newTime);
109
110 // First time, set the _lastDumpSec immediately
111 // --------------------------------------------
112 if (_lastDumpSec == 0) {
113 _lastDumpSec = newTime - 1;
114 }
115
116 // An old observation - throw it away
117 // ----------------------------------
118 if (newTime <= _lastDumpSec) {
119 if (firstObs) {
120 QSettings settings;
121 if ( !settings.value("outFile").toString().isEmpty() ||
122 !settings.value("outPort").toString().isEmpty() ) {
123 emit( newMessage(QString("Station %1: old epoch %2 thrown away")
124 .arg(staID.data()).arg(iSec).toAscii()) );
125 }
126 }
127 delete obs;
128 return;
129 }
130
131 // Save the observation
132 // --------------------
133 _epochs->insert(newTime, obs);
134
135 // Dump older epochs
136 // -----------------
137 dumpEpochs(_lastDumpSec + 1, newTime - _waitTime);
138
139 if (_lastDumpSec < newTime - _waitTime) {
140 _lastDumpSec = newTime - _waitTime;
141 }
142}
143
144// New Connection
145////////////////////////////////////////////////////////////////////////////
146void bncCaster::slotNewConnection() {
147 _sockets->push_back( _server->nextPendingConnection() );
148}
149
150// Add New Thread
151////////////////////////////////////////////////////////////////////////////
152void bncCaster::addGetThread(bncGetThread* getThread) {
153 connect(getThread, SIGNAL(error(const QByteArray&)),
154 this, SLOT(slotGetThreadError(const QByteArray&)));
155
156 _staIDs.push_back(getThread->staID());
157 _threads.push_back(getThread);
158}
159
160// Error in get thread
161////////////////////////////////////////////////////////////////////////////
162void bncCaster::slotGetThreadError(const QByteArray& staID) {
163 QMutexLocker locker(&_mutex);
164 _staIDs.removeAll(staID);
165 emit( newMessage(
166 QString("Mountpoint size %1").arg(_staIDs.size()).toAscii()) );
167 if (_staIDs.size() == 0) {
168 emit(newMessage("bncCaster:: last get thread terminated"));
169 emit getThreadErrors();
170 }
171}
172
173// Dump Complete Epochs
174////////////////////////////////////////////////////////////////////////////
175void bncCaster::dumpEpochs(long minTime, long maxTime) {
176
177 const char begEpoch = 'A';
178 const char begObs = 'B';
179 const char endEpoch = 'C';
180
181 for (long sec = minTime; sec <= maxTime; sec++) {
182
183 bool first = true;
184 QList<Observation*> allObs = _epochs->values(sec);
185 QListIterator<Observation*> it(allObs);
186 while (it.hasNext()) {
187 Observation* obs = it.next();
188
189 if (_samplingRate == 0 || sec % _samplingRate == 0) {
190
191 // Output into the file
192 // --------------------
193 if (_out) {
194 if (first) {
195 *_out << begEpoch << endl;;
196 }
197 *_out << obs->StatID << " "
198 << obs->SVPRN << " "
199 << obs->GPSWeek << " "
200 << obs->GPSWeeks << " "
201 << obs->C1 << " "
202 << obs->P1 << " "
203 << obs->P2 << " "
204 << obs->L1 << " "
205 << obs->L2 << " "
206 << obs->SNR1 << " "
207 << obs->SNR2 << endl;
208 if (!it.hasNext()) {
209 *_out << endEpoch << endl;
210 }
211 }
212
213 // Output into the socket
214 // ----------------------
215 if (_sockets) {
216 int numBytes = sizeof(*obs);
217 QListIterator<QTcpSocket*> is(*_sockets);
218 while (is.hasNext()) {
219 QTcpSocket* sock = is.next();
220 if (first) {
221 sock->write(&begEpoch, 1);
222 }
223 sock->write(&begObs, 1);
224 sock->write((char*) obs, numBytes);
225 if (!it.hasNext()) {
226 sock->write(&endEpoch, 1);
227 }
228 }
229 }
230 }
231
232 delete obs;
233 _epochs->remove(sec);
234 first = false;
235 }
236 }
237}
Note: See TracBrowser for help on using the repository browser.