source: ntrip/trunk/BNC/src/PPP/pppRunPostProc.cpp@ 5879

Last change on this file since 5879 was 5879, checked in by mervart, 10 years ago
File size: 6.3 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/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: t_postProcessing
30 *
31 * Purpose: Precise Point Positioning in Post-Processing Mode
32 *
33 * Author: L. Mervart
34 *
35 * Created: 22-Jan-2012
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42#include "bncpostprocess.h"
43#include "bnccore.h"
44#include "bncsettings.h"
45#include "pppopt.h"
46#include "bncpppclient.h"
47#include "rinex/rnxobsfile.h"
48#include "rnxnavfile.h"
49#include "corrfile.h"
50#include "bncsettings.h"
51#include "bncutils.h"
52
53using namespace std;
54
55// Constructor
56////////////////////////////////////////////////////////////////////////////
57t_postProcessing::t_postProcessing(QObject* parent, int maxSpeed, int speed) : QThread(parent) {
58
59 _maxSpeed = maxSpeed;
60 _speed = speed;
61 _opt = new t_pppOpt();
62 _rnxObsFile = 0;
63 _rnxNavFile = 0;
64 _corrFile = 0;
65 _pppClient = 0;
66 _isToBeDeleted = false;
67
68 bncSettings settings;
69
70 QString outFileName = settings.value("postOutFile").toString();
71 if (outFileName.isEmpty()) {
72 _outFile = 0;
73 _outStream = 0;
74 }
75 else {
76 expandEnvVar(outFileName);
77 _outFile = new QFile(outFileName);
78 _outFile->open(QIODevice::WriteOnly | QIODevice::Text);
79 _outStream = new QTextStream();
80 _outStream->setDevice(_outFile);
81 }
82}
83
84// Destructor
85////////////////////////////////////////////////////////////////////////////
86t_postProcessing::~t_postProcessing() {
87 delete _pppClient;
88 delete _rnxNavFile;
89 delete _rnxObsFile;
90 delete _corrFile;
91 delete _opt;
92 delete _outStream;
93 delete _outFile;
94}
95
96// Write a Program Message
97////////////////////////////////////////////////////////////////////////////
98void t_postProcessing::slotMessage(QByteArray msg, bool /* showOnScreen */) {
99 if (_outStream) {
100 *_outStream << endl << msg;
101 _outStream->flush();
102 }
103 else {
104 BNC_CORE->slotMessage(msg, false);
105 }
106}
107
108//
109////////////////////////////////////////////////////////////////////////////
110void t_postProcessing::terminate() {
111 _isToBeDeleted = true;
112 if (!isRunning()) {
113 delete this;
114 }
115}
116
117//
118////////////////////////////////////////////////////////////////////////////
119void t_postProcessing::run() {
120
121 if (_pppClient) {
122 return;
123 }
124 else {
125 try {
126 _rnxObsFile = new t_rnxObsFile(_opt->obsFileName, t_rnxObsFile::input);
127 }
128 catch (...) {
129 delete _rnxObsFile; _rnxObsFile = 0;
130 emit finished();
131 return;
132 }
133 _rnxNavFile = new t_rnxNavFile(_opt->navFileName, t_rnxNavFile::input);
134 _pppClient = new bncPPPclient("POST", _opt, false);
135
136 if (!_opt->corrFileName.isEmpty()) {
137 _corrFile = new t_corrFile(_opt->corrFileName);
138 connect(_corrFile, SIGNAL(newCorrections(QStringList)),
139 _pppClient, SLOT(slotNewCorrections(QStringList)),
140 Qt::DirectConnection);
141 }
142
143 connect(_pppClient, SIGNAL(newMessage(QByteArray,bool)),
144 this, SLOT(slotMessage(const QByteArray,bool)));
145 qRegisterMetaType<bncTime>("bncTime");
146 connect(_pppClient, SIGNAL(newPosition(bncTime, QVector<double>)),
147 this, SIGNAL(newPosition(bncTime, QVector<double>)));
148 }
149
150 // Read/Process Observations
151 // -------------------------
152 int nEpo = 0;
153 const t_rnxObsFile::t_rnxEpo* epo = 0;
154 while ( (epo = _rnxObsFile->nextEpoch()) != 0 ) {
155 ++nEpo;
156
157 if (_maxSpeed != 0) {
158 QMutexLocker locker(&_mutex);
159 if (_speed < _maxSpeed) {
160 double sleepTime = 0.02 * _maxSpeed / _speed;
161 msleep(sleepTime*1.e3);
162 }
163 }
164
165 // Get Corrections
166 // ---------------
167 if (_corrFile) {
168 _corrFile->syncRead(epo->tt);
169 }
170
171 // Get Ephemerides
172 // ----------------
173 t_eph* eph = 0;
174 const QMap<QString, int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0;
175 while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) {
176 if (_pppClient->putNewEph(eph) != success) {
177 delete eph; eph = 0;
178 }
179 }
180
181 for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) {
182
183 if (_isToBeDeleted) {
184 QThread::exit(0);
185 return;
186 }
187
188 const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs];
189
190 t_obs obs;
191 t_postProcessing::setObsFromRnx(_rnxObsFile, epo, rnxSat, obs);
192
193 // Get Glonass Channel Number
194 // -------------------------
195 bool obsOK = true;
196 if (obs.satSys == 'R') {
197 QString prn = QString("%1%2").arg(obs.satSys)
198 .arg(obs.satNum, 2, 10, QChar('0'));
199 const bncEphUser::t_ephPair* ephPair = _pppClient->ephPair(prn);
200 if (ephPair && ephPair->last) {
201 obs.slotNum = ((t_ephGlo*) ephPair->last)->slotNum();
202 }
203 else {
204 obsOK = false;
205 }
206 }
207
208 // Put the new Observation to the Client
209 // -------------------------------------
210 if (obsOK) {
211 _pppClient->putNewObs(obs);
212 }
213 }
214 if (nEpo % 10 == 0) {
215 emit progress(nEpo);
216 }
217 }
218
219 if (BNC_CORE->mode() != t_bncCore::interactive) {
220 qApp->exit(0);
221 }
222 else {
223 emit finished();
224 deleteLater();
225 }
226}
227
228//
229////////////////////////////////////////////////////////////////////////////
230void t_postProcessing::slotSetSpeed(int speed) {
231 QMutexLocker locker(&_mutex);
232 _speed = speed;
233}
Note: See TracBrowser for help on using the repository browser.