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

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

* empty log message *

File size: 3.6 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 bncSocket;
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 ~bncGetThread();
54
55 QByteArray staID() const {return _staID;}
56 QUrl mountPoint() const {return _mountPoint;}
57 QByteArray latitude() const {return _latitude;}
58 QByteArray longitude() const {return _longitude;}
59
60 signals:
61 void newBytes(QByteArray staID, double nbyte);
62 void newObs(QByteArray staID, bool firstObs, p_obs obs);
63 void newAntCrd(QByteArray staID, double xx, double yy, double zz, QByteArray antType);
64 void error(QByteArray staID);
65 void newMessage(QByteArray msg, bool showOnScreen);
66
67 public slots:
68 void slotNewEphGPS(gpsephemeris gpseph);
69
70 protected:
71 virtual void run();
72
73 private:
74 void initialize();
75 t_irc initRun();
76 void message(const QString&);
77 void exit(int exitCode = 0);
78 void tryReconnect();
79 void callScript(const char* _comment);
80 GPSDecoder* _decoder;
81 bncSocket* _socket;
82 QUrl _mountPoint;
83 QByteArray _staID;
84 QByteArray _staID_orig;
85 QByteArray _format;
86 QByteArray _latitude;
87 QByteArray _longitude;
88 QByteArray _nmea;
89 QByteArray _ntripVersion;
90 QString _adviseScript;
91 QString _begDateCor;
92 QString _begTimeCor;
93 QString _begDateOut;
94 QString _begTimeOut;
95 QString _endDateCor;
96 QString _endTimeCor;
97 QString _endDateOut;
98 QString _endTimeOut;
99 QString _checkMountPoint;
100 bool _makePause;
101 int _obsRate;
102 int _inspSegm;
103 int _adviseFail;
104 int _adviseReco;
105 int _perfIntr;
106 int _timeOut;
107 int _nextSleep;
108 int _iMount;
109 int _samplingRate;
110 bncRinex* _rnx;
111 bool _rnx_set_position;
112 QDateTime _decodeFailure;
113 QDateTime _decodeStart;
114 QDateTime _decodeStop;
115 QDateTime _decodePause;
116 QDateTime _decodeTime;
117 QDateTime _decodeSucc;
118 QMutex _mutex;
119 QFile* _rawOutFile;
120 QFile* _rawInpFile;
121 QextSerialPort* _serialPort;
122};
123
124#endif
Note: See TracBrowser for help on using the repository browser.