[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 | *
|
---|
[7486] | 37 | * Changes:
|
---|
[35] | 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>
|
---|
[5524] | 47 | #include <QMutex>
|
---|
[35] | 48 | #include <QtNetwork>
|
---|
[356] | 49 | #include <QTime>
|
---|
[35] | 50 |
|
---|
| 51 | #include "bncgetthread.h"
|
---|
[192] | 52 | #include "bnctabledlg.h"
|
---|
[5070] | 53 | #include "bnccore.h"
|
---|
[352] | 54 | #include "bncutils.h"
|
---|
[8418] | 55 | #include "bnctime.h"
|
---|
[423] | 56 | #include "bnczerodecoder.h"
|
---|
[1621] | 57 | #include "bncnetqueryv0.h"
|
---|
[1387] | 58 | #include "bncnetqueryv1.h"
|
---|
| 59 | #include "bncnetqueryv2.h"
|
---|
[1410] | 60 | #include "bncnetqueryrtp.h"
|
---|
[1721] | 61 | #include "bncnetqueryudp.h"
|
---|
[1779] | 62 | #include "bncnetqueryudp0.h"
|
---|
[1753] | 63 | #include "bncnetquerys.h"
|
---|
[1535] | 64 | #include "bncsettings.h"
|
---|
[1558] | 65 | #include "latencychecker.h"
|
---|
[3168] | 66 | #include "upload/bncrtnetdecoder.h"
|
---|
[243] | 67 | #include "RTCM/RTCM2Decoder.h"
|
---|
[297] | 68 | #include "RTCM3/RTCM3Decoder.h"
|
---|
[1318] | 69 | #include "serial/qextserialport.h"
|
---|
[35] | 70 |
|
---|
| 71 | using namespace std;
|
---|
| 72 |
|
---|
[1143] | 73 | // Constructor 1
|
---|
[35] | 74 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2519] | 75 | bncGetThread::bncGetThread(bncRawFile* rawFile) {
|
---|
[1138] | 76 |
|
---|
[8083] | 77 | _rawFile = rawFile;
|
---|
| 78 | _format = rawFile->format();
|
---|
| 79 | _staID = rawFile->staID();
|
---|
| 80 | _rawOutput = false;
|
---|
[2390] | 81 | _ntripVersion = "N";
|
---|
| 82 |
|
---|
[1555] | 83 | initialize();
|
---|
[1138] | 84 | }
|
---|
| 85 |
|
---|
[1143] | 86 | // Constructor 2
|
---|
| 87 | ////////////////////////////////////////////////////////////////////////////
|
---|
[8083] | 88 | bncGetThread::bncGetThread(const QUrl& mountPoint, const QByteArray& format,
|
---|
| 89 | const QByteArray& latitude, const QByteArray& longitude,
|
---|
| 90 | const QByteArray& nmea, const QByteArray& ntripVersion) {
|
---|
| 91 | _rawFile = 0;
|
---|
| 92 | _mountPoint = mountPoint;
|
---|
| 93 | _staID = mountPoint.path().mid(1).toAscii();
|
---|
| 94 | _format = format;
|
---|
| 95 | _latitude = latitude;
|
---|
| 96 | _longitude = longitude;
|
---|
| 97 | _nmea = nmea;
|
---|
[1353] | 98 | _ntripVersion = ntripVersion;
|
---|
[1139] | 99 |
|
---|
[2386] | 100 | bncSettings settings;
|
---|
| 101 | if (!settings.value("rawOutFile").toString().isEmpty()) {
|
---|
| 102 | _rawOutput = true;
|
---|
[8273] | 103 | }
|
---|
| 104 | else {
|
---|
[3734] | 105 | _rawOutput = false;
|
---|
[2386] | 106 | }
|
---|
[8273] | 107 | if (!settings.value("miscMount").toString().isEmpty()) {
|
---|
| 108 | _latencycheck = true;
|
---|
| 109 | }
|
---|
| 110 | else {
|
---|
| 111 | _latencycheck = false;
|
---|
| 112 | }
|
---|
[1139] | 113 | initialize();
|
---|
[3523] | 114 | initDecoder();
|
---|
[1139] | 115 | }
|
---|
| 116 |
|
---|
[1555] | 117 | // Initialization (common part of the constructor)
|
---|
[1143] | 118 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1139] | 119 | void bncGetThread::initialize() {
|
---|
| 120 |
|
---|
[3528] | 121 | bncSettings settings;
|
---|
| 122 |
|
---|
[1555] | 123 | setTerminationEnabled(true);
|
---|
| 124 |
|
---|
[7486] | 125 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
[8083] | 126 | BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
|
---|
[1555] | 127 |
|
---|
[1525] | 128 | _isToBeDeleted = false;
|
---|
[8083] | 129 | _query = 0;
|
---|
| 130 | _nextSleep = 0;
|
---|
| 131 | _miscMount = settings.value("miscMount").toString();
|
---|
| 132 | _decoder = 0;
|
---|
[255] | 133 |
|
---|
[7180] | 134 | // NMEA Port
|
---|
| 135 | // -----------
|
---|
| 136 | QListIterator<QString> iSta(settings.value("PPP/staTable").toStringList());
|
---|
| 137 | int nmeaPort = 0;
|
---|
| 138 | while (iSta.hasNext()) {
|
---|
| 139 | QStringList hlp = iSta.next().split(",");
|
---|
[8083] | 140 | if (hlp.size() < 10) {
|
---|
| 141 | continue;
|
---|
| 142 | }
|
---|
[7180] | 143 | QByteArray mp = hlp[0].toAscii();
|
---|
| 144 | if (_staID == mp) {
|
---|
| 145 | nmeaPort = hlp[9].toInt();
|
---|
| 146 | }
|
---|
| 147 | }
|
---|
| 148 | if (nmeaPort != 0) {
|
---|
| 149 | _nmeaServer = new QTcpServer;
|
---|
[8083] | 150 | if (!_nmeaServer->listen(QHostAddress::Any, nmeaPort)) {
|
---|
[7180] | 151 | emit newMessage("bncCaster: Cannot listen on port", true);
|
---|
[8083] | 152 | } else {
|
---|
| 153 | connect(_nmeaServer, SIGNAL(newConnection()), this,
|
---|
| 154 | SLOT(slotNewNMEAConnection()));
|
---|
| 155 | connect(BNC_CORE, SIGNAL(newNMEAstr(QByteArray, QByteArray)), this,
|
---|
| 156 | SLOT(slotNewNMEAstr(QByteArray, QByteArray)));
|
---|
[7180] | 157 | _nmeaSockets = new QList<QTcpSocket*>;
|
---|
| 158 | _nmeaPortsMap[_staID] = nmeaPort;
|
---|
| 159 | }
|
---|
| 160 | } else {
|
---|
| 161 | _nmeaServer = 0;
|
---|
| 162 | _nmeaSockets = 0;
|
---|
| 163 | }
|
---|
| 164 |
|
---|
[1555] | 165 | // Serial Port
|
---|
| 166 | // -----------
|
---|
[8083] | 167 | _serialNMEA = NO_NMEA;
|
---|
[1710] | 168 | _serialOutFile = 0;
|
---|
[8083] | 169 | _serialPort = 0;
|
---|
[1710] | 170 |
|
---|
[8083] | 171 | if (!_staID.isEmpty()
|
---|
| 172 | && settings.value("serialMountPoint").toString() == _staID) {
|
---|
| 173 | _serialPort = new QextSerialPort(
|
---|
| 174 | settings.value("serialPortName").toString());
|
---|
| 175 | _serialPort->setTimeout(0, 100);
|
---|
[1710] | 176 |
|
---|
| 177 | // Baud Rate
|
---|
| 178 | // ---------
|
---|
[1330] | 179 | QString hlp = settings.value("serialBaudRate").toString();
|
---|
[8083] | 180 | if (hlp == "110") {
|
---|
[7486] | 181 | _serialPort->setBaudRate(BAUD110);
|
---|
[8083] | 182 | } else if (hlp == "300") {
|
---|
[7486] | 183 | _serialPort->setBaudRate(BAUD300);
|
---|
[8083] | 184 | } else if (hlp == "600") {
|
---|
[7486] | 185 | _serialPort->setBaudRate(BAUD600);
|
---|
[8083] | 186 | } else if (hlp == "1200") {
|
---|
[7486] | 187 | _serialPort->setBaudRate(BAUD1200);
|
---|
[8083] | 188 | } else if (hlp == "2400") {
|
---|
[7486] | 189 | _serialPort->setBaudRate(BAUD2400);
|
---|
[8083] | 190 | } else if (hlp == "4800") {
|
---|
[7486] | 191 | _serialPort->setBaudRate(BAUD4800);
|
---|
[8083] | 192 | } else if (hlp == "9600") {
|
---|
[7486] | 193 | _serialPort->setBaudRate(BAUD9600);
|
---|
[8083] | 194 | } else if (hlp == "19200") {
|
---|
[7486] | 195 | _serialPort->setBaudRate(BAUD19200);
|
---|
[8083] | 196 | } else if (hlp == "38400") {
|
---|
[7486] | 197 | _serialPort->setBaudRate(BAUD38400);
|
---|
[8083] | 198 | } else if (hlp == "57600") {
|
---|
[7486] | 199 | _serialPort->setBaudRate(BAUD57600);
|
---|
[8083] | 200 | } else if (hlp == "115200") {
|
---|
[7486] | 201 | _serialPort->setBaudRate(BAUD115200);
|
---|
[1330] | 202 | }
|
---|
[1710] | 203 |
|
---|
| 204 | // Parity
|
---|
| 205 | // ------
|
---|
[1330] | 206 | hlp = settings.value("serialParity").toString();
|
---|
[8083] | 207 | if (hlp == "NONE") {
|
---|
[7486] | 208 | _serialPort->setParity(PAR_NONE);
|
---|
[8083] | 209 | } else if (hlp == "ODD") {
|
---|
[7486] | 210 | _serialPort->setParity(PAR_ODD);
|
---|
[8083] | 211 | } else if (hlp == "EVEN") {
|
---|
[7486] | 212 | _serialPort->setParity(PAR_EVEN);
|
---|
[8083] | 213 | } else if (hlp == "SPACE") {
|
---|
[7486] | 214 | _serialPort->setParity(PAR_SPACE);
|
---|
[1330] | 215 | }
|
---|
[1710] | 216 |
|
---|
| 217 | // Data Bits
|
---|
| 218 | // ---------
|
---|
[1330] | 219 | hlp = settings.value("serialDataBits").toString();
|
---|
[8083] | 220 | if (hlp == "5") {
|
---|
[7486] | 221 | _serialPort->setDataBits(DATA_5);
|
---|
[8083] | 222 | } else if (hlp == "6") {
|
---|
[7486] | 223 | _serialPort->setDataBits(DATA_6);
|
---|
[8083] | 224 | } else if (hlp == "7") {
|
---|
[7486] | 225 | _serialPort->setDataBits(DATA_7);
|
---|
[8083] | 226 | } else if (hlp == "8") {
|
---|
[7486] | 227 | _serialPort->setDataBits(DATA_8);
|
---|
[1330] | 228 | }
|
---|
| 229 | hlp = settings.value("serialStopBits").toString();
|
---|
[8083] | 230 | if (hlp == "1") {
|
---|
[7486] | 231 | _serialPort->setStopBits(STOP_1);
|
---|
[8083] | 232 | } else if (hlp == "2") {
|
---|
[7486] | 233 | _serialPort->setStopBits(STOP_2);
|
---|
[1330] | 234 | }
|
---|
[1710] | 235 |
|
---|
| 236 | // Flow Control
|
---|
| 237 | // ------------
|
---|
| 238 | hlp = settings.value("serialFlowControl").toString();
|
---|
[1711] | 239 | if (hlp == "XONXOFF") {
|
---|
[7486] | 240 | _serialPort->setFlowControl(FLOW_XONXOFF);
|
---|
[8083] | 241 | } else if (hlp == "HARDWARE") {
|
---|
[7486] | 242 | _serialPort->setFlowControl(FLOW_HARDWARE);
|
---|
[8083] | 243 | } else {
|
---|
[7486] | 244 | _serialPort->setFlowControl(FLOW_OFF);
|
---|
[1711] | 245 | }
|
---|
[1710] | 246 |
|
---|
| 247 | // Open Serial Port
|
---|
| 248 | // ----------------
|
---|
[8083] | 249 | _serialPort->open(QIODevice::ReadWrite | QIODevice::Unbuffered);
|
---|
[1331] | 250 | if (!_serialPort->isOpen()) {
|
---|
| 251 | delete _serialPort;
|
---|
| 252 | _serialPort = 0;
|
---|
[1451] | 253 | emit(newMessage((_staID + ": Cannot open serial port\n"), true));
|
---|
[1331] | 254 | }
|
---|
[8083] | 255 | connect(_serialPort, SIGNAL(readyRead()), this,
|
---|
| 256 | SLOT(slotSerialReadyRead()));
|
---|
[1606] | 257 |
|
---|
[1710] | 258 | // Automatic NMEA
|
---|
| 259 | // --------------
|
---|
[6785] | 260 | QString nmeaMode = settings.value("serialAutoNMEA").toString();
|
---|
| 261 | if (nmeaMode == "Auto") {
|
---|
[1710] | 262 | _serialNMEA = AUTO_NMEA;
|
---|
| 263 | QString fName = settings.value("serialFileNMEA").toString();
|
---|
| 264 | if (!fName.isEmpty()) {
|
---|
| 265 | _serialOutFile = new QFile(fName);
|
---|
[8083] | 266 | if (Qt::CheckState(settings.value("rnxAppend").toInt())
|
---|
| 267 | == Qt::Checked) {
|
---|
[1710] | 268 | _serialOutFile->open(QIODevice::WriteOnly | QIODevice::Append);
|
---|
[8083] | 269 | } else {
|
---|
[1710] | 270 | _serialOutFile->open(QIODevice::WriteOnly);
|
---|
| 271 | }
|
---|
[1634] | 272 | }
|
---|
[1606] | 273 | }
|
---|
[1710] | 274 | // Manual NMEA
|
---|
| 275 | // -----------
|
---|
[8083] | 276 | if ((nmeaMode == "Manual GPGGA") || (nmeaMode == "Manual GNGGA")) {
|
---|
[1710] | 277 | _serialNMEA = MANUAL_NMEA;
|
---|
[6751] | 278 | bncSettings settings;
|
---|
| 279 | _manualNMEASampl = settings.value("serialManualNMEASampling").toInt();
|
---|
[8083] | 280 | QString hlp = settings.value("serialHeightNMEA").toString();
|
---|
[6751] | 281 | if (hlp.isEmpty()) {
|
---|
| 282 | hlp = "0.0";
|
---|
| 283 | }
|
---|
| 284 | QByteArray _serialHeightNMEA = hlp.toAscii();
|
---|
[8083] | 285 | _manualNMEAString = ggaString(_latitude, _longitude, _serialHeightNMEA,
|
---|
| 286 | nmeaMode);
|
---|
[1636] | 287 | }
|
---|
[1318] | 288 | }
|
---|
| 289 |
|
---|
[8273] | 290 | if (!_staID.isEmpty() && _latencycheck) {
|
---|
[3532] | 291 | _latencyChecker = new latencyChecker(_staID);
|
---|
[8083] | 292 | obs = false;
|
---|
| 293 | ssrOrb = false;
|
---|
| 294 | ssrClk = false;
|
---|
| 295 | ssrOrbClk = false;
|
---|
| 296 | ssrCbi = false;
|
---|
| 297 | ssrPbi = false;
|
---|
| 298 | ssrVtec = false;
|
---|
| 299 | ssrUra = false;
|
---|
| 300 | ssrHr = false;
|
---|
| 301 | _oldSsrEpoch = 0;
|
---|
| 302 | _ssrEpoch = 0;
|
---|
| 303 | } else {
|
---|
[3532] | 304 | _latencyChecker = 0;
|
---|
| 305 | }
|
---|
[3523] | 306 | }
|
---|
| 307 |
|
---|
| 308 | // Instantiate the decoder
|
---|
| 309 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 310 | t_irc bncGetThread::initDecoder() {
|
---|
| 311 |
|
---|
[3560] | 312 | _decoder = 0;
|
---|
| 313 |
|
---|
[8083] | 314 | if (_format.indexOf("RTCM_2") != -1 || _format.indexOf("RTCM2") != -1
|
---|
| 315 | || _format.indexOf("RTCM 2") != -1) {
|
---|
[1555] | 316 | emit(newMessage(_staID + ": Get data in RTCM 2.x format", true));
|
---|
[3560] | 317 | _decoder = new RTCM2Decoder(_staID.data());
|
---|
[8083] | 318 | } else if (_format.indexOf("RTCM_3") != -1 || _format.indexOf("RTCM3") != -1
|
---|
| 319 | || _format.indexOf("RTCM 3") != -1) {
|
---|
[1555] | 320 | emit(newMessage(_staID + ": Get data in RTCM 3.x format", true));
|
---|
[3558] | 321 | RTCM3Decoder* newDecoder = new RTCM3Decoder(_staID, _rawFile);
|
---|
[3560] | 322 | _decoder = newDecoder;
|
---|
[7486] | 323 | connect((RTCM3Decoder*) newDecoder, SIGNAL(newMessage(QByteArray,bool)),
|
---|
[8083] | 324 | this, SIGNAL(newMessage(QByteArray,bool)));
|
---|
| 325 | } else if (_format.indexOf("ZERO") != -1) {
|
---|
[1555] | 326 | emit(newMessage(_staID + ": Get data in original format", true));
|
---|
[3560] | 327 | _decoder = new bncZeroDecoder(_staID);
|
---|
[8083] | 328 | } else if (_format.indexOf("RTNET") != -1) {
|
---|
[3168] | 329 | emit(newMessage(_staID + ": Get data in RTNet format", true));
|
---|
[3560] | 330 | _decoder = new bncRtnetDecoder();
|
---|
[8083] | 331 | } else {
|
---|
[1555] | 332 | emit(newMessage(_staID + ": Unknown data format " + _format, true));
|
---|
| 333 | _isToBeDeleted = true;
|
---|
[3523] | 334 | return failure;
|
---|
[1555] | 335 | }
|
---|
| 336 |
|
---|
[319] | 337 | msleep(100); //sleep 0.1 sec
|
---|
[7486] | 338 |
|
---|
[8083] | 339 | _decoder->initRinex(_staID, _mountPoint, _latitude, _longitude, _nmea,
|
---|
| 340 | _ntripVersion);
|
---|
[3560] | 341 |
|
---|
| 342 | if (_rawFile) {
|
---|
| 343 | _decodersRaw[_staID] = _decoder;
|
---|
[3530] | 344 | }
|
---|
| 345 |
|
---|
[3523] | 346 | return success;
|
---|
[35] | 347 | }
|
---|
| 348 |
|
---|
[3523] | 349 | // Current decoder in use
|
---|
| 350 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 351 | GPSDecoder* bncGetThread::decoder() {
|
---|
[3560] | 352 | if (!_rawFile) {
|
---|
| 353 | return _decoder;
|
---|
[8083] | 354 | } else {
|
---|
[3560] | 355 | if (_decodersRaw.contains(_staID) || initDecoder() == success) {
|
---|
| 356 | return _decodersRaw[_staID];
|
---|
| 357 | }
|
---|
[3523] | 358 | }
|
---|
[3560] | 359 | return 0;
|
---|
[3523] | 360 | }
|
---|
| 361 |
|
---|
[35] | 362 | // Destructor
|
---|
| 363 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 364 | bncGetThread::~bncGetThread() {
|
---|
[1928] | 365 | if (isRunning()) {
|
---|
| 366 | wait();
|
---|
| 367 | }
|
---|
[1527] | 368 | if (_query) {
|
---|
| 369 | _query->stop();
|
---|
[1708] | 370 | _query->deleteLater();
|
---|
[1527] | 371 | }
|
---|
[3560] | 372 | if (_rawFile) {
|
---|
| 373 | QMapIterator<QString, GPSDecoder*> it(_decodersRaw);
|
---|
| 374 | while (it.hasNext()) {
|
---|
| 375 | it.next();
|
---|
| 376 | delete it.value();
|
---|
| 377 | }
|
---|
[8083] | 378 | } else {
|
---|
[3560] | 379 | delete _decoder;
|
---|
| 380 | }
|
---|
[2519] | 381 | delete _rawFile;
|
---|
[1607] | 382 | delete _serialOutFile;
|
---|
[1328] | 383 | delete _serialPort;
|
---|
[1557] | 384 | delete _latencyChecker;
|
---|
[1556] | 385 | emit getThreadFinished(_staID);
|
---|
[35] | 386 | }
|
---|
| 387 |
|
---|
[7486] | 388 | //
|
---|
[1390] | 389 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 390 | void bncGetThread::terminate() {
|
---|
[1525] | 391 | _isToBeDeleted = true;
|
---|
[7854] | 392 |
|
---|
[8083] | 393 | if (_nmeaPortsMap.contains(_staID)) {
|
---|
[7854] | 394 | _nmeaPortsMap.remove(_staID);
|
---|
[1559] | 395 | }
|
---|
[7854] | 396 | if (_nmeaServer) {
|
---|
| 397 | delete _nmeaServer;
|
---|
| 398 | }
|
---|
| 399 | if (_nmeaSockets) {
|
---|
| 400 | delete _nmeaSockets;
|
---|
| 401 | }
|
---|
[7858] | 402 |
|
---|
| 403 | #ifdef BNC_DEBUG
|
---|
[7859] | 404 | if (BNC_CORE->mode() != t_bncCore::interactive) {
|
---|
[8083] | 405 | while (!isFinished()) {
|
---|
| 406 | wait();
|
---|
| 407 | }
|
---|
[7859] | 408 | delete this;
|
---|
[8083] | 409 | } else {
|
---|
| 410 | if (!isRunning()) {
|
---|
| 411 | delete this;
|
---|
| 412 | }
|
---|
[7858] | 413 | }
|
---|
| 414 | #else
|
---|
[8083] | 415 | if (!isRunning()) {delete this;}
|
---|
[7858] | 416 | #endif
|
---|
| 417 |
|
---|
[1390] | 418 | }
|
---|
| 419 |
|
---|
[136] | 420 | // Run
|
---|
| 421 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 422 | void bncGetThread::run() {
|
---|
| 423 |
|
---|
[35] | 424 | while (true) {
|
---|
[629] | 425 | try {
|
---|
[1555] | 426 | if (_isToBeDeleted) {
|
---|
| 427 | QThread::exit(0);
|
---|
| 428 | this->deleteLater();
|
---|
| 429 | return;
|
---|
[629] | 430 | }
|
---|
[621] | 431 |
|
---|
[1555] | 432 | if (tryReconnect() != success) {
|
---|
[3532] | 433 | if (_latencyChecker) {
|
---|
| 434 | _latencyChecker->checkReconnect();
|
---|
| 435 | }
|
---|
[1555] | 436 | continue;
|
---|
[621] | 437 | }
|
---|
[1555] | 438 |
|
---|
| 439 | // Delete old observations
|
---|
| 440 | // -----------------------
|
---|
[3560] | 441 | if (_rawFile) {
|
---|
| 442 | QMapIterator<QString, GPSDecoder*> itDec(_decodersRaw);
|
---|
| 443 | while (itDec.hasNext()) {
|
---|
| 444 | itDec.next();
|
---|
| 445 | GPSDecoder* decoder = itDec.value();
|
---|
| 446 | decoder->_obsList.clear();
|
---|
| 447 | }
|
---|
[8083] | 448 | } else {
|
---|
[3560] | 449 | _decoder->_obsList.clear();
|
---|
| 450 | }
|
---|
[621] | 451 |
|
---|
[1555] | 452 | // Read Data
|
---|
| 453 | // ---------
|
---|
[1377] | 454 | QByteArray data;
|
---|
[8083] | 455 | if (_query) {
|
---|
[1377] | 456 | _query->waitForReadyRead(data);
|
---|
[8083] | 457 | } else if (_rawFile) {
|
---|
[2527] | 458 | data = _rawFile->readChunk();
|
---|
[3523] | 459 | _format = _rawFile->format();
|
---|
[8083] | 460 | _staID = _rawFile->staID();
|
---|
[2388] | 461 |
|
---|
[5903] | 462 | QCoreApplication::processEvents();
|
---|
| 463 |
|
---|
[7977] | 464 | if (data.isEmpty() || BNC_CORE->sigintReceived) {
|
---|
| 465 | cout << "no more data or Ctrl-C received" << endl;
|
---|
[5068] | 466 | BNC_CORE->stopCombination();
|
---|
[5900] | 467 | BNC_CORE->stopPPP();
|
---|
[5903] | 468 | ::exit(0);
|
---|
[1555] | 469 | }
|
---|
[1138] | 470 | }
|
---|
[1555] | 471 | qint64 nBytes = data.size();
|
---|
[1138] | 472 |
|
---|
[1555] | 473 | // Timeout, reconnect
|
---|
| 474 | // ------------------
|
---|
| 475 | if (nBytes == 0) {
|
---|
[3532] | 476 | if (_latencyChecker) {
|
---|
| 477 | _latencyChecker->checkReconnect();
|
---|
| 478 | }
|
---|
[1555] | 479 | emit(newMessage(_staID + ": Data timeout, reconnecting", true));
|
---|
[2355] | 480 | msleep(10000); //sleep 10 sec, G. Weber
|
---|
[1555] | 481 | continue;
|
---|
[8083] | 482 | } else {
|
---|
[567] | 483 | emit newBytes(_staID, nBytes);
|
---|
[5648] | 484 | emit newRawData(_staID, data);
|
---|
[1555] | 485 | }
|
---|
[567] | 486 |
|
---|
[1555] | 487 | // Output Data
|
---|
| 488 | // -----------
|
---|
[2386] | 489 | if (_rawOutput) {
|
---|
[7486] | 490 | BNC_CORE->writeRawData(data, _staID, _format);
|
---|
[2386] | 491 | }
|
---|
[2385] | 492 |
|
---|
[1555] | 493 | if (_serialPort) {
|
---|
[1633] | 494 | slotSerialReadyRead();
|
---|
[1555] | 495 | _serialPort->write(data);
|
---|
| 496 | }
|
---|
[7486] | 497 |
|
---|
[1555] | 498 | // Decode Data
|
---|
| 499 | // -----------
|
---|
| 500 | vector<string> errmsg;
|
---|
[3526] | 501 | if (!decoder()) {
|
---|
| 502 | _isToBeDeleted = true;
|
---|
| 503 | continue;
|
---|
| 504 | }
|
---|
[7753] | 505 |
|
---|
[3523] | 506 | t_irc irc = decoder()->Decode(data.data(), data.size(), errmsg);
|
---|
[1137] | 507 |
|
---|
[7753] | 508 | if (irc != success) {
|
---|
| 509 | continue;
|
---|
| 510 | }
|
---|
[1555] | 511 | // Perform various scans and checks
|
---|
| 512 | // --------------------------------
|
---|
[3532] | 513 | if (_latencyChecker) {
|
---|
[8273] | 514 | _latencyChecker->checkOutage(irc);
|
---|
[8083] | 515 | QListIterator<int> it(decoder()->_typeList);
|
---|
[8273] | 516 | _ssrEpoch = static_cast<int>(decoder()->corrGPSEpochTime());
|
---|
| 517 | if (_oldSsrEpoch != -1 && _ssrEpoch != _oldSsrEpoch) {
|
---|
[8083] | 518 | if (ssrOrb) {
|
---|
| 519 | _latencyChecker->checkCorrLatency(_oldSsrEpoch, 1057);
|
---|
| 520 | ssrOrb = false;
|
---|
| 521 | }
|
---|
| 522 | if (ssrClk) {
|
---|
| 523 | _latencyChecker->checkCorrLatency(_oldSsrEpoch, 1058);
|
---|
| 524 | ssrClk = false;
|
---|
| 525 | }
|
---|
| 526 | if (ssrOrbClk) {
|
---|
| 527 | _latencyChecker->checkCorrLatency(_oldSsrEpoch, 1060);
|
---|
| 528 | ssrOrbClk = false;
|
---|
| 529 | }
|
---|
| 530 | if (ssrCbi) {
|
---|
| 531 | _latencyChecker->checkCorrLatency(_oldSsrEpoch, 1059);
|
---|
| 532 | ssrCbi = false;
|
---|
| 533 | }
|
---|
| 534 | if (ssrPbi) {
|
---|
| 535 | _latencyChecker->checkCorrLatency(_oldSsrEpoch, 1265);
|
---|
| 536 | ssrPbi = false;
|
---|
| 537 | }
|
---|
| 538 | if (ssrVtec) {
|
---|
| 539 | _latencyChecker->checkCorrLatency(_oldSsrEpoch, 1264);
|
---|
| 540 | ssrVtec = false;
|
---|
| 541 | }
|
---|
| 542 | if (ssrUra) {
|
---|
| 543 | _latencyChecker->checkCorrLatency(_oldSsrEpoch, 1061);
|
---|
| 544 | ssrUra = false;
|
---|
| 545 | }
|
---|
| 546 | if (ssrHr) {
|
---|
| 547 | _latencyChecker->checkCorrLatency(_oldSsrEpoch, 1062);
|
---|
| 548 | ssrHr = false;
|
---|
| 549 | }
|
---|
| 550 | }
|
---|
| 551 | while (it.hasNext()) {
|
---|
| 552 | int rtcmType = it.next();
|
---|
| 553 | if ((rtcmType >= 1001 && rtcmType <= 1004) || // legacy RTCM OBS
|
---|
| 554 | (rtcmType >= 1009 && rtcmType <= 1012) || // legacy RTCM OBS
|
---|
| 555 | (rtcmType >= 1071 && rtcmType <= 1127)) { // MSM RTCM OBS
|
---|
| 556 | obs = true;
|
---|
| 557 | } else if ((rtcmType >= 1057 && rtcmType <= 1068) ||
|
---|
| 558 | (rtcmType >= 1240 && rtcmType <= 1270)) {
|
---|
| 559 | switch (rtcmType) {
|
---|
| 560 | case 1057: case 1063: case 1240: case 1246: case 1252: case 1258:
|
---|
| 561 | ssrOrb = true;
|
---|
| 562 | break;
|
---|
| 563 | case 1058: case 1064: case 1241: case 1247: case 1253: case 1259:
|
---|
| 564 | ssrClk = true;
|
---|
| 565 | break;
|
---|
| 566 | case 1060: case 1066: case 1243: case 1249: case 1255: case 1261:
|
---|
| 567 | ssrOrbClk = true;
|
---|
| 568 | break;
|
---|
| 569 | case 1059: case 1065: case 1242: case 1248: case 1254: case 1260:
|
---|
| 570 | ssrCbi = true;
|
---|
| 571 | break;
|
---|
| 572 | case 1265: case 1266: case 1267: case 1268: case 1269: case 1270:
|
---|
| 573 | ssrPbi = true;
|
---|
| 574 | break;
|
---|
| 575 | case 1264:
|
---|
| 576 | ssrVtec = true;
|
---|
| 577 | break;
|
---|
| 578 | case 1061: case 1067: case 1244: case 1250: case 1256: case 1262:
|
---|
| 579 | ssrUra = true;
|
---|
| 580 | break;
|
---|
| 581 | case 1062: case 1068: case 1245: case 1251: case 1257: case 1263:
|
---|
| 582 | ssrHr = true;
|
---|
| 583 | break;
|
---|
| 584 | }
|
---|
| 585 | }
|
---|
| 586 | }
|
---|
| 587 | if (obs) {
|
---|
| 588 | _latencyChecker->checkObsLatency(decoder()->_obsList);
|
---|
| 589 | }
|
---|
[8273] | 590 | if (_ssrEpoch != -1) {
|
---|
| 591 | _oldSsrEpoch = _ssrEpoch;
|
---|
| 592 | }
|
---|
[3532] | 593 | emit newLatency(_staID, _latencyChecker->currentLatency());
|
---|
| 594 | }
|
---|
[7753] | 595 | miscScanRTCM();
|
---|
[1138] | 596 |
|
---|
[1555] | 597 | // Loop over all observations (observations output)
|
---|
| 598 | // ------------------------------------------------
|
---|
[6137] | 599 | QListIterator<t_satObs> it(decoder()->_obsList);
|
---|
[5524] | 600 |
|
---|
[6137] | 601 | QList<t_satObs> obsListHlp;
|
---|
[5524] | 602 |
|
---|
[1555] | 603 | while (it.hasNext()) {
|
---|
[6137] | 604 | const t_satObs& obs = it.next();
|
---|
[2711] | 605 |
|
---|
[1555] | 606 | // Check observation epoch
|
---|
| 607 | // -----------------------
|
---|
[5739] | 608 | if (!_rawFile) {
|
---|
[8012] | 609 | bool wrongObservationEpoch = checkForWrongObsEpoch(obs._time);
|
---|
| 610 | if (wrongObservationEpoch) {
|
---|
[8022] | 611 | QString prn(obs._prn.toString().c_str());
|
---|
[8083] | 612 | emit(newMessage(
|
---|
| 613 | _staID + " (" + prn.toAscii() + ")"
|
---|
| 614 | + ": Wrong observation epoch(s)", false));
|
---|
[1555] | 615 | continue;
|
---|
[940] | 616 | }
|
---|
[686] | 617 | }
|
---|
[6812] | 618 |
|
---|
[3305] | 619 | // Check observations coming twice (e.g. KOUR0 Problem)
|
---|
| 620 | // ----------------------------------------------------
|
---|
[3535] | 621 | if (!_rawFile) {
|
---|
[8012] | 622 | QString prn(obs._prn.toString().c_str());
|
---|
[8418] | 623 | bncTime obsTime = obs._time;
|
---|
| 624 | QMap<QString, bncTime>::const_iterator it = _prnLastEpo.find(prn);
|
---|
[3535] | 625 | if (it != _prnLastEpo.end()) {
|
---|
[8418] | 626 | bncTime oldTime = it.value();
|
---|
[8083] | 627 | if (obsTime < oldTime) {
|
---|
[8418] | 628 | emit(newMessage(_staID + ": old observation " + prn.toLatin1(), false));
|
---|
[3535] | 629 | continue;
|
---|
[8083] | 630 | } else if (obsTime == oldTime) {
|
---|
[8418] | 631 | emit(newMessage(_staID + ": observation coming more than once "
|
---|
| 632 | + prn.toLatin1(), false));
|
---|
[3535] | 633 | continue;
|
---|
| 634 | }
|
---|
[3302] | 635 | }
|
---|
[3535] | 636 | _prnLastEpo[prn] = obsTime;
|
---|
[3301] | 637 | }
|
---|
| 638 |
|
---|
[8418] | 639 |
|
---|
[3528] | 640 | decoder()->dumpRinexEpoch(obs, _format);
|
---|
| 641 |
|
---|
[5524] | 642 | // Save observations
|
---|
| 643 | // -----------------
|
---|
| 644 | obsListHlp.append(obs);
|
---|
| 645 | }
|
---|
[2030] | 646 |
|
---|
[5524] | 647 | // Emit signal
|
---|
| 648 | // -----------
|
---|
| 649 | if (!_isToBeDeleted && obsListHlp.size() > 0) {
|
---|
| 650 | emit newObs(_staID, obsListHlp);
|
---|
[249] | 651 | }
|
---|
[5524] | 652 |
|
---|
[8083] | 653 | } catch (Exception& exc) {
|
---|
[3311] | 654 | emit(newMessage(_staID + " " + exc.what(), true));
|
---|
| 655 | _isToBeDeleted = true;
|
---|
[8083] | 656 | } catch (...) {
|
---|
[3311] | 657 | emit(newMessage(_staID + " bncGetThread exception", true));
|
---|
[1559] | 658 | _isToBeDeleted = true;
|
---|
[1555] | 659 | }
|
---|
[35] | 660 | }
|
---|
| 661 | }
|
---|
| 662 |
|
---|
[7486] | 663 | // Try Re-Connect
|
---|
[136] | 664 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1555] | 665 | t_irc bncGetThread::tryReconnect() {
|
---|
| 666 |
|
---|
| 667 | // Easy Return
|
---|
| 668 | // -----------
|
---|
| 669 | if (_query && _query->status() == bncNetQuery::running) {
|
---|
| 670 | _nextSleep = 0;
|
---|
[3560] | 671 | if (_rawFile) {
|
---|
| 672 | QMapIterator<QString, GPSDecoder*> itDec(_decodersRaw);
|
---|
| 673 | while (itDec.hasNext()) {
|
---|
| 674 | itDec.next();
|
---|
| 675 | GPSDecoder* decoder = itDec.value();
|
---|
| 676 | decoder->setRinexReconnectFlag(false);
|
---|
| 677 | }
|
---|
[8083] | 678 | } else {
|
---|
[3560] | 679 | _decoder->setRinexReconnectFlag(false);
|
---|
| 680 | }
|
---|
[1555] | 681 | return success;
|
---|
[408] | 682 | }
|
---|
[1555] | 683 |
|
---|
| 684 | // Start a new query
|
---|
| 685 | // -----------------
|
---|
[2519] | 686 | if (!_rawFile) {
|
---|
[1555] | 687 |
|
---|
[138] | 688 | sleep(_nextSleep);
|
---|
[1555] | 689 | if (_nextSleep == 0) {
|
---|
| 690 | _nextSleep = 1;
|
---|
[8083] | 691 | } else {
|
---|
[1555] | 692 | _nextSleep = 2 * _nextSleep;
|
---|
[442] | 693 | if (_nextSleep > 256) {
|
---|
| 694 | _nextSleep = 256;
|
---|
[152] | 695 | }
|
---|
[1816] | 696 | #ifdef MLS_SOFTWARE
|
---|
[1817] | 697 | if (_nextSleep > 4) {
|
---|
| 698 | _nextSleep = 4;
|
---|
[1816] | 699 | }
|
---|
| 700 | #endif
|
---|
[138] | 701 | }
|
---|
[8124] | 702 | delete _query;
|
---|
[8083] | 703 | if (_ntripVersion == "U") {
|
---|
[1721] | 704 | _query = new bncNetQueryUdp();
|
---|
[8083] | 705 | } else if (_ntripVersion == "R") {
|
---|
[1555] | 706 | _query = new bncNetQueryRtp();
|
---|
[8083] | 707 | } else if (_ntripVersion == "S") {
|
---|
[1753] | 708 | _query = new bncNetQueryS();
|
---|
[8083] | 709 | } else if (_ntripVersion == "N") {
|
---|
[1621] | 710 | _query = new bncNetQueryV0();
|
---|
[8083] | 711 | } else if (_ntripVersion == "UN") {
|
---|
[1779] | 712 | _query = new bncNetQueryUdp0();
|
---|
[8083] | 713 | } else if (_ntripVersion == "2") {
|
---|
[3337] | 714 | _query = new bncNetQueryV2(false);
|
---|
[8083] | 715 | } else if (_ntripVersion == "2s") {
|
---|
[3337] | 716 | _query = new bncNetQueryV2(true);
|
---|
[8083] | 717 | } else {
|
---|
[1555] | 718 | _query = new bncNetQueryV1();
|
---|
| 719 | }
|
---|
[6770] | 720 | if (_nmea == "yes") {
|
---|
| 721 | if (_serialNMEA == MANUAL_NMEA) {
|
---|
| 722 | _query->startRequest(_mountPoint, _manualNMEAString);
|
---|
| 723 | _lastManualNMEA = QDateTime::currentDateTime();
|
---|
[8083] | 724 | } else if (_serialNMEA == AUTO_NMEA) {
|
---|
[6770] | 725 | if (_serialPort) {
|
---|
| 726 | int nb = _serialPort->bytesAvailable();
|
---|
| 727 | if (nb > 0) {
|
---|
| 728 | QByteArray data = _serialPort->read(nb);
|
---|
| 729 | int i1 = data.indexOf("$GPGGA");
|
---|
| 730 | if (i1 == -1) {
|
---|
| 731 | i1 = data.indexOf("$GNGGA");
|
---|
| 732 | }
|
---|
| 733 | if (i1 != -1) {
|
---|
| 734 | int i2 = data.indexOf("*", i1);
|
---|
| 735 | if (i2 != -1 && data.size() > i2 + 1) {
|
---|
| 736 | QByteArray gga = data.mid(i1, i2 - i1 + 3);
|
---|
| 737 | _query->startRequest(_mountPoint, gga);
|
---|
| 738 | }
|
---|
| 739 | }
|
---|
| 740 | }
|
---|
| 741 | }
|
---|
| 742 | }
|
---|
[8083] | 743 | } else {
|
---|
[1555] | 744 | _query->startRequest(_mountPoint, "");
|
---|
| 745 | }
|
---|
[6770] | 746 |
|
---|
[1555] | 747 | if (_query->status() != bncNetQuery::running) {
|
---|
| 748 | return failure;
|
---|
| 749 | }
|
---|
[138] | 750 | }
|
---|
[658] | 751 |
|
---|
[3560] | 752 | if (_rawFile) {
|
---|
| 753 | QMapIterator<QString, GPSDecoder*> itDec(_decodersRaw);
|
---|
| 754 | while (itDec.hasNext()) {
|
---|
| 755 | itDec.next();
|
---|
| 756 | GPSDecoder* decoder = itDec.value();
|
---|
| 757 | decoder->setRinexReconnectFlag(false);
|
---|
| 758 | }
|
---|
[8083] | 759 | } else {
|
---|
| 760 | _decoder->setRinexReconnectFlag(false);
|
---|
[658] | 761 | }
|
---|
[1555] | 762 |
|
---|
| 763 | return success;
|
---|
[658] | 764 | }
|
---|
[1044] | 765 |
|
---|
[1555] | 766 | // RTCM scan output
|
---|
[1044] | 767 | //////////////////////////////////////////////////////////////////////////////
|
---|
[7423] | 768 | void bncGetThread::miscScanRTCM() {
|
---|
[1044] | 769 |
|
---|
[8083] | 770 | if (!decoder()) {
|
---|
[3558] | 771 | return;
|
---|
| 772 | }
|
---|
| 773 |
|
---|
[1555] | 774 | bncSettings settings;
|
---|
[8083] | 775 | if (Qt::CheckState(settings.value("miscScanRTCM").toInt()) == Qt::Checked) {
|
---|
[1574] | 776 |
|
---|
[8083] | 777 | if (_miscMount == _staID || _miscMount == "ALL") {
|
---|
[1575] | 778 | // RTCM message types
|
---|
| 779 | // ------------------
|
---|
[4476] | 780 | for (int ii = 0; ii < decoder()->_typeList.size(); ii++) {
|
---|
[8083] | 781 | QString type = QString("%1 ").arg(decoder()->_typeList[ii]);
|
---|
| 782 | emit(newMessage(_staID + ": Received message type " + type.toAscii(),
|
---|
| 783 | true));
|
---|
[1574] | 784 | }
|
---|
[7486] | 785 |
|
---|
[4476] | 786 | // Check Observation Types
|
---|
| 787 | // -----------------------
|
---|
| 788 | for (int ii = 0; ii < decoder()->_obsList.size(); ii++) {
|
---|
[6137] | 789 | t_satObs& obs = decoder()->_obsList[ii];
|
---|
| 790 | QVector<QString>& rnxTypes = _rnxTypes[obs._prn.system()];
|
---|
[4476] | 791 | bool allFound = true;
|
---|
[6137] | 792 | for (unsigned iFrq = 0; iFrq < obs._obs.size(); iFrq++) {
|
---|
[6579] | 793 | if (obs._obs[iFrq]->_codeValid) {
|
---|
| 794 | QString rnxStr('C');
|
---|
| 795 | rnxStr.append(obs._obs[iFrq]->_rnxType2ch.c_str());
|
---|
[8083] | 796 | if (_format.indexOf("RTCM_2") != -1
|
---|
| 797 | || _format.indexOf("RTCM2") != -1
|
---|
| 798 | || _format.indexOf("RTCM 2") != -1) {
|
---|
[6580] | 799 | rnxStr = t_rnxObsFile::type3to2(obs._prn.system(), rnxStr);
|
---|
| 800 | }
|
---|
[6579] | 801 | if (rnxTypes.indexOf(rnxStr) == -1) {
|
---|
| 802 | rnxTypes.push_back(rnxStr);
|
---|
| 803 | allFound = false;
|
---|
| 804 | }
|
---|
[4476] | 805 | }
|
---|
[6579] | 806 | if (obs._obs[iFrq]->_phaseValid) {
|
---|
| 807 | QString rnxStr('L');
|
---|
| 808 | rnxStr.append(obs._obs[iFrq]->_rnxType2ch.c_str());
|
---|
[8083] | 809 | if (_format.indexOf("RTCM_2") != -1
|
---|
| 810 | || _format.indexOf("RTCM2") != -1
|
---|
| 811 | || _format.indexOf("RTCM 2") != -1) {
|
---|
[6580] | 812 | rnxStr = t_rnxObsFile::type3to2(obs._prn.system(), rnxStr);
|
---|
| 813 | }
|
---|
[6579] | 814 | if (rnxTypes.indexOf(rnxStr) == -1) {
|
---|
| 815 | rnxTypes.push_back(rnxStr);
|
---|
| 816 | allFound = false;
|
---|
| 817 | }
|
---|
| 818 | }
|
---|
[8083] | 819 | if (obs._obs[iFrq]->_dopplerValid) {
|
---|
[6579] | 820 | QString rnxStr('D');
|
---|
| 821 | rnxStr.append(obs._obs[iFrq]->_rnxType2ch.c_str());
|
---|
[8083] | 822 | if (_format.indexOf("RTCM_2") != -1
|
---|
| 823 | || _format.indexOf("RTCM2") != -1
|
---|
| 824 | || _format.indexOf("RTCM 2") != -1) {
|
---|
[6580] | 825 | rnxStr = t_rnxObsFile::type3to2(obs._prn.system(), rnxStr);
|
---|
| 826 | }
|
---|
[6579] | 827 | if (rnxTypes.indexOf(rnxStr) == -1) {
|
---|
| 828 | rnxTypes.push_back(rnxStr);
|
---|
| 829 | allFound = false;
|
---|
| 830 | }
|
---|
| 831 | }
|
---|
[8083] | 832 | if (obs._obs[iFrq]->_snrValid) {
|
---|
[6579] | 833 | QString rnxStr('S');
|
---|
| 834 | rnxStr.append(obs._obs[iFrq]->_rnxType2ch.c_str());
|
---|
[8083] | 835 | if (_format.indexOf("RTCM_2") != -1
|
---|
| 836 | || _format.indexOf("RTCM2") != -1
|
---|
| 837 | || _format.indexOf("RTCM 2") != -1) {
|
---|
[6580] | 838 | rnxStr = t_rnxObsFile::type3to2(obs._prn.system(), rnxStr);
|
---|
| 839 | }
|
---|
[6579] | 840 | if (rnxTypes.indexOf(rnxStr) == -1) {
|
---|
| 841 | rnxTypes.push_back(rnxStr);
|
---|
| 842 | allFound = false;
|
---|
| 843 | }
|
---|
| 844 | }
|
---|
[4476] | 845 | }
|
---|
| 846 | if (!allFound) {
|
---|
[7486] | 847 | QString msg;
|
---|
[4477] | 848 | QTextStream str(&msg);
|
---|
[6579] | 849 | QString s;
|
---|
[8083] | 850 | str << obs._prn.system() << " "
|
---|
| 851 | << s.sprintf("%2d", rnxTypes.size()) << " ";
|
---|
[4476] | 852 | for (int iType = 0; iType < rnxTypes.size(); iType++) {
|
---|
[4478] | 853 | str << " " << rnxTypes[iType];
|
---|
[4476] | 854 | }
|
---|
[8083] | 855 | emit(newMessage(_staID + ": Observation Types: " + msg.toAscii(),
|
---|
| 856 | true));
|
---|
[4476] | 857 | }
|
---|
| 858 | }
|
---|
| 859 |
|
---|
[1574] | 860 | // RTCMv3 antenna descriptor
|
---|
| 861 | // -------------------------
|
---|
[4476] | 862 | for (int ii = 0; ii < decoder()->_antType.size(); ii++) {
|
---|
[8083] | 863 | QString ant1 = QString("%1 ").arg(decoder()->_antType[ii]);
|
---|
[1574] | 864 | emit(newMessage(_staID + ": Antenna descriptor " + ant1.toAscii(), true));
|
---|
| 865 | }
|
---|
[1555] | 866 |
|
---|
[1575] | 867 | // RTCM Antenna Coordinates
|
---|
| 868 | // ------------------------
|
---|
[8083] | 869 | for (int ii = 0; ii < decoder()->_antList.size(); ii++) {
|
---|
[1574] | 870 | QByteArray antT;
|
---|
[8083] | 871 | if (decoder()->_antList[ii].type == GPSDecoder::t_antInfo::ARP) {
|
---|
[1574] | 872 | antT = "ARP";
|
---|
[8083] | 873 | } else if (decoder()->_antList[ii].type == GPSDecoder::t_antInfo::APC) {
|
---|
[1574] | 874 | antT = "APC";
|
---|
| 875 | }
|
---|
[1575] | 876 | QByteArray ant1, ant2, ant3;
|
---|
[8083] | 877 | ant1 =
|
---|
| 878 | QString("%1 ").arg(decoder()->_antList[ii].xx, 0, 'f', 4).toAscii();
|
---|
| 879 | ant2 =
|
---|
| 880 | QString("%1 ").arg(decoder()->_antList[ii].yy, 0, 'f', 4).toAscii();
|
---|
| 881 | ant3 =
|
---|
| 882 | QString("%1 ").arg(decoder()->_antList[ii].zz, 0, 'f', 4).toAscii();
|
---|
[1575] | 883 | emit(newMessage(_staID + ": " + antT + " (ITRF) X " + ant1 + "m", true));
|
---|
| 884 | emit(newMessage(_staID + ": " + antT + " (ITRF) Y " + ant2 + "m", true));
|
---|
| 885 | emit(newMessage(_staID + ": " + antT + " (ITRF) Z " + ant3 + "m", true));
|
---|
[3595] | 886 | double hh = 0.0;
|
---|
[3523] | 887 | if (decoder()->_antList[ii].height_f) {
|
---|
[3595] | 888 | hh = decoder()->_antList[ii].height;
|
---|
[8083] | 889 | QByteArray ant4 = QString("%1 ").arg(hh, 0, 'f', 4).toAscii();
|
---|
| 890 | emit(newMessage(
|
---|
| 891 | _staID + ": Antenna height above marker " + ant4 + "m", true));
|
---|
[1575] | 892 | }
|
---|
[7486] | 893 | emit(newAntCrd(_staID, decoder()->_antList[ii].xx,
|
---|
[8083] | 894 | decoder()->_antList[ii].yy, decoder()->_antList[ii].zz, hh, antT));
|
---|
[1218] | 895 | }
|
---|
[6864] | 896 |
|
---|
[8200] | 897 | // RTCMv3 receiver descriptor
|
---|
| 898 | // --------------------------
|
---|
| 899 | for (int ii = 0; ii < decoder()->_recType.size(); ii++) {
|
---|
| 900 | QString rec1 = QString("%1 ").arg(decoder()->_recType[ii]);
|
---|
| 901 | emit(newMessage(_staID + ": Receiver descriptor " + rec1.toLatin1(), true));
|
---|
| 902 | }
|
---|
| 903 |
|
---|
[6864] | 904 | // RTCM GLONASS slots
|
---|
| 905 | // ------------------
|
---|
| 906 | if (decoder()->_gloFrq.size()) {
|
---|
| 907 | bool allFound = true;
|
---|
| 908 | QString slot = decoder()->_gloFrq;
|
---|
[8083] | 909 | slot.replace(" ", " ").replace(" ", ":");
|
---|
[6864] | 910 | if (_gloSlots.indexOf(slot) == -1) {
|
---|
| 911 | _gloSlots.append(slot);
|
---|
| 912 | allFound = false;
|
---|
| 913 | }
|
---|
| 914 | if (!allFound) {
|
---|
| 915 | _gloSlots.sort();
|
---|
[8083] | 916 | emit(newMessage(
|
---|
| 917 | _staID + ": GLONASS Slot:Freq " + _gloSlots.join(" ").toAscii(),
|
---|
| 918 | true));
|
---|
[6864] | 919 | }
|
---|
| 920 | }
|
---|
[1218] | 921 | }
|
---|
[1044] | 922 | }
|
---|
[1575] | 923 |
|
---|
[1770] | 924 | #ifdef MLS_SOFTWARE
|
---|
[3523] | 925 | for (int ii=0; ii <decoder()->_antList.size(); ii++) {
|
---|
[8083] | 926 | QByteArray antT;
|
---|
| 927 | if (decoder()->_antList[ii].type == GPSDecoder::t_antInfo::ARP) {
|
---|
| 928 | antT = "ARP";
|
---|
| 929 | }
|
---|
| 930 | else if (decoder()->_antList[ii].type == GPSDecoder::t_antInfo::APC) {
|
---|
| 931 | antT = "APC";
|
---|
| 932 | }
|
---|
| 933 | double hh = 0.0;
|
---|
| 934 | if (decoder()->_antList[ii].height_f) {
|
---|
| 935 | hh = decoder()->_antList[ii].height;
|
---|
| 936 | }
|
---|
| 937 | emit(newAntCrd(_staID, decoder()->_antList[ii].xx,
|
---|
| 938 | decoder()->_antList[ii].yy, decoder()->_antList[ii].zz,
|
---|
| 939 | hh, antT));
|
---|
[1770] | 940 | }
|
---|
[2356] | 941 |
|
---|
[3523] | 942 | for (int ii = 0; ii <decoder()->_typeList.size(); ii++) {
|
---|
| 943 | emit(newRTCMMessage(_staID, decoder()->_typeList[ii]));
|
---|
[2356] | 944 | }
|
---|
[1770] | 945 | #endif
|
---|
| 946 |
|
---|
[6864] | 947 | decoder()->_gloFrq.clear();
|
---|
[3523] | 948 | decoder()->_typeList.clear();
|
---|
| 949 | decoder()->_antType.clear();
|
---|
[8200] | 950 | decoder()->_recType.clear();
|
---|
[3523] | 951 | decoder()->_antList.clear();
|
---|
[1044] | 952 | }
|
---|
[1555] | 953 |
|
---|
[1606] | 954 | // Handle Data from Serial Port
|
---|
| 955 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 956 | void bncGetThread::slotSerialReadyRead() {
|
---|
[6770] | 957 |
|
---|
[1607] | 958 | if (_serialPort) {
|
---|
[6770] | 959 |
|
---|
[6773] | 960 | if (_nmea == "yes" && _serialNMEA == MANUAL_NMEA) {
|
---|
| 961 | if (_manualNMEASampl) {
|
---|
| 962 | int dt = _lastManualNMEA.secsTo(QDateTime::currentDateTime());
|
---|
| 963 | if (dt && (fmod(double(dt), double(_manualNMEASampl)) == 0.0)) {
|
---|
| 964 | _query->sendNMEA(_manualNMEAString);
|
---|
| 965 | _lastManualNMEA = QDateTime::currentDateTime();
|
---|
| 966 | }
|
---|
| 967 | }
|
---|
| 968 | }
|
---|
| 969 |
|
---|
[1633] | 970 | int nb = _serialPort->bytesAvailable();
|
---|
| 971 | if (nb > 0) {
|
---|
| 972 | QByteArray data = _serialPort->read(nb);
|
---|
[1711] | 973 |
|
---|
[6695] | 974 | if (_nmea == "yes" && _serialNMEA == AUTO_NMEA) {
|
---|
[1725] | 975 | int i1 = data.indexOf("$GPGGA");
|
---|
[6651] | 976 | if (i1 == -1) {
|
---|
| 977 | i1 = data.indexOf("$GNGGA");
|
---|
| 978 | }
|
---|
[1725] | 979 | if (i1 != -1) {
|
---|
[6751] | 980 | int i2 = data.indexOf("*", i1);
|
---|
[1725] | 981 | if (i2 != -1 && data.size() > i2 + 1) {
|
---|
[6751] | 982 | QByteArray gga = data.mid(i1, i2 - i1 + 3);
|
---|
[1725] | 983 | _query->sendNMEA(gga);
|
---|
[6751] | 984 | }
|
---|
| 985 | }
|
---|
[1711] | 986 | }
|
---|
| 987 |
|
---|
[1633] | 988 | if (_serialOutFile) {
|
---|
| 989 | _serialOutFile->write(data);
|
---|
| 990 | _serialOutFile->flush();
|
---|
| 991 | }
|
---|
[1607] | 992 | }
|
---|
| 993 | }
|
---|
[1606] | 994 | }
|
---|
[7180] | 995 |
|
---|
| 996 | void bncGetThread::slotNewNMEAConnection() {
|
---|
| 997 | _nmeaSockets->push_back(_nmeaServer->nextPendingConnection());
|
---|
[8083] | 998 | emit(newMessage(
|
---|
| 999 | QString("New PPP client on port: # %1").arg(_nmeaSockets->size()).toAscii(),
|
---|
| 1000 | true));
|
---|
[7180] | 1001 | }
|
---|
| 1002 |
|
---|
| 1003 | //
|
---|
| 1004 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 1005 | void bncGetThread::slotNewNMEAstr(QByteArray staID, QByteArray str) {
|
---|
| 1006 | if (_nmeaPortsMap.contains(staID)) {
|
---|
| 1007 | int nmeaPort = _nmeaPortsMap.value(staID);
|
---|
| 1008 | QMutableListIterator<QTcpSocket*> is(*_nmeaSockets);
|
---|
| 1009 | while (is.hasNext()) {
|
---|
| 1010 | QTcpSocket* sock = is.next();
|
---|
| 1011 | if (sock->localPort() == nmeaPort) {
|
---|
| 1012 | if (sock->state() == QAbstractSocket::ConnectedState) {
|
---|
| 1013 | sock->write(str);
|
---|
[8083] | 1014 | } else if (sock->state() != QAbstractSocket::ConnectingState) {
|
---|
[7180] | 1015 | delete sock;
|
---|
| 1016 | is.remove();
|
---|
| 1017 | }
|
---|
| 1018 | }
|
---|
| 1019 | }
|
---|
| 1020 | }
|
---|
| 1021 | }
|
---|