source: ntrip/trunk/BNC/src/bnccore.cpp@ 9591

Last change on this file since 9591 was 9591, checked in by stuerze, 2 years ago

minor changes

File size: 23.8 KB
RevLine 
[280]1// Part of BNC, a utility for retrieving decoding and
[464]2// converting GNSS data streams from NTRIP broadcasters.
[280]3//
[464]4// Copyright (C) 2007
[280]5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
[464]7// Czech Technical University Prague, Department of Geodesy
[280]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.
[82]24
25/* -------------------------------------------------------------------------
[93]26 * BKG NTRIP Client
[82]27 * -------------------------------------------------------------------------
28 *
[5072]29 * Class: t_bncCore
[82]30 *
31 * Purpose: This class implements the main application
32 *
33 * Author: L. Mervart
34 *
35 * Created: 29-Aug-2006
36 *
[7291]37 * Changes:
[82]38 *
39 * -----------------------------------------------------------------------*/
40
[1029]41#include <iostream>
[6461]42#include <sstream>
[150]43#include <QMessageBox>
[519]44#include <cmath>
[82]45
[7291]46#include "bnccore.h"
47#include "bncutils.h"
48#include "bncrinex.h"
49#include "bncsettings.h"
50#include "bncversion.h"
51#include "ephemeris.h"
52#include "rinex/rnxobsfile.h"
53#include "rinex/rnxnavfile.h"
[6051]54#include "pppMain.h"
[7298]55#include "combination/bnccomb.h"
[82]56
57using namespace std;
58
[7291]59// Singleton
[5084]60////////////////////////////////////////////////////////////////////////////
[5861]61t_bncCore* t_bncCore::instance() {
[5084]62 static t_bncCore _bncCore;
[5861]63 return &_bncCore;
[5084]64}
65
[82]66// Constructor
67////////////////////////////////////////////////////////////////////////////
[6441]68t_bncCore::t_bncCore() : _ephUser(false) {
[5084]69 _GUIenabled = true;
[150]70 _logFileFlag = 0;
71 _logFile = 0;
72 _logStream = 0;
[2519]73 _rawFile = 0;
[5729]74 _caster = 0;
[2922]75 _bncComb = 0;
[152]76
[533]77 // Eph file(s)
78 // -----------
[534]79 _rinexVers = 0;
[533]80 _ephFileGPS = 0;
81 _ephStreamGPS = 0;
82 _ephFileGlonass = 0;
83 _ephStreamGlonass = 0;
[2770]84 _ephFileGalileo = 0;
85 _ephStreamGalileo = 0;
[6384]86 _ephFileSBAS = 0;
87 _ephStreamSBAS = 0;
[559]88
[6451]89 _portEph = 0;
90 _serverEph = 0;
91 _socketsEph = 0;
[589]92
[937]93 _portCorr = 0;
94 _serverCorr = 0;
95 _socketsCorr = 0;
96
[2011]97 _pgmName = QString(BNCPGMNAME).leftJustified(20, ' ', true);
[559]98#ifdef WIN32
99 _userName = QString("${USERNAME}");
100#else
101 _userName = QString("${USER}");
102#endif
103 expandEnvVar(_userName);
[973]104
[6151]105 _userName = _userName.leftJustified(20, ' ', true);
[5846]106 _dateAndTimeGPS = 0;
[6151]107 _mainWindow = 0;
[2673]108
[5899]109 _pppMain = new BNC_PPP::t_pppMain();
[6486]110 qRegisterMetaType< QVector<double> > ("QVector<double>");
111 qRegisterMetaType<bncTime> ("bncTime");
112 qRegisterMetaType<t_ephGPS> ("t_ephGPS");
113 qRegisterMetaType<t_ephGlo> ("t_ephGlo");
114 qRegisterMetaType<t_ephGal> ("t_ephGal");
115 qRegisterMetaType<t_ephSBAS> ("t_ephSBAS");
[6598]116 qRegisterMetaType<t_ephBDS> ("t_ephBDS");
[6486]117 qRegisterMetaType<QList<t_orbCorr> > ("QList<t_orbCorr>");
118 qRegisterMetaType<QList<t_clkCorr> > ("QList<t_clkCorr>");
119 qRegisterMetaType<QList<t_satCodeBias> > ("QList<t_satCodeBias>");
120 qRegisterMetaType<QList<t_satPhaseBias> > ("QList<t_satPhaseBias>");
121 qRegisterMetaType<t_vTec> ("t_vTec");
[82]122}
123
124// Destructor
125////////////////////////////////////////////////////////////////////////////
[5072]126t_bncCore::~t_bncCore() {
[109]127 delete _logStream;
128 delete _logFile;
[533]129 delete _ephStreamGPS;
130 delete _ephFileGPS;
[6451]131 delete _serverEph;
132 delete _socketsEph;
[937]133 delete _serverCorr;
134 delete _socketsCorr;
[534]135 if (_rinexVers == 2) {
[533]136 delete _ephStreamGlonass;
137 delete _ephFileGlonass;
138 }
[975]139
[5846]140 delete _dateAndTimeGPS;
[2519]141 delete _rawFile;
[2865]142 delete _bncComb;
[7856]143 delete _pppMain;
[82]144}
145
146// Write a Program Message
147////////////////////////////////////////////////////////////////////////////
[5072]148void t_bncCore::slotMessage(QByteArray msg, bool showOnScreen) {
[150]149
[1218]150 QMutexLocker locker(&_mutexMessage);
[243]151
[990]152 messagePrivate(msg);
[1299]153 emit newMessage(msg, showOnScreen);
[990]154}
155
156// Write a Program Message (private, no lock)
157////////////////////////////////////////////////////////////////////////////
[5072]158void t_bncCore::messagePrivate(const QByteArray& msg) {
[990]159
[150]160 // First time resolve the log file name
161 // ------------------------------------
[1549]162 QDate currDate = currentDateAndTimeGPS().date();
163 if (_logFileFlag == 0 || _fileDate != currDate) {
[3034]164 delete _logStream; _logStream = 0;
165 delete _logFile; _logFile = 0;
[150]166 _logFileFlag = 1;
[1535]167 bncSettings settings;
[150]168 QString logFileName = settings.value("logFile").toString();
169 if ( !logFileName.isEmpty() ) {
[151]170 expandEnvVar(logFileName);
[7291]171 _logFile = new QFile(logFileName + "_" +
[8127]172 currDate.toString("yyMMdd").toLatin1().data());
[1549]173 _fileDate = currDate;
[275]174 if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
175 _logFile->open(QIODevice::WriteOnly | QIODevice::Append);
176 }
177 else {
178 _logFile->open(QIODevice::WriteOnly);
179 }
[150]180 _logStream = new QTextStream();
181 _logStream->setDevice(_logFile);
182 }
183 }
184
[109]185 if (_logStream) {
[3371]186 QByteArray msgLocal = msg;
187 if (msg.indexOf('\n') == 0) {
[9591]188 *_logStream << endl;
[3371]189 msgLocal = msg.mid(1);
190 }
[8127]191 *_logStream << currentDateAndTimeGPS().toString("yy-MM-dd hh:mm:ss ").toLatin1().data();
[9591]192 *_logStream << msgLocal.data() << endl;
[109]193 _logStream->flush();
[3637]194 _logFile->flush();
[82]195 }
196}
[511]197
[7291]198//
[511]199////////////////////////////////////////////////////////////////////////////
[6520]200t_irc t_bncCore::checkPrintEph(t_eph* eph) {
[516]201 QMutexLocker locker(&_mutex);
[6520]202 t_irc ircPut = _ephUser.putNewEph(eph, true);
[9379]203#ifdef BNC_DEBUG_BCEP
[7208]204 if (eph->checkState() == t_eph::bad) {
[9219]205 messagePrivate(QString("%1: WRONG EPHEMERIS: %2")
[9217]206 .arg(eph->receptStaID())
[9213]207 .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 3.0)).toLatin1());
[6520]208 return failure;
[6519]209 }
[7208]210 else if (eph->checkState() == t_eph::outdated) {
[9219]211 messagePrivate(QString("%1: OUTDATED EPHEMERIS: %2")
[9217]212 .arg(eph->receptStaID())
[9212]213 .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 3.0)).toLatin1());
[7208]214 return failure;
215 }
[8215]216 else if (eph->checkState() == t_eph::unhealthy) {
[9217]217 messagePrivate(QString("%1: UNHEALTHY EPHEMERIS: %2")
218 .arg(eph->receptStaID())
[9212]219 .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 3.0)).toLatin1());
[8215]220 }
[9379]221#endif
[534]222 printEphHeader();
[6520]223 printEph(*eph, (ircPut == success));
224 return success;
[511]225}
[6520]226
[7291]227// New GPS Ephemeris
[6520]228////////////////////////////////////////////////////////////////////////////
229void t_bncCore::slotNewGPSEph(t_ephGPS eph) {
230 if (checkPrintEph(&eph) == success) {
231 emit newGPSEph(eph);
232 }
233}
[7291]234
[535]235// New Glonass Ephemeris
[511]236////////////////////////////////////////////////////////////////////////////
[6432]237void t_bncCore::slotNewGlonassEph(t_ephGlo eph) {
[6520]238 if (checkPrintEph(&eph) == success) {
239 emit newGlonassEph(eph);
[6519]240 }
[511]241}
242
[2770]243// New Galileo Ephemeris
244////////////////////////////////////////////////////////////////////////////
[6432]245void t_bncCore::slotNewGalileoEph(t_ephGal eph) {
[6520]246 if (checkPrintEph(&eph) == success) {
247 emit newGalileoEph(eph);
[6519]248 }
[6432]249}
[2772]250
[6432]251// New SBAS Ephemeris
252////////////////////////////////////////////////////////////////////////////
253void t_bncCore::slotNewSBASEph(t_ephSBAS eph) {
[6520]254 if (checkPrintEph(&eph) == success) {
255 emit newSBASEph(eph);
[6519]256 }
[2770]257}
258
[6598]259// New BDS Ephemeris
[6595]260////////////////////////////////////////////////////////////////////////////
[6598]261void t_bncCore::slotNewBDSEph(t_ephBDS eph) {
[6595]262 if (checkPrintEph(&eph) == success) {
[6598]263 emit newBDSEph(eph);
[6595]264 }
265}
[6432]266
[535]267// Print Header of the output File(s)
[516]268////////////////////////////////////////////////////////////////////////////
[5072]269void t_bncCore::printEphHeader() {
[528]270
[1535]271 bncSettings settings;
[7999]272 QStringList comments;
[535]273
[7999]274 QListIterator<QString> it(settings.value("mountPoints").toStringList());
275 while (it.hasNext()) {
276 QStringList hlp = it.next().split(" ");
277 if (hlp.size() < 7)
278 continue;
279 QUrl url(hlp[0]);
280 QString decoder = hlp[1];
281 comments.append("Source: " + decoder +
[8203]282 " " + QUrl::toAce(url.host()) +
[8127]283 "/" + url.path().mid(1).toLatin1());
[7999]284 }
285
[534]286 // Initialization
287 // --------------
288 if (_rinexVers == 0) {
[528]289
[9158]290 if ( Qt::CheckState(settings.value("ephV2").toInt()) == Qt::Checked) {
291 _rinexVers = 2;
[533]292 }
293 else {
[9158]294 _rinexVers = 3;
[533]295 }
[529]296
[533]297 _ephPath = settings.value("ephPath").toString();
298
299 if ( !_ephPath.isEmpty() ) {
300 if ( _ephPath[_ephPath.length()-1] != QDir::separator() ) {
301 _ephPath += QDir::separator();
302 }
303 expandEnvVar(_ephPath);
304 }
[517]305 }
[533]306
[534]307 // (Re-)Open output File(s)
308 // ------------------------
[533]309 if (!_ephPath.isEmpty()) {
310
[1154]311 QDateTime datTim = currentDateAndTimeGPS();
[533]312
[7179]313 QString ephFileNameGPS = _ephPath + "BRDC";
[533]314
[9158]315 bool ephV2 = (_rinexVers == 2)? true : false;
[7179]316
[7291]317 QString hlpStr = bncRinex::nextEpochStr(datTim,
[9158]318 settings.value("ephIntr").toString(), ephV2);
[584]319
[575]320 if (_rinexVers == 3) {
[8354]321 QString country = "WRD"; // WORLD
322 QString monNum = "0";
323 QString recNum = "0";
324 ephFileNameGPS += QString("%1").arg(monNum, 1, 10) +
325 QString("%1").arg(recNum, 1, 10) +
326 country +
327 "_S_" + // stream
328 QString("%1").arg(datTim.date().year()) +
329 QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0')) +
330 hlpStr + // HM_period
331 "_MN.rnx"; // mixed BRDC
[575]332 }
[7179]333 else { // RNX v2.11
334 ephFileNameGPS += QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0')) +
335 hlpStr + datTim.toString(".yyN");
[575]336 }
[563]337
[533]338 if (_ephFileNameGPS == ephFileNameGPS) {
339 return;
340 }
341 else {
342 _ephFileNameGPS = ephFileNameGPS;
343 }
344
345 delete _ephStreamGPS;
346 delete _ephFileGPS;
347
[535]348 QFlags<QIODevice::OpenModeFlag> appendFlagGPS;
[536]349 QFlags<QIODevice::OpenModeFlag> appendFlagGlonass;
350
[535]351 if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked &&
352 QFile::exists(ephFileNameGPS) ) {
353 appendFlagGPS = QIODevice::Append;
354 }
355
[533]356 _ephFileGPS = new QFile(ephFileNameGPS);
[535]357 _ephFileGPS->open(QIODevice::WriteOnly | appendFlagGPS);
[533]358 _ephStreamGPS = new QTextStream();
359 _ephStreamGPS->setDevice(_ephFileGPS);
360
[534]361 if (_rinexVers == 3) {
[533]362 _ephFileGlonass = _ephFileGPS;
363 _ephStreamGlonass = _ephStreamGPS;
[2770]364 _ephFileGalileo = _ephFileGPS;
365 _ephStreamGalileo = _ephStreamGPS;
[6384]366 _ephFileSBAS = _ephFileGPS;
367 _ephStreamSBAS = _ephStreamGPS;
[533]368 }
[534]369 else if (_rinexVers == 2) {
[583]370 QString ephFileNameGlonass = _ephPath + "BRDC" +
[563]371 QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0')) +
[575]372 hlpStr + datTim.toString(".yyG");
[533]373
374 delete _ephStreamGlonass;
375 delete _ephFileGlonass;
376
[535]377 if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked &&
378 QFile::exists(ephFileNameGlonass) ) {
379 appendFlagGlonass = QIODevice::Append;
380 }
381
[533]382 _ephFileGlonass = new QFile(ephFileNameGlonass);
[535]383 _ephFileGlonass->open(QIODevice::WriteOnly | appendFlagGlonass);
[533]384 _ephStreamGlonass = new QTextStream();
385 _ephStreamGlonass->setDevice(_ephFileGlonass);
386 }
387
[534]388 // Header - RINEX Version 3
389 // ------------------------
390 if (_rinexVers == 3) {
[537]391 if ( ! (appendFlagGPS & QIODevice::Append)) {
392 QString line;
[9587]393 line.asprintf(
[7291]394 "%9.2f%11sN: GNSS NAV DATA M: Mixed%12sRINEX VERSION / TYPE\n",
[8127]395 defaultRnxNavVersion3, "", "");
[537]396 *_ephStreamGPS << line;
[7291]397
[1154]398 QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);
[8127]399 *_ephStreamGPS << _pgmName.toLatin1().data()
400 << _userName.toLatin1().data()
401 << hlp.toLatin1().data()
[9591]402 << "PGM / RUN BY / DATE" << endl;
[559]403
[7999]404 QStringListIterator it(comments);
405 while (it.hasNext()) {
406 *_ephStreamGPS << it.next().trimmed().left(60).leftJustified(60) << "COMMENT\n";
407 }
408
[9587]409 line.asprintf("%60sEND OF HEADER\n", "");
[537]410 *_ephStreamGPS << line;
[7291]411
[537]412 _ephStreamGPS->flush();
[535]413 }
[533]414 }
415
[536]416 // Headers - RINEX Version 2
417 // -------------------------
[534]418 else if (_rinexVers == 2) {
[536]419 if (! (appendFlagGPS & QIODevice::Append)) {
420 QString line;
[9587]421 line.asprintf("%9.2f%11sN: GPS NAV DATA%25sRINEX VERSION / TYPE\n",
[8127]422 defaultRnxNavVersion2, "", "");
[536]423 *_ephStreamGPS << line;
[7291]424
[1154]425 QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
[8127]426 *_ephStreamGPS << _pgmName.toLatin1().data()
427 << _userName.toLatin1().data()
428 << hlp.toLatin1().data()
[9591]429 << "PGM / RUN BY / DATE" << endl;
[559]430
[7999]431 QStringListIterator it(comments);
432 while (it.hasNext()) {
433 *_ephStreamGPS << it.next().trimmed().left(60).leftJustified(60) << "COMMENT\n";
434 }
435
[9587]436 line.asprintf("%60sEND OF HEADER\n", "");
[536]437 *_ephStreamGPS << line;
[537]438
439 _ephStreamGPS->flush();
[536]440 }
441 if (! (appendFlagGlonass & QIODevice::Append)) {
442 QString line;
[9571]443 line.asprintf("%9.2f%11sG: GLONASS NAV DATA%21sRINEX VERSION / TYPE\n",
[8127]444 defaultRnxNavVersion2, "", "");
[536]445 *_ephStreamGlonass << line;
[7291]446
[1154]447 QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
[8127]448 *_ephStreamGlonass << _pgmName.toLatin1().data()
449 << _userName.toLatin1().data()
450 << hlp.toLatin1().data()
[9591]451 << "PGM / RUN BY / DATE" << endl;
[559]452
[7999]453 QStringListIterator it(comments);
454 while (it.hasNext()) {
455 *_ephStreamGlonass << it.next().trimmed().left(60).leftJustified(60) << "COMMENT\n";
456 }
457
[9571]458 line.asprintf("%60sEND OF HEADER\n", "");
[536]459 *_ephStreamGlonass << line;
[537]460
461 _ephStreamGlonass->flush();
[536]462 }
[533]463 }
464 }
[516]465}
466
[6432]467// Print One Ephemeris
[516]468////////////////////////////////////////////////////////////////////////////
[6432]469void t_bncCore::printEph(const t_eph& eph, bool printFile) {
[519]470
[8127]471 QString strV2 = eph.toString(defaultRnxNavVersion2);
[9483]472 QString strV3 = eph.toString(defaultRnxNavVersion3);
[941]473
[7026]474 if (_rinexVers == 2 && eph.type() == t_eph::GLONASS) {
475 printOutputEph(printFile, _ephStreamGlonass, strV2, strV3);
476 }
477 else if(_rinexVers == 2 && eph.type() == t_eph::GPS) {
478 printOutputEph(printFile, _ephStreamGPS, strV2, strV3);
479 }
480 else if (_rinexVers == 3) {
481 printOutputEph(printFile, _ephStreamGPS, strV2, strV3);
482 }
[941]483}
484
485// Output
486////////////////////////////////////////////////////////////////////////////
[6451]487void t_bncCore::printOutputEph(bool printFile, QTextStream* stream,
488 const QString& strV2, const QString& strV3) {
[4020]489
[590]490 // Output into file
491 // ----------------
[943]492 if (printFile && stream) {
[941]493 if (_rinexVers == 2) {
[8127]494 *stream << strV2.toLatin1();
[941]495 }
496 else {
[8127]497 *stream << strV3.toLatin1();
[941]498 }
[943]499 stream->flush();
[517]500 }
[590]501
502 // Output into the socket
503 // ----------------------
[6451]504 if (_socketsEph) {
505 QMutableListIterator<QTcpSocket*> is(*_socketsEph);
[590]506 while (is.hasNext()) {
507 QTcpSocket* sock = is.next();
508 if (sock->state() == QAbstractSocket::ConnectedState) {
[8127]509 if (sock->write(strV3.toLatin1()) == -1) {
[642]510 delete sock;
511 is.remove();
512 }
[590]513 }
[642]514 else if (sock->state() != QAbstractSocket::ConnectingState) {
515 delete sock;
516 is.remove();
517 }
[590]518 }
519 }
[516]520}
[589]521
[591]522// Set Port Number
523////////////////////////////////////////////////////////////////////////////
[6451]524void t_bncCore::setPortEph(int port) {
525 _portEph = port;
526 if (_portEph != 0) {
527 delete _serverEph;
528 _serverEph = new QTcpServer;
[8921]529 _serverEph->setProxy(QNetworkProxy::NoProxy);
[6451]530 if ( !_serverEph->listen(QHostAddress::Any, _portEph) ) {
[8918]531 QString message = "t_bncCore: Cannot listen on ephemeris port "
[8921]532 + QByteArray::number(_portEph) + ": "
533 + _serverEph->errorString();
[8918]534 slotMessage(message.toLatin1(), true);
[1228]535 }
[6451]536 connect(_serverEph, SIGNAL(newConnection()), this, SLOT(slotNewConnectionEph()));
537 delete _socketsEph;
538 _socketsEph = new QList<QTcpSocket*>;
[591]539 }
540}
541
[937]542// Set Port Number
543////////////////////////////////////////////////////////////////////////////
[5072]544void t_bncCore::setPortCorr(int port) {
[937]545 _portCorr = port;
546 if (_portCorr != 0) {
[942]547 delete _serverCorr;
[937]548 _serverCorr = new QTcpServer;
[8921]549 _serverCorr->setProxy(QNetworkProxy::NoProxy);
[1228]550 if ( !_serverCorr->listen(QHostAddress::Any, _portCorr) ) {
[8918]551 QString message = "t_bncCore: Cannot listen on correction port "
[8921]552 + QByteArray::number(_portCorr) + ": "
553 + _serverCorr->errorString();
[8918]554 slotMessage(message.toLatin1(), true);
[1228]555 }
[937]556 connect(_serverCorr, SIGNAL(newConnection()), this, SLOT(slotNewConnectionCorr()));
[942]557 delete _socketsCorr;
[937]558 _socketsCorr = new QList<QTcpSocket*>;
559 }
560}
561
[589]562// New Connection
563////////////////////////////////////////////////////////////////////////////
[6451]564void t_bncCore::slotNewConnectionEph() {
565 _socketsEph->push_back( _serverEph->nextPendingConnection() );
[589]566}
567
[937]568// New Connection
569////////////////////////////////////////////////////////////////////////////
[5072]570void t_bncCore::slotNewConnectionCorr() {
[937]571 _socketsCorr->push_back( _serverCorr->nextPendingConnection() );
572}
573
[7291]574//
[621]575////////////////////////////////////////////////////////////////////////////
[5072]576void t_bncCore::slotQuit() {
[5729]577 delete _caster; _caster = 0;
[5066]578 qApp->quit();
[621]579}
580
[7291]581//
[936]582////////////////////////////////////////////////////////////////////////////
[6141]583void t_bncCore::slotNewOrbCorrections(QList<t_orbCorr> orbCorrections) {
[6151]584 QMutexLocker locker(&_mutex);
[6141]585 emit newOrbCorrections(orbCorrections);
[6151]586 if (_socketsCorr) {
[6455]587 ostringstream out;
[7291]588 t_orbCorr::writeEpoch(&out, orbCorrections);
[6455]589 QMutableListIterator<QTcpSocket*> is(*_socketsCorr);
590 while (is.hasNext()) {
591 QTcpSocket* sock = is.next();
592 if (sock->state() == QAbstractSocket::ConnectedState) {
593 if (sock->write(out.str().c_str()) == -1) {
[6151]594 delete sock;
595 is.remove();
596 }
597 }
[6455]598 else if (sock->state() != QAbstractSocket::ConnectingState) {
599 delete sock;
600 is.remove();
601 }
[6151]602 }
603 }
[6141]604}
[974]605
[7291]606//
[6141]607////////////////////////////////////////////////////////////////////////////
608void t_bncCore::slotNewClkCorrections(QList<t_clkCorr> clkCorrections) {
[974]609 QMutexLocker locker(&_mutex);
[6151]610 emit newClkCorrections(clkCorrections);
[3109]611 if (_socketsCorr) {
[6455]612 ostringstream out;
[7291]613 t_clkCorr::writeEpoch(&out, clkCorrections);
[6455]614 QMutableListIterator<QTcpSocket*> is(*_socketsCorr);
615 while (is.hasNext()) {
616 QTcpSocket* sock = is.next();
617 if (sock->state() == QAbstractSocket::ConnectedState) {
618 if (sock->write(out.str().c_str()) == -1) {
[3109]619 delete sock;
620 is.remove();
621 }
[937]622 }
[6455]623 else if (sock->state() != QAbstractSocket::ConnectingState) {
624 delete sock;
625 is.remove();
626 }
[937]627 }
628 }
[936]629}
[1538]630
[7291]631//
[1538]632////////////////////////////////////////////////////////////////////////////
[6480]633void t_bncCore::slotNewCodeBiases(QList<t_satCodeBias> codeBiases) {
[6485]634 QMutexLocker locker(&_mutex);
635 emit newCodeBiases(codeBiases);
636 if (_socketsCorr) {
637 ostringstream out;
[7291]638 t_satCodeBias::writeEpoch(&out, codeBiases);
[6485]639 QMutableListIterator<QTcpSocket*> is(*_socketsCorr);
640 while (is.hasNext()) {
641 QTcpSocket* sock = is.next();
642 if (sock->state() == QAbstractSocket::ConnectedState) {
643 if (sock->write(out.str().c_str()) == -1) {
644 delete sock;
645 is.remove();
646 }
647 }
648 else if (sock->state() != QAbstractSocket::ConnectingState) {
649 delete sock;
650 is.remove();
651 }
652 }
653 }
[6480]654}
655
[7291]656//
[6480]657////////////////////////////////////////////////////////////////////////////
[6484]658void t_bncCore::slotNewPhaseBiases(QList<t_satPhaseBias> phaseBiases) {
[6485]659 QMutexLocker locker(&_mutex);
660 emit newPhaseBiases(phaseBiases);
661 if (_socketsCorr) {
662 ostringstream out;
[7291]663 t_satPhaseBias::writeEpoch(&out, phaseBiases);
[6485]664 QMutableListIterator<QTcpSocket*> is(*_socketsCorr);
665 while (is.hasNext()) {
666 QTcpSocket* sock = is.next();
667 if (sock->state() == QAbstractSocket::ConnectedState) {
668 if (sock->write(out.str().c_str()) == -1) {
669 delete sock;
670 is.remove();
671 }
672 }
673 else if (sock->state() != QAbstractSocket::ConnectingState) {
674 delete sock;
675 is.remove();
676 }
677 }
678 }
[6484]679}
680
[7291]681//
[6484]682////////////////////////////////////////////////////////////////////////////
683void t_bncCore::slotNewTec(t_vTec vTec) {
[6485]684 QMutexLocker locker(&_mutex);
685 emit newTec(vTec);
686 if (_socketsCorr) {
687 ostringstream out;
[7291]688 t_vTec::write(&out, vTec);
[6485]689 QMutableListIterator<QTcpSocket*> is(*_socketsCorr);
690 while (is.hasNext()) {
691 QTcpSocket* sock = is.next();
692 if (sock->state() == QAbstractSocket::ConnectedState) {
693 if (sock->write(out.str().c_str()) == -1) {
694 delete sock;
695 is.remove();
696 }
697 }
698 else if (sock->state() != QAbstractSocket::ConnectingState) {
699 delete sock;
700 is.remove();
701 }
702 }
703 }
[6484]704}
705
[7291]706//
[6484]707////////////////////////////////////////////////////////////////////////////
[5072]708void t_bncCore::setConfFileName(const QString& confFileName) {
[4169]709 if (confFileName.isEmpty()) {
[7291]710 _confFileName = QDir::homePath() + QDir::separator()
[4169]711 + ".config" + QDir::separator()
[5066]712 + qApp->organizationName() + QDir::separator()
713 + qApp->applicationName() + ".bnc";
[1538]714 }
[4169]715 else {
716 _confFileName = confFileName;
717 }
[1538]718}
[2385]719
720// Raw Output
721////////////////////////////////////////////////////////////////////////////
[5072]722void t_bncCore::writeRawData(const QByteArray& data, const QByteArray& staID,
[2518]723 const QByteArray& format) {
[2385]724
[2386]725 QMutexLocker locker(&_mutex);
726
[2519]727 if (!_rawFile) {
[2386]728 bncSettings settings;
[2519]729 QByteArray fileName = settings.value("rawOutFile").toByteArray();
730 if (!fileName.isEmpty()) {
[3524]731 _rawFile = new bncRawFile(fileName, staID, bncRawFile::output);
[2407]732 }
[2386]733 }
734
[2519]735 if (_rawFile) {
736 _rawFile->writeRawData(data, staID, format);
[2386]737 }
[2385]738}
[2672]739
[7291]740//
[2909]741////////////////////////////////////////////////////////////////////////////
[5072]742void t_bncCore::initCombination() {
[2909]743 _bncComb = new bncComb();
[3142]744 if (_bncComb->nStreams() < 1) {
[2909]745 delete _bncComb;
746 _bncComb = 0;
747 }
748}
[3231]749
[7291]750//
[3231]751////////////////////////////////////////////////////////////////////////////
[5072]752void t_bncCore::stopCombination() {
[3231]753 delete _bncComb;
754 _bncComb = 0;
755}
[4167]756
[5846]757//
758////////////////////////////////////////////////////////////////////////////
759bool t_bncCore::dateAndTimeGPSSet() const {
760 QMutexLocker locker(&_mutexDateAndTimeGPS);
761 if (_dateAndTimeGPS) {
762 return true;
763 }
764 else {
765 return false;
766 }
767}
768
769//
770////////////////////////////////////////////////////////////////////////////
771QDateTime t_bncCore::dateAndTimeGPS() const {
772 QMutexLocker locker(&_mutexDateAndTimeGPS);
773 if (_dateAndTimeGPS) {
774 return *_dateAndTimeGPS;
775 }
776 else {
777 return QDateTime();
778 }
779}
780
781//
782////////////////////////////////////////////////////////////////////////////
783void t_bncCore::setDateAndTimeGPS(QDateTime dateTime) {
784 QMutexLocker locker(&_mutexDateAndTimeGPS);
785 delete _dateAndTimeGPS;
786 _dateAndTimeGPS = new QDateTime(dateTime);
787}
[5900]788
789//
790////////////////////////////////////////////////////////////////////////////
[5946]791void t_bncCore::startPPP() {
792 _pppMain->start();
[5900]793}
794
795//
796////////////////////////////////////////////////////////////////////////////
797void t_bncCore::stopPPP() {
[5903]798 _pppMain->stop();
[5972]799 emit stopRinexPPP();
[5900]800}
[6383]801
Note: See TracBrowser for help on using the repository browser.