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