source: ntrip/trunk/BNC/bncrawfile.cpp@ 3004

Last change on this file since 3004 was 3004, checked in by mervart, 13 years ago
File size: 4.4 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: bncRawFile
30 *
31 * Purpose: This class stores/reads BNC raw file
32 *
33 * Author: L. Mervart
34 *
35 * Created: 23-Aug-2010
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include "bncrawfile.h"
42#include "bncapp.h"
43#include "bncutils.h"
44
45using namespace std;
46
47#define RAW_FILE_VERSION "1"
48
49// Constructor
50////////////////////////////////////////////////////////////////////////////
51bncRawFile::bncRawFile(const QByteArray& fileName, const QByteArray& staID,
52 const QByteArray& format, inpOutFlag ioFlg) {
53
54 _fileName = fileName; expandEnvVar(_fileName);
55 _staID = staID;
56 _format = format;
57 _inpFile = 0;
58 _outFile = 0;
59 _version = 0;
60
61 // Initialize for Input
62 // --------------------
63 if (ioFlg == input) {
64 _inpFile = new QFile(_fileName);
65 _inpFile->open(QIODevice::ReadOnly);
66 QString line = _inpFile->readLine();
67 QStringList lst = line.split(' ');
68 _version = lst.value(0).toInt();
69 }
70
71 // Initialize for Output
72 // ---------------------
73 else {
74 QDate currDate = currentDateAndTimeGPS().date();
75 _currentFileName = _fileName + "_" + currDate.toString("yyMMdd");
76 _outFile = new QFile(_currentFileName);
77 _outFile->open(QIODevice::WriteOnly);
78 _outFile->write(RAW_FILE_VERSION " Version of BNC raw file");
79 }
80}
81
82// Destructor
83////////////////////////////////////////////////////////////////////////////
84bncRawFile::~bncRawFile() {
85 delete _inpFile;
86 delete _outFile;
87}
88
89// Raw Output
90////////////////////////////////////////////////////////////////////////////
91void bncRawFile::writeRawData(const QByteArray& data, const QByteArray& staID,
92 const QByteArray& format) {
93 if (_outFile) {
94 QDate currDate = currentDateAndTimeGPS().date();
95 QString hlp = _fileName + "_" + currDate.toString("yyMMdd");
96 if (hlp != _currentFileName) {
97 _currentFileName = hlp;
98 delete _outFile;
99 _outFile = new QFile(_currentFileName);
100 _outFile->open(QIODevice::WriteOnly);
101 _outFile->write(RAW_FILE_VERSION " Version of BNC raw file");
102 }
103
104 QString chunkHeader = QString("\n%1 %2 %3 %4\n")
105 .arg(currentDateAndTimeGPS().toString(Qt::ISODate))
106 .arg(QString(staID))
107 .arg(QString(format))
108 .arg(data.size());
109 _outFile->write(chunkHeader.toAscii());
110 _outFile->write(data);
111 _outFile->flush();
112 }
113}
114
115
116// Raw Input
117////////////////////////////////////////////////////////////////////////////
118QByteArray bncRawFile::readChunk(){
119
120 QByteArray data;
121
122 if (_inpFile) {
123 QString line = _inpFile->readLine();
124 if (line.indexOf("Version of BNC raw file") != -1) {
125 line = _inpFile->readLine();
126 }
127 if (!line.isEmpty()) {
128 QStringList lst = line.split(' ');
129
130 bncApp* app = (bncApp*) qApp;
131 delete app->_currentDateAndTimeGPS;
132 app->_currentDateAndTimeGPS =
133 new QDateTime(QDateTime::fromString(lst.value(0), Qt::ISODate));
134
135 _staID = lst.value(1).toAscii();
136 _format = lst.value(2).toAscii();
137 int nBytes = lst.value(3).toInt();
138
139 data = _inpFile->read(nBytes);
140
141 _inpFile->read(1); // read '\n' character
142 }
143 }
144
145 return data;
146}
147
Note: See TracBrowser for help on using the repository browser.