Changeset 5883 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 8, 2014, 3:51:27 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 deleted
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRun.cpp
r5879 r5883 28 28 * ------------------------------------------------------------------------- 29 29 * 30 * Class: t_pppRun RealTime30 * Class: t_pppRun 31 31 * 32 32 * Purpose: Single Real-Time PPP Client … … 46 46 #include <map> 47 47 48 #include "pppRun RealTime.h"48 #include "pppRun.h" 49 49 #include "bnccore.h" 50 50 #include "bncephuser.h" 51 #include "rinex/rnxobsfile.h" 52 #include "rinex/rnxnavfile.h" 53 #include "rinex/corrfile.h" 51 54 52 55 using namespace BNC_PPP; … … 55 58 // Constructor 56 59 //////////////////////////////////////////////////////////////////////////// 57 t_pppRunRealTime::t_pppRunRealTime(const t_pppOptions* opt) { 60 t_pppRun::t_pppRun(const t_pppOptions* opt) { 61 58 62 _opt = opt; 63 59 64 connect(this, SIGNAL(newMessage(QByteArray,bool)), 60 65 BNC_CORE, SLOT(slotMessage(const QByteArray,bool))); 66 67 connect(this, SIGNAL(newPosition(bncTime, QVector<double>)), 68 BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>))); 69 70 for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) { 71 _lastOrbCorrIOD[iPrn] = -1; 72 _lastClkCorrValue[iPrn] = 0.0; 73 } 74 75 _pppClient = new t_pppClient(_opt); 76 61 77 if (_opt->_realTime) { 62 78 connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_obs>)), … … 74 90 connect(BNC_CORE, SIGNAL(newCorrections(QStringList)), 75 91 this, SLOT(slotNewCorrections(QStringList))); 76 77 connect(this, SIGNAL(newPosition(bncTime, QVector<double>)),78 BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>)));79 80 for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) {81 _lastOrbCorrIOD[iPrn] = -1;82 _lastClkCorrValue[iPrn] = 0.0;83 }84 85 _pppClient = new t_pppClient(_opt);86 92 } 87 93 else { 88 throw t_except("t_pppRunRealTime: post-processing not yet implemented");94 processFiles(); 89 95 } 90 96 } … … 92 98 // Destructor 93 99 //////////////////////////////////////////////////////////////////////////// 94 t_pppRun RealTime::~t_pppRunRealTime() {100 t_pppRun::~t_pppRun() { 95 101 } 96 102 97 103 // 98 104 //////////////////////////////////////////////////////////////////////////// 99 void t_pppRun RealTime::slotNewEphGPS(gpsephemeris gpseph) {105 void t_pppRun::slotNewEphGPS(gpsephemeris gpseph) { 100 106 QMutexLocker locker(&_mutex); 101 107 t_ephGPS eph; … … 106 112 // 107 113 //////////////////////////////////////////////////////////////////////////// 108 void t_pppRun RealTime::slotNewEphGlonass(glonassephemeris gloeph) {114 void t_pppRun::slotNewEphGlonass(glonassephemeris gloeph) { 109 115 QMutexLocker locker(&_mutex); 110 116 t_ephGlo eph; … … 115 121 // 116 122 //////////////////////////////////////////////////////////////////////////// 117 void t_pppRun RealTime::slotNewEphGalileo(galileoephemeris galeph) {123 void t_pppRun::slotNewEphGalileo(galileoephemeris galeph) { 118 124 QMutexLocker locker(&_mutex); 119 125 t_ephGal eph; … … 124 130 // 125 131 //////////////////////////////////////////////////////////////////////////// 126 void t_pppRun RealTime::slotNewObs(QByteArray staID, QList<t_obs> obsList) {132 void t_pppRun::slotNewObs(QByteArray staID, QList<t_obs> obsList) { 127 133 QMutexLocker locker(&_mutex); 128 134 … … 222 228 // 223 229 //////////////////////////////////////////////////////////////////////////// 224 void t_pppRun RealTime::slotNewCorrections(QStringList corrList) {230 void t_pppRun::slotNewCorrections(QStringList corrList) { 225 231 QMutexLocker locker(&_mutex); 226 232 … … 330 336 } 331 337 } 338 339 340 // 341 //////////////////////////////////////////////////////////////////////////// 342 void t_pppRun::processFiles() { 343 344 try { 345 _rnxObsFile = new t_rnxObsFile(_opt->obsFileName, t_rnxObsFile::input); 346 } 347 catch (...) { 348 delete _rnxObsFile; _rnxObsFile = 0; 349 emit finished(); 350 return; 351 } 352 353 _rnxNavFile = new t_rnxNavFile(_opt->navFileName, t_rnxNavFile::input); 354 _pppClient = new bncPPPclient("POST", _opt, false); 355 356 if (!_opt->corrFileName.isEmpty()) { 357 _corrFile = new t_corrFile(_opt->corrFileName); 358 connect(_corrFile, SIGNAL(newCorrections(QStringList)), 359 _pppClient, SLOT(slotNewCorrections(QStringList))); 360 } 361 362 // Read/Process Observations 363 // ------------------------- 364 int nEpo = 0; 365 const t_rnxObsFile::t_rnxEpo* epo = 0; 366 while ( (epo = _rnxObsFile->nextEpoch()) != 0 ) { 367 ++nEpo; 368 369 if (_maxSpeed != 0) { 370 QMutexLocker locker(&_mutex); 371 if (_speed < _maxSpeed) { 372 double sleepTime = 0.02 * _maxSpeed / _speed; 373 msleep(sleepTime*1.e3); 374 } 375 } 376 377 // Get Corrections 378 // --------------- 379 if (_corrFile) { 380 _corrFile->syncRead(epo->tt); 381 } 382 383 // Get Ephemerides 384 // ---------------- 385 t_eph* eph = 0; 386 const QMap<QString, int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0; 387 while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) { 388 if (_pppClient->putNewEph(eph) != success) { 389 delete eph; eph = 0; 390 } 391 } 392 393 for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) { 394 395 if (_isToBeDeleted) { 396 QThread::exit(0); 397 return; 398 } 399 400 const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs]; 401 402 t_obs obs; 403 t_rnxObsFile::setObsFromRnx(_rnxObsFile, epo, rnxSat, obs); 404 405 _pppClient->putNewObs(obs); 406 } 407 if (nEpo % 10 == 0) { 408 emit progress(nEpo); 409 } 410 } 411 412 if (BNC_CORE->mode() != t_bncCore::interactive) { 413 qApp->exit(0); 414 } 415 else { 416 emit finished(); 417 deleteLater(); 418 } 419 } 420 421 // 422 //////////////////////////////////////////////////////////////////////////// 423 void t_pppRun::slotSetSpeed(int speed) { 424 QMutexLocker locker(&_mutex); 425 _speed = speed; 426 } -
trunk/BNC/src/PPP/pppRun.h
r5879 r5883 1 #ifndef PPPRUN REALTIME_H2 #define PPPRUN REALTIME_H1 #ifndef PPPRUN_H 2 #define PPPRUN_H 3 3 4 4 #include <deque> … … 10 10 #include "pppClient.h" 11 11 12 class t_rnxObsFile; 13 class t_rnxNavFile; 14 class t_corrFile; 15 12 16 namespace BNC_PPP { 13 17 14 class t_pppRun RealTime: public QObject {18 class t_pppRun : public QObject { 15 19 Q_OBJECT 16 20 public: 17 t_pppRunRealTime(const t_pppOptions* opt); 18 ~t_pppRunRealTime(); 21 t_pppRun(const t_pppOptions* opt); 22 ~t_pppRun(); 23 24 void processFiles(); 19 25 20 26 signals: … … 50 56 double _lastClkCorrValue[t_prn::MAXPRN+1]; 51 57 bncTime _lastClkCorrTime; 58 59 t_rnxObsFile* _rnxObsFile; 60 t_rnxNavFile* _rnxNavFile; 61 t_corrFile* _corrFile; 62 int _maxSpeed; 63 int _speed; 52 64 }; 53 65 -
trunk/BNC/src/PPP/pppThread.cpp
r5860 r5883 56 56 //////////////////////////////////////////////////////////////////////////// 57 57 t_pppThread::t_pppThread(const t_pppOptions* opt) : QThread(0) { 58 _opt = opt; 59 _pppRunRealTime = 0; 58 _opt = opt; 59 _pppRun = 0; 60 60 61 connect(this, SIGNAL(finished()), this, SLOT(deleteLater())); 61 62 … … 67 68 //////////////////////////////////////////////////////////////////////////// 68 69 t_pppThread::~t_pppThread() { 69 delete _pppRun RealTime;70 delete _pppRun; 70 71 } 71 72 … … 74 75 void t_pppThread::run() { 75 76 try { 76 _pppRunRealTime = new t_pppRunRealTime(_opt); 77 QThread::exec(); 77 _pppRun = new t_pppRun(_opt); 78 if (_opt->_realTime) { 79 QThread::exec(); 80 } 81 else { 82 _ppRun->processFiles(); 83 } 78 84 } 79 85 catch (t_except exc) { 80 _pppRun RealTime= 0;86 _pppRun = 0; 81 87 emit newMessage(QByteArray(exc.what().c_str()), true); 82 88 } -
trunk/BNC/src/PPP/pppThread.h
r5860 r5883 9 9 #include "pppOptions.h" 10 10 #include "pppClient.h" 11 #include "pppRun RealTime.h"11 #include "pppRun.h" 12 12 13 13 namespace BNC_PPP { … … 25 25 private: 26 26 const t_pppOptions* _opt; 27 t_pppRun RealTime*_pppRunRealTime;27 t_pppRun* _pppRun; 28 28 }; 29 29
Note:
See TracChangeset
for help on using the changeset viewer.