| 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 BNCAPP_H
|
|---|
| 26 | #define BNCAPP_H
|
|---|
| 27 |
|
|---|
| 28 | #include <QtGui>
|
|---|
| 29 |
|
|---|
| 30 | #include "bnctime.h"
|
|---|
| 31 | #include "bnccaster.h"
|
|---|
| 32 | #include "bncrawfile.h"
|
|---|
| 33 | #include "bncephuser.h"
|
|---|
| 34 |
|
|---|
| 35 | class bncComb;
|
|---|
| 36 | class bncTableItem;
|
|---|
| 37 | namespace BNC_PPP {
|
|---|
| 38 | class t_pppMain;
|
|---|
| 39 | }
|
|---|
| 40 |
|
|---|
| 41 | class t_bncCore : public QObject {
|
|---|
| 42 | Q_OBJECT
|
|---|
| 43 | friend class bncSettings;
|
|---|
| 44 |
|
|---|
| 45 | public:
|
|---|
| 46 | enum e_mode {interactive, nonInteractive, batchPostProcessing};
|
|---|
| 47 | t_bncCore();
|
|---|
| 48 | ~t_bncCore();
|
|---|
| 49 | static t_bncCore* instance();
|
|---|
| 50 | e_mode mode() const {return _mode;}
|
|---|
| 51 | void setGUIenabled(bool GUIenabled) {_GUIenabled = GUIenabled;}
|
|---|
| 52 | void setMode(e_mode mode) {_mode = mode;}
|
|---|
| 53 | void setPortEph(int port);
|
|---|
| 54 | void setPortCorr(int port);
|
|---|
| 55 | void setCaster(bncCaster* caster) {_caster = caster;}
|
|---|
| 56 | const bncCaster* caster() const {return _caster;}
|
|---|
| 57 | bool dateAndTimeGPSSet() const;
|
|---|
| 58 | QDateTime dateAndTimeGPS() const;
|
|---|
| 59 | void setDateAndTimeGPS(QDateTime dateTime);
|
|---|
| 60 | void setConfFileName(const QString& confFileName);
|
|---|
| 61 | QString confFileName() const {return _confFileName;}
|
|---|
| 62 | void writeRawData(const QByteArray& data, const QByteArray& staID,
|
|---|
| 63 | const QByteArray& format);
|
|---|
| 64 | void initCombination();
|
|---|
| 65 | void stopCombination();
|
|---|
| 66 | const QString& pgmName() {return _pgmName;}
|
|---|
| 67 | const QString& userName() {return _userName;}
|
|---|
| 68 | QWidget* mainWindow() const {return _mainWindow;};
|
|---|
| 69 | void setMainWindow(QWidget* mainWindow){_mainWindow = mainWindow;}
|
|---|
| 70 | bool GUIenabled() const {return _GUIenabled;}
|
|---|
| 71 | void startPPP();
|
|---|
| 72 | void stopPPP();
|
|---|
| 73 |
|
|---|
| 74 | QMap<int, bncTableItem*> _uploadTableItems;
|
|---|
| 75 |
|
|---|
| 76 | public slots:
|
|---|
| 77 | void slotMessage(QByteArray msg, bool showOnScreen);
|
|---|
| 78 | void slotNewGPSEph(t_ephGPS);
|
|---|
| 79 | void slotNewGlonassEph(t_ephGlo);
|
|---|
| 80 | void slotNewGalileoEph(t_ephGal);
|
|---|
| 81 | void slotNewSBASEph(t_ephSBAS);
|
|---|
| 82 | void slotNewBDSEph(t_ephBDS);
|
|---|
| 83 | void slotNewOrbCorrections(QList<t_orbCorr>);
|
|---|
| 84 | void slotNewClkCorrections(QList<t_clkCorr>);
|
|---|
| 85 | void slotNewCodeBiases(QList<t_satCodeBias>);
|
|---|
| 86 | void slotNewPhaseBiases(QList<t_satPhaseBias>);
|
|---|
| 87 | void slotNewTec(t_vTec);
|
|---|
| 88 | void slotQuit();
|
|---|
| 89 |
|
|---|
| 90 | signals:
|
|---|
| 91 | void newMessage(QByteArray msg, bool showOnScreen);
|
|---|
| 92 | void newGPSEph(t_ephGPS eph);
|
|---|
| 93 | void newGlonassEph(t_ephGlo eph);
|
|---|
| 94 | void newSBASEph(t_ephSBAS eph);
|
|---|
| 95 | void newGalileoEph(t_ephGal eph);
|
|---|
| 96 | void newBDSEph(t_ephBDS eph);
|
|---|
| 97 | void newOrbCorrections(QList<t_orbCorr>);
|
|---|
| 98 | void newClkCorrections(QList<t_clkCorr>);
|
|---|
| 99 | void newCodeBiases(QList<t_satCodeBias>);
|
|---|
| 100 | void newPhaseBiases(QList<t_satPhaseBias>);
|
|---|
| 101 | void newTec(t_vTec);
|
|---|
| 102 | void providerIDChanged(QString);
|
|---|
| 103 | void newPosition(QByteArray staID, bncTime time, QVector<double> xx);
|
|---|
| 104 | void newNMEAstr(QByteArray staID, QByteArray str);
|
|---|
| 105 | void progressRnxPPP(int);
|
|---|
| 106 | void finishedRnxPPP();
|
|---|
| 107 | void mapSpeedSliderChanged(int);
|
|---|
| 108 | void stopRinexPPP();
|
|---|
| 109 |
|
|---|
| 110 | private slots:
|
|---|
| 111 | void slotNewConnectionEph();
|
|---|
| 112 | void slotNewConnectionCorr();
|
|---|
| 113 |
|
|---|
| 114 | private:
|
|---|
| 115 | t_irc checkPrintEph(t_eph* eph);
|
|---|
| 116 | void printEphHeader();
|
|---|
| 117 | void printEph(const t_eph& eph, bool printFile);
|
|---|
| 118 | void printOutputEph(bool printFile, QTextStream* stream,
|
|---|
| 119 | const QString& strV2, const QString& strV3);
|
|---|
| 120 | void messagePrivate(const QByteArray& msg);
|
|---|
| 121 |
|
|---|
| 122 | QSettings::SettingsMap _settings;
|
|---|
| 123 | QFile* _logFile;
|
|---|
| 124 | QTextStream* _logStream;
|
|---|
| 125 | int _logFileFlag;
|
|---|
| 126 | QMutex _mutex;
|
|---|
| 127 | QMutex _mutexMessage;
|
|---|
| 128 | QString _ephPath;
|
|---|
| 129 | QString _ephFileNameGPS;
|
|---|
| 130 | int _rinexVers;
|
|---|
| 131 | QFile* _ephFileGPS;
|
|---|
| 132 | QTextStream* _ephStreamGPS;
|
|---|
| 133 | QFile* _ephFileGlonass;
|
|---|
| 134 | QTextStream* _ephStreamGlonass;
|
|---|
| 135 | QFile* _ephFileGalileo;
|
|---|
| 136 | QTextStream* _ephStreamGalileo;
|
|---|
| 137 | QFile* _ephFileSBAS;
|
|---|
| 138 | QTextStream* _ephStreamSBAS;
|
|---|
| 139 | QString _userName;
|
|---|
| 140 | QString _pgmName;
|
|---|
| 141 | int _portEph;
|
|---|
| 142 | QTcpServer* _serverEph;
|
|---|
| 143 | QList<QTcpSocket*>* _socketsEph;
|
|---|
| 144 | int _portCorr;
|
|---|
| 145 | QTcpServer* _serverCorr;
|
|---|
| 146 | QList<QTcpSocket*>* _socketsCorr;
|
|---|
| 147 | int _portNMEA;
|
|---|
| 148 | QTcpServer* _serverNMEA;
|
|---|
| 149 | QList<QTcpSocket*>* _socketsNMEA;
|
|---|
| 150 | bncCaster* _caster;
|
|---|
| 151 | QString _confFileName;
|
|---|
| 152 | QDate _fileDate;
|
|---|
| 153 | bncRawFile* _rawFile;
|
|---|
| 154 | bncComb* _bncComb;
|
|---|
| 155 | e_mode _mode;
|
|---|
| 156 | QWidget* _mainWindow;
|
|---|
| 157 | bool _GUIenabled;
|
|---|
| 158 | QDateTime* _dateAndTimeGPS;
|
|---|
| 159 | mutable QMutex _mutexDateAndTimeGPS;
|
|---|
| 160 | BNC_PPP::t_pppMain* _pppMain;
|
|---|
| 161 | bncEphUser _ephUser;
|
|---|
| 162 | };
|
|---|
| 163 |
|
|---|
| 164 | #define BNC_CORE (t_bncCore::instance())
|
|---|
| 165 |
|
|---|
| 166 | #endif
|
|---|