source: ntrip/trunk/BNC/src/bncgetthread.h@ 5861

Last change on this file since 5861 was 5861, checked in by mervart, 10 years ago
File size: 3.9 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
[5738]33#include "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
[1319]40class QextSerialPort;
[1558]41class latencyChecker;
[408]42
[35]43class bncGetThread : public QThread {
44 Q_OBJECT
45
46 public:
[2519]47 bncGetThread(bncRawFile* rawFile);
[278]48 bncGetThread(const QUrl& mountPoint,
[366]49 const QByteArray& format,
50 const QByteArray& latitude,
51 const QByteArray& longitude,
[1353]52 const QByteArray& nmea,
[3527]53 const QByteArray& ntripVersion);
[1138]54
[1812]55 bncNetQuery::queryStatus queryStatus() {
56 if (_query) {
57 return _query->status();
58 }
59 else {
60 return bncNetQuery::init;
61 }
62 }
63
[1525]64 protected:
[35]65 ~bncGetThread();
66
[1525]67 public:
[1390]68 void terminate();
69
[88]70 QByteArray staID() const {return _staID;}
[1163]71 QUrl mountPoint() const {return _mountPoint;}
72 QByteArray latitude() const {return _latitude;}
73 QByteArray longitude() const {return _longitude;}
[1423]74 QByteArray ntripVersion() const {return _ntripVersion;}
[88]75
[35]76 signals:
[628]77 void newBytes(QByteArray staID, double nbyte);
[5648]78 void newRawData(QByteArray staID, QByteArray data);
[1974]79 void newLatency(QByteArray staID, double clate);
[5524]80 void newObs(QByteArray staID, QList<t_obs> obsList);
[3595]81 void newAntCrd(QByteArray staID, double xx, double yy, double zz,
82 double hh, QByteArray antType);
[1299]83 void newMessage(QByteArray msg, bool showOnScreen);
[2356]84 void newRTCMMessage(QByteArray staID, int msgID);
[1556]85 void getThreadFinished(QByteArray staID);
[2145]86 void newPosition(bncTime time, double x, double y, double z);
[2182]87 void newNMEAstr(QByteArray str);
[35]88
[2528]89 public:
[35]90 virtual void run();
[138]91
[1607]92 private slots:
93 void slotSerialReadyRead();
94
[35]95 private:
[1710]96 enum t_serialNMEA {NO_NMEA, MANUAL_NMEA, AUTO_NMEA};
[3523]97 t_irc initDecoder();
98 GPSDecoder* decoder();
[1710]99
[1140]100 void initialize();
[1555]101 t_irc tryReconnect();
102 void scanRTCM();
103
[3560]104 QMap<QString, GPSDecoder*> _decodersRaw;
105 GPSDecoder* _decoder;
[3523]106 bncNetQuery* _query;
107 QUrl _mountPoint;
108 QByteArray _staID;
109 QByteArray _format;
110 QByteArray _latitude;
111 QByteArray _longitude;
112 QByteArray _height;
113 QByteArray _nmea;
114 QByteArray _ntripVersion;
115 int _nextSleep;
116 int _iMount;
117 bncRawFile* _rawFile;
118 QextSerialPort* _serialPort;
119 bool _isToBeDeleted;
120 latencyChecker* _latencyChecker;
121 QString _miscMount;
122 QFile* _serialOutFile;
123 t_serialNMEA _serialNMEA;
124 bool _rawOutput;
125 QMap<QString, long> _prnLastEpo;
[4476]126 QMap<char, QVector<QString> > _rnxTypes;
[35]127};
128
129#endif
Note: See TracBrowser for help on using the repository browser.