source: ntrip/trunk/BNC/src/bnccore.h@ 5899

Last change on this file since 5899 was 5899, checked in by mervart, 10 years ago
File size: 5.5 KB
Line 
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 "RTCM3/RTCM3Decoder.h"
34
35class bncComb;
36class bncTableItem;
37namespace BNC_PPP {
38 class t_pppMain;
39}
40
41class t_bncCore : public QObject {
42Q_OBJECT
43friend class bncSettings;
44
45 public:
46 enum e_mode {interactive, nonInteractive, batchPostProcessing};
47 t_bncCore();
48 virtual ~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 setPort(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 storeGlonassSlotNums(const int GLOFreq[]);
65 void getGlonassSlotNums(int GLOFreq[]);
66 void initCombination();
67 void stopCombination();
68 const QString& pgmName() {return _pgmName;}
69 const QString& userName() {return _userName;}
70 QWidget* mainWindow() const {return _mainWindow;};
71 void setMainWindow(QWidget* mainWindow){_mainWindow = mainWindow;}
72 bool GUIenabled() const {return _GUIenabled;}
73 BNC_PPP::t_pppMain* pppMain() {return _pppMain;}
74
75 QMap<int, bncTableItem*> _uploadTableItems;
76
77 public slots:
78 void slotMessage(QByteArray msg, bool showOnScreen);
79 void slotNewGPSEph(gpsephemeris* gpseph);
80 void slotNewGlonassEph(glonassephemeris* glonasseph, const QString& staID);
81 void slotNewGalileoEph(galileoephemeris* galileoeph);
82 void slotNewCorrLine(QString line, QString staID, bncTime coTime);
83 void slotQuit();
84
85 signals:
86 void newMessage(QByteArray msg, bool showOnScreen);
87 void newEphGPS(gpsephemeris gpseph);
88 void newEphGlonass(glonassephemeris glonasseph);
89 void newEphGalileo(galileoephemeris galileoeph);
90 void newCorrections(QStringList);
91 void providerIDChanged(QString);
92 void newPosition(bncTime time, QVector<double> xx);
93
94 private slots:
95 void slotNewConnection();
96 void slotNewConnectionCorr();
97
98 private:
99 void printEphHeader();
100 void printGPSEph(gpsephemeris* ep, bool printFile);
101 void printGlonassEph(glonassephemeris* ep, bool printFile, const QString& staID);
102 void printGalileoEph(galileoephemeris* ep, bool printFile);
103 void printOutput(bool printFile, QTextStream* stream,
104 const QString& strV2, const QString& strV3);
105 void dumpCorrs(bncTime minTime, bncTime maxTime);
106 void dumpCorrs();
107 void dumpCorrs(const QStringList& allCorrs);
108 void messagePrivate(const QByteArray& msg);
109 void checkEphemeris(gpsephemeris* oldEph, gpsephemeris* newEph);
110
111 QSettings::SettingsMap _settings;
112 QFile* _logFile;
113 QTextStream* _logStream;
114 int _logFileFlag;
115 QMutex _mutex;
116 QMutex _mutexMessage;
117 QString _ephPath;
118 QString _ephFileNameGPS;
119 int _rinexVers;
120 QFile* _ephFileGPS;
121 QTextStream* _ephStreamGPS;
122 QFile* _ephFileGlonass;
123 QTextStream* _ephStreamGlonass;
124 QFile* _ephFileGalileo;
125 QTextStream* _ephStreamGalileo;
126 gpsephemeris* _gpsEph[PRN_GPS_END - PRN_GPS_START + 1];
127 glonassephemeris* _glonassEph[PRN_GLONASS_END - PRN_GLONASS_START + 1];
128 galileoephemeris* _galileoEph[PRN_GALILEO_END - PRN_GALILEO_START + 1];
129 QString _userName;
130 QString _pgmName;
131 int _port;
132 QTcpServer* _server;
133 QList<QTcpSocket*>* _sockets;
134 int _portCorr;
135 QTcpServer* _serverCorr;
136 QList<QTcpSocket*>* _socketsCorr;
137 int _portNMEA;
138 QTcpServer* _serverNMEA;
139 QList<QTcpSocket*>* _socketsNMEA;
140 bncCaster* _caster;
141 QMap<QString, bncTime> _lastCorrDumpTime;
142 double _waitCoTime;
143 QMultiMap<bncTime, QString>* _corrs;
144 QString _confFileName;
145 QDate _fileDate;
146 bncRawFile* _rawFile;
147 int _GLOFreq[PRN_GLONASS_NUM];
148 bncComb* _bncComb;
149 e_mode _mode;
150 QWidget* _mainWindow;
151 bool _GUIenabled;
152 QDateTime* _dateAndTimeGPS;
153 mutable QMutex _mutexDateAndTimeGPS;
154 BNC_PPP::t_pppMain* _pppMain;
155};
156
157#define BNC_CORE (t_bncCore::instance())
158
159#endif
Note: See TracBrowser for help on using the repository browser.