source: ntrip/trunk/BNC/bncgetthread.h@ 1557

Last change on this file since 1557 was 1557, checked in by mervart, 15 years ago

* empty log message *

File size: 4.4 KB
Line 
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
37class bncRinex;
38class QextSerialPort;
39class bncNetQuery;
40
41class bncGetThread : public QThread {
42 Q_OBJECT
43
44 public:
45 bncGetThread(const QByteArray& rawInpFileName, const QByteArray& format);
46 bncGetThread(const QUrl& mountPoint,
47 const QByteArray& format,
48 const QByteArray& latitude,
49 const QByteArray& longitude,
50 const QByteArray& nmea,
51 const QByteArray& ntripVersion, int iMount);
52
53 protected:
54 ~bncGetThread();
55
56 public:
57 void terminate();
58
59 QByteArray staID() const {return _staID;}
60 QUrl mountPoint() const {return _mountPoint;}
61 QByteArray latitude() const {return _latitude;}
62 QByteArray longitude() const {return _longitude;}
63 QByteArray ntripVersion() const {return _ntripVersion;}
64
65 signals:
66 void newBytes(QByteArray staID, double nbyte);
67 void newObs(QByteArray staID, bool firstObs, p_obs obs);
68 void newAntCrd(QByteArray staID, double xx, double yy, double zz, QByteArray antType);
69 void newMessage(QByteArray msg, bool showOnScreen);
70 void getThreadFinished(QByteArray staID);
71
72 protected:
73 virtual void run();
74
75 private:
76
77 class latencyChecker : public QObject {
78 Q_OBJECT
79 public:
80 latencyChecker(QByteArray staID);
81 ~latencyChecker();
82 void check(GPSDecoder* decoder);
83 signals:
84 void newMessage(QByteArray msg, bool showOnScreen);
85 private:
86 void callScript(const char* comment);
87 int _inspSegm;
88 int _adviseFail;
89 int _adviseReco;
90 int _perfIntr;
91 int _numSucc;
92 int _secSucc;
93 int _secFail;
94 int _initPause;
95 int _currPause;
96 int _oldSecGPS;
97 int _newSecGPS;
98 int _numGaps;
99 int _diffSecGPS;
100 int _numLat;
101 bool _makePause;
102 bool _wrongEpoch;
103 bool _decode;
104 bool _begCorrupt;
105 bool _endCorrupt;
106 bool _followSec;
107 double _maxDt;
108 double _sumLat;
109 double _sumLatQ;
110 double _meanDiff;
111 double _minLat;
112 double _maxLat;
113 double _curLat;
114 QByteArray _staID;
115 QString _adviseScript;
116 QString _checkMountPoint;
117 QString _begDateCor;
118 QString _begTimeCor;
119 QString _begDateOut;
120 QString _begTimeOut;
121 QString _endDateCor;
122 QString _endTimeCor;
123 QString _endDateOut;
124 QString _endTimeOut;
125 QDateTime _decodeTime;
126 QDateTime _decodeSucc;
127 QDateTime _decodeFailure;
128 QDateTime _decodeStart;
129 QDateTime _decodeStop;
130 QDateTime _decodePause;
131 };
132
133 void initialize();
134 t_irc tryReconnect();
135 void scanRTCM();
136
137 GPSDecoder* _decoder;
138 bncNetQuery* _query;
139 QUrl _mountPoint;
140 QByteArray _staID;
141 QByteArray _staID_orig;
142 QByteArray _format;
143 QByteArray _latitude;
144 QByteArray _longitude;
145 QByteArray _nmea;
146 QByteArray _ntripVersion;
147 int _nextSleep;
148 int _iMount;
149 int _samplingRate;
150 bncRinex* _rnx;
151 QFile* _rawOutFile;
152 QFile* _rawInpFile;
153 QextSerialPort* _serialPort;
154 bool _isToBeDeleted;
155 latencyChecker* _latencyChecker;
156};
157
158#endif
Note: See TracBrowser for help on using the repository browser.