| [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 | #ifndef BNCGETTHREAD_H
|
|---|
| 26 | #define BNCGETTHREAD_H
|
|---|
| 27 |
|
|---|
| 28 | #include <QThread>
|
|---|
| 29 | #include <QtNetwork>
|
|---|
| [651] | 30 | #include <QDateTime>
|
|---|
| [1137] | 31 | #include <QFile>
|
|---|
| [35] | 32 |
|
|---|
| 33 | #include "RTCM/GPSDecoder.h"
|
|---|
| [1044] | 34 | #include "RTCM3/rtcm3torinex.h"
|
|---|
| [138] | 35 | #include "bncconst.h"
|
|---|
| [35] | 36 |
|
|---|
| [408] | 37 | class bncRinex;
|
|---|
| [1319] | 38 | class QextSerialPort;
|
|---|
| [1377] | 39 | class bncNetQuery;
|
|---|
| [1558] | 40 | class latencyChecker;
|
|---|
| [408] | 41 |
|
|---|
| [35] | 42 | class bncGetThread : public QThread {
|
|---|
| 43 | Q_OBJECT
|
|---|
| 44 |
|
|---|
| 45 | public:
|
|---|
| [1138] | 46 | bncGetThread(const QByteArray& rawInpFileName, const QByteArray& format);
|
|---|
| [278] | 47 | bncGetThread(const QUrl& mountPoint,
|
|---|
| [366] | 48 | const QByteArray& format,
|
|---|
| 49 | const QByteArray& latitude,
|
|---|
| 50 | const QByteArray& longitude,
|
|---|
| [1353] | 51 | const QByteArray& nmea,
|
|---|
| [1770] | 52 | const QByteArray& ntripVersion, const QByteArray& extraStaID);
|
|---|
| [1138] | 53 |
|
|---|
| [1525] | 54 | protected:
|
|---|
| [35] | 55 | ~bncGetThread();
|
|---|
| 56 |
|
|---|
| [1525] | 57 | public:
|
|---|
| [1390] | 58 | void terminate();
|
|---|
| 59 |
|
|---|
| [88] | 60 | QByteArray staID() const {return _staID;}
|
|---|
| [1163] | 61 | QUrl mountPoint() const {return _mountPoint;}
|
|---|
| 62 | QByteArray latitude() const {return _latitude;}
|
|---|
| 63 | QByteArray longitude() const {return _longitude;}
|
|---|
| [1423] | 64 | QByteArray ntripVersion() const {return _ntripVersion;}
|
|---|
| [88] | 65 |
|
|---|
| [35] | 66 | signals:
|
|---|
| [628] | 67 | void newBytes(QByteArray staID, double nbyte);
|
|---|
| 68 | void newObs(QByteArray staID, bool firstObs, p_obs obs);
|
|---|
| [1271] | 69 | void newAntCrd(QByteArray staID, double xx, double yy, double zz, QByteArray antType);
|
|---|
| [1299] | 70 | void newMessage(QByteArray msg, bool showOnScreen);
|
|---|
| [1556] | 71 | void getThreadFinished(QByteArray staID);
|
|---|
| [35] | 72 |
|
|---|
| 73 | protected:
|
|---|
| 74 | virtual void run();
|
|---|
| [138] | 75 |
|
|---|
| [1768] | 76 | public slots:
|
|---|
| 77 | void slotNewEphGPS(gpsephemeris gpseph);
|
|---|
| 78 |
|
|---|
| [1607] | 79 | private slots:
|
|---|
| 80 | void slotSerialReadyRead();
|
|---|
| 81 |
|
|---|
| [35] | 82 | private:
|
|---|
| [1710] | 83 | enum t_serialNMEA {NO_NMEA, MANUAL_NMEA, AUTO_NMEA};
|
|---|
| 84 |
|
|---|
| [1140] | 85 | void initialize();
|
|---|
| [1555] | 86 | t_irc tryReconnect();
|
|---|
| 87 | void scanRTCM();
|
|---|
| 88 |
|
|---|
| 89 | GPSDecoder* _decoder;
|
|---|
| 90 | bncNetQuery* _query;
|
|---|
| 91 | QUrl _mountPoint;
|
|---|
| 92 | QByteArray _staID;
|
|---|
| 93 | QByteArray _staID_orig;
|
|---|
| 94 | QByteArray _format;
|
|---|
| 95 | QByteArray _latitude;
|
|---|
| 96 | QByteArray _longitude;
|
|---|
| [1595] | 97 | QByteArray _height;
|
|---|
| [1555] | 98 | QByteArray _nmea;
|
|---|
| 99 | QByteArray _ntripVersion;
|
|---|
| 100 | int _nextSleep;
|
|---|
| 101 | int _iMount;
|
|---|
| 102 | int _samplingRate;
|
|---|
| 103 | bncRinex* _rnx;
|
|---|
| 104 | QFile* _rawOutFile;
|
|---|
| 105 | QFile* _rawInpFile;
|
|---|
| [1319] | 106 | QextSerialPort* _serialPort;
|
|---|
| [1555] | 107 | bool _isToBeDeleted;
|
|---|
| [1557] | 108 | latencyChecker* _latencyChecker;
|
|---|
| [1576] | 109 | QString _miscMount;
|
|---|
| [1607] | 110 | QFile* _serialOutFile;
|
|---|
| [1710] | 111 | t_serialNMEA _serialNMEA;
|
|---|
| [1768] | 112 | QMutex _mutex;
|
|---|
| [35] | 113 | };
|
|---|
| 114 |
|
|---|
| 115 | #endif
|
|---|