[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 |
|
---|
[82] | 47 | #include "bncapp.h"
|
---|
[35] | 48 | #include "bncwindow.h"
|
---|
[1535] | 49 | #include "bncsettings.h"
|
---|
[2012] | 50 | #include "bncversion.h"
|
---|
[3251] | 51 | #include "upload/bncephuploadcaster.h"
|
---|
[3972] | 52 | #ifdef USE_POSTPROCESSING
|
---|
| 53 | # include "rinex/bncpostprocess.h"
|
---|
| 54 | # include "rinex/reqcedit.h"
|
---|
| 55 | # include "rinex/reqcanalyze.h"
|
---|
| 56 | #endif
|
---|
[35] | 57 |
|
---|
| 58 | using namespace std;
|
---|
| 59 |
|
---|
[603] | 60 | void catch_signal(int) {
|
---|
| 61 | cout << "Program Interrupted by Ctrl-C" << endl;
|
---|
[3005] | 62 | exit(0);
|
---|
[603] | 63 | }
|
---|
| 64 |
|
---|
[82] | 65 | // Main Program
|
---|
| 66 | /////////////////////////////////////////////////////////////////////////////
|
---|
[35] | 67 | int main(int argc, char *argv[]) {
|
---|
| 68 |
|
---|
[4446] | 69 | bool interactive = true;
|
---|
[1552] | 70 | QByteArray rawFileName;
|
---|
[1501] | 71 | QString confFileName;
|
---|
[1146] | 72 |
|
---|
[3977] | 73 | QByteArray printHelp = "Usage: bnc --nw \n"
|
---|
| 74 | " --conf <confFileName> \n"
|
---|
| 75 | " --file <rawFileName> \n"
|
---|
| 76 | " --key <keyName> <keyValue>\n";
|
---|
| 77 |
|
---|
[100] | 78 | for (int ii = 1; ii < argc; ii++) {
|
---|
[3977] | 79 | if (QRegExp("--?help").exactMatch(argv[ii])) {
|
---|
| 80 | cout << printHelp.data();
|
---|
| 81 | exit(0);
|
---|
| 82 | }
|
---|
| 83 | if (QRegExp("--?nw").exactMatch(argv[ii])) {
|
---|
[4446] | 84 | interactive = false;
|
---|
[100] | 85 | }
|
---|
[1552] | 86 | if (ii + 1 < argc) {
|
---|
[3977] | 87 | if (QRegExp("--?conf").exactMatch(argv[ii])) {
|
---|
[1552] | 88 | confFileName = QString(argv[ii+1]);
|
---|
[1146] | 89 | }
|
---|
[3977] | 90 | if (QRegExp("--?file").exactMatch(argv[ii])) {
|
---|
[4446] | 91 | interactive = false;
|
---|
[1553] | 92 | rawFileName = QByteArray(argv[ii+1]);
|
---|
[1552] | 93 | }
|
---|
[1156] | 94 | }
|
---|
[1146] | 95 | }
|
---|
| 96 |
|
---|
[4162] | 97 | #ifdef Q_OS_MAC
|
---|
[4446] | 98 | if (argc== 3 && interactive) {
|
---|
[4162] | 99 | confFileName = QString(argv[2]);
|
---|
| 100 | }
|
---|
| 101 | #else
|
---|
[4446] | 102 | if (argc == 2 && interactive) {
|
---|
[1585] | 103 | confFileName = QString(argv[1]);
|
---|
| 104 | }
|
---|
[4162] | 105 | #endif
|
---|
[1585] | 106 |
|
---|
[4446] | 107 | #ifdef Q_WS_X11
|
---|
[4447] | 108 | bool GUIenabled = getenv("DISPLAY") != 0;
|
---|
[4446] | 109 | #else
|
---|
[4447] | 110 | bool GUIenabled = true;
|
---|
[4446] | 111 | #endif
|
---|
| 112 |
|
---|
[4447] | 113 | bncApp app(argc, argv, GUIenabled);
|
---|
[1516] | 114 |
|
---|
[1538] | 115 | app.setApplicationName("BNC");
|
---|
| 116 | app.setOrganizationName("BKG");
|
---|
| 117 | app.setOrganizationDomain("www.bkg.bund.de");
|
---|
| 118 | app.setConfFileName( confFileName );
|
---|
| 119 |
|
---|
[1535] | 120 | bncSettings settings;
|
---|
[1503] | 121 |
|
---|
[3976] | 122 | for (int ii = 1; ii < argc - 2; ii++) {
|
---|
[3978] | 123 | if (QRegExp("--?key").exactMatch(argv[ii])) {
|
---|
[3976] | 124 | QString key(argv[ii+1]);
|
---|
| 125 | QString val(argv[ii+2]);
|
---|
| 126 | settings.setValue(key, val);
|
---|
| 127 | }
|
---|
| 128 | }
|
---|
| 129 |
|
---|
[180] | 130 | // Interactive Mode - open the main window
|
---|
| 131 | // ---------------------------------------
|
---|
[4446] | 132 | if (interactive) {
|
---|
[113] | 133 |
|
---|
[3280] | 134 | app.setMode(bncApp::interactive);
|
---|
| 135 |
|
---|
[113] | 136 | QString fontString = settings.value("font").toString();
|
---|
| 137 | if ( !fontString.isEmpty() ) {
|
---|
| 138 | QFont newFont;
|
---|
| 139 | if (newFont.fromString(fontString)) {
|
---|
| 140 | QApplication::setFont(newFont);
|
---|
| 141 | }
|
---|
| 142 | }
|
---|
[142] | 143 |
|
---|
[173] | 144 | app.setWindowIcon(QPixmap(":ntrip-logo.png"));
|
---|
[113] | 145 |
|
---|
[82] | 146 | bncWindow* bncWin = new bncWindow();
|
---|
[4346] | 147 | app.setMainWindow(bncWin);
|
---|
[35] | 148 | bncWin->show();
|
---|
| 149 | }
|
---|
[180] | 150 |
|
---|
[3975] | 151 | #ifdef USE_POSTPROCESSING
|
---|
| 152 |
|
---|
| 153 | // Post-Processing PPP
|
---|
| 154 | // -------------------
|
---|
| 155 | else if (settings.value("pppSPP").toString() == "Post-Processing") {
|
---|
| 156 | app.setMode(bncApp::batchPostProcessing);
|
---|
| 157 | t_postProcessing* postProcessing = new t_postProcessing(0);
|
---|
| 158 | postProcessing->start();
|
---|
| 159 | }
|
---|
| 160 |
|
---|
[3974] | 161 | // Post-Processing reqc edit
|
---|
| 162 | // -------------------------
|
---|
| 163 | else if (settings.value("reqcAction").toString() == "Edit/Concatenate") {
|
---|
| 164 | app.setMode(bncApp::batchPostProcessing);
|
---|
| 165 | t_reqcEdit* reqcEdit = new t_reqcEdit(0);
|
---|
| 166 | reqcEdit->start();
|
---|
| 167 | }
|
---|
| 168 |
|
---|
[3975] | 169 | // Post-Processing reqc analyze
|
---|
| 170 | // ----------------------------
|
---|
| 171 | else if (settings.value("reqcAction").toString() == "Analyze") {
|
---|
| 172 | app.setMode(bncApp::batchPostProcessing);
|
---|
| 173 | t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0);
|
---|
| 174 | reqcAnalyze->start();
|
---|
| 175 | }
|
---|
| 176 |
|
---|
| 177 | #endif
|
---|
| 178 |
|
---|
[3974] | 179 | // Non-Interactive (data gathering)
|
---|
| 180 | // --------------------------------
|
---|
[35] | 181 | else {
|
---|
[621] | 182 |
|
---|
[1138] | 183 | signal(SIGINT, catch_signal);
|
---|
| 184 |
|
---|
[3251] | 185 | bncEphUploadCaster* casterEph = new bncEphUploadCaster(); (void) casterEph;
|
---|
[3974] | 186 |
|
---|
[621] | 187 | bncCaster* caster = new bncCaster(settings.value("outFile").toString(),
|
---|
| 188 | settings.value("outPort").toInt());
|
---|
| 189 |
|
---|
| 190 | app.setCaster(caster);
|
---|
[592] | 191 | app.setPort(settings.value("outEphPort").toInt());
|
---|
[937] | 192 | app.setPortCorr(settings.value("corrPort").toInt());
|
---|
[2909] | 193 | app.initCombination();
|
---|
[3974] | 194 |
|
---|
[1556] | 195 | app.connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit()));
|
---|
[3974] | 196 |
|
---|
[2012] | 197 | ((bncApp*)qApp)->slotMessage("========== Start BNC v" BNCVERSION " =========", true);
|
---|
[3974] | 198 |
|
---|
[1170] | 199 | // Normal case - data from Internet
|
---|
| 200 | // --------------------------------
|
---|
[3974] | 201 | if ( rawFileName.isEmpty() ) {
|
---|
[3280] | 202 | app.setMode(bncApp::nonInteractive);
|
---|
[4250] | 203 | caster->readMountPoints();
|
---|
[1170] | 204 | if (caster->numStations() == 0) {
|
---|
[1552] | 205 | exit(0);
|
---|
[1170] | 206 | }
|
---|
| 207 | }
|
---|
[3974] | 208 |
|
---|
[1170] | 209 | // Special case - data from file
|
---|
| 210 | // -----------------------------
|
---|
| 211 | else {
|
---|
[3280] | 212 | app.setMode(bncApp::batchPostProcessing);
|
---|
[3548] | 213 | bncRawFile* rawFile = new bncRawFile(rawFileName, "",
|
---|
[3531] | 214 | bncRawFile::input);
|
---|
[2519] | 215 | bncGetThread* getThread = new bncGetThread(rawFile);
|
---|
[2528] | 216 | caster->addGetThread(getThread, true);
|
---|
[35] | 217 | }
|
---|
| 218 | }
|
---|
[180] | 219 |
|
---|
| 220 | // Start the application
|
---|
| 221 | // ---------------------
|
---|
[35] | 222 | return app.exec();
|
---|
| 223 | }
|
---|