[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.
|
---|
[35] | 24 |
|
---|
| 25 | /* -------------------------------------------------------------------------
|
---|
[93] | 26 | * BKG NTRIP Client
|
---|
[35] | 27 | * -------------------------------------------------------------------------
|
---|
| 28 | *
|
---|
| 29 | * Class: main
|
---|
| 30 | *
|
---|
| 31 | * Purpose: Application starts here
|
---|
| 32 | *
|
---|
| 33 | * Author: L. Mervart
|
---|
| 34 | *
|
---|
| 35 | * Created: 24-Dec-2005
|
---|
| 36 | *
|
---|
| 37 | * Changes:
|
---|
| 38 | *
|
---|
| 39 | * -----------------------------------------------------------------------*/
|
---|
| 40 |
|
---|
[274] | 41 | #include <unistd.h>
|
---|
[603] | 42 | #include <signal.h>
|
---|
[35] | 43 | #include <QApplication>
|
---|
| 44 | #include <QFile>
|
---|
| 45 | #include <iostream>
|
---|
| 46 |
|
---|
[5066] | 47 | #include "app.h"
|
---|
[5070] | 48 | #include "bnccore.h"
|
---|
[35] | 49 | #include "bncwindow.h"
|
---|
[1535] | 50 | #include "bncsettings.h"
|
---|
[2012] | 51 | #include "bncversion.h"
|
---|
[3251] | 52 | #include "upload/bncephuploadcaster.h"
|
---|
[5887] | 53 | #include "rinex/reqcedit.h"
|
---|
| 54 | #include "rinex/reqcanalyze.h"
|
---|
[6343] | 55 | #include "orbComp/sp3Comp.h"
|
---|
[35] | 56 |
|
---|
| 57 | using namespace std;
|
---|
| 58 |
|
---|
[603] | 59 | void catch_signal(int) {
|
---|
| 60 | cout << "Program Interrupted by Ctrl-C" << endl;
|
---|
[3005] | 61 | exit(0);
|
---|
[603] | 62 | }
|
---|
| 63 |
|
---|
[82] | 64 | // Main Program
|
---|
| 65 | /////////////////////////////////////////////////////////////////////////////
|
---|
[4490] | 66 | int main(int argc, char* argv[]) {
|
---|
[35] | 67 |
|
---|
[4446] | 68 | bool interactive = true;
|
---|
[4716] | 69 | #ifdef WIN32
|
---|
| 70 | bool displaySet = true;
|
---|
| 71 | #else
|
---|
[4490] | 72 | bool displaySet = false;
|
---|
[4716] | 73 | #endif
|
---|
[1552] | 74 | QByteArray rawFileName;
|
---|
[1501] | 75 | QString confFileName;
|
---|
[1146] | 76 |
|
---|
[3977] | 77 | QByteArray printHelp = "Usage: bnc --nw \n"
|
---|
[4490] | 78 | " --display <XXX> \n"
|
---|
[3977] | 79 | " --conf <confFileName> \n"
|
---|
| 80 | " --file <rawFileName> \n"
|
---|
| 81 | " --key <keyName> <keyValue>\n";
|
---|
| 82 |
|
---|
[100] | 83 | for (int ii = 1; ii < argc; ii++) {
|
---|
[3977] | 84 | if (QRegExp("--?help").exactMatch(argv[ii])) {
|
---|
| 85 | cout << printHelp.data();
|
---|
| 86 | exit(0);
|
---|
| 87 | }
|
---|
| 88 | if (QRegExp("--?nw").exactMatch(argv[ii])) {
|
---|
[4446] | 89 | interactive = false;
|
---|
[100] | 90 | }
|
---|
[4490] | 91 | if (QRegExp("--?display").exactMatch(argv[ii])) {
|
---|
| 92 | displaySet = true;
|
---|
[4492] | 93 | strcpy(argv[ii], "-display"); // make it "-display" not "--display"
|
---|
[4490] | 94 | }
|
---|
[1552] | 95 | if (ii + 1 < argc) {
|
---|
[3977] | 96 | if (QRegExp("--?conf").exactMatch(argv[ii])) {
|
---|
[1552] | 97 | confFileName = QString(argv[ii+1]);
|
---|
[1146] | 98 | }
|
---|
[3977] | 99 | if (QRegExp("--?file").exactMatch(argv[ii])) {
|
---|
[4446] | 100 | interactive = false;
|
---|
[1553] | 101 | rawFileName = QByteArray(argv[ii+1]);
|
---|
[1552] | 102 | }
|
---|
[1156] | 103 | }
|
---|
[1146] | 104 | }
|
---|
| 105 |
|
---|
[4162] | 106 | #ifdef Q_OS_MAC
|
---|
[4446] | 107 | if (argc== 3 && interactive) {
|
---|
[4162] | 108 | confFileName = QString(argv[2]);
|
---|
| 109 | }
|
---|
| 110 | #else
|
---|
[4446] | 111 | if (argc == 2 && interactive) {
|
---|
[1585] | 112 | confFileName = QString(argv[1]);
|
---|
| 113 | }
|
---|
[4162] | 114 | #endif
|
---|
[1585] | 115 |
|
---|
[6548] | 116 | #ifdef Q_OS_MACX
|
---|
| 117 | if ( QSysInfo::MacintoshVersion > QSysInfo::MV_10_8 )
|
---|
| 118 | {
|
---|
| 119 | // fix Mac OS X 10.9 (mavericks) font issue
|
---|
| 120 | // https://bugreports.qt-project.org/browse/QTBUG-32789
|
---|
| 121 | QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande");
|
---|
| 122 | }
|
---|
| 123 | #endif
|
---|
| 124 |
|
---|
[4491] | 125 | bool GUIenabled = interactive || displaySet;
|
---|
[5066] | 126 | t_app app(argc, argv, GUIenabled);
|
---|
[1516] | 127 |
|
---|
[1538] | 128 | app.setApplicationName("BNC");
|
---|
| 129 | app.setOrganizationName("BKG");
|
---|
| 130 | app.setOrganizationDomain("www.bkg.bund.de");
|
---|
[5084] | 131 |
|
---|
| 132 | BNC_CORE->setGUIenabled(GUIenabled);
|
---|
[5068] | 133 | BNC_CORE->setConfFileName( confFileName );
|
---|
[1538] | 134 |
|
---|
[1535] | 135 | bncSettings settings;
|
---|
[1503] | 136 |
|
---|
[3976] | 137 | for (int ii = 1; ii < argc - 2; ii++) {
|
---|
[3978] | 138 | if (QRegExp("--?key").exactMatch(argv[ii])) {
|
---|
[3976] | 139 | QString key(argv[ii+1]);
|
---|
| 140 | QString val(argv[ii+2]);
|
---|
| 141 | settings.setValue(key, val);
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
| 144 |
|
---|
[180] | 145 | // Interactive Mode - open the main window
|
---|
| 146 | // ---------------------------------------
|
---|
[4446] | 147 | if (interactive) {
|
---|
[113] | 148 |
|
---|
[5072] | 149 | BNC_CORE->setMode(t_bncCore::interactive);
|
---|
[3280] | 150 |
|
---|
[113] | 151 | QString fontString = settings.value("font").toString();
|
---|
| 152 | if ( !fontString.isEmpty() ) {
|
---|
| 153 | QFont newFont;
|
---|
| 154 | if (newFont.fromString(fontString)) {
|
---|
| 155 | QApplication::setFont(newFont);
|
---|
| 156 | }
|
---|
| 157 | }
|
---|
[142] | 158 |
|
---|
[173] | 159 | app.setWindowIcon(QPixmap(":ntrip-logo.png"));
|
---|
[113] | 160 |
|
---|
[82] | 161 | bncWindow* bncWin = new bncWindow();
|
---|
[5068] | 162 | BNC_CORE->setMainWindow(bncWin);
|
---|
[35] | 163 | bncWin->show();
|
---|
| 164 | }
|
---|
[180] | 165 |
|
---|
[6343] | 166 | // Post-Processing PPP
|
---|
| 167 | // -------------------
|
---|
| 168 | else if (settings.value("PPP/dataSource").toString() == "RINEX Files") {
|
---|
| 169 | bncCaster* caster = new bncCaster();
|
---|
| 170 | BNC_CORE->setCaster(caster);
|
---|
| 171 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
| 172 | BNC_CORE->startPPP();
|
---|
| 173 | }
|
---|
| 174 |
|
---|
[3974] | 175 | // Post-Processing reqc edit
|
---|
| 176 | // -------------------------
|
---|
[5864] | 177 | else if (settings.value("reqcAction").toString() == "Edit/Concatenate") {
|
---|
[5072] | 178 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[3974] | 179 | t_reqcEdit* reqcEdit = new t_reqcEdit(0);
|
---|
| 180 | reqcEdit->start();
|
---|
| 181 | }
|
---|
| 182 |
|
---|
[3975] | 183 | // Post-Processing reqc analyze
|
---|
| 184 | // ----------------------------
|
---|
| 185 | else if (settings.value("reqcAction").toString() == "Analyze") {
|
---|
[5072] | 186 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[3975] | 187 | t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0);
|
---|
| 188 | reqcAnalyze->start();
|
---|
| 189 | }
|
---|
| 190 |
|
---|
[6343] | 191 | // SP3 Files Comparison
|
---|
| 192 | // --------------------
|
---|
| 193 | else if (!settings.value("sp3CompFile").toString().isEmpty()) {
|
---|
[5926] | 194 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[6343] | 195 | t_sp3Comp* sp3Comp = new t_sp3Comp(0);
|
---|
| 196 | sp3Comp->start();
|
---|
[5926] | 197 | }
|
---|
| 198 |
|
---|
[3974] | 199 | // Non-Interactive (data gathering)
|
---|
| 200 | // --------------------------------
|
---|
[35] | 201 | else {
|
---|
[621] | 202 |
|
---|
[1138] | 203 | signal(SIGINT, catch_signal);
|
---|
| 204 |
|
---|
[3251] | 205 | bncEphUploadCaster* casterEph = new bncEphUploadCaster(); (void) casterEph;
|
---|
[3974] | 206 |
|
---|
[5729] | 207 | bncCaster* caster = new bncCaster();
|
---|
[621] | 208 |
|
---|
[5068] | 209 | BNC_CORE->setCaster(caster);
|
---|
[6451] | 210 | BNC_CORE->setPortEph(settings.value("outEphPort").toInt());
|
---|
[5068] | 211 | BNC_CORE->setPortCorr(settings.value("corrPort").toInt());
|
---|
| 212 | BNC_CORE->initCombination();
|
---|
[3974] | 213 |
|
---|
[5729] | 214 | BNC_CORE->connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit()));
|
---|
[3974] | 215 |
|
---|
[6569] | 216 | BNC_CORE->slotMessage("========== Start BNC v" BNCVERSION " ("BNC_OS") ==========", true);
|
---|
[5845] | 217 |
|
---|
[1170] | 218 | // Normal case - data from Internet
|
---|
| 219 | // --------------------------------
|
---|
[3974] | 220 | if ( rawFileName.isEmpty() ) {
|
---|
[5072] | 221 | BNC_CORE->setMode(t_bncCore::nonInteractive);
|
---|
[5946] | 222 | BNC_CORE->startPPP();
|
---|
[5905] | 223 |
|
---|
[4250] | 224 | caster->readMountPoints();
|
---|
[1170] | 225 | if (caster->numStations() == 0) {
|
---|
[1552] | 226 | exit(0);
|
---|
[1170] | 227 | }
|
---|
| 228 | }
|
---|
[3974] | 229 |
|
---|
[1170] | 230 | // Special case - data from file
|
---|
| 231 | // -----------------------------
|
---|
| 232 | else {
|
---|
[5072] | 233 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[5946] | 234 | BNC_CORE->startPPP();
|
---|
[5905] | 235 |
|
---|
| 236 | bncRawFile* rawFile = new bncRawFile(rawFileName, "", bncRawFile::input);
|
---|
[2519] | 237 | bncGetThread* getThread = new bncGetThread(rawFile);
|
---|
[2528] | 238 | caster->addGetThread(getThread, true);
|
---|
[35] | 239 | }
|
---|
| 240 | }
|
---|
[180] | 241 |
|
---|
| 242 | // Start the application
|
---|
| 243 | // ---------------------
|
---|
[35] | 244 | return app.exec();
|
---|
| 245 | }
|
---|