[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"
|
---|
| 49 |
|
---|
| 50 | using namespace std;
|
---|
| 51 |
|
---|
[603] | 52 | void catch_signal(int) {
|
---|
| 53 | cout << "Program Interrupted by Ctrl-C" << endl;
|
---|
[621] | 54 | ((bncApp*)qApp)->slotQuit();
|
---|
[603] | 55 | }
|
---|
| 56 |
|
---|
[82] | 57 | // Main Program
|
---|
| 58 | /////////////////////////////////////////////////////////////////////////////
|
---|
[35] | 59 | int main(int argc, char *argv[]) {
|
---|
| 60 |
|
---|
| 61 | bool GUIenabled = true;
|
---|
[100] | 62 | for (int ii = 1; ii < argc; ii++) {
|
---|
| 63 | if (QString(argv[ii]) == "-nw") {
|
---|
| 64 | GUIenabled = false;
|
---|
| 65 | break;
|
---|
| 66 | }
|
---|
[35] | 67 | }
|
---|
| 68 |
|
---|
[93] | 69 | QCoreApplication::setOrganizationName("BKG");
|
---|
[684] | 70 | QCoreApplication::setOrganizationDomain("www.bkg.bund.de");
|
---|
[93] | 71 | QCoreApplication::setApplicationName("BKG_NTRIP_Client");
|
---|
[35] | 72 |
|
---|
[180] | 73 | // Default Settings
|
---|
| 74 | // ----------------
|
---|
[113] | 75 | QSettings settings;
|
---|
[180] | 76 | if (settings.allKeys().size() == 0) {
|
---|
| 77 | settings.setValue("casterHost", "www.euref-ip.net");
|
---|
[684] | 78 | settings.setValue("casterPort", 2101);
|
---|
[180] | 79 | settings.setValue("rnxIntr", "15 min");
|
---|
[565] | 80 | settings.setValue("ephIntr", "1 day");
|
---|
[180] | 81 | settings.setValue("rnxSkel", "SKL");
|
---|
[572] | 82 | settings.setValue("waitTime", 5);
|
---|
[722] | 83 | settings.setValue("makePause", 0);
|
---|
[686] | 84 | settings.setValue("obsRate", "");
|
---|
[668] | 85 | settings.setValue("adviseFail", "15");
|
---|
| 86 | settings.setValue("adviseReco", "5");
|
---|
[728] | 87 | settings.setValue("perfIntr", "");
|
---|
[180] | 88 | }
|
---|
[114] | 89 |
|
---|
[533] | 90 | bncApp app(argc, argv, GUIenabled);
|
---|
| 91 |
|
---|
[180] | 92 | // Interactive Mode - open the main window
|
---|
| 93 | // ---------------------------------------
|
---|
[35] | 94 | if (GUIenabled) {
|
---|
[113] | 95 |
|
---|
| 96 | QString fontString = settings.value("font").toString();
|
---|
| 97 | if ( !fontString.isEmpty() ) {
|
---|
| 98 | QFont newFont;
|
---|
| 99 | if (newFont.fromString(fontString)) {
|
---|
| 100 | QApplication::setFont(newFont);
|
---|
| 101 | }
|
---|
| 102 | }
|
---|
[142] | 103 |
|
---|
[173] | 104 | app.setWindowIcon(QPixmap(":ntrip-logo.png"));
|
---|
[113] | 105 |
|
---|
[82] | 106 | bncWindow* bncWin = new bncWindow();
|
---|
[35] | 107 | bncWin->show();
|
---|
| 108 | }
|
---|
[180] | 109 |
|
---|
| 110 | // Non-Interactive (Batch) Mode
|
---|
| 111 | // ----------------------------
|
---|
[35] | 112 | else {
|
---|
[621] | 113 |
|
---|
| 114 | bncCaster* caster = new bncCaster(settings.value("outFile").toString(),
|
---|
| 115 | settings.value("outPort").toInt());
|
---|
| 116 |
|
---|
| 117 | app.setCaster(caster);
|
---|
| 118 |
|
---|
[603] | 119 | // Ctrl-C Signal Handling
|
---|
| 120 | // ----------------------
|
---|
| 121 | signal(SIGINT, catch_signal);
|
---|
[35] | 122 |
|
---|
[621] | 123 | //// beg test
|
---|
[624] | 124 | //// QTimer::singleShot(30000, &app, SLOT(slotQuit()));
|
---|
[621] | 125 | //// end test
|
---|
| 126 |
|
---|
[592] | 127 | app.setPort(settings.value("outEphPort").toInt());
|
---|
| 128 |
|
---|
[621] | 129 | app.connect(caster, SIGNAL(getThreadErrors()), &app, SLOT(quit()));
|
---|
[628] | 130 | app.connect(caster, SIGNAL(newMessage(QByteArray)),
|
---|
| 131 | &app, SLOT(slotMessage(QByteArray)));
|
---|
[295] | 132 |
|
---|
| 133 | ((bncApp*)qApp)->slotMessage("============ Start BNC ============");
|
---|
[35] | 134 |
|
---|
[278] | 135 | int iMount = -1;
|
---|
[35] | 136 | QListIterator<QString> it(settings.value("mountPoints").toStringList());
|
---|
| 137 | while (it.hasNext()) {
|
---|
[278] | 138 | ++iMount;
|
---|
[59] | 139 | QStringList hlp = it.next().split(" ");
|
---|
[82] | 140 | if (hlp.size() <= 1) continue;
|
---|
[59] | 141 | QUrl url(hlp[0]);
|
---|
[88] | 142 | QByteArray format = hlp[1].toAscii();
|
---|
[366] | 143 | QByteArray latitude = hlp[2].toAscii();
|
---|
| 144 | QByteArray longitude = hlp[3].toAscii();
|
---|
| 145 | QByteArray nmea = hlp[4].toAscii();
|
---|
| 146 | bncGetThread* getThread = new bncGetThread(url, format, latitude, longitude, nmea, iMount);
|
---|
[628] | 147 | app.connect(getThread, SIGNAL(newMessage(QByteArray)),
|
---|
| 148 | &app, SLOT(slotMessage(const QByteArray)));
|
---|
[82] | 149 |
|
---|
[621] | 150 | caster->addGetThread(getThread);
|
---|
[35] | 151 |
|
---|
| 152 | getThread->start();
|
---|
| 153 | }
|
---|
[621] | 154 | if (caster->numStations() == 0) {
|
---|
[82] | 155 | return 0;
|
---|
| 156 | }
|
---|
[35] | 157 | }
|
---|
[180] | 158 |
|
---|
| 159 | // Start the application
|
---|
| 160 | // ---------------------
|
---|
[35] | 161 | return app.exec();
|
---|
| 162 | }
|
---|