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