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