[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"
|
---|
[35] | 54 |
|
---|
[2831] | 55 | using namespace std;
|
---|
| 56 |
|
---|
[35] | 57 | // Constructor
|
---|
| 58 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 59 | bncCaster::bncCaster(const QString& outFileName, int port) {
|
---|
| 60 |
|
---|
[1535] | 61 | bncSettings settings;
|
---|
[275] | 62 |
|
---|
[1299] | 63 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
| 64 | (bncApp*) qApp, SLOT(slotMessage(const QByteArray,bool)));
|
---|
[1228] | 65 |
|
---|
[35] | 66 | if ( !outFileName.isEmpty() ) {
|
---|
[134] | 67 | QString lName = outFileName;
|
---|
| 68 | expandEnvVar(lName);
|
---|
| 69 | _outFile = new QFile(lName);
|
---|
[275] | 70 | if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
|
---|
| 71 | _outFile->open(QIODevice::WriteOnly | QIODevice::Append);
|
---|
| 72 | }
|
---|
| 73 | else {
|
---|
| 74 | _outFile->open(QIODevice::WriteOnly);
|
---|
| 75 | }
|
---|
[35] | 76 | _out = new QTextStream(_outFile);
|
---|
| 77 | _out->setRealNumberNotation(QTextStream::FixedNotation);
|
---|
| 78 | }
|
---|
| 79 | else {
|
---|
| 80 | _outFile = 0;
|
---|
| 81 | _out = 0;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | _port = port;
|
---|
| 85 |
|
---|
| 86 | if (_port != 0) {
|
---|
| 87 | _server = new QTcpServer;
|
---|
[1228] | 88 | if ( !_server->listen(QHostAddress::Any, _port) ) {
|
---|
[1450] | 89 | emit newMessage("bncCaster: Cannot listen on sync port", true);
|
---|
[1228] | 90 | }
|
---|
[35] | 91 | connect(_server, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
|
---|
| 92 | _sockets = new QList<QTcpSocket*>;
|
---|
| 93 | }
|
---|
| 94 | else {
|
---|
| 95 | _server = 0;
|
---|
| 96 | _sockets = 0;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
[1222] | 99 | int uPort = settings.value("outUPort").toInt();
|
---|
| 100 | if (uPort != 0) {
|
---|
| 101 | _uServer = new QTcpServer;
|
---|
[1228] | 102 | if ( !_uServer->listen(QHostAddress::Any, uPort) ) {
|
---|
[1450] | 103 | emit newMessage("bncCaster: Cannot listen on usync port", true);
|
---|
[1228] | 104 | }
|
---|
[1222] | 105 | connect(_uServer, SIGNAL(newConnection()), this, SLOT(slotNewUConnection()));
|
---|
| 106 | _uSockets = new QList<QTcpSocket*>;
|
---|
| 107 | }
|
---|
| 108 | else {
|
---|
| 109 | _uServer = 0;
|
---|
| 110 | _uSockets = 0;
|
---|
| 111 | }
|
---|
| 112 |
|
---|
[2183] | 113 | int nmeaPort = settings.value("nmeaPort").toInt();
|
---|
| 114 | if (nmeaPort != 0) {
|
---|
| 115 | _nmeaServer = new QTcpServer;
|
---|
| 116 | if ( !_nmeaServer->listen(QHostAddress::Any, nmeaPort) ) {
|
---|
| 117 | emit newMessage("bncCaster: Cannot listen on port", true);
|
---|
| 118 | }
|
---|
| 119 | connect(_nmeaServer, SIGNAL(newConnection()), this, SLOT(slotNewNMEAConnection()));
|
---|
| 120 | _nmeaSockets = new QList<QTcpSocket*>;
|
---|
| 121 | }
|
---|
| 122 | else {
|
---|
| 123 | _nmeaServer = 0;
|
---|
| 124 | _nmeaSockets = 0;
|
---|
| 125 | }
|
---|
| 126 |
|
---|
[2711] | 127 | _epochs = new QMultiMap<long, t_obs>;
|
---|
[35] | 128 |
|
---|
[2316] | 129 | _lastDumpSec = 0;
|
---|
[133] | 130 |
|
---|
[1705] | 131 | _confInterval = -1;
|
---|
[35] | 132 | }
|
---|
| 133 |
|
---|
| 134 | // Destructor
|
---|
| 135 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 136 | bncCaster::~bncCaster() {
|
---|
[2647] | 137 |
|
---|
| 138 | QMutexLocker locker(&_mutex);
|
---|
| 139 |
|
---|
[186] | 140 | QListIterator<bncGetThread*> it(_threads);
|
---|
| 141 | while(it.hasNext()){
|
---|
| 142 | bncGetThread* thread = it.next();
|
---|
[1525] | 143 | thread->terminate();
|
---|
[186] | 144 | }
|
---|
[35] | 145 | delete _out;
|
---|
| 146 | delete _outFile;
|
---|
[187] | 147 | delete _server;
|
---|
[631] | 148 | delete _sockets;
|
---|
[1222] | 149 | delete _uServer;
|
---|
| 150 | delete _uSockets;
|
---|
[2186] | 151 | delete _nmeaServer;
|
---|
| 152 | delete _nmeaSockets;
|
---|
[2711] | 153 | delete _epochs;
|
---|
[35] | 154 | }
|
---|
| 155 |
|
---|
| 156 | // New Observations
|
---|
| 157 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2711] | 158 | void bncCaster::newObs(const QByteArray staID, bool firstObs, t_obs obs) {
|
---|
[35] | 159 |
|
---|
[243] | 160 | QMutexLocker locker(&_mutex);
|
---|
| 161 |
|
---|
[2711] | 162 | long iSec = long(floor(obs.GPSWeeks+0.5));
|
---|
| 163 | long newTime = obs.GPSWeek * 7*24*3600 + iSec;
|
---|
[624] | 164 |
|
---|
[2833] | 165 | // Rename the Station
|
---|
| 166 | // ------------------
|
---|
| 167 | strncpy(obs.StatID, staID.constData(),sizeof(obs.StatID));
|
---|
| 168 | obs.StatID[sizeof(obs.StatID)-1] = '\0';
|
---|
| 169 |
|
---|
[1222] | 170 | // Output into the socket
|
---|
| 171 | // ----------------------
|
---|
| 172 | if (_uSockets) {
|
---|
[2831] | 173 |
|
---|
| 174 | ostringstream oStr;
|
---|
| 175 | oStr.setf(ios::showpoint | ios::fixed);
|
---|
| 176 | oStr << obs.StatID << " "
|
---|
| 177 | << obs.GPSWeek << " "
|
---|
| 178 | << setprecision(7) << obs.GPSWeeks << " "
|
---|
| 179 | << bncRinex::rinexSatLine(obs, false, ' ', ' ', ' ') << endl;
|
---|
| 180 |
|
---|
| 181 | string hlpStr = oStr.str();
|
---|
| 182 |
|
---|
[1222] | 183 | QMutableListIterator<QTcpSocket*> is(*_uSockets);
|
---|
| 184 | while (is.hasNext()) {
|
---|
| 185 | QTcpSocket* sock = is.next();
|
---|
| 186 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
[2831] | 187 | int numBytes = hlpStr.length();
|
---|
| 188 | if (myWrite(sock, hlpStr.c_str(), numBytes) != numBytes) {
|
---|
[1222] | 189 | delete sock;
|
---|
| 190 | is.remove();
|
---|
| 191 | }
|
---|
| 192 | }
|
---|
| 193 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
| 194 | delete sock;
|
---|
| 195 | is.remove();
|
---|
| 196 | }
|
---|
| 197 | }
|
---|
| 198 | }
|
---|
| 199 |
|
---|
[35] | 200 | // First time, set the _lastDumpSec immediately
|
---|
| 201 | // --------------------------------------------
|
---|
[2316] | 202 | if (_lastDumpSec == 0) {
|
---|
| 203 | _lastDumpSec = newTime - 1;
|
---|
[35] | 204 | }
|
---|
| 205 |
|
---|
| 206 | // An old observation - throw it away
|
---|
| 207 | // ----------------------------------
|
---|
[2316] | 208 | if (newTime <= _lastDumpSec) {
|
---|
[257] | 209 | if (firstObs) {
|
---|
[1535] | 210 | bncSettings settings;
|
---|
[257] | 211 | if ( !settings.value("outFile").toString().isEmpty() ||
|
---|
| 212 | !settings.value("outPort").toString().isEmpty() ) {
|
---|
[1810] | 213 |
|
---|
[2316] | 214 | QTime enomtime = QTime(0,0,0).addSecs(iSec);
|
---|
[1810] | 215 |
|
---|
| 216 | emit( newMessage(QString("%1: Old epoch %2 (%3) thrown away")
|
---|
[2316] | 217 | .arg(staID.data()).arg(iSec)
|
---|
[1810] | 218 | .arg(enomtime.toString("HH:mm:ss"))
|
---|
| 219 | .toAscii(), true) );
|
---|
[257] | 220 | }
|
---|
[181] | 221 | }
|
---|
[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 |
|
---|
[2711] | 261 | qRegisterMetaType<t_obs>("t_obs");
|
---|
[2585] | 262 | qRegisterMetaType<gpsephemeris>("gpsephemeris");
|
---|
| 263 | qRegisterMetaType<glonassephemeris>("glonassephemeris");
|
---|
[624] | 264 |
|
---|
[2711] | 265 | connect(getThread, SIGNAL(newObs(QByteArray, bool, t_obs)),
|
---|
| 266 | this, SLOT(newObs(QByteArray, bool, t_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 |
|
---|
[2316] | 314 | for (long sec = minTime; sec <= maxTime; sec++) {
|
---|
[140] | 315 |
|
---|
[35] | 316 | bool first = true;
|
---|
[2711] | 317 | QList<t_obs> allObs = _epochs->values(sec);
|
---|
[1999] | 318 |
|
---|
[2711] | 319 | QListIterator<t_obs> it(allObs);
|
---|
[35] | 320 | while (it.hasNext()) {
|
---|
[2711] | 321 | const t_obs& obs = it.next();
|
---|
[35] | 322 |
|
---|
[2316] | 323 | if (_samplingRate == 0 || sec % _samplingRate == 0) {
|
---|
[1810] | 324 |
|
---|
[2831] | 325 | if (_out || _sockets) {
|
---|
| 326 | ostringstream oStr;
|
---|
| 327 | oStr.setf(ios::showpoint | ios::fixed);
|
---|
| 328 | oStr << obs.StatID << " "
|
---|
| 329 | << obs.GPSWeek << " "
|
---|
| 330 | << setprecision(7) << obs.GPSWeeks << " "
|
---|
| 331 | << bncRinex::rinexSatLine(obs, false, ' ', ' ', ' ') << endl;
|
---|
| 332 | if (!it.hasNext()) {
|
---|
| 333 | oStr << endl;
|
---|
[35] | 334 | }
|
---|
[2831] | 335 | string hlpStr = oStr.str();
|
---|
[2697] | 336 |
|
---|
[2831] | 337 | // Output into the File
|
---|
| 338 | // --------------------
|
---|
| 339 | if (_out) {
|
---|
| 340 | *_out << hlpStr.c_str();
|
---|
| 341 | _out->flush();
|
---|
| 342 | }
|
---|
[2697] | 343 |
|
---|
[2831] | 344 | // Output into the socket
|
---|
| 345 | // ----------------------
|
---|
| 346 | if (_sockets) {
|
---|
| 347 | QMutableListIterator<QTcpSocket*> is(*_sockets);
|
---|
| 348 | while (is.hasNext()) {
|
---|
| 349 | QTcpSocket* sock = is.next();
|
---|
| 350 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
| 351 | int numBytes = hlpStr.length();
|
---|
| 352 | if (myWrite(sock, hlpStr.c_str(), numBytes) != numBytes) {
|
---|
| 353 | delete sock;
|
---|
| 354 | is.remove();
|
---|
[637] | 355 | }
|
---|
[397] | 356 | }
|
---|
[2831] | 357 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
[637] | 358 | delete sock;
|
---|
| 359 | is.remove();
|
---|
| 360 | }
|
---|
[140] | 361 | }
|
---|
| 362 | }
|
---|
| 363 | }
|
---|
[73] | 364 | }
|
---|
| 365 |
|
---|
[2316] | 366 | _epochs->remove(sec);
|
---|
[35] | 367 | first = false;
|
---|
| 368 | }
|
---|
| 369 | }
|
---|
| 370 | }
|
---|
[1170] | 371 |
|
---|
| 372 | // Reread configuration
|
---|
| 373 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1179] | 374 | void bncCaster::slotReadMountPoints() {
|
---|
[1170] | 375 |
|
---|
[1535] | 376 | bncSettings settings;
|
---|
[1170] | 377 |
|
---|
| 378 | // Reread several options
|
---|
| 379 | // ----------------------
|
---|
[2316] | 380 | _samplingRate = settings.value("binSampl").toInt();
|
---|
| 381 | _waitTime = settings.value("waitTime").toInt();
|
---|
| 382 | if (_waitTime < 1) {
|
---|
| 383 | _waitTime = 1;
|
---|
[1170] | 384 | }
|
---|
| 385 |
|
---|
| 386 | // Add new mountpoints
|
---|
| 387 | // -------------------
|
---|
| 388 | int iMount = -1;
|
---|
| 389 | QListIterator<QString> it(settings.value("mountPoints").toStringList());
|
---|
| 390 | while (it.hasNext()) {
|
---|
| 391 | ++iMount;
|
---|
| 392 | QStringList hlp = it.next().split(" ");
|
---|
| 393 | if (hlp.size() <= 1) continue;
|
---|
| 394 | QUrl url(hlp[0]);
|
---|
| 395 |
|
---|
| 396 | // Does it already exist?
|
---|
| 397 | // ----------------------
|
---|
| 398 | bool existFlg = false;
|
---|
| 399 | QListIterator<bncGetThread*> iTh(_threads);
|
---|
| 400 | while (iTh.hasNext()) {
|
---|
| 401 | bncGetThread* thread = iTh.next();
|
---|
| 402 | if (thread->mountPoint() == url) {
|
---|
| 403 | existFlg = true;
|
---|
| 404 | break;
|
---|
| 405 | }
|
---|
| 406 | }
|
---|
| 407 |
|
---|
| 408 | // New bncGetThread
|
---|
| 409 | // ----------------
|
---|
| 410 | if (!existFlg) {
|
---|
| 411 | QByteArray format = hlp[1].toAscii();
|
---|
| 412 | QByteArray latitude = hlp[2].toAscii();
|
---|
| 413 | QByteArray longitude = hlp[3].toAscii();
|
---|
| 414 | QByteArray nmea = hlp[4].toAscii();
|
---|
[1353] | 415 | QByteArray ntripVersion = hlp[5].toAscii();
|
---|
[1170] | 416 |
|
---|
| 417 | bncGetThread* getThread = new bncGetThread(url, format, latitude,
|
---|
[3003] | 418 | longitude, nmea, ntripVersion);
|
---|
[1170] | 419 | addGetThread(getThread);
|
---|
| 420 | }
|
---|
| 421 | }
|
---|
| 422 |
|
---|
| 423 | // Remove mountpoints
|
---|
| 424 | // ------------------
|
---|
| 425 | QListIterator<bncGetThread*> iTh(_threads);
|
---|
| 426 | while (iTh.hasNext()) {
|
---|
| 427 | bncGetThread* thread = iTh.next();
|
---|
| 428 |
|
---|
| 429 | bool existFlg = false;
|
---|
| 430 | QListIterator<QString> it(settings.value("mountPoints").toStringList());
|
---|
| 431 | while (it.hasNext()) {
|
---|
| 432 | QStringList hlp = it.next().split(" ");
|
---|
| 433 | if (hlp.size() <= 1) continue;
|
---|
| 434 | QUrl url(hlp[0]);
|
---|
| 435 |
|
---|
| 436 | if (thread->mountPoint() == url) {
|
---|
| 437 | existFlg = true;
|
---|
| 438 | break;
|
---|
| 439 | }
|
---|
| 440 | }
|
---|
| 441 |
|
---|
| 442 | if (!existFlg) {
|
---|
| 443 | disconnect(thread, 0, 0, 0);
|
---|
| 444 | _staIDs.removeAll(thread->staID());
|
---|
| 445 | _threads.removeAll(thread);
|
---|
| 446 | thread->terminate();
|
---|
| 447 | }
|
---|
| 448 | }
|
---|
| 449 |
|
---|
[1179] | 450 | emit mountPointsRead(_threads);
|
---|
[1529] | 451 | emit( newMessage(QString("Configuration read: "
|
---|
[1542] | 452 | + ((bncApp*) qApp)->confFileName()
|
---|
[1529] | 453 | + ", %1 stream(s)")
|
---|
[1299] | 454 | .arg(_threads.count()).toAscii(), true) );
|
---|
[1176] | 455 |
|
---|
[1170] | 456 | // (Re-) Start the configuration timer
|
---|
| 457 | // -----------------------------------
|
---|
| 458 | int ms = 0;
|
---|
| 459 |
|
---|
[1705] | 460 | if (_confInterval != -1) {
|
---|
[1170] | 461 | ms = 1000 * _confInterval;
|
---|
| 462 | }
|
---|
| 463 | else {
|
---|
| 464 | QTime currTime = currentDateAndTimeGPS().time();
|
---|
| 465 | QTime nextShotTime;
|
---|
| 466 |
|
---|
| 467 | if (settings.value("onTheFlyInterval").toString() == "1 min") {
|
---|
| 468 | _confInterval = 60;
|
---|
| 469 | nextShotTime = QTime(currTime.hour(), currTime.minute()+1, 0);
|
---|
| 470 | }
|
---|
| 471 | else if (settings.value("onTheFlyInterval").toString() == "1 hour") {
|
---|
| 472 | _confInterval = 3600;
|
---|
| 473 | nextShotTime = QTime(currTime.hour()+1, 0, 0);
|
---|
| 474 | }
|
---|
| 475 | else {
|
---|
| 476 | _confInterval = 86400;
|
---|
| 477 | nextShotTime = QTime(23, 59, 59, 999);
|
---|
| 478 | }
|
---|
| 479 |
|
---|
| 480 | ms = currTime.msecsTo(nextShotTime);
|
---|
[1176] | 481 | if (ms < 30000) {
|
---|
| 482 | ms = 30000;
|
---|
| 483 | }
|
---|
[1170] | 484 | }
|
---|
| 485 |
|
---|
[1705] | 486 | QTimer::singleShot(ms, this, SLOT(slotReadMountPoints()));
|
---|
[1170] | 487 | }
|
---|
[1182] | 488 |
|
---|
| 489 | //
|
---|
| 490 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 491 | int bncCaster::myWrite(QTcpSocket* sock, const char* buf, int bufLen) {
|
---|
[1229] | 492 | sock->write(buf, bufLen);
|
---|
| 493 | for (int ii = 1; ii <= 10; ii++) {
|
---|
| 494 | if (sock->waitForBytesWritten(10)) { // wait 10 ms
|
---|
| 495 | return bufLen;
|
---|
[1182] | 496 | }
|
---|
| 497 | }
|
---|
[1229] | 498 | return -1;
|
---|
[1182] | 499 | }
|
---|
[2182] | 500 |
|
---|
| 501 | //
|
---|
| 502 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 503 | void bncCaster::slotNewNMEAstr(QByteArray str) {
|
---|
[2184] | 504 | if (_nmeaSockets) {
|
---|
| 505 | QMutableListIterator<QTcpSocket*> is(*_nmeaSockets);
|
---|
| 506 | while (is.hasNext()) {
|
---|
| 507 | QTcpSocket* sock = is.next();
|
---|
| 508 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
| 509 | sock->write(str);
|
---|
| 510 | }
|
---|
| 511 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
| 512 | delete sock;
|
---|
| 513 | is.remove();
|
---|
| 514 | }
|
---|
| 515 | }
|
---|
| 516 | }
|
---|
[2182] | 517 | }
|
---|