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

Last change on this file since 1307 was 1299, checked in by zdenek, 15 years ago

* empty log message *

File size: 14.6 KB
RevLine 
[280]1// Part of BNC, a utility for retrieving decoding and
[464]2// converting GNSS data streams from NTRIP broadcasters.
[280]3//
[464]4// Copyright (C) 2007
[280]5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
[464]7// Czech Technical University Prague, Department of Geodesy
[280]8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
[35]24
25/* -------------------------------------------------------------------------
[93]26 * BKG NTRIP Client
[35]27 * -------------------------------------------------------------------------
28 *
29 * Class: bncCaster
30 *
31 * Purpose: buffers and disseminates the data
32 *
33 * Author: L. Mervart
34 *
35 * Created: 24-Dec-2005
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
[222]41#include <math.h>
[636]42#include <unistd.h>
[222]43
[35]44#include "bnccaster.h"
[1170]45#include "bncapp.h"
[35]46#include "bncgetthread.h"
[134]47#include "bncutils.h"
[207]48#include "RTCM/GPSDecoder.h"
[35]49
50// Constructor
51////////////////////////////////////////////////////////////////////////////
52bncCaster::bncCaster(const QString& outFileName, int port) {
53
[275]54 QSettings settings;
55
[1299]56 connect(this, SIGNAL(newMessage(QByteArray,bool)),
57 (bncApp*) qApp, SLOT(slotMessage(const QByteArray,bool)));
[1228]58
[35]59 if ( !outFileName.isEmpty() ) {
[134]60 QString lName = outFileName;
61 expandEnvVar(lName);
62 _outFile = new QFile(lName);
[275]63 if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
64 _outFile->open(QIODevice::WriteOnly | QIODevice::Append);
65 }
66 else {
67 _outFile->open(QIODevice::WriteOnly);
68 }
[35]69 _out = new QTextStream(_outFile);
70 _out->setRealNumberNotation(QTextStream::FixedNotation);
71 }
72 else {
73 _outFile = 0;
74 _out = 0;
75 }
76
77 _port = port;
78
79 if (_port != 0) {
80 _server = new QTcpServer;
[1228]81 if ( !_server->listen(QHostAddress::Any, _port) ) {
[1299]82 emit newMessage("bncCaster: cannot listen on sync port", true);
[1228]83 }
[35]84 connect(_server, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
85 _sockets = new QList<QTcpSocket*>;
86 }
87 else {
88 _server = 0;
89 _sockets = 0;
90 }
91
[1222]92 int uPort = settings.value("outUPort").toInt();
93 if (uPort != 0) {
94 _uServer = new QTcpServer;
[1228]95 if ( !_uServer->listen(QHostAddress::Any, uPort) ) {
[1299]96 emit newMessage("bncCaster: cannot listen on usync port", true);
[1228]97 }
[1222]98 connect(_uServer, SIGNAL(newConnection()), this, SLOT(slotNewUConnection()));
99 _uSockets = new QList<QTcpSocket*>;
100 }
101 else {
102 _uServer = 0;
103 _uSockets = 0;
104 }
105
[622]106 _epochs = new QMultiMap<long, p_obs>;
[35]107
108 _lastDumpSec = 0;
[133]109
[1170]110 _confTimer = 0;
[35]111}
112
113// Destructor
114////////////////////////////////////////////////////////////////////////////
115bncCaster::~bncCaster() {
[186]116 QListIterator<bncGetThread*> it(_threads);
117 while(it.hasNext()){
118 bncGetThread* thread = it.next();
119 thread->terminate();
[605]120 thread->wait();
[230]121 delete thread;
[186]122 }
[35]123 delete _out;
124 delete _outFile;
[187]125 delete _server;
[631]126 delete _sockets;
[1222]127 delete _uServer;
128 delete _uSockets;
[603]129 if (_epochs) {
[622]130 QListIterator<p_obs> it(_epochs->values());
[603]131 while (it.hasNext()) {
132 delete it.next();
133 }
134 delete _epochs;
135 }
[35]136}
137
138// New Observations
139////////////////////////////////////////////////////////////////////////////
[622]140void bncCaster::newObs(const QByteArray staID, bool firstObs, p_obs obs) {
[35]141
[243]142 QMutexLocker locker(&_mutex);
143
[624]144 obs->_status = t_obs::received;
145
[622]146 long iSec = long(floor(obs->_o.GPSWeeks+0.5));
147 long newTime = obs->_o.GPSWeek * 7*24*3600 + iSec;
[35]148
[160]149 // Rename the Station
150 // ------------------
[622]151 strncpy(obs->_o.StatID, staID.constData(),sizeof(obs->_o.StatID));
152 obs->_o.StatID[sizeof(obs->_o.StatID)-1] = '\0';
[160]153
[1222]154 const char begObs[] = "BEGOBS";
155 const int begObsNBytes = sizeof(begObs) - 1;
156
157 // Output into the socket
158 // ----------------------
159 if (_uSockets) {
160 QMutableListIterator<QTcpSocket*> is(*_uSockets);
161 while (is.hasNext()) {
162 QTcpSocket* sock = is.next();
163 if (sock->state() == QAbstractSocket::ConnectedState) {
164 bool ok = true;
165 if (myWrite(sock, begObs, begObsNBytes) != begObsNBytes) {
166 ok = false;
167 }
168 int numBytes = sizeof(obs->_o);
169 if (myWrite(sock, (const char*)(&obs->_o), numBytes) != numBytes) {
170 ok = false;
171 }
172 if (!ok) {
173 delete sock;
174 is.remove();
175 }
176 }
177 else if (sock->state() != QAbstractSocket::ConnectingState) {
178 delete sock;
179 is.remove();
180 }
181 }
182 }
183
[35]184 // First time, set the _lastDumpSec immediately
185 // --------------------------------------------
186 if (_lastDumpSec == 0) {
[462]187 _lastDumpSec = newTime - 1;
[35]188 }
189
190 // An old observation - throw it away
191 // ----------------------------------
[462]192 if (newTime <= _lastDumpSec) {
[257]193 if (firstObs) {
194 QSettings settings;
195 if ( !settings.value("outFile").toString().isEmpty() ||
196 !settings.value("outPort").toString().isEmpty() ) {
[258]197 emit( newMessage(QString("Station %1: old epoch %2 thrown away")
[1299]198 .arg(staID.data()).arg(iSec).toAscii(), true) );
[257]199 }
[181]200 }
[35]201 delete obs;
[350]202 return;
[35]203 }
204
[160]205 // Save the observation
206 // --------------------
[462]207 _epochs->insert(newTime, obs);
[393]208
[462]209 // Dump Epochs
210 // -----------
211 if (newTime - _waitTime > _lastDumpSec) {
212 dumpEpochs(_lastDumpSec + 1, newTime - _waitTime);
213 _lastDumpSec = newTime - _waitTime;
[252]214 }
[35]215}
216
217// New Connection
218////////////////////////////////////////////////////////////////////////////
219void bncCaster::slotNewConnection() {
220 _sockets->push_back( _server->nextPendingConnection() );
[630]221 emit( newMessage(QString("New Connection # %1")
[1299]222 .arg(_sockets->size()).toAscii(), true) );
[35]223}
224
[1222]225void bncCaster::slotNewUConnection() {
226 _uSockets->push_back( _uServer->nextPendingConnection() );
227 emit( newMessage(QString("New Connection (usync) # %1")
[1299]228 .arg(_uSockets->size()).toAscii(), true) );
[1222]229}
230
[35]231// Add New Thread
232////////////////////////////////////////////////////////////////////////////
233void bncCaster::addGetThread(bncGetThread* getThread) {
[624]234
235 qRegisterMetaType<p_obs>("p_obs");
236
[628]237 connect(getThread, SIGNAL(newObs(QByteArray, bool, p_obs)),
238 this, SLOT(newObs(QByteArray, bool, p_obs)));
[463]239
[628]240 connect(getThread, SIGNAL(error(QByteArray)),
241 this, SLOT(slotGetThreadError(QByteArray)));
[35]242
[88]243 _staIDs.push_back(getThread->staID());
[186]244 _threads.push_back(getThread);
[1170]245
246 getThread->start();
[35]247}
248
249// Error in get thread
250////////////////////////////////////////////////////////////////////////////
[628]251void bncCaster::slotGetThreadError(QByteArray staID) {
[243]252 QMutexLocker locker(&_mutex);
[88]253 _staIDs.removeAll(staID);
[82]254 emit( newMessage(
[1299]255 QString("Mountpoint size %1").arg(_staIDs.size()).toAscii(), true) );
[88]256 if (_staIDs.size() == 0) {
[1299]257 emit(newMessage("bncCaster:: last get thread terminated", true));
[35]258 emit getThreadErrors();
259 }
260}
261
262// Dump Complete Epochs
263////////////////////////////////////////////////////////////////////////////
264void bncCaster::dumpEpochs(long minTime, long maxTime) {
265
[1182]266 const char begEpoch[] = "BEGEPOCH";
267 const char endEpoch[] = "ENDEPOCH";
[35]268
[1182]269 const int begEpochNBytes = sizeof(begEpoch) - 1;
270 const int endEpochNBytes = sizeof(endEpoch) - 1;
271
[35]272 for (long sec = minTime; sec <= maxTime; sec++) {
[140]273
[35]274 bool first = true;
[622]275 QList<p_obs> allObs = _epochs->values(sec);
276 QListIterator<p_obs> it(allObs);
[35]277 while (it.hasNext()) {
[622]278 p_obs obs = it.next();
[35]279
[140]280 if (_samplingRate == 0 || sec % _samplingRate == 0) {
281
282 // Output into the file
283 // --------------------
284 if (_out) {
[35]285 if (first) {
[341]286 _out->setFieldWidth(1); *_out << begEpoch << endl;;
[35]287 }
[622]288 _out->setFieldWidth(0); *_out << obs->_o.StatID;
289 _out->setFieldWidth(1); *_out << " " << obs->_o.satSys;
[344]290 _out->setPadChar('0');
[622]291 _out->setFieldWidth(2); *_out << obs->_o.satNum;
[344]292 _out->setPadChar(' ');
[342]293 _out->setFieldWidth(1); *_out << " ";
[622]294 _out->setFieldWidth(4); *_out << obs->_o.GPSWeek;
[342]295 _out->setFieldWidth(1); *_out << " ";
[622]296 _out->setFieldWidth(14); _out->setRealNumberPrecision(7); *_out << obs->_o.GPSWeeks;
[342]297 _out->setFieldWidth(1); *_out << " ";
[622]298 _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.C1;
[342]299 _out->setFieldWidth(1); *_out << " ";
[622]300 _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.C2;
[366]301 _out->setFieldWidth(1); *_out << " ";
[622]302 _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.P1;
[342]303 _out->setFieldWidth(1); *_out << " ";
[622]304 _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.P2;
[342]305 _out->setFieldWidth(1); *_out << " ";
[622]306 _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.L1;
[342]307 _out->setFieldWidth(1); *_out << " ";
[622]308 _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.L2;
[367]309 _out->setFieldWidth(1); *_out << " ";
[622]310 _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.S1;
[367]311 _out->setFieldWidth(1); *_out << " ";
[622]312 _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.S2;
[342]313 _out->setFieldWidth(1);
[622]314 *_out << " " << obs->_o.SNR1 << " " << obs->_o.SNR2 << endl;
[35]315 if (!it.hasNext()) {
[341]316 _out->setFieldWidth(1); *_out << endEpoch << endl;
[35]317 }
[347]318 _out->flush();
[35]319 }
[140]320
321 // Output into the socket
322 // ----------------------
323 if (_sockets) {
[637]324 QMutableListIterator<QTcpSocket*> is(*_sockets);
[140]325 while (is.hasNext()) {
326 QTcpSocket* sock = is.next();
[397]327 if (sock->state() == QAbstractSocket::ConnectedState) {
[637]328 bool ok = true;
[397]329 if (first) {
[1182]330 if (myWrite(sock, begEpoch, begEpochNBytes) != begEpochNBytes) {
[637]331 ok = false;
332 }
[397]333 }
[1182]334 int numBytes = sizeof(obs->_o);
335 if (myWrite(sock, (const char*)(&obs->_o), numBytes) != numBytes) {
[637]336 ok = false;
337 }
[397]338 if (!it.hasNext()) {
[1182]339 if (myWrite(sock, endEpoch, endEpochNBytes) != endEpochNBytes) {
[637]340 ok = false;
341 }
[397]342 }
[637]343 if (!ok) {
344 delete sock;
345 is.remove();
346 }
[140]347 }
[637]348 else if (sock->state() != QAbstractSocket::ConnectingState) {
349 delete sock;
350 is.remove();
351 }
[140]352 }
353 }
[73]354 }
355
[35]356 delete obs;
357 _epochs->remove(sec);
358 first = false;
359 }
360 }
361}
[1170]362
363// Reread configuration
364////////////////////////////////////////////////////////////////////////////
[1179]365void bncCaster::slotReadMountPoints() {
[1170]366
367 QSettings settings;
368
369 // Reread several options
370 // ----------------------
371 _samplingRate = settings.value("binSampl").toInt();
372 _waitTime = settings.value("waitTime").toInt();
373 if (_waitTime < 1) {
374 _waitTime = 1;
375 }
376
377 // Add new mountpoints
378 // -------------------
379 int iMount = -1;
380 QListIterator<QString> it(settings.value("mountPoints").toStringList());
381 while (it.hasNext()) {
382 ++iMount;
383 QStringList hlp = it.next().split(" ");
384 if (hlp.size() <= 1) continue;
385 QUrl url(hlp[0]);
386
387 // Does it already exist?
388 // ----------------------
389 bool existFlg = false;
390 QListIterator<bncGetThread*> iTh(_threads);
391 while (iTh.hasNext()) {
392 bncGetThread* thread = iTh.next();
393 if (thread->mountPoint() == url) {
394 existFlg = true;
395 break;
396 }
397 }
398
399 // New bncGetThread
400 // ----------------
401 if (!existFlg) {
402 QByteArray format = hlp[1].toAscii();
403 QByteArray latitude = hlp[2].toAscii();
404 QByteArray longitude = hlp[3].toAscii();
405 QByteArray nmea = hlp[4].toAscii();
406
407 bncGetThread* getThread = new bncGetThread(url, format, latitude,
408 longitude, nmea, iMount);
409 addGetThread(getThread);
410 }
411 }
412
413 // Remove mountpoints
414 // ------------------
415 QListIterator<bncGetThread*> iTh(_threads);
416 while (iTh.hasNext()) {
417 bncGetThread* thread = iTh.next();
418
419 bool existFlg = false;
420 QListIterator<QString> it(settings.value("mountPoints").toStringList());
421 while (it.hasNext()) {
422 QStringList hlp = it.next().split(" ");
423 if (hlp.size() <= 1) continue;
424 QUrl url(hlp[0]);
425
426 if (thread->mountPoint() == url) {
427 existFlg = true;
428 break;
429 }
430 }
431
432 if (!existFlg) {
433 disconnect(thread, 0, 0, 0);
434 _staIDs.removeAll(thread->staID());
435 _threads.removeAll(thread);
436 thread->terminate();
437 thread->wait();
438 delete thread;
439 }
440 }
441
[1179]442 emit mountPointsRead(_threads);
[1246]443 emit( newMessage(QString("Configuration read: %1 stream(s)")
[1299]444 .arg(_threads.count()).toAscii(), true) );
[1176]445
[1170]446 // (Re-) Start the configuration timer
447 // -----------------------------------
448 int ms = 0;
449
450 if (_confTimer) {
451 ms = 1000 * _confInterval;
452 }
453 else {
454 _confTimer = new QTimer();
[1179]455 connect(_confTimer, SIGNAL(timeout()), this, SLOT(slotReadMountPoints()));
[1170]456
457 QTime currTime = currentDateAndTimeGPS().time();
458 QTime nextShotTime;
459
460 if (settings.value("onTheFlyInterval").toString() == "1 min") {
461 _confInterval = 60;
462 nextShotTime = QTime(currTime.hour(), currTime.minute()+1, 0);
463 }
464 else if (settings.value("onTheFlyInterval").toString() == "1 hour") {
465 _confInterval = 3600;
466 nextShotTime = QTime(currTime.hour()+1, 0, 0);
467 }
468 else {
469 _confInterval = 86400;
470 nextShotTime = QTime(23, 59, 59, 999);
471 }
472
473 ms = currTime.msecsTo(nextShotTime);
[1176]474 if (ms < 30000) {
475 ms = 30000;
476 }
[1170]477 }
478
479 _confTimer->start(ms);
480}
[1182]481
482//
483////////////////////////////////////////////////////////////////////////////
484int bncCaster::myWrite(QTcpSocket* sock, const char* buf, int bufLen) {
[1229]485 sock->write(buf, bufLen);
486 for (int ii = 1; ii <= 10; ii++) {
487 if (sock->waitForBytesWritten(10)) { // wait 10 ms
488 return bufLen;
[1182]489 }
490 }
[1229]491 return -1;
[1182]492}
Note: See TracBrowser for help on using the repository browser.