[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;
|
---|
[408] | 40 |
|
---|
[35] | 41 | class bncGetThread : public QThread {
|
---|
| 42 | Q_OBJECT
|
---|
| 43 |
|
---|
| 44 | public:
|
---|
[1138] | 45 | bncGetThread(const QByteArray& rawInpFileName, const QByteArray& format);
|
---|
[278] | 46 | bncGetThread(const QUrl& mountPoint,
|
---|
[366] | 47 | const QByteArray& format,
|
---|
| 48 | const QByteArray& latitude,
|
---|
| 49 | const QByteArray& longitude,
|
---|
[1353] | 50 | const QByteArray& nmea,
|
---|
| 51 | const QByteArray& ntripVersion, int iMount);
|
---|
[1138] | 52 |
|
---|
[35] | 53 | ~bncGetThread();
|
---|
| 54 |
|
---|
[1390] | 55 | void terminate();
|
---|
| 56 |
|
---|
[88] | 57 | QByteArray staID() const {return _staID;}
|
---|
[1163] | 58 | QUrl mountPoint() const {return _mountPoint;}
|
---|
| 59 | QByteArray latitude() const {return _latitude;}
|
---|
| 60 | QByteArray longitude() const {return _longitude;}
|
---|
[1423] | 61 | QByteArray ntripVersion() const {return _ntripVersion;}
|
---|
[88] | 62 |
|
---|
[35] | 63 | signals:
|
---|
[628] | 64 | void newBytes(QByteArray staID, double nbyte);
|
---|
| 65 | void newObs(QByteArray staID, bool firstObs, p_obs obs);
|
---|
[1271] | 66 | void newAntCrd(QByteArray staID, double xx, double yy, double zz, QByteArray antType);
|
---|
[628] | 67 | void error(QByteArray staID);
|
---|
[1299] | 68 | void newMessage(QByteArray msg, bool showOnScreen);
|
---|
[35] | 69 |
|
---|
[1044] | 70 | public slots:
|
---|
| 71 | void slotNewEphGPS(gpsephemeris gpseph);
|
---|
| 72 |
|
---|
[35] | 73 | protected:
|
---|
| 74 | virtual void run();
|
---|
[138] | 75 |
|
---|
[35] | 76 | private:
|
---|
[1140] | 77 | void initialize();
|
---|
[138] | 78 | t_irc initRun();
|
---|
| 79 | void message(const QString&);
|
---|
| 80 | void exit(int exitCode = 0);
|
---|
| 81 | void tryReconnect();
|
---|
[658] | 82 | void callScript(const char* _comment);
|
---|
[136] | 83 | GPSDecoder* _decoder;
|
---|
[1377] | 84 | bncNetQuery* _query;
|
---|
[88] | 85 | QUrl _mountPoint;
|
---|
| 86 | QByteArray _staID;
|
---|
[255] | 87 | QByteArray _staID_orig;
|
---|
[59] | 88 | QByteArray _format;
|
---|
[366] | 89 | QByteArray _latitude;
|
---|
| 90 | QByteArray _longitude;
|
---|
| 91 | QByteArray _nmea;
|
---|
[1353] | 92 | QByteArray _ntripVersion;
|
---|
[668] | 93 | QString _adviseScript;
|
---|
[696] | 94 | QString _begDateCor;
|
---|
| 95 | QString _begTimeCor;
|
---|
| 96 | QString _begDateOut;
|
---|
| 97 | QString _begTimeOut;
|
---|
| 98 | QString _endDateCor;
|
---|
| 99 | QString _endTimeCor;
|
---|
| 100 | QString _endDateOut;
|
---|
| 101 | QString _endTimeOut;
|
---|
[1030] | 102 | QString _checkMountPoint;
|
---|
[723] | 103 | bool _makePause;
|
---|
[686] | 104 | int _obsRate;
|
---|
[658] | 105 | int _inspSegm;
|
---|
[668] | 106 | int _adviseFail;
|
---|
| 107 | int _adviseReco;
|
---|
[728] | 108 | int _perfIntr;
|
---|
[136] | 109 | int _timeOut;
|
---|
[138] | 110 | int _nextSleep;
|
---|
[278] | 111 | int _iMount;
|
---|
[408] | 112 | int _samplingRate;
|
---|
| 113 | bncRinex* _rnx;
|
---|
[1044] | 114 | bool _rnx_set_position;
|
---|
[651] | 115 | QDateTime _decodeFailure;
|
---|
[658] | 116 | QDateTime _decodeStart;
|
---|
| 117 | QDateTime _decodeStop;
|
---|
| 118 | QDateTime _decodePause;
|
---|
| 119 | QDateTime _decodeTime;
|
---|
[699] | 120 | QDateTime _decodeSucc;
|
---|
[672] | 121 | QMutex _mutex;
|
---|
[1138] | 122 | QFile* _rawOutFile;
|
---|
| 123 | QFile* _rawInpFile;
|
---|
[1319] | 124 | QextSerialPort* _serialPort;
|
---|
[35] | 125 | };
|
---|
| 126 |
|
---|
| 127 | #endif
|
---|