// Part of BNC, a utility for retrieving decoding and // converting GNSS data streams from NTRIP broadcasters. // // Copyright (C) 2007 // German Federal Agency for Cartography and Geodesy (BKG) // http://www.bkg.bund.de // Czech Technical University Prague, Department of Geodesy // http://www.fsv.cvut.cz // // Email: euref-ip@bkg.bund.de // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation, version 2. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* ------------------------------------------------------------------------- * BKG NTRIP Client * ------------------------------------------------------------------------- * * Class: bncRtnetDecoder * * Purpose: Implementation of RTNet (SP3-like) output decoder * * Author: L. Mervart * * Created: 28-Mar-2011 * * Changes: * * -----------------------------------------------------------------------*/ #include #include "bncrtnetdecoder.h" #include "bncsettings.h" using namespace std; // Constructor //////////////////////////////////////////////////////////////////////// bncRtnetDecoder::bncRtnetDecoder() { bncSettings settings; // List of upload casters // ---------------------- int iRow = -1; QListIterator it(settings.value("uploadMountpointsOut").toStringList()); while (it.hasNext()) { QStringList hlp = it.next().split(","); if (hlp.size() > 6) { ++iRow; int outPort = hlp[1].toInt(); bool CoM = (hlp[5].toInt() == Qt::Checked); int PID = 0; if (hlp.size() > 8) { PID = hlp[8].toInt(); } int SID = 0; if (hlp.size() > 9) { SID = hlp[9].toInt(); } int IOD = 0; if (hlp.size() > 10) { IOD = hlp[10].toInt(); } bncRtnetUploadCaster* newCaster = new bncRtnetUploadCaster( hlp[2], hlp[0], outPort, hlp[3], hlp[4], CoM, hlp[6], hlp[7], PID, SID, IOD, iRow); newCaster->start(); _casters.push_back(newCaster); } } } // Destructor //////////////////////////////////////////////////////////////////////// bncRtnetDecoder::~bncRtnetDecoder() { for (int ic = 0; ic < _casters.size(); ic++) { _casters[ic]->deleteSafely(); } } // Decode Method //////////////////////////////////////////////////////////////////////// t_irc bncRtnetDecoder::Decode(char* buffer, int bufLen, vector& errmsg) { errmsg.clear(); for (int ic = 0; ic < _casters.size(); ic++) { _casters[ic]->decodeRtnetStream(buffer, bufLen); } return success; }