| 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: main
|
|---|
| 30 | *
|
|---|
| 31 | * Purpose: Application starts here
|
|---|
| 32 | *
|
|---|
| 33 | * Author: L. Mervart
|
|---|
| 34 | *
|
|---|
| 35 | * Created: 24-Dec-2005
|
|---|
| 36 | *
|
|---|
| 37 | * Changes:
|
|---|
| 38 | *
|
|---|
| 39 | * -----------------------------------------------------------------------*/
|
|---|
| 40 |
|
|---|
| 41 | #include <unistd.h>
|
|---|
| 42 | #include <signal.h>
|
|---|
| 43 | #include <QApplication>
|
|---|
| 44 | #include <QFile>
|
|---|
| 45 | #include <iostream>
|
|---|
| 46 |
|
|---|
| 47 | #include "app.h"
|
|---|
| 48 | #include "bnccore.h"
|
|---|
| 49 | #include "bncwindow.h"
|
|---|
| 50 | #include "bncsettings.h"
|
|---|
| 51 | #include "bncversion.h"
|
|---|
| 52 | #include "upload/bncephuploadcaster.h"
|
|---|
| 53 | #include "rinex/reqcedit.h"
|
|---|
| 54 | #include "rinex/reqcanalyze.h"
|
|---|
| 55 | #include "orbComp/sp3Comp.h"
|
|---|
| 56 |
|
|---|
| 57 | using namespace std;
|
|---|
| 58 |
|
|---|
| 59 | void catch_signal(int) {
|
|---|
| 60 | cout << "Program Interrupted by Ctrl-C" << endl;
|
|---|
| 61 | exit(0);
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | // Main Program
|
|---|
| 65 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 66 | int main(int argc, char* argv[]) {
|
|---|
| 67 |
|
|---|
| 68 | bool interactive = true;
|
|---|
| 69 | #ifdef WIN32
|
|---|
| 70 | bool displaySet = true;
|
|---|
| 71 | #else
|
|---|
| 72 | bool displaySet = false;
|
|---|
| 73 | #endif
|
|---|
| 74 | QByteArray rawFileName;
|
|---|
| 75 | QString confFileName;
|
|---|
| 76 |
|
|---|
| 77 | QByteArray printHelp = "Usage: bnc --nw \n"
|
|---|
| 78 | " --display <XXX> \n"
|
|---|
| 79 | " --conf <confFileName> \n"
|
|---|
| 80 | " --file <rawFileName> \n"
|
|---|
| 81 | " --key <keyName> <keyValue>\n";
|
|---|
| 82 |
|
|---|
| 83 | for (int ii = 1; ii < argc; ii++) {
|
|---|
| 84 | if (QRegExp("--?help").exactMatch(argv[ii])) {
|
|---|
| 85 | cout << printHelp.data();
|
|---|
| 86 | exit(0);
|
|---|
| 87 | }
|
|---|
| 88 | if (QRegExp("--?nw").exactMatch(argv[ii])) {
|
|---|
| 89 | interactive = false;
|
|---|
| 90 | }
|
|---|
| 91 | if (QRegExp("--?display").exactMatch(argv[ii])) {
|
|---|
| 92 | displaySet = true;
|
|---|
| 93 | strcpy(argv[ii], "-display"); // make it "-display" not "--display"
|
|---|
| 94 | }
|
|---|
| 95 | if (ii + 1 < argc) {
|
|---|
| 96 | if (QRegExp("--?conf").exactMatch(argv[ii])) {
|
|---|
| 97 | confFileName = QString(argv[ii+1]);
|
|---|
| 98 | }
|
|---|
| 99 | if (QRegExp("--?file").exactMatch(argv[ii])) {
|
|---|
| 100 | interactive = false;
|
|---|
| 101 | rawFileName = QByteArray(argv[ii+1]);
|
|---|
| 102 | }
|
|---|
| 103 | }
|
|---|
| 104 | }
|
|---|
| 105 |
|
|---|
| 106 | #ifdef Q_OS_MAC
|
|---|
| 107 | if (argc== 3 && interactive) {
|
|---|
| 108 | confFileName = QString(argv[2]);
|
|---|
| 109 | }
|
|---|
| 110 | #else
|
|---|
| 111 | if (argc == 2 && interactive) {
|
|---|
| 112 | confFileName = QString(argv[1]);
|
|---|
| 113 | }
|
|---|
| 114 | #endif
|
|---|
| 115 |
|
|---|
| 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 |
|
|---|
| 125 | bool GUIenabled = interactive || displaySet;
|
|---|
| 126 | t_app app(argc, argv, GUIenabled);
|
|---|
| 127 |
|
|---|
| 128 | app.setApplicationName("BNC");
|
|---|
| 129 | app.setOrganizationName("BKG");
|
|---|
| 130 | app.setOrganizationDomain("www.bkg.bund.de");
|
|---|
| 131 |
|
|---|
| 132 | BNC_CORE->setGUIenabled(GUIenabled);
|
|---|
| 133 | BNC_CORE->setConfFileName( confFileName );
|
|---|
| 134 |
|
|---|
| 135 | bncSettings settings;
|
|---|
| 136 |
|
|---|
| 137 | for (int ii = 1; ii < argc - 2; ii++) {
|
|---|
| 138 | if (QRegExp("--?key").exactMatch(argv[ii])) {
|
|---|
| 139 | QString key(argv[ii+1]);
|
|---|
| 140 | QString val(argv[ii+2]);
|
|---|
| 141 | settings.setValue(key, val);
|
|---|
| 142 | }
|
|---|
| 143 | }
|
|---|
| 144 |
|
|---|
| 145 | // Interactive Mode - open the main window
|
|---|
| 146 | // ---------------------------------------
|
|---|
| 147 | if (interactive) {
|
|---|
| 148 |
|
|---|
| 149 | BNC_CORE->setMode(t_bncCore::interactive);
|
|---|
| 150 |
|
|---|
| 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 | }
|
|---|
| 158 |
|
|---|
| 159 | app.setWindowIcon(QPixmap(":ntrip-logo.png"));
|
|---|
| 160 |
|
|---|
| 161 | bncWindow* bncWin = new bncWindow();
|
|---|
| 162 | BNC_CORE->setMainWindow(bncWin);
|
|---|
| 163 | bncWin->show();
|
|---|
| 164 | }
|
|---|
| 165 |
|
|---|
| 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 |
|
|---|
| 175 | // Post-Processing reqc edit
|
|---|
| 176 | // -------------------------
|
|---|
| 177 | else if (settings.value("reqcAction").toString() == "Edit/Concatenate") {
|
|---|
| 178 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
|---|
| 179 | t_reqcEdit* reqcEdit = new t_reqcEdit(0);
|
|---|
| 180 | reqcEdit->start();
|
|---|
| 181 | }
|
|---|
| 182 |
|
|---|
| 183 | // Post-Processing reqc analyze
|
|---|
| 184 | // ----------------------------
|
|---|
| 185 | else if (settings.value("reqcAction").toString() == "Analyze") {
|
|---|
| 186 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
|---|
| 187 | t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0);
|
|---|
| 188 | reqcAnalyze->start();
|
|---|
| 189 | }
|
|---|
| 190 |
|
|---|
| 191 | // SP3 Files Comparison
|
|---|
| 192 | // --------------------
|
|---|
| 193 | else if (!settings.value("sp3CompFile").toString().isEmpty()) {
|
|---|
| 194 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
|---|
| 195 | t_sp3Comp* sp3Comp = new t_sp3Comp(0);
|
|---|
| 196 | sp3Comp->start();
|
|---|
| 197 | }
|
|---|
| 198 |
|
|---|
| 199 | // Non-Interactive (data gathering)
|
|---|
| 200 | // --------------------------------
|
|---|
| 201 | else {
|
|---|
| 202 |
|
|---|
| 203 | signal(SIGINT, catch_signal);
|
|---|
| 204 |
|
|---|
| 205 | bncEphUploadCaster* casterEph = new bncEphUploadCaster(); (void) casterEph;
|
|---|
| 206 |
|
|---|
| 207 | bncCaster* caster = new bncCaster();
|
|---|
| 208 |
|
|---|
| 209 | BNC_CORE->setCaster(caster);
|
|---|
| 210 | BNC_CORE->setPortEph(settings.value("outEphPort").toInt());
|
|---|
| 211 | BNC_CORE->setPortCorr(settings.value("corrPort").toInt());
|
|---|
| 212 | BNC_CORE->initCombination();
|
|---|
| 213 |
|
|---|
| 214 | BNC_CORE->connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit()));
|
|---|
| 215 |
|
|---|
| 216 | BNC_CORE->slotMessage("========== Start BNC v" BNCVERSION " ("BNC_OS") ==========", true);
|
|---|
| 217 |
|
|---|
| 218 | // Normal case - data from Internet
|
|---|
| 219 | // --------------------------------
|
|---|
| 220 | if ( rawFileName.isEmpty() ) {
|
|---|
| 221 | BNC_CORE->setMode(t_bncCore::nonInteractive);
|
|---|
| 222 | BNC_CORE->startPPP();
|
|---|
| 223 |
|
|---|
| 224 | caster->readMountPoints();
|
|---|
| 225 | if (caster->numStations() == 0) {
|
|---|
| 226 | exit(0);
|
|---|
| 227 | }
|
|---|
| 228 | }
|
|---|
| 229 |
|
|---|
| 230 | // Special case - data from file
|
|---|
| 231 | // -----------------------------
|
|---|
| 232 | else {
|
|---|
| 233 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
|---|
| 234 | BNC_CORE->startPPP();
|
|---|
| 235 |
|
|---|
| 236 | bncRawFile* rawFile = new bncRawFile(rawFileName, "", bncRawFile::input);
|
|---|
| 237 | bncGetThread* getThread = new bncGetThread(rawFile);
|
|---|
| 238 | caster->addGetThread(getThread, true);
|
|---|
| 239 | }
|
|---|
| 240 | }
|
|---|
| 241 |
|
|---|
| 242 | // Start the application
|
|---|
| 243 | // ---------------------
|
|---|
| 244 | return app.exec();
|
|---|
| 245 | }
|
|---|