[3248] | 1 | /* -------------------------------------------------------------------------
|
---|
| 2 | * BKG NTRIP Server
|
---|
| 3 | * -------------------------------------------------------------------------
|
---|
| 4 | *
|
---|
| 5 | * Class: bncEphUploadCaster
|
---|
| 6 | *
|
---|
| 7 | * Purpose: Connection to NTRIP Caster for Ephemeris
|
---|
| 8 | *
|
---|
| 9 | * Author: L. Mervart
|
---|
| 10 | *
|
---|
| 11 | * Created: 03-Apr-2011
|
---|
| 12 | *
|
---|
[7716] | 13 | * Changes:
|
---|
[3248] | 14 | *
|
---|
| 15 | * -----------------------------------------------------------------------*/
|
---|
| 16 |
|
---|
[3258] | 17 | #include <iostream>
|
---|
[3248] | 18 | #include <math.h>
|
---|
[7716] | 19 | #include "bncephuploadcaster.h"
|
---|
[3253] | 20 | #include "bncsettings.h"
|
---|
[5855] | 21 | #include "RTCM3/ephEncoder.h"
|
---|
[3248] | 22 |
|
---|
| 23 | using namespace std;
|
---|
| 24 |
|
---|
| 25 | // Constructor
|
---|
| 26 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6441] | 27 | bncEphUploadCaster::bncEphUploadCaster() : bncEphUser(true) {
|
---|
[3253] | 28 | bncSettings settings;
|
---|
[7889] | 29 | int sampl = settings.value("uploadSamplRtcmEph").toInt();
|
---|
[3253] | 30 |
|
---|
[7889] | 31 | // List of upload casters
|
---|
| 32 | // ----------------------
|
---|
| 33 | int iRow = -1;
|
---|
| 34 | QListIterator<QString> it(settings.value("uploadEphMountpointsOut").toStringList());
|
---|
| 35 | while (it.hasNext()) {
|
---|
| 36 | QStringList hlp = it.next().split(",");
|
---|
[8275] | 37 | if (hlp.size() > 5) {
|
---|
[7889] | 38 | ++iRow;
|
---|
| 39 | int outPort = hlp[1].toInt();
|
---|
| 40 | bncUploadCaster* newCaster = new bncUploadCaster(hlp[2], hlp[0], outPort,
|
---|
[8275] | 41 | hlp[3], hlp[4],
|
---|
| 42 | hlp[5], iRow, sampl);
|
---|
[3253] | 43 |
|
---|
[7889] | 44 | connect(newCaster, SIGNAL(newBytes(QByteArray,double)),
|
---|
| 45 | this, SIGNAL(newBytes(QByteArray,double)));
|
---|
[3254] | 46 |
|
---|
[7889] | 47 | newCaster->start();
|
---|
| 48 | _casters.push_back(newCaster);
|
---|
| 49 | }
|
---|
[3255] | 50 | }
|
---|
[3248] | 51 | }
|
---|
| 52 |
|
---|
| 53 | // Destructor
|
---|
| 54 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 55 | bncEphUploadCaster::~bncEphUploadCaster() {
|
---|
[7889] | 56 | for (int ic = 0; ic < _casters.size(); ic++) {
|
---|
| 57 | _casters[ic]->deleteSafely();
|
---|
[3255] | 58 | }
|
---|
[3248] | 59 | }
|
---|
| 60 |
|
---|
| 61 | // List of Stored Ephemeris changed (virtual)
|
---|
| 62 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 63 | void bncEphUploadCaster::ephBufferChanged() {
|
---|
[7889] | 64 | bncSettings settings;
|
---|
| 65 | int iRow = -1;
|
---|
| 66 | QListIterator<QString> it(settings.value("uploadEphMountpointsOut").toStringList());
|
---|
| 67 | while (it.hasNext()) {
|
---|
| 68 | QStringList hlp = it.next().split(",");
|
---|
| 69 | if (hlp.size() > 3) {
|
---|
| 70 | ++iRow;
|
---|
[8352] | 71 | QString system = hlp[6];
|
---|
[7889] | 72 | QByteArray outBuffer;
|
---|
[6443] | 73 |
|
---|
[7889] | 74 | QDateTime now = currentDateAndTimeGPS();
|
---|
| 75 | bncTime currentTime(now.toString(Qt::ISODate).toStdString());
|
---|
[7716] | 76 |
|
---|
[7889] | 77 | QListIterator<QString> it(prnList());
|
---|
| 78 | while (it.hasNext()) {
|
---|
| 79 | const t_eph* eph = ephLast(it.next());
|
---|
[3256] | 80 |
|
---|
[7889] | 81 | bncTime toc = eph->TOC();
|
---|
| 82 | double timeDiff = fabs(toc - currentTime);
|
---|
[7716] | 83 |
|
---|
[7889] | 84 | const t_ephGPS* ephGPS = dynamic_cast<const t_ephGPS*>(eph);
|
---|
| 85 | const t_ephGlo* ephGlo = dynamic_cast<const t_ephGlo*>(eph);
|
---|
| 86 | const t_ephGal* ephGal = dynamic_cast<const t_ephGal*>(eph);
|
---|
| 87 | const t_ephSBAS* ephSBAS = dynamic_cast<const t_ephSBAS*>(eph);
|
---|
| 88 | const t_ephBDS* ephBDS = dynamic_cast<const t_ephBDS*>(eph);
|
---|
[6443] | 89 |
|
---|
[7889] | 90 | unsigned char Array[80];
|
---|
| 91 | int size = 0;
|
---|
[6443] | 92 |
|
---|
[7889] | 93 | if (ephGPS && ephGPS->type() == t_eph::GPS &&
|
---|
| 94 | (system == "ALL" || system == "GPS")) {
|
---|
| 95 | if (timeDiff <= 4*3600) {
|
---|
| 96 | size = t_ephEncoder::RTCM3(*ephGPS, Array);
|
---|
| 97 | }
|
---|
[7716] | 98 | }
|
---|
[7889] | 99 | else if (ephGPS && ephGPS->type() == t_eph::QZSS &&
|
---|
| 100 | (system == "ALL" || system == "QZSS")) {
|
---|
| 101 | if (timeDiff <= 4*3600) {
|
---|
| 102 | size = t_ephEncoder::RTCM3(*ephGPS, Array);
|
---|
| 103 | }
|
---|
[7716] | 104 | }
|
---|
[7889] | 105 | else if (ephGlo && (system == "ALL" || system == "GLONASS")) {
|
---|
| 106 | if (timeDiff <= 1*3600) {
|
---|
| 107 | size = t_ephEncoder::RTCM3(*ephGlo, Array);
|
---|
| 108 | }
|
---|
[7716] | 109 | }
|
---|
[7889] | 110 | else if (ephGal && (system == "ALL" || system == "Galileo")) {
|
---|
| 111 | if (timeDiff <= 4*3600) {
|
---|
| 112 | size = t_ephEncoder::RTCM3(*ephGal, Array);
|
---|
| 113 | }
|
---|
[7716] | 114 | }
|
---|
[7889] | 115 | else if (ephSBAS && (system == "ALL" || system == "SBAS")) {
|
---|
| 116 | if (timeDiff <= 600) {
|
---|
| 117 | size = t_ephEncoder::RTCM3(*ephSBAS, Array);
|
---|
| 118 | }
|
---|
[7716] | 119 | }
|
---|
[7889] | 120 | else if (ephBDS && (system == "ALL" || system == "BDS")) {
|
---|
| 121 | if (timeDiff <= 6*3600) {
|
---|
| 122 | size = t_ephEncoder::RTCM3(*ephBDS, Array);
|
---|
| 123 | }
|
---|
| 124 | }
|
---|
| 125 | if (size > 0) {
|
---|
| 126 | outBuffer += QByteArray((char*) Array, size);
|
---|
| 127 | }
|
---|
[6403] | 128 | }
|
---|
[7889] | 129 | if (outBuffer.size() > 0) {
|
---|
| 130 | _casters.at(iRow)->setOutBuffer(outBuffer);
|
---|
[3256] | 131 | }
|
---|
| 132 | }
|
---|
[3255] | 133 | }
|
---|
[3248] | 134 | }
|
---|