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

Last change on this file since 3502 was 3494, checked in by mervart, 13 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;}
[1163]74 QUrl mountPoint() const {return _mountPoint;}
75 QByteArray latitude() const {return _latitude;}
76 QByteArray longitude() const {return _longitude;}
[1423]77 QByteArray ntripVersion() const {return _ntripVersion;}
[88]78
[35]79 signals:
[628]80 void newBytes(QByteArray staID, double nbyte);
[1974]81 void newLatency(QByteArray staID, double clate);
[2711]82 void newObs(QByteArray staID, bool firstObs, t_obs obs);
[1271]83 void newAntCrd(QByteArray staID, double xx, double yy, double zz, QByteArray antType);
[1299]84 void newMessage(QByteArray msg, bool showOnScreen);
[2356]85 void newRTCMMessage(QByteArray staID, int msgID);
[1556]86 void getThreadFinished(QByteArray staID);
[2145]87 void newPosition(bncTime time, double x, double y, double z);
[2182]88 void newNMEAstr(QByteArray str);
[35]89
[2528]90 public:
[35]91 virtual void run();
[138]92
[1768]93 public slots:
94 void slotNewEphGPS(gpsephemeris gpseph);
95
[1607]96 private slots:
97 void slotSerialReadyRead();
98
[35]99 private:
[1710]100 enum t_serialNMEA {NO_NMEA, MANUAL_NMEA, AUTO_NMEA};
101
[1140]102 void initialize();
[1555]103 t_irc tryReconnect();
104 void scanRTCM();
105
106 GPSDecoder* _decoder;
107 bncNetQuery* _query;
108 QUrl _mountPoint;
109 QByteArray _staID;
[3494]110 QByteArray _staID_extra;
[1555]111 QByteArray _format;
112 QByteArray _latitude;
113 QByteArray _longitude;
[1595]114 QByteArray _height;
[1555]115 QByteArray _nmea;
116 QByteArray _ntripVersion;
117 int _nextSleep;
118 int _iMount;
119 int _samplingRate;
120 bncRinex* _rnx;
[2519]121 bncRawFile* _rawFile;
[1319]122 QextSerialPort* _serialPort;
[1555]123 bool _isToBeDeleted;
[1557]124 latencyChecker* _latencyChecker;
[1576]125 QString _miscMount;
[1607]126 QFile* _serialOutFile;
[1710]127 t_serialNMEA _serialNMEA;
[1768]128 QMutex _mutex;
[2035]129 bncPPPclient* _PPPclient;
[2386]130 bool _rawOutput;
[3303]131 QMap<QString, long> _prnLastEpo;
[35]132};
133
134#endif
Note: See TracBrowser for help on using the repository browser.