[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: bncGetThread
|
---|
| 30 | *
|
---|
| 31 | * Purpose: Thread that retrieves data from NTRIP caster
|
---|
| 32 | *
|
---|
| 33 | * Author: L. Mervart
|
---|
| 34 | *
|
---|
| 35 | * Created: 24-Dec-2005
|
---|
| 36 | *
|
---|
| 37 | * Changes:
|
---|
| 38 | *
|
---|
| 39 | * -----------------------------------------------------------------------*/
|
---|
| 40 |
|
---|
[277] | 41 | #include <stdlib.h>
|
---|
[1044] | 42 | #include <iomanip>
|
---|
[1218] | 43 | #include <sstream>
|
---|
[277] | 44 |
|
---|
[35] | 45 | #include <QFile>
|
---|
| 46 | #include <QTextStream>
|
---|
| 47 | #include <QtNetwork>
|
---|
[356] | 48 | #include <QTime>
|
---|
[35] | 49 |
|
---|
| 50 | #include "bncgetthread.h"
|
---|
[192] | 51 | #include "bnctabledlg.h"
|
---|
[243] | 52 | #include "bncapp.h"
|
---|
[352] | 53 | #include "bncutils.h"
|
---|
[408] | 54 | #include "bncrinex.h"
|
---|
[423] | 55 | #include "bnczerodecoder.h"
|
---|
[1621] | 56 | #include "bncnetqueryv0.h"
|
---|
[1387] | 57 | #include "bncnetqueryv1.h"
|
---|
| 58 | #include "bncnetqueryv2.h"
|
---|
[1410] | 59 | #include "bncnetqueryrtp.h"
|
---|
[1721] | 60 | #include "bncnetqueryudp.h"
|
---|
[1779] | 61 | #include "bncnetqueryudp0.h"
|
---|
[1753] | 62 | #include "bncnetquerys.h"
|
---|
[1535] | 63 | #include "bncsettings.h"
|
---|
[1558] | 64 | #include "latencychecker.h"
|
---|
[2035] | 65 | #include "bncpppclient.h"
|
---|
[65] | 66 |
|
---|
[243] | 67 | #include "RTCM/RTCM2Decoder.h"
|
---|
[297] | 68 | #include "RTCM3/RTCM3Decoder.h"
|
---|
[293] | 69 | #include "RTIGS/RTIGSDecoder.h"
|
---|
[1310] | 70 | #include "GPSS/gpssDecoder.h"
|
---|
[1318] | 71 | #include "serial/qextserialport.h"
|
---|
[35] | 72 |
|
---|
| 73 | using namespace std;
|
---|
| 74 |
|
---|
[1143] | 75 | // Constructor 1
|
---|
[35] | 76 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2519] | 77 | bncGetThread::bncGetThread(bncRawFile* rawFile) {
|
---|
[1138] | 78 |
|
---|
[2519] | 79 | _rawFile = rawFile;
|
---|
| 80 | _format = rawFile->format();
|
---|
| 81 | _staID = rawFile->staID();
|
---|
| 82 | _rawOutput = false;
|
---|
[2390] | 83 | _ntripVersion = "N";
|
---|
| 84 |
|
---|
[1555] | 85 | initialize();
|
---|
[1138] | 86 | }
|
---|
| 87 |
|
---|
[1143] | 88 | // Constructor 2
|
---|
| 89 | ////////////////////////////////////////////////////////////////////////////
|
---|
[278] | 90 | bncGetThread::bncGetThread(const QUrl& mountPoint,
|
---|
[366] | 91 | const QByteArray& format,
|
---|
| 92 | const QByteArray& latitude,
|
---|
| 93 | const QByteArray& longitude,
|
---|
[1353] | 94 | const QByteArray& nmea,
|
---|
[1770] | 95 | const QByteArray& ntripVersion, const QByteArray& extraStaID) {
|
---|
[2519] | 96 | _rawFile = 0;
|
---|
[1555] | 97 | _mountPoint = mountPoint;
|
---|
[1770] | 98 | _staID = (extraStaID.size() == 0 ? mountPoint.path().mid(1).toAscii() : extraStaID);
|
---|
[1555] | 99 | _format = format;
|
---|
| 100 | _latitude = latitude;
|
---|
| 101 | _longitude = longitude;
|
---|
| 102 | _nmea = nmea;
|
---|
[1353] | 103 | _ntripVersion = ntripVersion;
|
---|
[1139] | 104 |
|
---|
[2386] | 105 | bncSettings settings;
|
---|
| 106 | if (!settings.value("rawOutFile").toString().isEmpty()) {
|
---|
| 107 | _rawOutput = true;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
[1139] | 110 | initialize();
|
---|
| 111 | }
|
---|
| 112 |
|
---|
[1555] | 113 | // Initialization (common part of the constructor)
|
---|
[1143] | 114 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1139] | 115 | void bncGetThread::initialize() {
|
---|
| 116 |
|
---|
[1555] | 117 | setTerminationEnabled(true);
|
---|
| 118 |
|
---|
[1225] | 119 | bncApp* app = (bncApp*) qApp;
|
---|
| 120 |
|
---|
[1555] | 121 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
| 122 | app, SLOT(slotMessage(const QByteArray,bool)));
|
---|
| 123 |
|
---|
[1525] | 124 | _isToBeDeleted = false;
|
---|
[1555] | 125 | _decoder = 0;
|
---|
| 126 | _query = 0;
|
---|
| 127 | _nextSleep = 0;
|
---|
[2035] | 128 | _PPPclient = 0;
|
---|
[255] | 129 |
|
---|
[1574] | 130 | bncSettings settings;
|
---|
[1595] | 131 |
|
---|
[1574] | 132 | _miscMount = settings.value("miscMount").toString();
|
---|
| 133 |
|
---|
[408] | 134 | // RINEX writer
|
---|
| 135 | // ------------
|
---|
| 136 | _samplingRate = settings.value("rnxSampl").toInt();
|
---|
| 137 | if ( settings.value("rnxPath").toString().isEmpty() ) {
|
---|
| 138 | _rnx = 0;
|
---|
| 139 | }
|
---|
| 140 | else {
|
---|
[1353] | 141 | _rnx = new bncRinex(_staID, _mountPoint, _format, _latitude,
|
---|
[1639] | 142 | _longitude, _nmea, _ntripVersion);
|
---|
[408] | 143 | }
|
---|
| 144 |
|
---|
[1555] | 145 | // Serial Port
|
---|
| 146 | // -----------
|
---|
[1710] | 147 | _serialNMEA = NO_NMEA;
|
---|
| 148 | _serialOutFile = 0;
|
---|
| 149 | _serialPort = 0;
|
---|
| 150 |
|
---|
[1327] | 151 | if (settings.value("serialMountPoint").toString() == _staID) {
|
---|
[1710] | 152 | _serialPort = new QextSerialPort(settings.value("serialPortName").toString() );
|
---|
| 153 | _serialPort->setTimeout(0,100);
|
---|
| 154 |
|
---|
| 155 | // Baud Rate
|
---|
| 156 | // ---------
|
---|
[1330] | 157 | QString hlp = settings.value("serialBaudRate").toString();
|
---|
| 158 | if (hlp == "110") {
|
---|
| 159 | _serialPort->setBaudRate(BAUD110);
|
---|
| 160 | }
|
---|
| 161 | else if (hlp == "300") {
|
---|
| 162 | _serialPort->setBaudRate(BAUD300);
|
---|
| 163 | }
|
---|
| 164 | else if (hlp == "600") {
|
---|
| 165 | _serialPort->setBaudRate(BAUD600);
|
---|
| 166 | }
|
---|
| 167 | else if (hlp == "1200") {
|
---|
| 168 | _serialPort->setBaudRate(BAUD1200);
|
---|
| 169 | }
|
---|
| 170 | else if (hlp == "2400") {
|
---|
| 171 | _serialPort->setBaudRate(BAUD2400);
|
---|
| 172 | }
|
---|
| 173 | else if (hlp == "4800") {
|
---|
| 174 | _serialPort->setBaudRate(BAUD4800);
|
---|
| 175 | }
|
---|
| 176 | else if (hlp == "9600") {
|
---|
| 177 | _serialPort->setBaudRate(BAUD9600);
|
---|
| 178 | }
|
---|
| 179 | else if (hlp == "19200") {
|
---|
| 180 | _serialPort->setBaudRate(BAUD19200);
|
---|
| 181 | }
|
---|
| 182 | else if (hlp == "38400") {
|
---|
| 183 | _serialPort->setBaudRate(BAUD38400);
|
---|
| 184 | }
|
---|
| 185 | else if (hlp == "57600") {
|
---|
| 186 | _serialPort->setBaudRate(BAUD57600);
|
---|
| 187 | }
|
---|
| 188 | else if (hlp == "115200") {
|
---|
| 189 | _serialPort->setBaudRate(BAUD115200);
|
---|
| 190 | }
|
---|
[1710] | 191 |
|
---|
| 192 | // Parity
|
---|
| 193 | // ------
|
---|
[1330] | 194 | hlp = settings.value("serialParity").toString();
|
---|
| 195 | if (hlp == "NONE") {
|
---|
| 196 | _serialPort->setParity(PAR_NONE);
|
---|
| 197 | }
|
---|
| 198 | else if (hlp == "ODD") {
|
---|
| 199 | _serialPort->setParity(PAR_ODD);
|
---|
| 200 | }
|
---|
| 201 | else if (hlp == "EVEN") {
|
---|
| 202 | _serialPort->setParity(PAR_EVEN);
|
---|
| 203 | }
|
---|
| 204 | else if (hlp == "SPACE") {
|
---|
| 205 | _serialPort->setParity(PAR_SPACE);
|
---|
| 206 | }
|
---|
[1710] | 207 |
|
---|
| 208 | // Data Bits
|
---|
| 209 | // ---------
|
---|
[1330] | 210 | hlp = settings.value("serialDataBits").toString();
|
---|
| 211 | if (hlp == "5") {
|
---|
| 212 | _serialPort->setDataBits(DATA_5);
|
---|
| 213 | }
|
---|
| 214 | else if (hlp == "6") {
|
---|
| 215 | _serialPort->setDataBits(DATA_6);
|
---|
| 216 | }
|
---|
| 217 | else if (hlp == "7") {
|
---|
| 218 | _serialPort->setDataBits(DATA_7);
|
---|
| 219 | }
|
---|
| 220 | else if (hlp == "8") {
|
---|
| 221 | _serialPort->setDataBits(DATA_8);
|
---|
| 222 | }
|
---|
| 223 | hlp = settings.value("serialStopBits").toString();
|
---|
| 224 | if (hlp == "1") {
|
---|
| 225 | _serialPort->setStopBits(STOP_1);
|
---|
| 226 | }
|
---|
| 227 | else if (hlp == "2") {
|
---|
| 228 | _serialPort->setStopBits(STOP_2);
|
---|
| 229 | }
|
---|
[1710] | 230 |
|
---|
| 231 | // Flow Control
|
---|
| 232 | // ------------
|
---|
| 233 | hlp = settings.value("serialFlowControl").toString();
|
---|
[1711] | 234 | if (hlp == "XONXOFF") {
|
---|
[1710] | 235 | _serialPort->setFlowControl(FLOW_XONXOFF);
|
---|
| 236 | }
|
---|
| 237 | else if (hlp == "HARDWARE") {
|
---|
| 238 | _serialPort->setFlowControl(FLOW_HARDWARE);
|
---|
| 239 | }
|
---|
[1711] | 240 | else {
|
---|
| 241 | _serialPort->setFlowControl(FLOW_OFF);
|
---|
| 242 | }
|
---|
[1710] | 243 |
|
---|
| 244 | // Open Serial Port
|
---|
| 245 | // ----------------
|
---|
[1326] | 246 | _serialPort->open(QIODevice::ReadWrite|QIODevice::Unbuffered);
|
---|
[1331] | 247 | if (!_serialPort->isOpen()) {
|
---|
| 248 | delete _serialPort;
|
---|
| 249 | _serialPort = 0;
|
---|
[1451] | 250 | emit(newMessage((_staID + ": Cannot open serial port\n"), true));
|
---|
[1331] | 251 | }
|
---|
[1606] | 252 | connect(_serialPort, SIGNAL(readyRead()),
|
---|
| 253 | this, SLOT(slotSerialReadyRead()));
|
---|
| 254 |
|
---|
[1710] | 255 | // Automatic NMEA
|
---|
| 256 | // --------------
|
---|
| 257 | if (settings.value("serialAutoNMEA").toString() == "Auto") {
|
---|
| 258 | _serialNMEA = AUTO_NMEA;
|
---|
| 259 |
|
---|
| 260 | QString fName = settings.value("serialFileNMEA").toString();
|
---|
| 261 | if (!fName.isEmpty()) {
|
---|
| 262 | _serialOutFile = new QFile(fName);
|
---|
| 263 | if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
|
---|
| 264 | _serialOutFile->open(QIODevice::WriteOnly | QIODevice::Append);
|
---|
| 265 | }
|
---|
| 266 | else {
|
---|
| 267 | _serialOutFile->open(QIODevice::WriteOnly);
|
---|
| 268 | }
|
---|
[1634] | 269 | }
|
---|
[1606] | 270 | }
|
---|
[1710] | 271 |
|
---|
| 272 | // Manual NMEA
|
---|
| 273 | // -----------
|
---|
| 274 | else {
|
---|
| 275 | _serialNMEA = MANUAL_NMEA;
|
---|
[1636] | 276 | }
|
---|
[1318] | 277 | }
|
---|
| 278 |
|
---|
[2035] | 279 | // Initialize PPP Client?
|
---|
[2004] | 280 | // ----------------------
|
---|
[2290] | 281 | #ifndef MLS_SOFTWARE
|
---|
[2004] | 282 | if (settings.value("pppMount").toString() == _staID) {
|
---|
[2035] | 283 | _PPPclient = new bncPPPclient(_staID);
|
---|
[2144] | 284 | qRegisterMetaType<bncTime>("bncTime");
|
---|
[2145] | 285 | connect(_PPPclient, SIGNAL(newPosition(bncTime, double, double, double)),
|
---|
| 286 | this, SIGNAL(newPosition(bncTime, double, double, double)));
|
---|
[2290] | 287 | connect(_PPPclient, SIGNAL(newNMEAstr(QByteArray)),
|
---|
| 288 | this, SIGNAL(newNMEAstr(QByteArray)));
|
---|
[2004] | 289 | }
|
---|
[2290] | 290 | #endif
|
---|
[1555] | 291 |
|
---|
| 292 | // Instantiate the decoder
|
---|
| 293 | // -----------------------
|
---|
[1744] | 294 | if (_format.indexOf("RTCM_2") != -1 || _format.indexOf("RTCM2") != -1 ||
|
---|
| 295 | _format.indexOf("RTCM 2") != -1 ) {
|
---|
[1555] | 296 | emit(newMessage(_staID + ": Get data in RTCM 2.x format", true));
|
---|
| 297 | _decoder = new RTCM2Decoder(_staID.data());
|
---|
| 298 | }
|
---|
[1744] | 299 | else if (_format.indexOf("RTCM_3") != -1 || _format.indexOf("RTCM3") != -1 ||
|
---|
| 300 | _format.indexOf("RTCM 3") != -1 ) {
|
---|
[1555] | 301 | emit(newMessage(_staID + ": Get data in RTCM 3.x format", true));
|
---|
[2527] | 302 | _decoder = new RTCM3Decoder(_staID, _rawFile);
|
---|
[1555] | 303 | connect((RTCM3Decoder*) _decoder, SIGNAL(newMessage(QByteArray,bool)),
|
---|
| 304 | this, SIGNAL(newMessage(QByteArray,bool)));
|
---|
| 305 | }
|
---|
| 306 | else if (_format.indexOf("RTIGS") != -1) {
|
---|
| 307 | emit(newMessage(_staID + ": Get data in RTIGS format", true));
|
---|
| 308 | _decoder = new RTIGSDecoder();
|
---|
| 309 | }
|
---|
| 310 | else if (_format.indexOf("GPSS") != -1 || _format.indexOf("BNC") != -1) {
|
---|
| 311 | emit(newMessage(_staID + ": Get Data in GPSS format", true));
|
---|
| 312 | _decoder = new gpssDecoder();
|
---|
| 313 | }
|
---|
| 314 | else if (_format.indexOf("ZERO") != -1) {
|
---|
| 315 | emit(newMessage(_staID + ": Get data in original format", true));
|
---|
| 316 | _decoder = new bncZeroDecoder(_staID);
|
---|
| 317 | }
|
---|
| 318 | else {
|
---|
| 319 | emit(newMessage(_staID + ": Unknown data format " + _format, true));
|
---|
| 320 | _isToBeDeleted = true;
|
---|
| 321 | }
|
---|
| 322 |
|
---|
[1558] | 323 | _latencyChecker = new latencyChecker(_staID);
|
---|
[1557] | 324 |
|
---|
[319] | 325 | msleep(100); //sleep 0.1 sec
|
---|
[35] | 326 | }
|
---|
| 327 |
|
---|
| 328 | // Destructor
|
---|
| 329 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 330 | bncGetThread::~bncGetThread() {
|
---|
[1928] | 331 | if (isRunning()) {
|
---|
| 332 | wait();
|
---|
| 333 | }
|
---|
[1527] | 334 | if (_query) {
|
---|
| 335 | _query->stop();
|
---|
[1708] | 336 | _query->deleteLater();
|
---|
[1527] | 337 | }
|
---|
[2035] | 338 | delete _PPPclient;
|
---|
[617] | 339 | delete _decoder;
|
---|
[1044] | 340 | delete _rnx;
|
---|
[2519] | 341 | delete _rawFile;
|
---|
[1607] | 342 | delete _serialOutFile;
|
---|
[1328] | 343 | delete _serialPort;
|
---|
[1557] | 344 | delete _latencyChecker;
|
---|
[1556] | 345 | emit getThreadFinished(_staID);
|
---|
[35] | 346 | }
|
---|
| 347 |
|
---|
[1390] | 348 | //
|
---|
| 349 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 350 | void bncGetThread::terminate() {
|
---|
[1525] | 351 | _isToBeDeleted = true;
|
---|
[1559] | 352 | if (!isRunning()) {
|
---|
| 353 | delete this;
|
---|
| 354 | }
|
---|
[1390] | 355 | }
|
---|
| 356 |
|
---|
[136] | 357 | // Run
|
---|
| 358 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 359 | void bncGetThread::run() {
|
---|
| 360 |
|
---|
[35] | 361 | while (true) {
|
---|
[629] | 362 | try {
|
---|
[1555] | 363 | if (_isToBeDeleted) {
|
---|
| 364 | QThread::exit(0);
|
---|
| 365 | this->deleteLater();
|
---|
| 366 | return;
|
---|
[629] | 367 | }
|
---|
[621] | 368 |
|
---|
[1555] | 369 | if (tryReconnect() != success) {
|
---|
[1572] | 370 | _latencyChecker->checkReconnect();
|
---|
[1555] | 371 | continue;
|
---|
[621] | 372 | }
|
---|
[1555] | 373 |
|
---|
| 374 | // Delete old observations
|
---|
| 375 | // -----------------------
|
---|
| 376 | QListIterator<p_obs> itOld(_decoder->_obsList);
|
---|
| 377 | while (itOld.hasNext()) {
|
---|
| 378 | delete itOld.next();
|
---|
| 379 | }
|
---|
[621] | 380 | _decoder->_obsList.clear();
|
---|
| 381 |
|
---|
[1555] | 382 | // Read Data
|
---|
| 383 | // ---------
|
---|
[1377] | 384 | QByteArray data;
|
---|
| 385 | if (_query) {
|
---|
| 386 | _query->waitForReadyRead(data);
|
---|
[1138] | 387 | }
|
---|
[2519] | 388 | else if (_rawFile) {
|
---|
[2527] | 389 | data = _rawFile->readChunk();
|
---|
[2388] | 390 |
|
---|
[1555] | 391 | if (data.isEmpty()) {
|
---|
| 392 | cout << "no more data" << endl;
|
---|
[2525] | 393 | QThread::exit(0);
|
---|
| 394 | this->deleteLater();
|
---|
| 395 | return;
|
---|
[1555] | 396 | }
|
---|
[1138] | 397 | }
|
---|
[1555] | 398 | qint64 nBytes = data.size();
|
---|
[1138] | 399 |
|
---|
[1555] | 400 | // Timeout, reconnect
|
---|
| 401 | // ------------------
|
---|
| 402 | if (nBytes == 0) {
|
---|
[1576] | 403 | _latencyChecker->checkReconnect();
|
---|
[1555] | 404 | emit(newMessage(_staID + ": Data timeout, reconnecting", true));
|
---|
[2355] | 405 | msleep(10000); //sleep 10 sec, G. Weber
|
---|
[1555] | 406 | continue;
|
---|
| 407 | }
|
---|
| 408 | else {
|
---|
[567] | 409 | emit newBytes(_staID, nBytes);
|
---|
[1555] | 410 | }
|
---|
[567] | 411 |
|
---|
[1555] | 412 | // Output Data
|
---|
| 413 | // -----------
|
---|
[2386] | 414 | if (_rawOutput) {
|
---|
| 415 | bncApp* app = (bncApp*) qApp;
|
---|
[2518] | 416 | app->writeRawData(data, _staID, _format);
|
---|
[2386] | 417 | }
|
---|
[2385] | 418 |
|
---|
[1555] | 419 | if (_serialPort) {
|
---|
[1633] | 420 | slotSerialReadyRead();
|
---|
[1555] | 421 | _serialPort->write(data);
|
---|
| 422 | }
|
---|
| 423 |
|
---|
| 424 | // Decode Data
|
---|
| 425 | // -----------
|
---|
| 426 | vector<string> errmsg;
|
---|
[1562] | 427 | t_irc irc = _decoder->Decode(data.data(), data.size(), errmsg);
|
---|
[1137] | 428 |
|
---|
[1555] | 429 | // Perform various scans and checks
|
---|
| 430 | // --------------------------------
|
---|
[1562] | 431 | _latencyChecker->checkOutage(irc == success);
|
---|
| 432 | _latencyChecker->checkObsLatency(_decoder->_obsList);
|
---|
[1567] | 433 | _latencyChecker->checkCorrLatency(_decoder->corrGPSEpochTime());
|
---|
| 434 |
|
---|
[1973] | 435 | emit newLatency(_staID, _latencyChecker->currentLatency());
|
---|
[1969] | 436 |
|
---|
[1555] | 437 | scanRTCM();
|
---|
[1138] | 438 |
|
---|
[1555] | 439 | // Loop over all observations (observations output)
|
---|
| 440 | // ------------------------------------------------
|
---|
| 441 | QListIterator<p_obs> it(_decoder->_obsList);
|
---|
| 442 | while (it.hasNext()) {
|
---|
| 443 | p_obs obs = it.next();
|
---|
| 444 |
|
---|
| 445 | // Check observation epoch
|
---|
| 446 | // -----------------------
|
---|
[2519] | 447 | if (!_rawFile && !dynamic_cast<gpssDecoder*>(_decoder)) {
|
---|
[1555] | 448 | int week;
|
---|
| 449 | double sec;
|
---|
| 450 | currentGPSWeeks(week, sec);
|
---|
| 451 | const double secPerWeek = 7.0 * 24.0 * 3600.0;
|
---|
| 452 |
|
---|
[2488] | 453 | double currSec = week * secPerWeek + sec;
|
---|
| 454 | double obsSec = obs->_o.GPSWeek * secPerWeek + obs->_o.GPSWeeks;
|
---|
| 455 |
|
---|
[1555] | 456 | const double maxDt = 600.0;
|
---|
[2488] | 457 |
|
---|
| 458 | if (fabs(currSec - obsSec) > maxDt) {
|
---|
[2308] | 459 | emit( newMessage(_staID + ": Wrong observation epoch(s)", false) );
|
---|
[1555] | 460 | delete obs;
|
---|
| 461 | continue;
|
---|
[940] | 462 | }
|
---|
[686] | 463 | }
|
---|
[1555] | 464 |
|
---|
| 465 | // RINEX Output
|
---|
| 466 | // ------------
|
---|
| 467 | if (_rnx) {
|
---|
| 468 | long iSec = long(floor(obs->_o.GPSWeeks+0.5));
|
---|
| 469 | long newTime = obs->_o.GPSWeek * 7*24*3600 + iSec;
|
---|
| 470 | if (_samplingRate == 0 || iSec % _samplingRate == 0) {
|
---|
| 471 | _rnx->deepCopy(obs);
|
---|
[1271] | 472 | }
|
---|
[1555] | 473 | _rnx->dumpEpoch(newTime);
|
---|
[1271] | 474 | }
|
---|
[1555] | 475 |
|
---|
[2030] | 476 | // PPP Client
|
---|
| 477 | // ----------
|
---|
[2290] | 478 | #ifndef MLS_SOFTWARE
|
---|
[2035] | 479 | if (_PPPclient) {
|
---|
| 480 | _PPPclient->putNewObs(obs);
|
---|
[2030] | 481 | }
|
---|
[2290] | 482 | #endif
|
---|
[2030] | 483 |
|
---|
[1555] | 484 | // Emit new observation signal
|
---|
| 485 | // ---------------------------
|
---|
| 486 | bool firstObs = (obs == _decoder->_obsList.first());
|
---|
| 487 | obs->_status = t_obs::posted;
|
---|
| 488 | emit newObs(_staID, firstObs, obs);
|
---|
[249] | 489 | }
|
---|
[1555] | 490 | _decoder->_obsList.clear();
|
---|
[35] | 491 | }
|
---|
[1555] | 492 | catch (...) {
|
---|
[1559] | 493 | emit(newMessage(_staID + "bncGetThread exception", true));
|
---|
| 494 | _isToBeDeleted = true;
|
---|
[1555] | 495 | }
|
---|
[35] | 496 | }
|
---|
| 497 | }
|
---|
| 498 |
|
---|
[136] | 499 | // Try Re-Connect
|
---|
| 500 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1555] | 501 | t_irc bncGetThread::tryReconnect() {
|
---|
| 502 |
|
---|
| 503 | // Easy Return
|
---|
| 504 | // -----------
|
---|
| 505 | if (_query && _query->status() == bncNetQuery::running) {
|
---|
| 506 | _nextSleep = 0;
|
---|
[1709] | 507 | if (_rnx) {
|
---|
| 508 | _rnx->setReconnectFlag(false);
|
---|
| 509 | }
|
---|
[1555] | 510 | return success;
|
---|
[408] | 511 | }
|
---|
[1555] | 512 |
|
---|
| 513 | // Start a new query
|
---|
| 514 | // -----------------
|
---|
[2519] | 515 | if (!_rawFile) {
|
---|
[1555] | 516 |
|
---|
[138] | 517 | sleep(_nextSleep);
|
---|
[1555] | 518 | if (_nextSleep == 0) {
|
---|
| 519 | _nextSleep = 1;
|
---|
[138] | 520 | }
|
---|
| 521 | else {
|
---|
[1555] | 522 | _nextSleep = 2 * _nextSleep;
|
---|
[442] | 523 | if (_nextSleep > 256) {
|
---|
| 524 | _nextSleep = 256;
|
---|
[152] | 525 | }
|
---|
[1816] | 526 | #ifdef MLS_SOFTWARE
|
---|
[1817] | 527 | if (_nextSleep > 4) {
|
---|
| 528 | _nextSleep = 4;
|
---|
[1816] | 529 | }
|
---|
| 530 | #endif
|
---|
[138] | 531 | }
|
---|
[1555] | 532 |
|
---|
| 533 | delete _query;
|
---|
[1722] | 534 | if (_ntripVersion == "U") {
|
---|
[1721] | 535 | _query = new bncNetQueryUdp();
|
---|
| 536 | }
|
---|
[1722] | 537 | else if (_ntripVersion == "R") {
|
---|
[1555] | 538 | _query = new bncNetQueryRtp();
|
---|
| 539 | }
|
---|
[1744] | 540 | else if (_ntripVersion == "S") {
|
---|
[1753] | 541 | _query = new bncNetQueryS();
|
---|
[1744] | 542 | }
|
---|
[1621] | 543 | else if (_ntripVersion == "N") {
|
---|
| 544 | _query = new bncNetQueryV0();
|
---|
| 545 | }
|
---|
[1779] | 546 | else if (_ntripVersion == "UN") {
|
---|
| 547 | _query = new bncNetQueryUdp0();
|
---|
| 548 | }
|
---|
[1555] | 549 | else if (_ntripVersion == "2") {
|
---|
| 550 | _query = new bncNetQueryV2();
|
---|
| 551 | }
|
---|
| 552 | else {
|
---|
| 553 | _query = new bncNetQueryV1();
|
---|
| 554 | }
|
---|
[1710] | 555 | if (_nmea == "yes" && _serialNMEA != AUTO_NMEA) {
|
---|
| 556 | QByteArray gga = ggaString(_latitude, _longitude, "100.0");
|
---|
[1555] | 557 | _query->startRequest(_mountPoint, gga);
|
---|
| 558 | }
|
---|
| 559 | else {
|
---|
| 560 | _query->startRequest(_mountPoint, "");
|
---|
| 561 | }
|
---|
| 562 | if (_query->status() != bncNetQuery::running) {
|
---|
| 563 | return failure;
|
---|
| 564 | }
|
---|
[138] | 565 | }
|
---|
[658] | 566 |
|
---|
[1555] | 567 | if (_rnx) {
|
---|
| 568 | _rnx->setReconnectFlag(true);
|
---|
[658] | 569 | }
|
---|
[1555] | 570 |
|
---|
| 571 | return success;
|
---|
[658] | 572 | }
|
---|
[1044] | 573 |
|
---|
[1555] | 574 | // RTCM scan output
|
---|
[1044] | 575 | //////////////////////////////////////////////////////////////////////////////
|
---|
[1555] | 576 | void bncGetThread::scanRTCM() {
|
---|
[1044] | 577 |
|
---|
[1555] | 578 | bncSettings settings;
|
---|
[1574] | 579 | if ( Qt::CheckState(settings.value("scanRTCM").toInt()) == Qt::Checked ) {
|
---|
| 580 |
|
---|
| 581 | if ( _miscMount == _staID || _miscMount == "ALL" ) {
|
---|
| 582 |
|
---|
[1575] | 583 | // RTCM message types
|
---|
| 584 | // ------------------
|
---|
[1574] | 585 | for (int ii = 0; ii <_decoder->_typeList.size(); ii++) {
|
---|
| 586 | QString type = QString("%1 ").arg(_decoder->_typeList[ii]);
|
---|
| 587 | emit(newMessage(_staID + ": Received message type " + type.toAscii(), true));
|
---|
| 588 | }
|
---|
[1044] | 589 |
|
---|
[1574] | 590 | // RTCMv3 antenna descriptor
|
---|
| 591 | // -------------------------
|
---|
| 592 | for (int ii=0;ii<_decoder->_antType.size();ii++) {
|
---|
| 593 | QString ant1 = QString("%1 ").arg(_decoder->_antType[ii]);
|
---|
| 594 | emit(newMessage(_staID + ": Antenna descriptor " + ant1.toAscii(), true));
|
---|
| 595 | }
|
---|
[1555] | 596 |
|
---|
[1575] | 597 | // RTCM Antenna Coordinates
|
---|
| 598 | // ------------------------
|
---|
[1574] | 599 | for (int ii=0; ii <_decoder->_antList.size(); ii++) {
|
---|
| 600 | QByteArray antT;
|
---|
| 601 | if (_decoder->_antList[ii].type == GPSDecoder::t_antInfo::ARP) {
|
---|
| 602 | antT = "ARP";
|
---|
| 603 | }
|
---|
| 604 | else if (_decoder->_antList[ii].type == GPSDecoder::t_antInfo::APC) {
|
---|
| 605 | antT = "APC";
|
---|
| 606 | }
|
---|
[1575] | 607 | QByteArray ant1, ant2, ant3;
|
---|
| 608 | ant1 = QString("%1 ").arg(_decoder->_antList[ii].xx,0,'f',4).toAscii();
|
---|
| 609 | ant2 = QString("%1 ").arg(_decoder->_antList[ii].yy,0,'f',4).toAscii();
|
---|
| 610 | ant3 = QString("%1 ").arg(_decoder->_antList[ii].zz,0,'f',4).toAscii();
|
---|
| 611 | emit(newMessage(_staID + ": " + antT + " (ITRF) X " + ant1 + "m", true));
|
---|
| 612 | emit(newMessage(_staID + ": " + antT + " (ITRF) Y " + ant2 + "m", true));
|
---|
| 613 | emit(newMessage(_staID + ": " + antT + " (ITRF) Z " + ant3 + "m", true));
|
---|
| 614 | if (_decoder->_antList[ii].height_f) {
|
---|
| 615 | QByteArray ant4 = QString("%1 ").arg(_decoder->_antList[ii].height,0,'f',4).toAscii();
|
---|
| 616 | emit(newMessage(_staID + ": Antenna height above marker " + ant4 + "m", true));
|
---|
| 617 | }
|
---|
[1574] | 618 | emit(newAntCrd(_staID, _decoder->_antList[ii].xx,
|
---|
| 619 | _decoder->_antList[ii].yy, _decoder->_antList[ii].zz,
|
---|
| 620 | antT));
|
---|
[1218] | 621 | }
|
---|
| 622 | }
|
---|
[1044] | 623 | }
|
---|
[1575] | 624 |
|
---|
[1770] | 625 | #ifdef MLS_SOFTWARE
|
---|
| 626 | for (int ii=0; ii <_decoder->_antList.size(); ii++) {
|
---|
| 627 | QByteArray antT;
|
---|
| 628 | if (_decoder->_antList[ii].type == GPSDecoder::t_antInfo::ARP) {
|
---|
| 629 | antT = "ARP";
|
---|
| 630 | }
|
---|
| 631 | else if (_decoder->_antList[ii].type == GPSDecoder::t_antInfo::APC) {
|
---|
| 632 | antT = "APC";
|
---|
| 633 | }
|
---|
| 634 | emit(newAntCrd(_staID, _decoder->_antList[ii].xx,
|
---|
| 635 | _decoder->_antList[ii].yy, _decoder->_antList[ii].zz,
|
---|
| 636 | antT));
|
---|
| 637 | }
|
---|
[2356] | 638 |
|
---|
| 639 | for (int ii = 0; ii <_decoder->_typeList.size(); ii++) {
|
---|
| 640 | emit(newRTCMMessage(_staID, _decoder->_typeList[ii]));
|
---|
| 641 | }
|
---|
[1770] | 642 | #endif
|
---|
| 643 |
|
---|
| 644 |
|
---|
| 645 |
|
---|
| 646 |
|
---|
[1555] | 647 | _decoder->_typeList.clear();
|
---|
| 648 | _decoder->_antType.clear();
|
---|
| 649 | _decoder->_antList.clear();
|
---|
[1044] | 650 | }
|
---|
[1555] | 651 |
|
---|
[1606] | 652 | // Handle Data from Serial Port
|
---|
| 653 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 654 | void bncGetThread::slotSerialReadyRead() {
|
---|
[1607] | 655 | if (_serialPort) {
|
---|
[1633] | 656 | int nb = _serialPort->bytesAvailable();
|
---|
| 657 | if (nb > 0) {
|
---|
| 658 | QByteArray data = _serialPort->read(nb);
|
---|
[1711] | 659 |
|
---|
| 660 | if (_serialNMEA == AUTO_NMEA) {
|
---|
[1725] | 661 | int i1 = data.indexOf("$GPGGA");
|
---|
| 662 | if (i1 != -1) {
|
---|
| 663 | int i2 = data.indexOf("*", i1);
|
---|
| 664 | if (i2 != -1 && data.size() > i2 + 1) {
|
---|
| 665 | QByteArray gga = data.mid(i1,i2-i1+3);
|
---|
| 666 | _query->sendNMEA(gga);
|
---|
| 667 | }
|
---|
| 668 | }
|
---|
[1711] | 669 | }
|
---|
| 670 |
|
---|
[1633] | 671 | if (_serialOutFile) {
|
---|
| 672 | _serialOutFile->write(data);
|
---|
| 673 | _serialOutFile->flush();
|
---|
| 674 | }
|
---|
[1607] | 675 | }
|
---|
| 676 | }
|
---|
[1606] | 677 | }
|
---|
[1768] | 678 |
|
---|
| 679 | //
|
---|
| 680 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 681 | void bncGetThread::slotNewEphGPS(gpsephemeris gpseph) {
|
---|
[1807] | 682 | RTCM2Decoder* decoder2 = dynamic_cast<RTCM2Decoder*>(_decoder);
|
---|
| 683 | RTCM3Decoder* decoder3 = dynamic_cast<RTCM3Decoder*>(_decoder);
|
---|
[1768] | 684 |
|
---|
[1807] | 685 | if ( decoder2 ) {
|
---|
[1768] | 686 | QMutexLocker locker(&_mutex);
|
---|
| 687 |
|
---|
| 688 | string storedPRN;
|
---|
| 689 | vector<int> IODs;
|
---|
| 690 |
|
---|
[1807] | 691 | if ( decoder2->storeEph(gpseph, storedPRN, IODs) ) {
|
---|
[1768] | 692 | #ifdef DEBUG_RTCM2_2021
|
---|
| 693 | QString msg = _staID + QString(": stored eph %1 IODs").arg(storedPRN.c_str());
|
---|
| 694 |
|
---|
| 695 | for (unsigned ii = 0; ii < IODs.size(); ii++) {
|
---|
| 696 | msg += QString(" %1").arg(IODs[ii],4);
|
---|
| 697 | }
|
---|
| 698 |
|
---|
| 699 | emit(newMessage(msg.toAscii()));
|
---|
| 700 | #endif
|
---|
| 701 | }
|
---|
| 702 | }
|
---|
[1807] | 703 |
|
---|
| 704 | if ( decoder3 ) {
|
---|
| 705 | QMutexLocker locker(&_mutex);
|
---|
| 706 |
|
---|
| 707 | if ( decoder3->storeEph(gpseph) ) {
|
---|
[1813] | 708 | #ifdef DEBUG_RTCM3
|
---|
[1807] | 709 | QString msg = _staID + QString(": RTCM3Decoder, stored eph for satellite %1").arg(gpseph.satellite);
|
---|
| 710 | emit(newMessage(msg.toAscii(),true));
|
---|
[1813] | 711 | #endif
|
---|
[1807] | 712 | }
|
---|
| 713 | }
|
---|
[1768] | 714 | }
|
---|
| 715 |
|
---|