[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"
|
---|
[1535] | 48 | #include "bncsettings.h"
|
---|
[207] | 49 | #include "RTCM/GPSDecoder.h"
|
---|
[35] | 50 |
|
---|
| 51 | // Constructor
|
---|
| 52 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 53 | bncCaster::bncCaster(const QString& outFileName, int port) {
|
---|
| 54 |
|
---|
[1535] | 55 | bncSettings settings;
|
---|
[275] | 56 |
|
---|
[1299] | 57 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
| 58 | (bncApp*) qApp, SLOT(slotMessage(const QByteArray,bool)));
|
---|
[1228] | 59 |
|
---|
[35] | 60 | if ( !outFileName.isEmpty() ) {
|
---|
[134] | 61 | QString lName = outFileName;
|
---|
| 62 | expandEnvVar(lName);
|
---|
| 63 | _outFile = new QFile(lName);
|
---|
[275] | 64 | if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
|
---|
| 65 | _outFile->open(QIODevice::WriteOnly | QIODevice::Append);
|
---|
| 66 | }
|
---|
| 67 | else {
|
---|
| 68 | _outFile->open(QIODevice::WriteOnly);
|
---|
| 69 | }
|
---|
[35] | 70 | _out = new QTextStream(_outFile);
|
---|
| 71 | _out->setRealNumberNotation(QTextStream::FixedNotation);
|
---|
| 72 | }
|
---|
| 73 | else {
|
---|
| 74 | _outFile = 0;
|
---|
| 75 | _out = 0;
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | _port = port;
|
---|
| 79 |
|
---|
| 80 | if (_port != 0) {
|
---|
| 81 | _server = new QTcpServer;
|
---|
[1228] | 82 | if ( !_server->listen(QHostAddress::Any, _port) ) {
|
---|
[1450] | 83 | emit newMessage("bncCaster: Cannot listen on sync port", true);
|
---|
[1228] | 84 | }
|
---|
[35] | 85 | connect(_server, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
|
---|
| 86 | _sockets = new QList<QTcpSocket*>;
|
---|
| 87 | }
|
---|
| 88 | else {
|
---|
| 89 | _server = 0;
|
---|
| 90 | _sockets = 0;
|
---|
| 91 | }
|
---|
| 92 |
|
---|
[1222] | 93 | int uPort = settings.value("outUPort").toInt();
|
---|
| 94 | if (uPort != 0) {
|
---|
| 95 | _uServer = new QTcpServer;
|
---|
[1228] | 96 | if ( !_uServer->listen(QHostAddress::Any, uPort) ) {
|
---|
[1450] | 97 | emit newMessage("bncCaster: Cannot listen on usync port", true);
|
---|
[1228] | 98 | }
|
---|
[1222] | 99 | connect(_uServer, SIGNAL(newConnection()), this, SLOT(slotNewUConnection()));
|
---|
| 100 | _uSockets = new QList<QTcpSocket*>;
|
---|
| 101 | }
|
---|
| 102 | else {
|
---|
| 103 | _uServer = 0;
|
---|
| 104 | _uSockets = 0;
|
---|
| 105 | }
|
---|
| 106 |
|
---|
[2183] | 107 | int nmeaPort = settings.value("nmeaPort").toInt();
|
---|
| 108 | if (nmeaPort != 0) {
|
---|
| 109 | _nmeaServer = new QTcpServer;
|
---|
| 110 | if ( !_nmeaServer->listen(QHostAddress::Any, nmeaPort) ) {
|
---|
| 111 | emit newMessage("bncCaster: Cannot listen on port", true);
|
---|
| 112 | }
|
---|
| 113 | connect(_nmeaServer, SIGNAL(newConnection()), this, SLOT(slotNewNMEAConnection()));
|
---|
| 114 | _nmeaSockets = new QList<QTcpSocket*>;
|
---|
| 115 | }
|
---|
| 116 | else {
|
---|
| 117 | _nmeaServer = 0;
|
---|
| 118 | _nmeaSockets = 0;
|
---|
| 119 | }
|
---|
| 120 |
|
---|
[622] | 121 | _epochs = new QMultiMap<long, p_obs>;
|
---|
[35] | 122 |
|
---|
[2316] | 123 | _lastDumpSec = 0;
|
---|
[133] | 124 |
|
---|
[1705] | 125 | _confInterval = -1;
|
---|
[35] | 126 | }
|
---|
| 127 |
|
---|
| 128 | // Destructor
|
---|
| 129 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 130 | bncCaster::~bncCaster() {
|
---|
[186] | 131 | QListIterator<bncGetThread*> it(_threads);
|
---|
| 132 | while(it.hasNext()){
|
---|
| 133 | bncGetThread* thread = it.next();
|
---|
[1525] | 134 | thread->terminate();
|
---|
[186] | 135 | }
|
---|
[35] | 136 | delete _out;
|
---|
| 137 | delete _outFile;
|
---|
[187] | 138 | delete _server;
|
---|
[631] | 139 | delete _sockets;
|
---|
[1222] | 140 | delete _uServer;
|
---|
| 141 | delete _uSockets;
|
---|
[2186] | 142 | delete _nmeaServer;
|
---|
| 143 | delete _nmeaSockets;
|
---|
[603] | 144 | if (_epochs) {
|
---|
[622] | 145 | QListIterator<p_obs> it(_epochs->values());
|
---|
[603] | 146 | while (it.hasNext()) {
|
---|
| 147 | delete it.next();
|
---|
| 148 | }
|
---|
| 149 | delete _epochs;
|
---|
| 150 | }
|
---|
[35] | 151 | }
|
---|
| 152 |
|
---|
| 153 | // New Observations
|
---|
| 154 | ////////////////////////////////////////////////////////////////////////////
|
---|
[622] | 155 | void bncCaster::newObs(const QByteArray staID, bool firstObs, p_obs obs) {
|
---|
[35] | 156 |
|
---|
[243] | 157 | QMutexLocker locker(&_mutex);
|
---|
| 158 |
|
---|
[624] | 159 | obs->_status = t_obs::received;
|
---|
| 160 |
|
---|
[2316] | 161 | long iSec = long(floor(obs->_o.GPSWeeks+0.5));
|
---|
| 162 | long newTime = obs->_o.GPSWeek * 7*24*3600 + iSec;
|
---|
[35] | 163 |
|
---|
[160] | 164 | // Rename the Station
|
---|
| 165 | // ------------------
|
---|
[622] | 166 | strncpy(obs->_o.StatID, staID.constData(),sizeof(obs->_o.StatID));
|
---|
| 167 | obs->_o.StatID[sizeof(obs->_o.StatID)-1] = '\0';
|
---|
[160] | 168 |
|
---|
[1222] | 169 | const char begObs[] = "BEGOBS";
|
---|
| 170 | const int begObsNBytes = sizeof(begObs) - 1;
|
---|
| 171 |
|
---|
| 172 | // Output into the socket
|
---|
| 173 | // ----------------------
|
---|
| 174 | if (_uSockets) {
|
---|
| 175 | QMutableListIterator<QTcpSocket*> is(*_uSockets);
|
---|
| 176 | while (is.hasNext()) {
|
---|
| 177 | QTcpSocket* sock = is.next();
|
---|
| 178 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
| 179 | bool ok = true;
|
---|
| 180 | if (myWrite(sock, begObs, begObsNBytes) != begObsNBytes) {
|
---|
| 181 | ok = false;
|
---|
| 182 | }
|
---|
| 183 | int numBytes = sizeof(obs->_o);
|
---|
| 184 | if (myWrite(sock, (const char*)(&obs->_o), numBytes) != numBytes) {
|
---|
| 185 | ok = false;
|
---|
| 186 | }
|
---|
| 187 | if (!ok) {
|
---|
| 188 | delete sock;
|
---|
| 189 | is.remove();
|
---|
| 190 | }
|
---|
| 191 | }
|
---|
| 192 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
| 193 | delete sock;
|
---|
| 194 | is.remove();
|
---|
| 195 | }
|
---|
| 196 | }
|
---|
| 197 | }
|
---|
| 198 |
|
---|
[35] | 199 | // First time, set the _lastDumpSec immediately
|
---|
| 200 | // --------------------------------------------
|
---|
[2316] | 201 | if (_lastDumpSec == 0) {
|
---|
| 202 | _lastDumpSec = newTime - 1;
|
---|
[35] | 203 | }
|
---|
| 204 |
|
---|
| 205 | // An old observation - throw it away
|
---|
| 206 | // ----------------------------------
|
---|
[2316] | 207 | if (newTime <= _lastDumpSec) {
|
---|
[257] | 208 | if (firstObs) {
|
---|
[1535] | 209 | bncSettings settings;
|
---|
[257] | 210 | if ( !settings.value("outFile").toString().isEmpty() ||
|
---|
| 211 | !settings.value("outPort").toString().isEmpty() ) {
|
---|
[1810] | 212 |
|
---|
[2316] | 213 | QTime enomtime = QTime(0,0,0).addSecs(iSec);
|
---|
[1810] | 214 |
|
---|
| 215 | emit( newMessage(QString("%1: Old epoch %2 (%3) thrown away")
|
---|
[2316] | 216 | .arg(staID.data()).arg(iSec)
|
---|
[1810] | 217 | .arg(enomtime.toString("HH:mm:ss"))
|
---|
| 218 | .toAscii(), true) );
|
---|
[257] | 219 | }
|
---|
[181] | 220 | }
|
---|
[35] | 221 | delete obs;
|
---|
[350] | 222 | return;
|
---|
[35] | 223 | }
|
---|
| 224 |
|
---|
[160] | 225 | // Save the observation
|
---|
| 226 | // --------------------
|
---|
[2316] | 227 | _epochs->insert(newTime, obs);
|
---|
[393] | 228 |
|
---|
[462] | 229 | // Dump Epochs
|
---|
| 230 | // -----------
|
---|
[2316] | 231 | if (newTime - _waitTime > _lastDumpSec) {
|
---|
| 232 | dumpEpochs(_lastDumpSec + 1, newTime - _waitTime);
|
---|
| 233 | _lastDumpSec = newTime - _waitTime;
|
---|
[252] | 234 | }
|
---|
[35] | 235 | }
|
---|
| 236 |
|
---|
| 237 | // New Connection
|
---|
| 238 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 239 | void bncCaster::slotNewConnection() {
|
---|
| 240 | _sockets->push_back( _server->nextPendingConnection() );
|
---|
[1450] | 241 | emit( newMessage(QString("New client connection on sync port: # %1")
|
---|
[1299] | 242 | .arg(_sockets->size()).toAscii(), true) );
|
---|
[35] | 243 | }
|
---|
| 244 |
|
---|
[1222] | 245 | void bncCaster::slotNewUConnection() {
|
---|
| 246 | _uSockets->push_back( _uServer->nextPendingConnection() );
|
---|
[1450] | 247 | emit( newMessage(QString("New client connection on usync port: # %1")
|
---|
[1299] | 248 | .arg(_uSockets->size()).toAscii(), true) );
|
---|
[1222] | 249 | }
|
---|
| 250 |
|
---|
[2183] | 251 | void bncCaster::slotNewNMEAConnection() {
|
---|
| 252 | _nmeaSockets->push_back( _nmeaServer->nextPendingConnection() );
|
---|
| 253 | emit( newMessage(QString("New PPP client on port: # %1")
|
---|
| 254 | .arg(_nmeaSockets->size()).toAscii(), true) );
|
---|
| 255 | }
|
---|
| 256 |
|
---|
[35] | 257 | // Add New Thread
|
---|
| 258 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2528] | 259 | void bncCaster::addGetThread(bncGetThread* getThread, bool noNewThread) {
|
---|
[624] | 260 |
|
---|
| 261 | qRegisterMetaType<p_obs>("p_obs");
|
---|
[2585] | 262 | qRegisterMetaType<gpsephemeris>("gpsephemeris");
|
---|
| 263 | qRegisterMetaType<glonassephemeris>("glonassephemeris");
|
---|
[624] | 264 |
|
---|
[628] | 265 | connect(getThread, SIGNAL(newObs(QByteArray, bool, p_obs)),
|
---|
| 266 | this, SLOT(newObs(QByteArray, bool, p_obs)));
|
---|
[463] | 267 |
|
---|
[1556] | 268 | connect(getThread, SIGNAL(getThreadFinished(QByteArray)),
|
---|
| 269 | this, SLOT(slotGetThreadFinished(QByteArray)));
|
---|
[35] | 270 |
|
---|
[2182] | 271 | connect(getThread, SIGNAL(newNMEAstr(QByteArray)),
|
---|
| 272 | this, SLOT(slotNewNMEAstr(QByteArray)));
|
---|
| 273 |
|
---|
[1807] | 274 | connect(((bncApp*)qApp), SIGNAL(newEphGPS(gpsephemeris)),
|
---|
[2585] | 275 | getThread, SLOT(slotNewEphGPS(gpsephemeris)));
|
---|
[1807] | 276 |
|
---|
[88] | 277 | _staIDs.push_back(getThread->staID());
|
---|
[186] | 278 | _threads.push_back(getThread);
|
---|
[1170] | 279 |
|
---|
[2528] | 280 | if (noNewThread) {
|
---|
| 281 | getThread->run();
|
---|
| 282 | }
|
---|
| 283 | else {
|
---|
| 284 | getThread->start();
|
---|
| 285 | }
|
---|
[35] | 286 | }
|
---|
| 287 |
|
---|
[1556] | 288 | // Get Thread destroyed
|
---|
[35] | 289 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1556] | 290 | void bncCaster::slotGetThreadFinished(QByteArray staID) {
|
---|
[243] | 291 | QMutexLocker locker(&_mutex);
|
---|
[1560] | 292 |
|
---|
| 293 | QListIterator<bncGetThread*> it(_threads);
|
---|
| 294 | while (it.hasNext()) {
|
---|
| 295 | bncGetThread* thread = it.next();
|
---|
| 296 | if (thread->staID() == staID) {
|
---|
| 297 | _threads.removeOne(thread);
|
---|
| 298 | }
|
---|
| 299 | }
|
---|
| 300 |
|
---|
[88] | 301 | _staIDs.removeAll(staID);
|
---|
[82] | 302 | emit( newMessage(
|
---|
[1986] | 303 | QString("Decoding %1 stream(s)").arg(_staIDs.size()).toAscii(), true) );
|
---|
[88] | 304 | if (_staIDs.size() == 0) {
|
---|
[1450] | 305 | emit(newMessage("bncCaster: Last get thread terminated", true));
|
---|
[1556] | 306 | emit getThreadsFinished();
|
---|
[35] | 307 | }
|
---|
| 308 | }
|
---|
| 309 |
|
---|
| 310 | // Dump Complete Epochs
|
---|
| 311 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2316] | 312 | void bncCaster::dumpEpochs(long minTime, long maxTime) {
|
---|
[35] | 313 |
|
---|
[1182] | 314 | const char begEpoch[] = "BEGEPOCH";
|
---|
| 315 | const char endEpoch[] = "ENDEPOCH";
|
---|
[35] | 316 |
|
---|
[1182] | 317 | const int begEpochNBytes = sizeof(begEpoch) - 1;
|
---|
| 318 | const int endEpochNBytes = sizeof(endEpoch) - 1;
|
---|
| 319 |
|
---|
[2316] | 320 | for (long sec = minTime; sec <= maxTime; sec++) {
|
---|
[140] | 321 |
|
---|
[35] | 322 | bool first = true;
|
---|
[2316] | 323 | QList<p_obs> allObs = _epochs->values(sec);
|
---|
[1999] | 324 |
|
---|
[622] | 325 | QListIterator<p_obs> it(allObs);
|
---|
[35] | 326 | while (it.hasNext()) {
|
---|
[622] | 327 | p_obs obs = it.next();
|
---|
[35] | 328 |
|
---|
[2316] | 329 | if (_samplingRate == 0 || sec % _samplingRate == 0) {
|
---|
[1810] | 330 |
|
---|
| 331 | if (first) {
|
---|
| 332 | QTime enomtime = QTime(0,0,0).addSecs(static_cast<int>(floor(obs->_o.GPSWeeks+0.5)));
|
---|
[1821] | 333 | // emit( newMessage( QString("Epoch %1 dumped").arg(enomtime.toString("HH:mm:ss")).toAscii(), true) ); // weber
|
---|
[1810] | 334 | }
|
---|
[140] | 335 | // Output into the file
|
---|
| 336 | // --------------------
|
---|
| 337 | if (_out) {
|
---|
[35] | 338 | if (first) {
|
---|
[1810] | 339 | _out->setFieldWidth(1); *_out << begEpoch << endl;
|
---|
[35] | 340 | }
|
---|
[622] | 341 | _out->setFieldWidth(0); *_out << obs->_o.StatID;
|
---|
| 342 | _out->setFieldWidth(1); *_out << " " << obs->_o.satSys;
|
---|
[344] | 343 | _out->setPadChar('0');
|
---|
[622] | 344 | _out->setFieldWidth(2); *_out << obs->_o.satNum;
|
---|
[344] | 345 | _out->setPadChar(' ');
|
---|
[342] | 346 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 347 | _out->setFieldWidth(4); *_out << obs->_o.GPSWeek;
|
---|
[342] | 348 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 349 | _out->setFieldWidth(14); _out->setRealNumberPrecision(7); *_out << obs->_o.GPSWeeks;
|
---|
[342] | 350 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 351 | _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.C1;
|
---|
[342] | 352 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 353 | _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.C2;
|
---|
[366] | 354 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 355 | _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.P1;
|
---|
[342] | 356 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 357 | _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.P2;
|
---|
[342] | 358 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 359 | _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.L1;
|
---|
[342] | 360 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 361 | _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.L2;
|
---|
[367] | 362 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 363 | _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.S1;
|
---|
[367] | 364 | _out->setFieldWidth(1); *_out << " ";
|
---|
[622] | 365 | _out->setFieldWidth(14); _out->setRealNumberPrecision(3); *_out << obs->_o.S2;
|
---|
[342] | 366 | _out->setFieldWidth(1);
|
---|
[622] | 367 | *_out << " " << obs->_o.SNR1 << " " << obs->_o.SNR2 << endl;
|
---|
[35] | 368 | if (!it.hasNext()) {
|
---|
[341] | 369 | _out->setFieldWidth(1); *_out << endEpoch << endl;
|
---|
[35] | 370 | }
|
---|
[347] | 371 | _out->flush();
|
---|
[35] | 372 | }
|
---|
[140] | 373 |
|
---|
| 374 | // Output into the socket
|
---|
| 375 | // ----------------------
|
---|
| 376 | if (_sockets) {
|
---|
[637] | 377 | QMutableListIterator<QTcpSocket*> is(*_sockets);
|
---|
[140] | 378 | while (is.hasNext()) {
|
---|
| 379 | QTcpSocket* sock = is.next();
|
---|
[397] | 380 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
[637] | 381 | bool ok = true;
|
---|
[397] | 382 | if (first) {
|
---|
[1182] | 383 | if (myWrite(sock, begEpoch, begEpochNBytes) != begEpochNBytes) {
|
---|
[637] | 384 | ok = false;
|
---|
| 385 | }
|
---|
[397] | 386 | }
|
---|
[1182] | 387 | int numBytes = sizeof(obs->_o);
|
---|
| 388 | if (myWrite(sock, (const char*)(&obs->_o), numBytes) != numBytes) {
|
---|
[637] | 389 | ok = false;
|
---|
| 390 | }
|
---|
[397] | 391 | if (!it.hasNext()) {
|
---|
[1182] | 392 | if (myWrite(sock, endEpoch, endEpochNBytes) != endEpochNBytes) {
|
---|
[637] | 393 | ok = false;
|
---|
| 394 | }
|
---|
[397] | 395 | }
|
---|
[637] | 396 | if (!ok) {
|
---|
| 397 | delete sock;
|
---|
| 398 | is.remove();
|
---|
| 399 | }
|
---|
[140] | 400 | }
|
---|
[637] | 401 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
| 402 | delete sock;
|
---|
| 403 | is.remove();
|
---|
| 404 | }
|
---|
[140] | 405 | }
|
---|
| 406 | }
|
---|
[73] | 407 | }
|
---|
| 408 |
|
---|
[35] | 409 | delete obs;
|
---|
[2316] | 410 | _epochs->remove(sec);
|
---|
[35] | 411 | first = false;
|
---|
| 412 | }
|
---|
| 413 | }
|
---|
| 414 | }
|
---|
[1170] | 415 |
|
---|
| 416 | // Reread configuration
|
---|
| 417 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1179] | 418 | void bncCaster::slotReadMountPoints() {
|
---|
[1170] | 419 |
|
---|
[1535] | 420 | bncSettings settings;
|
---|
[1170] | 421 |
|
---|
| 422 | // Reread several options
|
---|
| 423 | // ----------------------
|
---|
[2316] | 424 | _samplingRate = settings.value("binSampl").toInt();
|
---|
| 425 | _waitTime = settings.value("waitTime").toInt();
|
---|
| 426 | if (_waitTime < 1) {
|
---|
| 427 | _waitTime = 1;
|
---|
[1170] | 428 | }
|
---|
| 429 |
|
---|
| 430 | // Add new mountpoints
|
---|
| 431 | // -------------------
|
---|
| 432 | int iMount = -1;
|
---|
| 433 | QListIterator<QString> it(settings.value("mountPoints").toStringList());
|
---|
| 434 | while (it.hasNext()) {
|
---|
| 435 | ++iMount;
|
---|
| 436 | QStringList hlp = it.next().split(" ");
|
---|
| 437 | if (hlp.size() <= 1) continue;
|
---|
| 438 | QUrl url(hlp[0]);
|
---|
| 439 |
|
---|
| 440 | // Does it already exist?
|
---|
| 441 | // ----------------------
|
---|
| 442 | bool existFlg = false;
|
---|
| 443 | QListIterator<bncGetThread*> iTh(_threads);
|
---|
| 444 | while (iTh.hasNext()) {
|
---|
| 445 | bncGetThread* thread = iTh.next();
|
---|
| 446 | if (thread->mountPoint() == url) {
|
---|
| 447 | existFlg = true;
|
---|
| 448 | break;
|
---|
| 449 | }
|
---|
| 450 | }
|
---|
| 451 |
|
---|
| 452 | // New bncGetThread
|
---|
| 453 | // ----------------
|
---|
| 454 | if (!existFlg) {
|
---|
| 455 | QByteArray format = hlp[1].toAscii();
|
---|
| 456 | QByteArray latitude = hlp[2].toAscii();
|
---|
| 457 | QByteArray longitude = hlp[3].toAscii();
|
---|
| 458 | QByteArray nmea = hlp[4].toAscii();
|
---|
[1353] | 459 | QByteArray ntripVersion = hlp[5].toAscii();
|
---|
[1170] | 460 |
|
---|
| 461 | bncGetThread* getThread = new bncGetThread(url, format, latitude,
|
---|
[1770] | 462 | longitude, nmea, ntripVersion, "");
|
---|
[1170] | 463 | addGetThread(getThread);
|
---|
| 464 | }
|
---|
| 465 | }
|
---|
| 466 |
|
---|
| 467 | // Remove mountpoints
|
---|
| 468 | // ------------------
|
---|
| 469 | QListIterator<bncGetThread*> iTh(_threads);
|
---|
| 470 | while (iTh.hasNext()) {
|
---|
| 471 | bncGetThread* thread = iTh.next();
|
---|
| 472 |
|
---|
| 473 | bool existFlg = false;
|
---|
| 474 | QListIterator<QString> it(settings.value("mountPoints").toStringList());
|
---|
| 475 | while (it.hasNext()) {
|
---|
| 476 | QStringList hlp = it.next().split(" ");
|
---|
| 477 | if (hlp.size() <= 1) continue;
|
---|
| 478 | QUrl url(hlp[0]);
|
---|
| 479 |
|
---|
| 480 | if (thread->mountPoint() == url) {
|
---|
| 481 | existFlg = true;
|
---|
| 482 | break;
|
---|
| 483 | }
|
---|
| 484 | }
|
---|
| 485 |
|
---|
| 486 | if (!existFlg) {
|
---|
| 487 | disconnect(thread, 0, 0, 0);
|
---|
| 488 | _staIDs.removeAll(thread->staID());
|
---|
| 489 | _threads.removeAll(thread);
|
---|
| 490 | thread->terminate();
|
---|
| 491 | }
|
---|
| 492 | }
|
---|
| 493 |
|
---|
[1179] | 494 | emit mountPointsRead(_threads);
|
---|
[1529] | 495 | emit( newMessage(QString("Configuration read: "
|
---|
[1542] | 496 | + ((bncApp*) qApp)->confFileName()
|
---|
[1529] | 497 | + ", %1 stream(s)")
|
---|
[1299] | 498 | .arg(_threads.count()).toAscii(), true) );
|
---|
[1176] | 499 |
|
---|
[1170] | 500 | // (Re-) Start the configuration timer
|
---|
| 501 | // -----------------------------------
|
---|
| 502 | int ms = 0;
|
---|
| 503 |
|
---|
[1705] | 504 | if (_confInterval != -1) {
|
---|
[1170] | 505 | ms = 1000 * _confInterval;
|
---|
| 506 | }
|
---|
| 507 | else {
|
---|
| 508 | QTime currTime = currentDateAndTimeGPS().time();
|
---|
| 509 | QTime nextShotTime;
|
---|
| 510 |
|
---|
| 511 | if (settings.value("onTheFlyInterval").toString() == "1 min") {
|
---|
| 512 | _confInterval = 60;
|
---|
| 513 | nextShotTime = QTime(currTime.hour(), currTime.minute()+1, 0);
|
---|
| 514 | }
|
---|
| 515 | else if (settings.value("onTheFlyInterval").toString() == "1 hour") {
|
---|
| 516 | _confInterval = 3600;
|
---|
| 517 | nextShotTime = QTime(currTime.hour()+1, 0, 0);
|
---|
| 518 | }
|
---|
| 519 | else {
|
---|
| 520 | _confInterval = 86400;
|
---|
| 521 | nextShotTime = QTime(23, 59, 59, 999);
|
---|
| 522 | }
|
---|
| 523 |
|
---|
| 524 | ms = currTime.msecsTo(nextShotTime);
|
---|
[1176] | 525 | if (ms < 30000) {
|
---|
| 526 | ms = 30000;
|
---|
| 527 | }
|
---|
[1170] | 528 | }
|
---|
| 529 |
|
---|
[1705] | 530 | QTimer::singleShot(ms, this, SLOT(slotReadMountPoints()));
|
---|
[1170] | 531 | }
|
---|
[1182] | 532 |
|
---|
| 533 | //
|
---|
| 534 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 535 | int bncCaster::myWrite(QTcpSocket* sock, const char* buf, int bufLen) {
|
---|
[1229] | 536 | sock->write(buf, bufLen);
|
---|
| 537 | for (int ii = 1; ii <= 10; ii++) {
|
---|
| 538 | if (sock->waitForBytesWritten(10)) { // wait 10 ms
|
---|
| 539 | return bufLen;
|
---|
[1182] | 540 | }
|
---|
| 541 | }
|
---|
[1229] | 542 | return -1;
|
---|
[1182] | 543 | }
|
---|
[2182] | 544 |
|
---|
| 545 | //
|
---|
| 546 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 547 | void bncCaster::slotNewNMEAstr(QByteArray str) {
|
---|
[2184] | 548 | if (_nmeaSockets) {
|
---|
| 549 | QMutableListIterator<QTcpSocket*> is(*_nmeaSockets);
|
---|
| 550 | while (is.hasNext()) {
|
---|
| 551 | QTcpSocket* sock = is.next();
|
---|
| 552 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
| 553 | sock->write(str);
|
---|
| 554 | }
|
---|
| 555 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
| 556 | delete sock;
|
---|
| 557 | is.remove();
|
---|
| 558 | }
|
---|
| 559 | }
|
---|
| 560 | }
|
---|
[2182] | 561 | }
|
---|