mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:00:04 +00:00
Nexrad File Factory
This commit is contained in:
parent
3620bfd13a
commit
a32029cb31
11 changed files with 322 additions and 31 deletions
|
|
@ -37,7 +37,7 @@ public:
|
|||
|
||||
void HandleMessage(std::shared_ptr<rda::Level2Message>& message);
|
||||
void IndexFile();
|
||||
void LoadLDMRecords(std::ifstream& f);
|
||||
void LoadLDMRecords(std::istream& is);
|
||||
void ParseLDMRecords();
|
||||
void ProcessRadarData(std::shared_ptr<rda::DigitalRadarData> message);
|
||||
|
||||
|
|
@ -179,29 +179,40 @@ bool Ar2vFile::LoadFile(const std::string& filename)
|
|||
|
||||
if (fileValid)
|
||||
{
|
||||
// Read Volume Header Record
|
||||
p->tapeFilename_.resize(9, ' ');
|
||||
p->extensionNumber_.resize(3, ' ');
|
||||
p->icao_.resize(4, ' ');
|
||||
|
||||
f.read(&p->tapeFilename_[0], 9);
|
||||
f.read(&p->extensionNumber_[0], 3);
|
||||
f.read(reinterpret_cast<char*>(&p->julianDate_), 4);
|
||||
f.read(reinterpret_cast<char*>(&p->milliseconds_), 4);
|
||||
f.read(&p->icao_[0], 4);
|
||||
|
||||
p->julianDate_ = ntohl(p->julianDate_);
|
||||
p->milliseconds_ = ntohl(p->milliseconds_);
|
||||
fileValid = LoadData(f);
|
||||
}
|
||||
|
||||
if (f.eof())
|
||||
return fileValid;
|
||||
}
|
||||
|
||||
bool Ar2vFile::LoadData(std::istream& is)
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(debug) << logPrefix_ << "Loading Data";
|
||||
|
||||
bool dataValid = true;
|
||||
|
||||
// Read Volume Header Record
|
||||
p->tapeFilename_.resize(9, ' ');
|
||||
p->extensionNumber_.resize(3, ' ');
|
||||
p->icao_.resize(4, ' ');
|
||||
|
||||
is.read(&p->tapeFilename_[0], 9);
|
||||
is.read(&p->extensionNumber_[0], 3);
|
||||
is.read(reinterpret_cast<char*>(&p->julianDate_), 4);
|
||||
is.read(reinterpret_cast<char*>(&p->milliseconds_), 4);
|
||||
is.read(&p->icao_[0], 4);
|
||||
|
||||
p->julianDate_ = ntohl(p->julianDate_);
|
||||
p->milliseconds_ = ntohl(p->milliseconds_);
|
||||
|
||||
if (is.eof())
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(warning)
|
||||
<< logPrefix_ << "Could not read Volume Header Record\n";
|
||||
fileValid = false;
|
||||
dataValid = false;
|
||||
}
|
||||
|
||||
if (fileValid)
|
||||
if (dataValid)
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(debug)
|
||||
<< logPrefix_ << "Filename: " << p->tapeFilename_;
|
||||
|
|
@ -212,27 +223,27 @@ bool Ar2vFile::LoadFile(const std::string& filename)
|
|||
<< logPrefix_ << "Time: " << p->milliseconds_;
|
||||
BOOST_LOG_TRIVIAL(debug) << logPrefix_ << "ICAO: " << p->icao_;
|
||||
|
||||
p->LoadLDMRecords(f);
|
||||
p->LoadLDMRecords(is);
|
||||
}
|
||||
|
||||
p->IndexFile();
|
||||
|
||||
return fileValid;
|
||||
return dataValid;
|
||||
}
|
||||
|
||||
void Ar2vFileImpl::LoadLDMRecords(std::ifstream& f)
|
||||
void Ar2vFileImpl::LoadLDMRecords(std::istream& is)
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(debug) << logPrefix_ << "Loading LDM Records";
|
||||
|
||||
numRecords_ = 0;
|
||||
|
||||
while (f.peek() != EOF)
|
||||
while (is.peek() != EOF)
|
||||
{
|
||||
std::streampos startPosition = f.tellg();
|
||||
std::streampos startPosition = is.tellg();
|
||||
int32_t controlWord = 0;
|
||||
size_t recordSize;
|
||||
|
||||
f.read(reinterpret_cast<char*>(&controlWord), 4);
|
||||
is.read(reinterpret_cast<char*>(&controlWord), 4);
|
||||
|
||||
controlWord = ntohl(controlWord);
|
||||
recordSize = std::abs(controlWord);
|
||||
|
|
@ -240,8 +251,13 @@ void Ar2vFileImpl::LoadLDMRecords(std::ifstream& f)
|
|||
BOOST_LOG_TRIVIAL(trace)
|
||||
<< logPrefix_ << "LDM Record Found: Size = " << recordSize << " bytes";
|
||||
|
||||
if (recordSize == 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
boost::iostreams::filtering_streambuf<boost::iostreams::input> in;
|
||||
util::rangebuf r(f.rdbuf(), recordSize);
|
||||
util::rangebuf r(is.rdbuf(), recordSize);
|
||||
in.push(boost::iostreams::bzip2_decompressor());
|
||||
in.push(r);
|
||||
|
||||
|
|
@ -261,7 +277,7 @@ void Ar2vFileImpl::LoadLDMRecords(std::ifstream& f)
|
|||
BOOST_LOG_TRIVIAL(warning)
|
||||
<< logPrefix_ << "Error decompressing record " << numRecords_;
|
||||
|
||||
f.seekg(startPosition + std::streampos(recordSize));
|
||||
is.seekg(startPosition + std::streampos(recordSize));
|
||||
}
|
||||
|
||||
++numRecords_;
|
||||
|
|
|
|||
22
wxdata/source/scwx/wsr88d/nexrad_file.cpp
Normal file
22
wxdata/source/scwx/wsr88d/nexrad_file.cpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#include <scwx/wsr88d/nexrad_file.hpp>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace wsr88d
|
||||
{
|
||||
|
||||
class NexradFileImpl
|
||||
{
|
||||
public:
|
||||
explicit NexradFileImpl() {}
|
||||
~NexradFileImpl() = default;
|
||||
};
|
||||
|
||||
NexradFile::NexradFile() : p(std::make_unique<NexradFileImpl>()) {}
|
||||
NexradFile::~NexradFile() = default;
|
||||
|
||||
NexradFile::NexradFile(NexradFile&&) noexcept = default;
|
||||
NexradFile& NexradFile::operator=(NexradFile&&) noexcept = default;
|
||||
|
||||
} // namespace wsr88d
|
||||
} // namespace scwx
|
||||
125
wxdata/source/scwx/wsr88d/nexrad_file_factory.cpp
Normal file
125
wxdata/source/scwx/wsr88d/nexrad_file_factory.cpp
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
#include <scwx/wsr88d/nexrad_file_factory.hpp>
|
||||
#include <scwx/wsr88d/ar2v_file.hpp>
|
||||
#include <scwx/wsr88d/level3_file.hpp>
|
||||
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
|
||||
#include <boost/iostreams/copy.hpp>
|
||||
#include <boost/iostreams/filtering_streambuf.hpp>
|
||||
#include <boost/iostreams/filter/gzip.hpp>
|
||||
#include <boost/log/trivial.hpp>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace wsr88d
|
||||
{
|
||||
|
||||
static const std::string logPrefix_ = "[scwx::wsr88d::nexrad_file_factory] ";
|
||||
|
||||
std::shared_ptr<NexradFile>
|
||||
NexradFileFactory::Create(const std::string& filename)
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(debug) << logPrefix_ << "Create(" << filename << ")";
|
||||
|
||||
std::shared_ptr<NexradFile> nexradFile = nullptr;
|
||||
bool fileValid = true;
|
||||
|
||||
std::ifstream f(filename, std::ios_base::in | std::ios_base::binary);
|
||||
if (!f.good())
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(warning)
|
||||
<< logPrefix_ << "Could not open file for reading: " << filename;
|
||||
fileValid = false;
|
||||
}
|
||||
|
||||
if (fileValid)
|
||||
{
|
||||
nexradFile = Create(f);
|
||||
}
|
||||
|
||||
return nexradFile;
|
||||
}
|
||||
|
||||
std::shared_ptr<NexradFile> NexradFileFactory::Create(std::istream& is)
|
||||
{
|
||||
std::shared_ptr<NexradFile> message = nullptr;
|
||||
|
||||
std::istream* pis = &is;
|
||||
std::streampos pisBegin = is.tellg();
|
||||
std::stringstream ss;
|
||||
std::string buffer;
|
||||
bool dataValid;
|
||||
|
||||
buffer.resize(4);
|
||||
|
||||
is.read(buffer.data(), 4);
|
||||
dataValid = is.good();
|
||||
is.seekg(pisBegin, std::ios_base::beg);
|
||||
|
||||
if (dataValid && buffer.starts_with("\x1f\x8b"))
|
||||
{
|
||||
boost::iostreams::filtering_streambuf<boost::iostreams::input> in;
|
||||
in.push(boost::iostreams::gzip_decompressor());
|
||||
in.push(is);
|
||||
|
||||
try
|
||||
{
|
||||
std::streamsize bytesCopied = boost::iostreams::copy(in, ss);
|
||||
|
||||
pis = &ss;
|
||||
pisBegin = ss.tellg();
|
||||
|
||||
ss.read(buffer.data(), 4);
|
||||
dataValid = ss.good();
|
||||
ss.seekg(pisBegin, std::ios_base::beg);
|
||||
|
||||
BOOST_LOG_TRIVIAL(trace)
|
||||
<< logPrefix_ << "Decompressed file = " << bytesCopied << " bytes";
|
||||
|
||||
if (!dataValid)
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(warning)
|
||||
<< logPrefix_ << "Error reading decompressed stream";
|
||||
}
|
||||
}
|
||||
catch (const boost::iostreams::gzip_error& ex)
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(warning)
|
||||
<< logPrefix_ << "Error decompressing file: " << ex.what();
|
||||
|
||||
dataValid = false;
|
||||
}
|
||||
}
|
||||
else if (!dataValid)
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(warning) << logPrefix_ << "Error reading file";
|
||||
}
|
||||
|
||||
if (dataValid)
|
||||
{
|
||||
if (buffer.starts_with("AR2V"))
|
||||
{
|
||||
message = std::make_shared<Ar2vFile>();
|
||||
}
|
||||
else
|
||||
{
|
||||
message = std::make_shared<Level3File>();
|
||||
}
|
||||
}
|
||||
|
||||
if (message != nullptr)
|
||||
{
|
||||
dataValid = message->LoadData(*pis);
|
||||
|
||||
if (!dataValid)
|
||||
{
|
||||
message = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
return message;
|
||||
}
|
||||
|
||||
} // namespace wsr88d
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue