[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 | *
|
---|
[7681] | 37 | * Changes:
|
---|
[35] | 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"
|
---|
[5070] | 49 | #include "bnccore.h"
|
---|
[35] | 50 | #include "bncgetthread.h"
|
---|
[134] | 51 | #include "bncutils.h"
|
---|
[1535] | 52 | #include "bncsettings.h"
|
---|
[35] | 53 |
|
---|
[2831] | 54 | using namespace std;
|
---|
| 55 |
|
---|
[35] | 56 | // Constructor
|
---|
| 57 | ////////////////////////////////////////////////////////////////////////////
|
---|
[5528] | 58 | bncCaster::bncCaster() {
|
---|
[35] | 59 |
|
---|
[1535] | 60 | bncSettings settings;
|
---|
[275] | 61 |
|
---|
[7681] | 62 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
[5068] | 63 | BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
|
---|
[1228] | 64 |
|
---|
[5528] | 65 | _outFile = 0;
|
---|
| 66 | _out = 0;
|
---|
| 67 | reopenOutFile();
|
---|
[35] | 68 |
|
---|
[6447] | 69 | int port = settings.value("outPort").toInt();
|
---|
[35] | 70 |
|
---|
[6447] | 71 | if (port != 0) {
|
---|
[35] | 72 | _server = new QTcpServer;
|
---|
[8921] | 73 | _server->setProxy(QNetworkProxy::NoProxy);
|
---|
[8917] | 74 | if ( !_server->listen(QHostAddress::Any, port) ) {
|
---|
[8918] | 75 | QString message = "bncCaster: Cannot listen on sync port "
|
---|
[8921] | 76 | + QByteArray::number(port) + ": "
|
---|
| 77 | + _server->errorString();
|
---|
[8917] | 78 | emit newMessage(message.toLatin1(), true);
|
---|
[1228] | 79 | }
|
---|
[35] | 80 | connect(_server, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
|
---|
| 81 | _sockets = new QList<QTcpSocket*>;
|
---|
| 82 | }
|
---|
| 83 | else {
|
---|
| 84 | _server = 0;
|
---|
| 85 | _sockets = 0;
|
---|
| 86 | }
|
---|
| 87 |
|
---|
[1222] | 88 | int uPort = settings.value("outUPort").toInt();
|
---|
| 89 | if (uPort != 0) {
|
---|
| 90 | _uServer = new QTcpServer;
|
---|
[8921] | 91 | _uServer->setProxy(QNetworkProxy::NoProxy);
|
---|
[1228] | 92 | if ( !_uServer->listen(QHostAddress::Any, uPort) ) {
|
---|
[8918] | 93 | QString message = "bncCaster: Cannot listen on usync port "
|
---|
[8921] | 94 | + QByteArray::number(uPort) + ": "
|
---|
| 95 | + _uServer->errorString();
|
---|
[8917] | 96 | emit newMessage(message.toLatin1(), 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 |
|
---|
[8621] | 106 | _outLockTime = settings.value("outLockTime",false).toBool();
|
---|
[8397] | 107 | _samplingRateMult10 = int(settings.value("outSampl").toString().split("sec").first().toDouble() * 10.0);
|
---|
[9107] | 108 | _outWait = settings.value("outWait").toDouble();
|
---|
| 109 | if (_outWait <= 0.0) {
|
---|
| 110 | _outWait = 0.01;
|
---|
[6449] | 111 | }
|
---|
[1705] | 112 | _confInterval = -1;
|
---|
[5647] | 113 |
|
---|
[5649] | 114 | // Miscellaneous output port
|
---|
[5647] | 115 | // -------------------------
|
---|
| 116 | _miscMount = settings.value("miscMount").toString();
|
---|
| 117 | _miscPort = settings.value("miscPort").toInt();
|
---|
| 118 | if (!_miscMount.isEmpty() && _miscPort != 0) {
|
---|
| 119 | _miscServer = new QTcpServer;
|
---|
[8921] | 120 | _miscServer->setProxy(QNetworkProxy::NoProxy);
|
---|
[5647] | 121 | if ( !_miscServer->listen(QHostAddress::Any, _miscPort) ) {
|
---|
[8918] | 122 | QString message = "bncCaster: Cannot listen on miscellaneous output port "
|
---|
[8921] | 123 | + QByteArray::number(_miscPort) + ": "
|
---|
| 124 | + _miscServer->errorString();
|
---|
[8918] | 125 | emit newMessage(message.toLatin1(), true);
|
---|
[5647] | 126 | }
|
---|
| 127 | connect(_miscServer, SIGNAL(newConnection()), this, SLOT(slotNewMiscConnection()));
|
---|
| 128 | _miscSockets = new QList<QTcpSocket*>;
|
---|
| 129 | }
|
---|
| 130 | else {
|
---|
| 131 | _miscServer = 0;
|
---|
| 132 | _miscSockets = 0;
|
---|
| 133 | }
|
---|
[35] | 134 | }
|
---|
| 135 |
|
---|
| 136 | // Destructor
|
---|
| 137 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 138 | bncCaster::~bncCaster() {
|
---|
[2647] | 139 |
|
---|
| 140 | QMutexLocker locker(&_mutex);
|
---|
| 141 |
|
---|
[186] | 142 | QListIterator<bncGetThread*> it(_threads);
|
---|
| 143 | while(it.hasNext()){
|
---|
| 144 | bncGetThread* thread = it.next();
|
---|
[7854] | 145 | disconnect(thread, 0, 0, 0);
|
---|
| 146 | _staIDs.removeAll(thread->staID());
|
---|
| 147 | _threads.removeAll(thread);
|
---|
[1525] | 148 | thread->terminate();
|
---|
[186] | 149 | }
|
---|
[35] | 150 | delete _out;
|
---|
| 151 | delete _outFile;
|
---|
[187] | 152 | delete _server;
|
---|
[631] | 153 | delete _sockets;
|
---|
[1222] | 154 | delete _uServer;
|
---|
| 155 | delete _uSockets;
|
---|
[5647] | 156 | delete _miscServer;
|
---|
| 157 | delete _miscSockets;
|
---|
[35] | 158 | }
|
---|
| 159 |
|
---|
| 160 | // New Observations
|
---|
| 161 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6137] | 162 | void bncCaster::slotNewObs(const QByteArray staID, QList<t_satObs> obsList) {
|
---|
[35] | 163 |
|
---|
[243] | 164 | QMutexLocker locker(&_mutex);
|
---|
| 165 |
|
---|
[5528] | 166 | reopenOutFile();
|
---|
| 167 |
|
---|
[5527] | 168 | unsigned index = 0;
|
---|
[6137] | 169 | QMutableListIterator<t_satObs> it(obsList);
|
---|
[5524] | 170 | while (it.hasNext()) {
|
---|
[5527] | 171 | ++index;
|
---|
[6137] | 172 | t_satObs& obs = it.next();
|
---|
[2833] | 173 |
|
---|
[5524] | 174 | // Rename the Station
|
---|
| 175 | // ------------------
|
---|
[6137] | 176 | obs._staID = staID.data();
|
---|
[7681] | 177 |
|
---|
[9016] | 178 | // Update/Set Slip Counters
|
---|
| 179 | // ------------------------
|
---|
[9088] | 180 | setSlipCounters(obs);
|
---|
[9020] | 181 |
|
---|
[5524] | 182 | // Output into the socket
|
---|
| 183 | // ----------------------
|
---|
| 184 | if (_uSockets) {
|
---|
[7681] | 185 |
|
---|
[5524] | 186 | ostringstream oStr;
|
---|
| 187 | oStr.setf(ios::showpoint | ios::fixed);
|
---|
[7681] | 188 | oStr << obs._staID << " "
|
---|
[6137] | 189 | << setw(4) << obs._time.gpsw() << " "
|
---|
| 190 | << setw(14) << setprecision(7) << obs._time.gpssec() << " "
|
---|
[8621] | 191 | << bncRinex::asciiSatLine(obs,_outLockTime) << endl;
|
---|
[7681] | 192 |
|
---|
[5524] | 193 | string hlpStr = oStr.str();
|
---|
[7681] | 194 |
|
---|
[5524] | 195 | QMutableListIterator<QTcpSocket*> is(*_uSockets);
|
---|
| 196 | while (is.hasNext()) {
|
---|
| 197 | QTcpSocket* sock = is.next();
|
---|
| 198 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
| 199 | int numBytes = hlpStr.length();
|
---|
| 200 | if (myWrite(sock, hlpStr.c_str(), numBytes) != numBytes) {
|
---|
| 201 | delete sock;
|
---|
| 202 | is.remove();
|
---|
| 203 | }
|
---|
| 204 | }
|
---|
| 205 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
[1222] | 206 | delete sock;
|
---|
| 207 | is.remove();
|
---|
| 208 | }
|
---|
| 209 | }
|
---|
| 210 | }
|
---|
[7681] | 211 |
|
---|
[6449] | 212 | // First time: set the _lastDumpTime
|
---|
| 213 | // ---------------------------------
|
---|
| 214 | if (!_lastDumpTime.valid()) {
|
---|
| 215 | _lastDumpTime = obs._time - 1.0;
|
---|
[5524] | 216 | }
|
---|
[7681] | 217 |
|
---|
[5524] | 218 | // An old observation - throw it away
|
---|
| 219 | // ----------------------------------
|
---|
[6449] | 220 | if (obs._time <= _lastDumpTime) {
|
---|
[5527] | 221 | if (index == 1) {
|
---|
| 222 | bncSettings settings;
|
---|
[7681] | 223 | if ( !settings.value("outFile").toString().isEmpty() ||
|
---|
| 224 | !settings.value("outPort").toString().isEmpty() ) {
|
---|
[8670] | 225 | emit( newMessage(QString("%1: Old or erroneous observation epoch %2 thrown away from %3")
|
---|
| 226 | .arg(staID.data())
|
---|
| 227 | .arg(string(obs._time).c_str())
|
---|
| 228 | .arg(obs._prn.toString().c_str())
|
---|
[8678] | 229 | .toLatin1(), true) );
|
---|
[5527] | 230 | }
|
---|
[257] | 231 | }
|
---|
[5527] | 232 | continue;
|
---|
[181] | 233 | }
|
---|
[7681] | 234 |
|
---|
[5524] | 235 | // Save the observation
|
---|
| 236 | // --------------------
|
---|
[7681] | 237 | _epochs[obs._time].append(obs);
|
---|
[35] | 238 |
|
---|
[5527] | 239 | // Dump Epochs
|
---|
| 240 | // -----------
|
---|
[9107] | 241 | if ((obs._time - _outWait) > _lastDumpTime) {
|
---|
| 242 | dumpEpochs(obs._time - _outWait);
|
---|
| 243 | _lastDumpTime = obs._time - _outWait;
|
---|
[5527] | 244 | }
|
---|
[252] | 245 | }
|
---|
[35] | 246 | }
|
---|
| 247 |
|
---|
| 248 | // New Connection
|
---|
| 249 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 250 | void bncCaster::slotNewConnection() {
|
---|
| 251 | _sockets->push_back( _server->nextPendingConnection() );
|
---|
[1450] | 252 | emit( newMessage(QString("New client connection on sync port: # %1")
|
---|
[8127] | 253 | .arg(_sockets->size()).toLatin1(), true) );
|
---|
[35] | 254 | }
|
---|
| 255 |
|
---|
[1222] | 256 | void bncCaster::slotNewUConnection() {
|
---|
| 257 | _uSockets->push_back( _uServer->nextPendingConnection() );
|
---|
[1450] | 258 | emit( newMessage(QString("New client connection on usync port: # %1")
|
---|
[8127] | 259 | .arg(_uSockets->size()).toLatin1(), true) );
|
---|
[1222] | 260 | }
|
---|
| 261 |
|
---|
[35] | 262 | // Add New Thread
|
---|
| 263 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2528] | 264 | void bncCaster::addGetThread(bncGetThread* getThread, bool noNewThread) {
|
---|
[624] | 265 |
|
---|
[6137] | 266 | qRegisterMetaType<t_satObs>("t_satObs");
|
---|
| 267 | qRegisterMetaType< QList<t_satObs> >("QList<t_satObs>");
|
---|
[624] | 268 |
|
---|
[6137] | 269 | connect(getThread, SIGNAL(newObs(QByteArray, QList<t_satObs>)),
|
---|
| 270 | this, SLOT(slotNewObs(QByteArray, QList<t_satObs>)));
|
---|
[463] | 271 |
|
---|
[6137] | 272 | connect(getThread, SIGNAL(newObs(QByteArray, QList<t_satObs>)),
|
---|
| 273 | this, SIGNAL(newObs(QByteArray, QList<t_satObs>)));
|
---|
[5722] | 274 |
|
---|
[5648] | 275 | connect(getThread, SIGNAL(newRawData(QByteArray, QByteArray)),
|
---|
| 276 | this, SLOT(slotNewRawData(QByteArray, QByteArray)));
|
---|
| 277 |
|
---|
[7681] | 278 | connect(getThread, SIGNAL(getThreadFinished(QByteArray)),
|
---|
[1556] | 279 | this, SLOT(slotGetThreadFinished(QByteArray)));
|
---|
[35] | 280 |
|
---|
[88] | 281 | _staIDs.push_back(getThread->staID());
|
---|
[186] | 282 | _threads.push_back(getThread);
|
---|
[1170] | 283 |
|
---|
[2528] | 284 | if (noNewThread) {
|
---|
| 285 | getThread->run();
|
---|
| 286 | }
|
---|
| 287 | else {
|
---|
| 288 | getThread->start();
|
---|
| 289 | }
|
---|
[35] | 290 | }
|
---|
| 291 |
|
---|
[1556] | 292 | // Get Thread destroyed
|
---|
[35] | 293 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1556] | 294 | void bncCaster::slotGetThreadFinished(QByteArray staID) {
|
---|
[243] | 295 | QMutexLocker locker(&_mutex);
|
---|
[1560] | 296 |
|
---|
| 297 | QListIterator<bncGetThread*> it(_threads);
|
---|
| 298 | while (it.hasNext()) {
|
---|
| 299 | bncGetThread* thread = it.next();
|
---|
| 300 | if (thread->staID() == staID) {
|
---|
| 301 | _threads.removeOne(thread);
|
---|
| 302 | }
|
---|
| 303 | }
|
---|
| 304 |
|
---|
[88] | 305 | _staIDs.removeAll(staID);
|
---|
[82] | 306 | emit( newMessage(
|
---|
[8127] | 307 | QString("Decoding %1 stream(s)").arg(_staIDs.size()).toLatin1(), true) );
|
---|
[88] | 308 | if (_staIDs.size() == 0) {
|
---|
[1450] | 309 | emit(newMessage("bncCaster: Last get thread terminated", true));
|
---|
[1556] | 310 | emit getThreadsFinished();
|
---|
[35] | 311 | }
|
---|
| 312 | }
|
---|
| 313 |
|
---|
| 314 | // Dump Complete Epochs
|
---|
| 315 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6449] | 316 | void bncCaster::dumpEpochs(const bncTime& maxTime) {
|
---|
[35] | 317 |
|
---|
[6449] | 318 | QMutableMapIterator<bncTime, QList<t_satObs> > itEpo(_epochs);
|
---|
| 319 | while (itEpo.hasNext()) {
|
---|
| 320 | itEpo.next();
|
---|
| 321 | const bncTime& epoTime = itEpo.key();
|
---|
| 322 | if (epoTime <= maxTime) {
|
---|
| 323 | const QList<t_satObs>& allObs = itEpo.value();
|
---|
[8372] | 324 | int sec = int(nint(epoTime.gpssec()*10));
|
---|
[8397] | 325 | if ( (_out || _sockets) && (sec % (_samplingRateMult10) == 0) ) {
|
---|
[6449] | 326 | QListIterator<t_satObs> it(allObs);
|
---|
| 327 | bool firstObs = true;
|
---|
| 328 | while (it.hasNext()) {
|
---|
| 329 | const t_satObs& obs = it.next();
|
---|
[7681] | 330 |
|
---|
[6449] | 331 | ostringstream oStr;
|
---|
| 332 | oStr.setf(ios::showpoint | ios::fixed);
|
---|
[7681] | 333 | if (firstObs) {
|
---|
[6449] | 334 | firstObs = false;
|
---|
[7681] | 335 | oStr << "> " << obs._time.gpsw() << ' '
|
---|
[7180] | 336 | << setprecision(7) << obs._time.gpssec() << endl;
|
---|
[6449] | 337 | }
|
---|
[8617] | 338 | oStr << obs._staID << ' '
|
---|
[8621] | 339 | << bncRinex::asciiSatLine(obs,_outLockTime) << endl;
|
---|
[7681] | 340 | if (!it.hasNext()) {
|
---|
[6449] | 341 | oStr << endl;
|
---|
| 342 | }
|
---|
| 343 | string hlpStr = oStr.str();
|
---|
[7681] | 344 |
|
---|
[6449] | 345 | // Output into the File
|
---|
| 346 | // --------------------
|
---|
| 347 | if (_out) {
|
---|
| 348 | *_out << hlpStr.c_str();
|
---|
| 349 | _out->flush();
|
---|
| 350 | }
|
---|
[7681] | 351 |
|
---|
[6449] | 352 | // Output into the socket
|
---|
| 353 | // ----------------------
|
---|
| 354 | if (_sockets) {
|
---|
| 355 | QMutableListIterator<QTcpSocket*> is(*_sockets);
|
---|
| 356 | while (is.hasNext()) {
|
---|
| 357 | QTcpSocket* sock = is.next();
|
---|
| 358 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
[7681] | 359 | int numBytes = hlpStr.length();
|
---|
[6449] | 360 | if (myWrite(sock, hlpStr.c_str(), numBytes) != numBytes) {
|
---|
| 361 | delete sock;
|
---|
| 362 | is.remove();
|
---|
| 363 | }
|
---|
| 364 | }
|
---|
| 365 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
[637] | 366 | delete sock;
|
---|
| 367 | is.remove();
|
---|
| 368 | }
|
---|
[140] | 369 | }
|
---|
| 370 | }
|
---|
| 371 | }
|
---|
[73] | 372 | }
|
---|
[9188] | 373 | //_epochs.remove(epoTime);
|
---|
| 374 | itEpo.remove();
|
---|
[35] | 375 | }
|
---|
| 376 | }
|
---|
| 377 | }
|
---|
[1170] | 378 |
|
---|
[4250] | 379 | // Reread configuration (private slot)
|
---|
[1170] | 380 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1179] | 381 | void bncCaster::slotReadMountPoints() {
|
---|
[1170] | 382 |
|
---|
[4252] | 383 | bncSettings settings;
|
---|
| 384 | settings.reRead();
|
---|
| 385 |
|
---|
[4250] | 386 | readMountPoints();
|
---|
| 387 | }
|
---|
| 388 |
|
---|
| 389 | // Read Mountpoints
|
---|
| 390 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 391 | void bncCaster::readMountPoints() {
|
---|
| 392 |
|
---|
[1535] | 393 | bncSettings settings;
|
---|
[1170] | 394 |
|
---|
| 395 | // Reread several options
|
---|
| 396 | // ----------------------
|
---|
[8397] | 397 | _samplingRateMult10 = int(settings.value("outSampl").toString().split("sec").first().toDouble() * 10.0);
|
---|
[7386] | 398 | _outWait = settings.value("outWait").toInt();
|
---|
| 399 | if (_outWait < 1) {
|
---|
| 400 | _outWait = 1;
|
---|
[1170] | 401 | }
|
---|
| 402 |
|
---|
| 403 | // Add new mountpoints
|
---|
| 404 | // -------------------
|
---|
| 405 | int iMount = -1;
|
---|
| 406 | QListIterator<QString> it(settings.value("mountPoints").toStringList());
|
---|
| 407 | while (it.hasNext()) {
|
---|
| 408 | ++iMount;
|
---|
| 409 | QStringList hlp = it.next().split(" ");
|
---|
[7182] | 410 | if (hlp.size() < 7) continue;
|
---|
[1170] | 411 | QUrl url(hlp[0]);
|
---|
| 412 |
|
---|
| 413 | // Does it already exist?
|
---|
| 414 | // ----------------------
|
---|
| 415 | bool existFlg = false;
|
---|
| 416 | QListIterator<bncGetThread*> iTh(_threads);
|
---|
| 417 | while (iTh.hasNext()) {
|
---|
| 418 | bncGetThread* thread = iTh.next();
|
---|
| 419 | if (thread->mountPoint() == url) {
|
---|
| 420 | existFlg = true;
|
---|
| 421 | break;
|
---|
| 422 | }
|
---|
| 423 | }
|
---|
| 424 |
|
---|
| 425 | // New bncGetThread
|
---|
| 426 | // ----------------
|
---|
| 427 | if (!existFlg) {
|
---|
[8127] | 428 | QByteArray format = hlp[1].toLatin1();
|
---|
| 429 | QByteArray latitude = hlp[3].toLatin1();
|
---|
| 430 | QByteArray longitude = hlp[4].toLatin1();
|
---|
| 431 | QByteArray nmea = hlp[5].toLatin1();
|
---|
| 432 | QByteArray ntripVersion = hlp[6].toLatin1();
|
---|
[7681] | 433 |
|
---|
| 434 | bncGetThread* getThread = new bncGetThread(url, format, latitude,
|
---|
[3003] | 435 | longitude, nmea, ntripVersion);
|
---|
[1170] | 436 | addGetThread(getThread);
|
---|
[7180] | 437 |
|
---|
[1170] | 438 | }
|
---|
| 439 | }
|
---|
| 440 |
|
---|
| 441 | // Remove mountpoints
|
---|
| 442 | // ------------------
|
---|
| 443 | QListIterator<bncGetThread*> iTh(_threads);
|
---|
| 444 | while (iTh.hasNext()) {
|
---|
| 445 | bncGetThread* thread = iTh.next();
|
---|
| 446 |
|
---|
| 447 | bool existFlg = false;
|
---|
| 448 | QListIterator<QString> it(settings.value("mountPoints").toStringList());
|
---|
| 449 | while (it.hasNext()) {
|
---|
| 450 | QStringList hlp = it.next().split(" ");
|
---|
| 451 | if (hlp.size() <= 1) continue;
|
---|
| 452 | QUrl url(hlp[0]);
|
---|
| 453 |
|
---|
| 454 | if (thread->mountPoint() == url) {
|
---|
| 455 | existFlg = true;
|
---|
| 456 | break;
|
---|
| 457 | }
|
---|
| 458 | }
|
---|
| 459 |
|
---|
| 460 | if (!existFlg) {
|
---|
| 461 | disconnect(thread, 0, 0, 0);
|
---|
| 462 | _staIDs.removeAll(thread->staID());
|
---|
| 463 | _threads.removeAll(thread);
|
---|
| 464 | thread->terminate();
|
---|
| 465 | }
|
---|
| 466 | }
|
---|
| 467 |
|
---|
[1179] | 468 | emit mountPointsRead(_threads);
|
---|
[1529] | 469 | emit( newMessage(QString("Configuration read: "
|
---|
[5068] | 470 | + BNC_CORE->confFileName()
|
---|
[1529] | 471 | + ", %1 stream(s)")
|
---|
[8127] | 472 | .arg(_threads.count()).toLatin1(), true) );
|
---|
[1176] | 473 |
|
---|
[1170] | 474 | // (Re-) Start the configuration timer
|
---|
| 475 | // -----------------------------------
|
---|
[8119] | 476 | if (settings.value("onTheFlyInterval").toString() == "no") {
|
---|
| 477 | return;
|
---|
| 478 | }
|
---|
| 479 |
|
---|
[1170] | 480 | int ms = 0;
|
---|
[1705] | 481 | if (_confInterval != -1) {
|
---|
[1170] | 482 | ms = 1000 * _confInterval;
|
---|
| 483 | }
|
---|
| 484 | else {
|
---|
| 485 | QTime currTime = currentDateAndTimeGPS().time();
|
---|
| 486 | QTime nextShotTime;
|
---|
| 487 | if (settings.value("onTheFlyInterval").toString() == "1 min") {
|
---|
[9124] | 488 | _confInterval = 60;
|
---|
| 489 | nextShotTime = QTime(currTime.hour(), currTime.minute()+1, 0);
|
---|
[1170] | 490 | }
|
---|
[4536] | 491 | else if (settings.value("onTheFlyInterval").toString() == "5 min") {
|
---|
| 492 | _confInterval = 300;
|
---|
| 493 | nextShotTime = QTime(currTime.hour(), currTime.minute()+5, 0);
|
---|
| 494 | }
|
---|
[1170] | 495 | else if (settings.value("onTheFlyInterval").toString() == "1 hour") {
|
---|
| 496 | _confInterval = 3600;
|
---|
| 497 | nextShotTime = QTime(currTime.hour()+1, 0, 0);
|
---|
| 498 | }
|
---|
| 499 | else {
|
---|
| 500 | _confInterval = 86400;
|
---|
| 501 | nextShotTime = QTime(23, 59, 59, 999);
|
---|
| 502 | }
|
---|
| 503 |
|
---|
| 504 | ms = currTime.msecsTo(nextShotTime);
|
---|
[1176] | 505 | if (ms < 30000) {
|
---|
| 506 | ms = 30000;
|
---|
| 507 | }
|
---|
[1170] | 508 | }
|
---|
| 509 |
|
---|
[1705] | 510 | QTimer::singleShot(ms, this, SLOT(slotReadMountPoints()));
|
---|
[1170] | 511 | }
|
---|
[1182] | 512 |
|
---|
[7681] | 513 | //
|
---|
[1182] | 514 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 515 | int bncCaster::myWrite(QTcpSocket* sock, const char* buf, int bufLen) {
|
---|
[1229] | 516 | sock->write(buf, bufLen);
|
---|
| 517 | for (int ii = 1; ii <= 10; ii++) {
|
---|
| 518 | if (sock->waitForBytesWritten(10)) { // wait 10 ms
|
---|
| 519 | return bufLen;
|
---|
[1182] | 520 | }
|
---|
| 521 | }
|
---|
[1229] | 522 | return -1;
|
---|
[1182] | 523 | }
|
---|
[2182] | 524 |
|
---|
[7681] | 525 | //
|
---|
[2182] | 526 | ////////////////////////////////////////////////////////////////////////////
|
---|
[5528] | 527 | void bncCaster::reopenOutFile() {
|
---|
| 528 |
|
---|
| 529 | bncSettings settings;
|
---|
| 530 |
|
---|
| 531 | QString outFileName = settings.value("outFile").toString();
|
---|
| 532 | if ( !outFileName.isEmpty() ) {
|
---|
| 533 | expandEnvVar(outFileName);
|
---|
| 534 | if (!_outFile || _outFile->fileName() != outFileName) {
|
---|
| 535 | delete _out;
|
---|
| 536 | delete _outFile;
|
---|
[7681] | 537 | _outFile = new QFile(outFileName);
|
---|
[5528] | 538 | if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
|
---|
| 539 | _outFile->open(QIODevice::WriteOnly | QIODevice::Append);
|
---|
| 540 | }
|
---|
| 541 | else {
|
---|
| 542 | _outFile->open(QIODevice::WriteOnly);
|
---|
| 543 | }
|
---|
| 544 | _out = new QTextStream(_outFile);
|
---|
| 545 | _out->setRealNumberNotation(QTextStream::FixedNotation);
|
---|
| 546 | }
|
---|
| 547 | }
|
---|
| 548 | else {
|
---|
| 549 | delete _out; _out = 0;
|
---|
| 550 | delete _outFile; _outFile = 0;
|
---|
| 551 | }
|
---|
| 552 | }
|
---|
| 553 |
|
---|
[5649] | 554 | // Output into the Miscellaneous socket
|
---|
[5648] | 555 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 556 | void bncCaster::slotNewRawData(QByteArray staID, QByteArray data) {
|
---|
| 557 | if (_miscSockets && (_miscMount == "ALL" || _miscMount == staID)) {
|
---|
| 558 | QMutableListIterator<QTcpSocket*> is(*_miscSockets);
|
---|
| 559 | while (is.hasNext()) {
|
---|
| 560 | QTcpSocket* sock = is.next();
|
---|
| 561 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
| 562 | sock->write(data);
|
---|
[7681] | 563 | }
|
---|
[5648] | 564 | else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
| 565 | delete sock;
|
---|
| 566 | is.remove();
|
---|
[7681] | 567 | }
|
---|
| 568 | }
|
---|
| 569 | }
|
---|
[5648] | 570 | }
|
---|
[5647] | 571 |
|
---|
[5649] | 572 | // New Connection
|
---|
[5647] | 573 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 574 | void bncCaster::slotNewMiscConnection() {
|
---|
| 575 | _miscSockets->push_back( _miscServer->nextPendingConnection() );
|
---|
| 576 | emit( newMessage(QString("New client connection on Miscellaneous Output Port: # %1")
|
---|
[8127] | 577 | .arg(_miscSockets->size()).toLatin1(), true) );
|
---|
[5647] | 578 | }
|
---|
[9016] | 579 |
|
---|
[9020] | 580 | // Set/Update Slip Counters
|
---|
[9016] | 581 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 582 | void bncCaster::setSlipCounters(t_satObs& obs) {
|
---|
| 583 |
|
---|
| 584 | double minLockTime = -1.0;
|
---|
| 585 | for (unsigned ii = 0; ii < obs._obs.size(); ii++) {
|
---|
| 586 | const t_frqObs* frqObs = obs._obs[ii];
|
---|
| 587 | if (frqObs->_lockTimeValid) {
|
---|
| 588 | if (minLockTime == -1.0 || minLockTime < frqObs->_lockTime) {
|
---|
| 589 | minLockTime = frqObs->_lockTime;
|
---|
| 590 | }
|
---|
| 591 | }
|
---|
| 592 | }
|
---|
| 593 |
|
---|
| 594 | if (minLockTime == -1.0) {
|
---|
| 595 | return;
|
---|
| 596 | }
|
---|
| 597 |
|
---|
[9019] | 598 | QMap<t_prn, double>& ltMap = _lockTimeMap[obs._staID];
|
---|
| 599 | QMap<t_prn, int>& jcMap = _jumpCounterMap[obs._staID];
|
---|
| 600 | QMap<t_prn, double>::const_iterator it = ltMap.find(obs._prn);
|
---|
[9096] | 601 | if (it == ltMap.end()) { // init satellite
|
---|
[9019] | 602 | ltMap[obs._prn] = minLockTime;
|
---|
| 603 | jcMap[obs._prn] = 0;
|
---|
[9016] | 604 | }
|
---|
| 605 | else {
|
---|
[9096] | 606 | if (minLockTime < ltMap[obs._prn]) {
|
---|
[9019] | 607 | jcMap[obs._prn] += 1;
|
---|
| 608 | if (jcMap[obs._prn] > 9999) {
|
---|
| 609 | jcMap[obs._prn] = 0;
|
---|
[9016] | 610 | }
|
---|
| 611 | }
|
---|
[9096] | 612 | ltMap[obs._prn] = minLockTime;
|
---|
[9016] | 613 | }
|
---|
[9019] | 614 | for (unsigned ii = 0; ii < obs._obs.size(); ii++) {
|
---|
| 615 | t_frqObs* frqObs = obs._obs[ii];
|
---|
[9020] | 616 | frqObs->_slipCounter = jcMap[obs._prn];
|
---|
[9019] | 617 | }
|
---|
[9016] | 618 | }
|
---|