source: ntrip/branches/BNC_2.12/src/bncmain.cpp@ 9671

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

minor changes to allow combination sampling iterval of 5 seconds

File size: 24.9 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.
[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 *
[7268]37 * Changes:
[35]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
57using namespace std;
58
[9157]59void catch_SIGINT(int) {
[603]60 cout << "Program Interrupted by Ctrl-C" << endl;
[7977]61 BNC_CORE->sigintReceived = 1;
[9143]62 BNC_CORE->stopCombination();
63 BNC_CORE->stopPPP();
[7854]64 qApp->quit();
[603]65}
66
[9157]67void catch_SIGPIPE(int signum) {
68 cout << "Caught signal SIGPIPE " << signum << endl;
69}
70
[82]71// Main Program
72/////////////////////////////////////////////////////////////////////////////
[4490]73int main(int argc, char* argv[]) {
[35]74
[4446]75 bool interactive = true;
[4716]76#ifdef WIN32
77 bool displaySet = true;
78#else
[4490]79 bool displaySet = false;
[4716]80#endif
[1552]81 QByteArray rawFileName;
[1501]82 QString confFileName;
[1146]83
[7293]84 QByteArray printHelp =
[7510]85 "Usage:\n"
[7826]86 " bnc --help (MS Windows: bnc.exe --help | more)\n"
[7510]87 " --nw\n"
[7827]88 " --version (MS Windows: bnc.exe --version | more)\n"
[7510]89 " --display {name}\n"
90 " --conf {confFileName}\n"
91 " --file {rawFileName}\n"
92 " --key {keyName} {keyValue}\n"
[7273]93 "\n"
94 "Network Panel keys:\n"
[7510]95 " proxyHost {Proxy host, name or IP address [character string]}\n"
96 " proxyPort {Proxy port [integer number]}\n"
97 " sslCaCertPath {Full path to SSL certificates [character string]}\n"
[7513]98 " sslIgnoreErrors {Ignore SSL authorization errors [integer number: 0=no,2=yes]}\n"
[7273]99 "\n"
100 "General Panel keys:\n"
[7512]101 " logFile {Logfile, full path [character string]}\n"
102 " rnxAppend {Append files [integer number: 0=no,2=yes]}\n"
[8120]103 " onTheFlyInterval {Configuration reload interval [character string: no|1 day|1 hour|5 min|1 min]}\n"
[7512]104 " autoStart {Auto start [integer number: 0=no,2=yes]}\n"
105 " rawOutFile {Raw output file, full path [character string]}\n"
[7273]106 "\n"
107 "RINEX Observations Panel keys:\n"
[7510]108 " rnxPath {Directory [character string]}\n"
109 " rnxIntr {File interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
[8398]110 " rnxSampl {File sampling rate [character string: 0.1 sec|1 sec|5 sec|10 sec|15 sec|30 sec|60 sec]}\n"
[7510]111 " rnxSkel {RINEX skeleton file extension [character string]}\n"
112 " rnxOnlyWithSKL {Using RINEX skeleton file is mandatory [integer number: 0=no,2=yes]}\n"
113 " rnxScript {File upload script, full path [character string]}\n"
[7983]114 " rnxV2Priority {Priority of signal attributes [character string, list separated by blank character, example: G:12&PWCSLXYN G:5&IQX C:IQX]}\n"
[7510]115 " rnxV3 {Produce version 3 file contents [integer number: 0=no,2=yes]}\n"
[7273]116 "\n"
117 "RINEX Ephemeris Panel keys:\n"
[7510]118 " ephPath {Directory [character string]}\n"
119 " ephIntr {File interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
120 " ephOutPort {Output port [integer number]}\n"
121 " ephV3 {Produce version 3 file contents [integer number: 0=no,2=yes]}\n"
[7273]122 "\n"
123 "RINEX Editing and QC Panel keys:\n"
[7510]124 " reqcAction {Action specification [character string: Blank|Edit/Concatenate|Analyze]}\n"
125 " reqcObsFile {Input observations file(s), full path [character string, comma separated list in quotation marks]}\n"
126 " reqcNavFile {Input navigation file(s), full path [character string, comma separated list in quotation marks]}\n"
127 " reqcOutObsFile {Output observations file, full path [character string]}\n"
128 " reqcOutNavFile {Output navigation file, full path [character string]}\n"
129 " reqcOutLogFile {Output logfile, full path [character string]}\n"
130 " reqcLogSummaryOnly {Output only summary of logfile [integer number: 0=no,2=yes]}\n"
[8172]131 " reqcSkyPlotSignals {Observation signals [character string, list separated by blank character, example: C:2&7 E:1&5 G:1&2 J:1&2 R:1&2 S:1&5 I:5&9]}\n"
[7510]132 " reqcPlotDir {QC plots directory [character string]}\n"
133 " reqcRnxVersion {RINEX version [integer number: 2|3]}\n"
[8398]134 " reqcSampling {RINEX output file sampling rate [character string: 0.1 sec|1 sec|5 sec|10 sec|15 sec|30 sec|60 sec]}\n"
[8632]135 " reqcV2Priority {Version 2 priority of signal attributes [character string, list separated by blank character, example: G:12&PWCSLX G:5&IQX]}\n"
[7510]136 " reqcStartDateTime {Start time [character string, example: 1967-11-02T00:00:00]}\n"
137 " reqcEndDateTime {Stop time [character string, example: 2099-01-01T00:00:00 }\n"
138 " reqcRunBy {Operators name [character string]}\n"
139 " reqcUseObsTypes {Use observation types [character string, list separated by blank character, example: G:C1C G:L1C R:C1C RC1P]}\n"
140 " reqcComment {Additional comments [character string]}\n"
141 " reqcOldMarkerName {Old marker name [character string]}\n"
142 " reqcNewMarkerName {New marker name [character string]}\n"
143 " reqcOldAntennaName {Old antenna name [character string]}\n"
144 " reqcNewAntennaName {New antenna name [character string]}\n"
145 " reqcOldAntennaNumber {Old antenna number [character string]}\n"
146 " reqcNewAntennaNumber {New antenna number [character string]}\n"
147 " reqcOldAntennadN {Old north eccentritity [character string]}\n"
148 " reqcNewAntennadN {New north eccentricity [character string]}\n"
149 " reqcOldAntennadE {Old east eccentricity [character string]}\n"
150 " reqcNewAntennadE {New east eccentricity [character string]}\n"
151 " reqcOldAntennadU {Old up eccentricity [character string]}\n"
152 " reqcNewAntennadU {New up eccentricity [character string]}\n"
153 " reqcOldReceiverName {Old receiver name [character string]}\n"
154 " reqcNewReceiverName {New receiver name [character string]}\n"
155 " reqcOldReceiverNumber {Old receiver number [character string]}\n"
156 " reqcNewReceiverNumber {New receiver number [character string]}\n"
[7273]157 "\n"
158 "SP3 Comparison Panel keys:\n"
[7510]159 " sp3CompFile {SP3 input files, full path [character string, comma separated list in quotation marks]}\n"
[7840]160 " sp3CompExclude {Satellite exclusion list [character string, comma separated list in quotation marks, example: G04,G31,R]}\n"
[7510]161 " sp3CompOutLogFile {Output logfile, full path [character string]}\n"
[7273]162 "\n"
163 "Broadcast Corrections Panel keys:\n"
[7510]164 " corrPath {Directory for saving files in ASCII format [character string]}\n"
165 " corrIntr {File interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
166 " corrPort {Output port [integer number]}\n"
[7273]167 "\n"
168 "Feed Engine Panel keys:\n"
[7510]169 " outPort {Output port, synchronized [integer number]}\n"
170 " outWait {Wait for full observation epoch [integer number of seconds: 1-30]}\n"
[8398]171 " outSampl {Sampling rate [character string: 0.1 sec|1 sec|5 sec|10 sec|15 sec|30 sec|60 sec]}\n"
[7510]172 " outFile {Output file, full path [character string]}\n"
173 " outUPort {Output port, unsynchronized [integer number]}\n"
[7273]174 "\n"
175 "Serial Output Panel:\n"
[7510]176 " serialMountPoint {Mountpoint [character string]}\n"
177 " serialPortName {Port name [character string]}\n"
178 " serialBaudRate {Baud rate [integer number: 110|300|600|1200|2400|4800|9600|19200|38400|57600|115200]}\n"
179 " serialFlowControl {Flow control [character string: OFF|XONXOFF|HARDWARE}\n"
180 " serialDataBits {Data bits [integer number: 5|6|7|8]}\n"
181 " serialParity {Parity [character string: NONE|ODD|EVEN|SPACE]}\n"
182 " serialStopBits {Stop bits [integer number: 1|2]}\n"
183 " serialAutoNMEA {NMEA specification [character string: no|Auto|Manual GPGGA|Manual GNGGA]}\n"
184 " serialFileNMEA {NMEA filename, full path [character string]}\n"
185 " serialHeightNMEA {Height [floating-point number]}\n"
186 " serialHeightNMEASampling {Sampling rate [integer number of seconds: 0|10|20|30|...|280|290|300]}\n"
[7273]187 "\n"
188 "Outages Panel keys:\n"
[7510]189 " adviseObsRate {Stream observation rate [character string: 0.1 Hz|0.2 Hz|0.5 Hz|1 Hz|5 Hz]} \n"
190 " adviseFail {Failure threshold [integer number of minutes: 0-60]}\n"
191 " adviseReco {Recovery threshold [integer number of minutes: 0-60]}\n"
192 " adviseScript {Advisory script, full path [character string]}\n"
[7273]193 "\n"
194 "Miscellaneous Panel keys:\n"
[7510]195 " miscMount {Mountpoint [character string]}\n"
196 " miscIntr {Interval for logging latency [character string: Blank|2 sec|10 sec|1 min|5 min|15 min|1 hour|6 hours|1 day]}\n"
197 " miscScanRTCM {Scan for RTCM message numbers [integer number: 0=no,2=yes]}\n"
198 " miscPort {Output port [integer number]}\n"
[7273]199 "\n"
200 "PPP Client Panel 1 keys:\n"
[7510]201 " PPP/dataSource {Data source [character string: Blank|Real-Time Streams|RINEX Files]}\n"
202 " PPP/rinexObs {RINEX observation file, full path [character string]}\n"
203 " PPP/rinexNav {RINEX navigation file, full path [character string]}\n"
204 " PPP/corrMount {Corrections mountpoint [character string]}\n"
205 " PPP/corrFile {Corrections file, full path [character string]}\n"
[7793]206 " PPP/v3filenames {Produce version 3 filenames, 0=no,2=yes}\n"
[7510]207 " PPP/crdFile {Coordinates file, full path [character string]}\n"
208 " PPP/logPath {Directory for PPP log files [character string]}\n"
209 " PPP/antexFile {ANTEX file, full path [character string]}\n"
210 " PPP/nmeaPath {Directory for NMEA output files [character string]}\n"
211 " PPP/snxtroPath {Directory for SINEX troposphere output files [character string]}\n"
212 " PPP/snxtroIntr {SINEX troposphere file interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
[8404]213 " PPP/snxtroSampl {SINEX troposphere file sampling rate [character string: 1 sec|5 sec|10 sec|30 sec|60 sec|300 sec]}\n"
[7793]214 " PPP/snxtroAc {SINEX troposphere Analysis Center [character string]}\n"
215 " PPP/snxtroSol {SINEX troposphere solution ID [character string]}\n"
[7273]216 "\n"
217 "PPP Client Panel 2 keys:\n"
[7510]218 " PPP/staTable {Station specifications table [character string, semicolon separated list, each element in quotaion marks, example:\n"
[8632]219 " \"FFMJ00DEU1,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7777;CUT000AUS0,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7778\"]}\n"
[7273]220 "\n"
221 "PPP Client Panel 3 keys:\n"
[7510]222 " PPP/lcGPS {Select linear combination from GPS code or phase data [character string; P3|P3&L3]}\n"
223 " PPP/lcGLONASS {Select linear combination from GLONASS code or phase data [character string: no|P3|L3|P3&L3]}\n"
224 " PPP/lcGalileo {Select linear combination from Galileo code or phase data [character string: no|P3|L3|P3&L3]}\n"
225 " PPP/lcBDS {Select linear combination from BDS code or phase data [character string: no|P3|L3|P3&L3]}\n"
226 " PPP/sigmaC1 {Sigma for code observations in meters [floating-point number]}\n"
227 " PPP/sigmaL1 {Sigma for phase observations in meters [floating-point number]}\n"
228 " PPP/maxResC1 {Maximal residuum for code observations in meters [floating-point number]}\n"
229 " PPP/maxResL1 {Maximal residuum for phase observations in meters [floating-point number]}\n"
230 " PPP/eleWgtCode {Elevation dependent waiting of code observations [integer number: 0=no,2=yes]}\n"
231 " PPP/eleWgtPhase {Elevation dependent waiting of phase observations [integer number: 0=no,2=yes]}\n"
232 " PPP/minObs {Minimum number of observations [integer number: 4|5|6]}\n"
233 " PPP/minEle {Minimum satellite elevation in degrees [integer number: 0-20]}\n"
[7945]234 " PPP/corrWaitTime {Wait for clock corrections [integer number of seconds: 0-20]}\n"
[7510]235 " PPP/seedingTime {Seeding time span for Quick Start [integer number of seconds]}\n"
[7273]236 "\n"
237 "PPP Client Panel 4 keys:\n"
[7510]238 " PPP/plotCoordinates {Mountpoint for time series plot [character string]}\n"
239 " PPP/audioResponse {Audio response threshold in meters [floating-point number]}\n"
240 " PPP/mapWinDotSize {Size of dots on map [integer number: 0-10]}\n"
241 " PPP/mapWinDotColor {Color of dots and cross hair on map [character string: red|yellow]}\n"
242 " PPP/mapSpeedSlider {Offline processing speed for mapping [integer number: 1-100]}\n"
[7273]243 "\n"
244 "Combine Corrections Panel keys:\n"
[7510]245 " cmbStreams {Correction streams table [character string, semicolon separated list, each element in quotation marks, example:\n"
[7840]246 " \"IGS01 ESA 1.0;IGS03 BKG 1.0\"]}\n"
[7510]247 " cmbMethodFilter {Combination approach [character string: Single-Epoch|Filter]\n"
248 " cmbMaxres {Clock outlier residuum threshold in meters [floating-point number]\n"
[9671]249 " cmbSampl {Clock sampling rate [integer number of seconds: 0|10|20|30|40|50|60]}\n"
[7510]250 " cmbUseGlonass {Use GLONASS in combination [integer number: 0=no,2=yes]\n"
[7273]251 "\n"
252 "Upload Corrections Panel keys:\n"
[7510]253 " uploadMountpointsOut {Upload corrections table [character string, semicolon separated list, each element in quotation marks, example:\n"
[8089]254 " \"www.igs-ip.net,2101,IGS01,pass,IGS14,0,/home/user/BNC$[GPSWD}.sp3,/home/user/BNC$[GPSWD}.clk,258,1,0;\n"
[7840]255 " www.euref-ip.net,2101,EUREF01,pass,ETRF2000,0,,,258,2,0\"]}\n"
[7510]256 " uploadIntr {Length of SP3 and Clock RINEX file interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
257 " uploadSamplRtcmEphCorr {Orbit corrections stream sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]}\n"
258 " uploadSamplSp3 {SP3 file sampling rate [integer number of minutes: 0-15]}\n"
259 " uploadSamplClkRnx {Clock RINEX file sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]}\n"
[7273]260 "\n"
261 "Custom Trafo keys:\n"
[7510]262 " trafo_dx {Translation X in meters [floating-point number]\n"
263 " trafo_dy {Translation Y in meters [floating-point number]\n"
264 " trafo_dz {Translation Z in meters [floating-point number]\n"
265 " trafo_dxr {Translation change X in meters per year [floating-point number]\n"
266 " trafo_dyr {Translation change Y in meters per year [floating-point number]\n"
267 " trafo_dzr {Translation change Z in meters per year [floating-point number]\n"
268 " trafo_ox {Rotation X in arcsec [floating-point number]}\n"
269 " trafo_oy {Rotation Y in arcsec [floating-point number]}\n"
270 " trafo_oz {Rotation Z in arcsec [floating-point number]}\n"
271 " trafo_oxr {Rotation change X in arcsec per year [floating-point number]}\n"
272 " trafo_oyr {Rotation change Y in arcsec per year [floating-point number]}\n"
273 " trafo_ozr {Rotation change Z in arcsec per year [floating-point number]}\n"
274 " trafo_sc {Scale [10^-9, floating-point number]}\n"
275 " trafo_scr {Scale change [10^-9 per year, floating-point number]}\n"
276 " trafo_t0 {Reference year [integer number]}\n"
[7273]277 "\n"
278 "Upload Ephemeris Panel keys:\n"
[7510]279 " uploadEphHost {Broadcaster host, name or IP address [character string]}\n"
280 " uploadEphPort {Broadcaster port [integer number]}\n"
281 " uploadEphMountpoint {Mountpoint [character string]}\n"
282 " uploadEphPassword {Stream upload password [character string]}\n"
283 " uploadEphSample {Stream upload sampling rate [integer number of seconds: 5|10|15|20|25|30|35|40|45|50|55|60]}\n"
[7273]284 "\n"
285 "Add Stream keys:\n"
[7510]286 " mountPoints {Mountpoints [character string, semicolon separated list, example:\n"
[8632]287 " \"//user:pass@www.igs-ip.net:2101/FFMJ00DEU0 RTCM_3.1 DEU 50.09 8.66 no 2;\n"
288 " //user:pass@www.igs-ip.net:2101/FFMJ00DEU1 RTCM_3.1 DEU 50.09 8.66 no 2\"}\n"
[7510]289 " ntripVersion {Ntrip Version [character string: 1|2|2s|R|U]}\n"
290 " casterUrlList {Visited Broadcasters [character string, comma separated list]}\n"
[7283]291 "\n"
[7541]292 "Appearance keys:\n"
293 " startTab {Index of top panel to be presented at start time [integer number: 0-17]}\n"
294 " statusTab {Index of bottom panel to be presented at start time [integer number: 0-3]}\n"
295 " font {Font specification [character string in quotation marks, example: \"Helvetica,14,-1,5,50,0,0,0,0,0\"]}\n"
296 "\n"
[7477]297 "Note:\n"
[7841]298 "The syntax of some command line configuration options slightly differs from that\n"
299 "used in configuration files: Configuration file options which contain one or more blank\n"
300 "characters or contain a semicolon separated parameter list must be enclosed by quotation\n"
301 "marks when specified on command line.\n"
[7477]302 "\n"
303 "Examples command lines:\n"
[7284]304 "(1) /home/weber/bin/bnc\n"
305 "(2) /Applications/bnc.app/Contents/MacOS/bnc\n"
[7286]306 "(3) /home/weber/bin/bnc --conf /home/weber/MyConfigFile.bnc\n"
307 "(4) bnc --conf /Users/weber/.config/BKG/BNC.bnc -nw\n"
[7284]308 "(5) bnc --conf /dev/null --key startTab 4 --key reqcAction Edit/Concatenate"
[7283]309 " --key reqcObsFile AGAR.15O --key reqcOutObsFile AGAR_X.15O"
[8632]310 " --key reqcRnxVersion 2 --key reqcSampling 30 sec --key reqcV2Priority G:12&PWCSLX G:5&IQX\n"
311 "(6) bnc --key mountPoints \"//user:pass@mgex.igs-ip.net:2101/CUT000AUS0 RTCM_3.0 ETH 9.03 38.74 no 2;"
312 "//user:pass@www.igs-ip.net:2101/FFMJ00DEU1 RTCM_3.1 DEU 50.09 8.66 no 2\"\n"
[7477]313 "(7) bnc --key cmbStreams \"CLK11 BLG 1.0;CLK93 CNES 1.0\"\n"
[8089]314 "(8) bnc --key uploadMountpointsOut \"products.igs-ip.net,98756,TEST,letmein,IGS14,2,/Users/weber/BNC${GPSWD}.clk,,33,3,2;"
[8439]315 "www.euref-ip.net,333,TEST2,aaaaa,ETRF2000,2,,,33,5,5\"\n"
[8632]316 "(9) bnc --key PPP/staTable \"FFMJ00DEU1,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7777;"
317 "CUT000AUS0,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7778\"\n";
[3977]318
[100]319 for (int ii = 1; ii < argc; ii++) {
[3977]320 if (QRegExp("--?help").exactMatch(argv[ii])) {
321 cout << printHelp.data();
322 exit(0);
323 }
324 if (QRegExp("--?nw").exactMatch(argv[ii])) {
[4446]325 interactive = false;
[100]326 }
[7268]327 if (QRegExp("--?version").exactMatch(argv[ii])) {
328 cout << BNCPGMNAME << endl;
329 exit(0);
330 }
[4490]331 if (QRegExp("--?display").exactMatch(argv[ii])) {
332 displaySet = true;
[4492]333 strcpy(argv[ii], "-display"); // make it "-display" not "--display"
[4490]334 }
[1552]335 if (ii + 1 < argc) {
[3977]336 if (QRegExp("--?conf").exactMatch(argv[ii])) {
[1552]337 confFileName = QString(argv[ii+1]);
[1146]338 }
[3977]339 if (QRegExp("--?file").exactMatch(argv[ii])) {
[4446]340 interactive = false;
[1553]341 rawFileName = QByteArray(argv[ii+1]);
[1552]342 }
[1156]343 }
[1146]344 }
345
[4162]346#ifdef Q_OS_MAC
[4446]347 if (argc== 3 && interactive) {
[4162]348 confFileName = QString(argv[2]);
349 }
350#else
[4446]351 if (argc == 2 && interactive) {
[1585]352 confFileName = QString(argv[1]);
353 }
[4162]354#endif
[1585]355
[6548]356#ifdef Q_OS_MACX
357 if ( QSysInfo::MacintoshVersion > QSysInfo::MV_10_8 )
358 {
359 // fix Mac OS X 10.9 (mavericks) font issue
360 // https://bugreports.qt-project.org/browse/QTBUG-32789
361 QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande");
362 }
363#endif
364
[4491]365 bool GUIenabled = interactive || displaySet;
[5066]366 t_app app(argc, argv, GUIenabled);
[1516]367
[1538]368 app.setApplicationName("BNC");
369 app.setOrganizationName("BKG");
370 app.setOrganizationDomain("www.bkg.bund.de");
[5084]371
372 BNC_CORE->setGUIenabled(GUIenabled);
[5068]373 BNC_CORE->setConfFileName( confFileName );
[1538]374
[1535]375 bncSettings settings;
[1503]376
[3976]377 for (int ii = 1; ii < argc - 2; ii++) {
[3978]378 if (QRegExp("--?key").exactMatch(argv[ii])) {
[3976]379 QString key(argv[ii+1]);
380 QString val(argv[ii+2]);
[7476]381 if (val.indexOf(";") != -1) {
[7293]382 settings.setValue(key, val.split(";", QString::SkipEmptyParts));
383 }
384 else {
385 settings.setValue(key, val);
386 }
[3976]387 }
388 }
389
[7640]390 bncWindow* bncWin = 0;
391 t_reqcEdit* reqcEdit = 0;
392 t_reqcAnalyze* reqcAnalyze = 0;
393 t_sp3Comp* sp3Comp = 0;
394 bncEphUploadCaster* casterEph = 0;
395 bncCaster* caster = 0;
396 bncRawFile* rawFile = 0;
397 bncGetThread* getThread = 0;
398
[9160]399#ifndef WIN32
[9157]400 signal(SIGPIPE, catch_SIGPIPE);
[9160]401#endif
[8726]402
[180]403 // Interactive Mode - open the main window
404 // ---------------------------------------
[4446]405 if (interactive) {
[113]406
[5072]407 BNC_CORE->setMode(t_bncCore::interactive);
[3280]408
[113]409 QString fontString = settings.value("font").toString();
410 if ( !fontString.isEmpty() ) {
411 QFont newFont;
412 if (newFont.fromString(fontString)) {
413 QApplication::setFont(newFont);
414 }
415 }
[7268]416
[173]417 app.setWindowIcon(QPixmap(":ntrip-logo.png"));
[113]418
[7640]419 bncWin = new bncWindow();
[5068]420 BNC_CORE->setMainWindow(bncWin);
[35]421 bncWin->show();
422 }
[180]423
[7268]424 // Post-Processing PPP
[6343]425 // -------------------
426 else if (settings.value("PPP/dataSource").toString() == "RINEX Files") {
[7640]427 caster = new bncCaster();
[6343]428 BNC_CORE->setCaster(caster);
429 BNC_CORE->setMode(t_bncCore::batchPostProcessing);
430 BNC_CORE->startPPP();
431 }
432
[3974]433 // Post-Processing reqc edit
434 // -------------------------
[5864]435 else if (settings.value("reqcAction").toString() == "Edit/Concatenate") {
[5072]436 BNC_CORE->setMode(t_bncCore::batchPostProcessing);
[7640]437 reqcEdit = new t_reqcEdit(0);
[3974]438 reqcEdit->start();
439 }
440
[3975]441 // Post-Processing reqc analyze
442 // ----------------------------
443 else if (settings.value("reqcAction").toString() == "Analyze") {
[5072]444 BNC_CORE->setMode(t_bncCore::batchPostProcessing);
[7640]445 reqcAnalyze = new t_reqcAnalyze(0);
[3975]446 reqcAnalyze->start();
447 }
448
[6343]449 // SP3 Files Comparison
450 // --------------------
451 else if (!settings.value("sp3CompFile").toString().isEmpty()) {
[5926]452 BNC_CORE->setMode(t_bncCore::batchPostProcessing);
[7640]453 sp3Comp = new t_sp3Comp(0);
[6343]454 sp3Comp->start();
[5926]455 }
456
[3974]457 // Non-Interactive (data gathering)
458 // --------------------------------
[35]459 else {
[621]460
[9157]461 signal(SIGINT, catch_SIGINT);
[1138]462
[7640]463 casterEph = new bncEphUploadCaster(); (void) casterEph;
[7268]464
[7640]465 caster = new bncCaster();
[7268]466
[5068]467 BNC_CORE->setCaster(caster);
[7327]468 BNC_CORE->setPortEph(settings.value("ephOutPort").toInt());
[5068]469 BNC_CORE->setPortCorr(settings.value("corrPort").toInt());
470 BNC_CORE->initCombination();
[7268]471
[5729]472 BNC_CORE->connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit()));
[7268]473
[7883]474 BNC_CORE->slotMessage("========== Start BNC v" BNCVERSION" ("BNC_OS") ==========", true);
[5845]475
[1170]476 // Normal case - data from Internet
477 // --------------------------------
[3974]478 if ( rawFileName.isEmpty() ) {
[5072]479 BNC_CORE->setMode(t_bncCore::nonInteractive);
[5946]480 BNC_CORE->startPPP();
[5905]481
[4250]482 caster->readMountPoints();
[1170]483 if (caster->numStations() == 0) {
[1552]484 exit(0);
[1170]485 }
486 }
[7268]487
[1170]488 // Special case - data from file
489 // -----------------------------
490 else {
[7977]491 BNC_CORE->sigintReceived = 0;
[5072]492 BNC_CORE->setMode(t_bncCore::batchPostProcessing);
[5946]493 BNC_CORE->startPPP();
[5905]494
[7640]495 rawFile = new bncRawFile(rawFileName, "", bncRawFile::input);
496 getThread = new bncGetThread(rawFile);
[2528]497 caster->addGetThread(getThread, true);
[35]498 }
499 }
[180]500
501 // Start the application
502 // ---------------------
[7640]503 app.exec();
504 if (interactive) {
505 delete bncWin;
506 }
[7854]507 else {
508 BNC_CORE->stopPPP();
509 BNC_CORE->stopCombination();
510 }
[7640]511 if (caster) {
[7854]512 delete caster; caster = 0; BNC_CORE->setCaster(0);
[7640]513 }
514 if (casterEph) {
[7854]515 delete casterEph; casterEph = 0;
[7640]516 }
517 if (rawFile) {
518 delete rawFile;
519 }
520 return 0;
[35]521}
Note: See TracBrowser for help on using the repository browser.