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

Last change on this file since 3510 was 3510, checked in by mervart, 12 years ago
File size: 3.8 KB
RevLine 
[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"
[2492]34#include "rtcm3torinex.h"
[138]35#include "bncconst.h"
[1812]36#include "bncnetquery.h"
[2142]37#include "bnctime.h"
[2519]38#include "bncrawfile.h"
[35]39
[408]40class bncRinex;
[1319]41class QextSerialPort;
[1558]42class latencyChecker;
[2035]43class bncPPPclient;
[408]44
[35]45class bncGetThread : public QThread {
46 Q_OBJECT
47
48 public:
[2519]49 bncGetThread(bncRawFile* rawFile);
[278]50 bncGetThread(const QUrl& mountPoint,
[366]51 const QByteArray& format,
52 const QByteArray& latitude,
53 const QByteArray& longitude,
[1353]54 const QByteArray& nmea,
[3494]55 const QByteArray& ntripVersion,
56 const QByteArray& staIDextra = "");
[1138]57
[1812]58 bncNetQuery::queryStatus queryStatus() {
59 if (_query) {
60 return _query->status();
61 }
62 else {
63 return bncNetQuery::init;
64 }
65 }
66
[1525]67 protected:
[35]68 ~bncGetThread();
69
[1525]70 public:
[1390]71 void terminate();
72
[88]73 QByteArray staID() const {return _staID;}
[3510]74 QByteArray staIDextra() const {return _staID_extra;}
[1163]75 QUrl mountPoint() const {return _mountPoint;}
76 QByteArray latitude() const {return _latitude;}
77 QByteArray longitude() const {return _longitude;}
[1423]78 QByteArray ntripVersion() const {return _ntripVersion;}
[88]79
[35]80 signals:
[628]81 void newBytes(QByteArray staID, double nbyte);
[1974]82 void newLatency(QByteArray staID, double clate);
[2711]83 void newObs(QByteArray staID, bool firstObs, t_obs obs);
[1271]84 void newAntCrd(QByteArray staID, double xx, double yy, double zz, QByteArray antType);
[1299]85 void newMessage(QByteArray msg, bool showOnScreen);
[2356]86 void newRTCMMessage(QByteArray staID, int msgID);
[1556]87 void getThreadFinished(QByteArray staID);
[2145]88 void newPosition(bncTime time, double x, double y, double z);
[2182]89 void newNMEAstr(QByteArray str);
[35]90
[2528]91 public:
[35]92 virtual void run();
[138]93
[1768]94 public slots:
95 void slotNewEphGPS(gpsephemeris gpseph);
96
[1607]97 private slots:
98 void slotSerialReadyRead();
99
[35]100 private:
[1710]101 enum t_serialNMEA {NO_NMEA, MANUAL_NMEA, AUTO_NMEA};
102
[1140]103 void initialize();
[1555]104 t_irc tryReconnect();
105 void scanRTCM();
106
107 GPSDecoder* _decoder;
108 bncNetQuery* _query;
109 QUrl _mountPoint;
110 QByteArray _staID;
[3494]111 QByteArray _staID_extra;
[1555]112 QByteArray _format;
113 QByteArray _latitude;
114 QByteArray _longitude;
[1595]115 QByteArray _height;
[1555]116 QByteArray _nmea;
117 QByteArray _ntripVersion;
118 int _nextSleep;
119 int _iMount;
120 int _samplingRate;
121 bncRinex* _rnx;
[2519]122 bncRawFile* _rawFile;
[1319]123 QextSerialPort* _serialPort;
[1555]124 bool _isToBeDeleted;
[1557]125 latencyChecker* _latencyChecker;
[1576]126 QString _miscMount;
[1607]127 QFile* _serialOutFile;
[1710]128 t_serialNMEA _serialNMEA;
[1768]129 QMutex _mutex;
[2035]130 bncPPPclient* _PPPclient;
[2386]131 bool _rawOutput;
[3303]132 QMap<QString, long> _prnLastEpo;
[35]133};
134
135#endif
Note: See TracBrowser for help on using the repository browser.