source: ntrip/trunk/BNC/src/pppRun.h@ 7228

Last change on this file since 7228 was 6966, checked in by stuerze, 9 years ago

some additions regarding BDS

File size: 1.9 KB
RevLine 
[5883]1#ifndef PPPRUN_H
2#define PPPRUN_H
[5860]3
4#include <deque>
5#include <vector>
6#include <QtCore>
7
[6141]8#include "satObs.h"
[5860]9#include "pppOptions.h"
10#include "pppClient.h"
11
[5883]12class t_rnxObsFile;
13class t_rnxNavFile;
14class t_corrFile;
[5984]15class bncoutf;
[6653]16class bncSinexTro;
[5883]17
[5860]18namespace BNC_PPP {
19
[5883]20class t_pppRun : public QObject {
[5860]21 Q_OBJECT
22 public:
[5883]23 t_pppRun(const t_pppOptions* opt);
24 ~t_pppRun();
[5860]25
[5883]26 void processFiles();
27
[5990]28 static QString nmeaString(char strType, const t_output& output);
29
[5860]30 signals:
31 void newMessage(QByteArray msg, bool showOnScreen);
[5954]32 void newPosition(QByteArray staID, bncTime time, QVector<double> xx);
33 void newNMEAstr(QByteArray staID, QByteArray str);
[5940]34 void progressRnxPPP(int);
35 void finishedRnxPPP();
[5860]36
37 public slots:
[6433]38 void slotNewGPSEph(t_ephGPS);
39 void slotNewGlonassEph(t_ephGlo);
40 void slotNewGalileoEph(t_ephGal);
[6966]41 void slotNewBDSEph(t_ephBDS);
[6141]42 void slotNewOrbCorrections(QList<t_orbCorr> orbCorr);
43 void slotNewClkCorrections(QList<t_clkCorr> clkCorr);
[6478]44 void slotNewCodeBiases(QList<t_satCodeBias> codeBiases);
[6137]45 void slotNewObs(QByteArray staID, QList<t_satObs> obsList);
[5889]46 void slotSetSpeed(int speed);
[5973]47 void slotSetStopFlag();
[5860]48
49 private:
50 class t_epoData {
51 public:
52 t_epoData() {}
53 ~t_epoData() {
54 for (unsigned ii = 0; ii < _satObs.size(); ii++) {
55 delete _satObs[ii];
56 }
57 }
58 bncTime _time;
59 std::vector<t_satObs*> _satObs;
60 };
61
[5999]62 bool waitForCorr(const bncTime& epoTime) const;
63
[5860]64 QMutex _mutex;
65 const t_pppOptions* _opt;
66 t_pppClient* _pppClient;
67 std::deque<t_epoData*> _epoData;
68 bncTime _lastClkCorrTime;
[5989]69 t_rnxObsFile* _rnxObsFile;
70 t_rnxNavFile* _rnxNavFile;
71 t_corrFile* _corrFile;
72 int _speed;
73 bool _stopFlag;
74 bncoutf* _logFile;
75 bncoutf* _nmeaFile;
[6653]76 bncSinexTro* _snxtroFile;
[5860]77};
78
79}
80
81#endif
Note: See TracBrowser for help on using the repository browser.