source: ntrip/trunk/BNC/src/bncgetthread.cpp@ 7859

Last change on this file since 7859 was 7859, checked in by stuerze, 8 years ago

minor changes to allow a complete end of program only in debug + command line mode

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