| 1 | // Part of BNC, a utility for retrieving decoding and | 
|---|
| 2 | // converting GNSS data streams from NTRIP broadcasters. | 
|---|
| 3 | // | 
|---|
| 4 | // Copyright (C) 2007 | 
|---|
| 5 | // German Federal Agency for Cartography and Geodesy (BKG) | 
|---|
| 6 | // http://www.bkg.bund.de | 
|---|
| 7 | // Czech Technical University Prague, Department of Geodesy | 
|---|
| 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. | 
|---|
| 24 |  | 
|---|
| 25 | #ifndef BNCGETTHREAD_H | 
|---|
| 26 | #define BNCGETTHREAD_H | 
|---|
| 27 |  | 
|---|
| 28 | #include <QThread> | 
|---|
| 29 | #include <QtNetwork> | 
|---|
| 30 | #include <QDateTime> | 
|---|
| 31 | #include <QFile> | 
|---|
| 32 |  | 
|---|
| 33 | #include "RTCM/GPSDecoder.h" | 
|---|
| 34 | #include "RTCM3/rtcm3torinex.h" | 
|---|
| 35 | #include "bncconst.h" | 
|---|
| 36 |  | 
|---|
| 37 | class bncRinex; | 
|---|
| 38 | class QextSerialPort; | 
|---|
| 39 | class bncNetQuery; | 
|---|
| 40 | class latencyChecker; | 
|---|
| 41 |  | 
|---|
| 42 | class bncGetThread : public QThread { | 
|---|
| 43 | Q_OBJECT | 
|---|
| 44 |  | 
|---|
| 45 | public: | 
|---|
| 46 | bncGetThread(const QByteArray&  rawInpFileName, const QByteArray& format); | 
|---|
| 47 | bncGetThread(const QUrl& mountPoint, | 
|---|
| 48 | const QByteArray& format, | 
|---|
| 49 | const QByteArray& latitude, | 
|---|
| 50 | const QByteArray& longitude, | 
|---|
| 51 | const QByteArray& nmea, | 
|---|
| 52 | const QByteArray& ntripVersion, int iMount); | 
|---|
| 53 |  | 
|---|
| 54 | protected: | 
|---|
| 55 | ~bncGetThread(); | 
|---|
| 56 |  | 
|---|
| 57 | public: | 
|---|
| 58 | void terminate(); | 
|---|
| 59 |  | 
|---|
| 60 | QByteArray staID() const {return _staID;} | 
|---|
| 61 | QUrl       mountPoint() const {return _mountPoint;} | 
|---|
| 62 | QByteArray latitude() const {return _latitude;} | 
|---|
| 63 | QByteArray longitude() const {return _longitude;} | 
|---|
| 64 | QByteArray ntripVersion() const {return _ntripVersion;} | 
|---|
| 65 |  | 
|---|
| 66 | signals: | 
|---|
| 67 | void newBytes(QByteArray staID, double nbyte); | 
|---|
| 68 | void newObs(QByteArray staID, bool firstObs, p_obs obs); | 
|---|
| 69 | void newAntCrd(QByteArray staID, double xx, double yy, double zz, QByteArray antType); | 
|---|
| 70 | void newMessage(QByteArray msg, bool showOnScreen); | 
|---|
| 71 | void getThreadFinished(QByteArray staID); | 
|---|
| 72 |  | 
|---|
| 73 | protected: | 
|---|
| 74 | virtual void run(); | 
|---|
| 75 |  | 
|---|
| 76 | private slots: | 
|---|
| 77 | void slotSerialReadyRead(); | 
|---|
| 78 |  | 
|---|
| 79 | private: | 
|---|
| 80 | enum t_serialNMEA {NO_NMEA, MANUAL_NMEA, AUTO_NMEA}; | 
|---|
| 81 |  | 
|---|
| 82 | void  initialize(); | 
|---|
| 83 | t_irc tryReconnect(); | 
|---|
| 84 | void  scanRTCM(); | 
|---|
| 85 |  | 
|---|
| 86 | GPSDecoder*     _decoder; | 
|---|
| 87 | bncNetQuery*    _query; | 
|---|
| 88 | QUrl            _mountPoint; | 
|---|
| 89 | QByteArray      _staID; | 
|---|
| 90 | QByteArray      _staID_orig; | 
|---|
| 91 | QByteArray      _format; | 
|---|
| 92 | QByteArray      _latitude; | 
|---|
| 93 | QByteArray      _longitude; | 
|---|
| 94 | QByteArray      _height; | 
|---|
| 95 | QByteArray      _nmea; | 
|---|
| 96 | QByteArray      _ntripVersion; | 
|---|
| 97 | int             _nextSleep; | 
|---|
| 98 | int             _iMount; | 
|---|
| 99 | int             _samplingRate; | 
|---|
| 100 | bncRinex*       _rnx; | 
|---|
| 101 | QFile*          _rawOutFile; | 
|---|
| 102 | QFile*          _rawInpFile; | 
|---|
| 103 | QextSerialPort* _serialPort; | 
|---|
| 104 | bool            _isToBeDeleted; | 
|---|
| 105 | latencyChecker* _latencyChecker; | 
|---|
| 106 | QString         _miscMount; | 
|---|
| 107 | QFile*          _serialOutFile; | 
|---|
| 108 | t_serialNMEA    _serialNMEA; | 
|---|
| 109 | }; | 
|---|
| 110 |  | 
|---|
| 111 | #endif | 
|---|