1 |
|
---|
2 | // Part of BNC, a utility for retrieving decoding and
|
---|
3 | // converting GNSS data streams from NTRIP broadcasters.
|
---|
4 | //
|
---|
5 | // Copyright (C) 2007
|
---|
6 | // German Federal Agency for Cartography and Geodesy (BKG)
|
---|
7 | // http://www.bkg.bund.de
|
---|
8 | // Czech Technical University Prague, Department of Geodesy
|
---|
9 | // http://www.fsv.cvut.cz
|
---|
10 | //
|
---|
11 | // Email: euref-ip@bkg.bund.de
|
---|
12 | //
|
---|
13 | // This program is free software; you can redistribute it and/or
|
---|
14 | // modify it under the terms of the GNU General Public License
|
---|
15 | // as published by the Free Software Foundation, version 2.
|
---|
16 | //
|
---|
17 | // This program is distributed in the hope that it will be useful,
|
---|
18 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
20 | // GNU General Public License for more details.
|
---|
21 | //
|
---|
22 | // You should have received a copy of the GNU General Public License
|
---|
23 | // along with this program; if not, write to the Free Software
|
---|
24 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
25 |
|
---|
26 | /* -------------------------------------------------------------------------
|
---|
27 | * BKG NTRIP Client
|
---|
28 | * -------------------------------------------------------------------------
|
---|
29 | *
|
---|
30 | * Class: t_pppThread, t_pppRun
|
---|
31 | *
|
---|
32 | * Purpose: Single PPP Client (running in its own thread)
|
---|
33 | *
|
---|
34 | * Author: L. Mervart
|
---|
35 | *
|
---|
36 | * Created: 29-Jul-2014
|
---|
37 | *
|
---|
38 | * Changes:
|
---|
39 | *
|
---|
40 | * -----------------------------------------------------------------------*/
|
---|
41 |
|
---|
42 |
|
---|
43 | #include <iostream>
|
---|
44 | #include <iomanip>
|
---|
45 | #include <string.h>
|
---|
46 | #include <map>
|
---|
47 |
|
---|
48 | #include "pppThread.h"
|
---|
49 | #include "bnccore.h"
|
---|
50 |
|
---|
51 | using namespace BNC;
|
---|
52 | using namespace std;
|
---|
53 |
|
---|
54 | // Constructor
|
---|
55 | ////////////////////////////////////////////////////////////////////////////
|
---|
56 | t_pppThread::t_pppThread(const t_options* opt) : QThread(0) {
|
---|
57 | _opt = opt;
|
---|
58 | _pppRun = 0;
|
---|
59 | connect(this, SIGNAL(finished()), this, SLOT(deleteLater()));
|
---|
60 |
|
---|
61 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
62 | BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
|
---|
63 | }
|
---|
64 |
|
---|
65 | // Destructor
|
---|
66 | ////////////////////////////////////////////////////////////////////////////
|
---|
67 | t_pppThread::~t_pppThread() {
|
---|
68 | delete _pppRun;
|
---|
69 | }
|
---|
70 |
|
---|
71 | // Run (virtual)
|
---|
72 | ////////////////////////////////////////////////////////////////////////////
|
---|
73 | void t_pppThread::run() {
|
---|
74 | try {
|
---|
75 | _pppRun = new t_pppRun(_opt);
|
---|
76 | QThread::exec();
|
---|
77 | }
|
---|
78 | catch (pppExcept exc) {
|
---|
79 | _pppRun = 0;
|
---|
80 | emit newMessage(QByteArray(exc.what().c_str()), true);
|
---|
81 | }
|
---|
82 | }
|
---|
83 |
|
---|
84 | // Constructor
|
---|
85 | ////////////////////////////////////////////////////////////////////////////
|
---|
86 | t_pppRun::t_pppRun(const t_options* opt) {
|
---|
87 | _opt = opt;
|
---|
88 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
89 | BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
|
---|
90 | if (_opt->_realTime) {
|
---|
91 | connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_obs>)),
|
---|
92 | this, SLOT(slotNewObs(QByteArray, QList<t_obs>)));
|
---|
93 |
|
---|
94 | connect(BNC_CORE, SIGNAL(newEphGPS(gpsephemeris)),
|
---|
95 | this, SLOT(slotNewEphGPS(gpsephemeris)));
|
---|
96 |
|
---|
97 | connect(BNC_CORE, SIGNAL(newEphGlonass(glonassephemeris)),
|
---|
98 | this, SLOT(slotNewEphGlonass(glonassephemeris)));
|
---|
99 |
|
---|
100 | connect(BNC_CORE, SIGNAL(newEphGalileo(galileoephemeris)),
|
---|
101 | this, SLOT(slotNewEphGalileo(galileoephemeris)));
|
---|
102 |
|
---|
103 | connect(BNC_CORE, SIGNAL(newCorrections(QStringList)),
|
---|
104 | this, SLOT(slotNewCorrections(QStringList)));
|
---|
105 |
|
---|
106 | _pppClient = new t_pppClient(_opt);
|
---|
107 | }
|
---|
108 | else {
|
---|
109 | throw pppExcept("t_pppRun: post-processing not yet implemented");
|
---|
110 | }
|
---|
111 | }
|
---|
112 |
|
---|
113 | // Destructor
|
---|
114 | ////////////////////////////////////////////////////////////////////////////
|
---|
115 | t_pppRun::~t_pppRun() {
|
---|
116 | }
|
---|
117 |
|
---|
118 | //
|
---|
119 | ////////////////////////////////////////////////////////////////////////////
|
---|
120 | void t_pppRun::slotNewEphGPS(gpsephemeris gpseph) {
|
---|
121 | QMutexLocker locker(&_mutex);
|
---|
122 | t_ephGPS eph;
|
---|
123 | eph.set(&gpseph);
|
---|
124 | _pppClient->putEphemeris(&eph);
|
---|
125 | }
|
---|
126 |
|
---|
127 | //
|
---|
128 | ////////////////////////////////////////////////////////////////////////////
|
---|
129 | void t_pppRun::slotNewEphGlonass(glonassephemeris gloeph) {
|
---|
130 | QMutexLocker locker(&_mutex);
|
---|
131 | t_ephGlo eph;
|
---|
132 | eph.set(&gloeph);
|
---|
133 | _pppClient->putEphemeris(&eph);
|
---|
134 | }
|
---|
135 |
|
---|
136 | //
|
---|
137 | ////////////////////////////////////////////////////////////////////////////
|
---|
138 | void t_pppRun::slotNewEphGalileo(galileoephemeris galeph) {
|
---|
139 | QMutexLocker locker(&_mutex);
|
---|
140 | t_ephGal eph;
|
---|
141 | eph.set(&galeph);
|
---|
142 | _pppClient->putEphemeris(&eph);
|
---|
143 | }
|
---|
144 |
|
---|
145 | //
|
---|
146 | ////////////////////////////////////////////////////////////////////////////
|
---|
147 | void t_pppRun::slotNewCorrections(QStringList corrList) {
|
---|
148 | QMutexLocker locker(&_mutex);
|
---|
149 |
|
---|
150 | QStringListIterator it(corrList);
|
---|
151 | while (it.hasNext()) {
|
---|
152 | it.next();
|
---|
153 | }
|
---|
154 |
|
---|
155 | // _pppClient->putOrbCorrections(const std::vector<t_orbCorr*>& corr);
|
---|
156 | // _pppClient->putClkCorrections(const std::vector<t_clkCorr*>& corr);
|
---|
157 | // _pppClient->putBiases(const std::vector<t_satBiases*>& biases);
|
---|
158 | }
|
---|
159 | //
|
---|
160 | ////////////////////////////////////////////////////////////////////////////
|
---|
161 | void t_pppRun::slotNewObs(QByteArray staID, QList<t_obs> obsList) {
|
---|
162 | QMutexLocker locker(&_mutex);
|
---|
163 |
|
---|
164 | if (string(staID.data()) != _opt->_roverName) {
|
---|
165 | return;
|
---|
166 | }
|
---|
167 |
|
---|
168 | // Loop over all obsevations (possible different epochs)
|
---|
169 | // -----------------------------------------------------
|
---|
170 | QListIterator<t_obs> it(obsList);
|
---|
171 | while (it.hasNext()) {
|
---|
172 | const t_obs& oldObs = it.next();
|
---|
173 | t_pppSatObs* newObs = new t_pppSatObs;
|
---|
174 |
|
---|
175 | newObs->_prn.set(oldObs.satSys, oldObs.satNum);
|
---|
176 | newObs->_time.set(oldObs.GPSWeek, oldObs.GPSWeeks);
|
---|
177 |
|
---|
178 | // Find the corresponding data epoch or create a new one
|
---|
179 | // -----------------------------------------------------
|
---|
180 | t_pppEpoData* epoData = 0;
|
---|
181 | deque<t_pppEpoData*>::const_iterator it;
|
---|
182 | for (it = _pppEpochs.begin(); it != _pppEpochs.end(); it++) {
|
---|
183 | if (newObs->_time == (*it)->_time) {
|
---|
184 | epoData = *it;
|
---|
185 | break;
|
---|
186 | }
|
---|
187 | }
|
---|
188 | if (epoData == 0) {
|
---|
189 | if (_pppEpochs.empty() || newObs->_time > _pppEpochs.back()->_time) {
|
---|
190 | epoData = new t_pppEpoData;
|
---|
191 | epoData->_time = newObs->_time;
|
---|
192 | _pppEpochs.push_back(epoData);
|
---|
193 | }
|
---|
194 | }
|
---|
195 |
|
---|
196 | // Fill the new observation and add it to the corresponding epoch
|
---|
197 | // --------------------------------------------------------------
|
---|
198 | if (epoData != 0) {
|
---|
199 | epoData->_pppSatObs.push_back(newObs);
|
---|
200 | map<string, t_pppObs*> pppObsMap;
|
---|
201 | for (unsigned iEntry = 0; iEntry < GNSSENTRY_NUMBER; iEntry++) {
|
---|
202 | string hlp(oldObs.rnxStr(iEntry).toAscii().data());
|
---|
203 | if (hlp.length() == 3) {
|
---|
204 | char obsType = hlp[0];
|
---|
205 | string rnxType2ch = hlp.substr(1);
|
---|
206 | if (obsType == 'C' || obsType == 'L') {
|
---|
207 | t_pppObs* pppObs = 0;
|
---|
208 | if (pppObsMap.find(rnxType2ch) == pppObsMap.end()) {
|
---|
209 | pppObs = new t_pppObs();
|
---|
210 | pppObsMap[rnxType2ch] = pppObs;
|
---|
211 | pppObs->_rnxType2ch = rnxType2ch;
|
---|
212 | newObs->_obs.push_back(pppObs);
|
---|
213 | }
|
---|
214 | else {
|
---|
215 | pppObs = pppObsMap[rnxType2ch];
|
---|
216 | }
|
---|
217 | if (obsType == 'C') {
|
---|
218 | pppObs->_code = oldObs._measdata[iEntry];
|
---|
219 | pppObs->_codeValid = true;
|
---|
220 | }
|
---|
221 | else if (obsType == 'L') {
|
---|
222 | pppObs->_phase = oldObs._measdata[iEntry];
|
---|
223 | pppObs->_phaseValid = true;
|
---|
224 | }
|
---|
225 | }
|
---|
226 | }
|
---|
227 | }
|
---|
228 | }
|
---|
229 | }
|
---|
230 |
|
---|
231 | // Process the oldest epoch
|
---|
232 | // ------------------------
|
---|
233 | if (_pppEpochs.size() > 1) {
|
---|
234 |
|
---|
235 | const vector<t_pppSatObs*>& pppSatObs = _pppEpochs.front()->_pppSatObs;
|
---|
236 |
|
---|
237 | t_output output;
|
---|
238 | _pppClient->processEpoch(pppSatObs, &output);
|
---|
239 |
|
---|
240 | delete _pppEpochs.front(); _pppEpochs.pop_front();
|
---|
241 |
|
---|
242 | emit newMessage(QByteArray(output._log.c_str()), true);
|
---|
243 | }
|
---|
244 | }
|
---|
245 |
|
---|