source: ntrip/trunk/BNC/src/bncmain.cpp@ 4490

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