-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathSupportBlock.cpp
156 lines (141 loc) · 5.11 KB
/
SupportBlock.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* =========================================================================
* This file is part of cphd-c++
* =========================================================================
*
* (C) Copyright 2004 - 2019, MDA Information Systems LLC
*
* cphd-c++ is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; If not,
* see <http://www.gnu.org/licenses/>.
*
*/
#include <cphd/SupportBlock.h>
#include <limits>
#include <sstream>
#include <std/memory>
#include <nitf/coda-oss.hpp>
#include <mt/ThreadGroup.h>
#include <mt/ThreadPlanner.h>
#include <except/Exception.h>
#include <io/FileInputStream.h>
#include <six/Init.h>
#include <cphd/ByteSwap.h>
#include <cphd/FileHeader.h>
namespace cphd
{
SupportBlock::SupportBlock(const std::string& pathname,
const cphd::Data& data,
int64_t startSupport,
int64_t sizeSupport) :
SupportBlock(std::make_shared<io::FileInputStream>(pathname), data, startSupport, sizeSupport)
{
}
SupportBlock::SupportBlock(std::shared_ptr<io::SeekableInputStream> inStream,
const cphd::Data& data,
int64_t startSupport,
int64_t sizeSupport) :
mInStream(inStream),
mData(data),
mSupportOffset(startSupport),
mSupportSize(sizeSupport)
{
//! Initialize mOffsets for each array both for uncompressed and compressed data
// Trusting data has the right offsets
for (auto kv : mData.supportArrayMap)
{
mOffsets[kv.first] = mSupportOffset + kv.second.arrayByteOffset;
}
}
SupportBlock::SupportBlock(std::shared_ptr<io::SeekableInputStream> inStream,
const cphd::Data& data, const cphd::FileHeader& fileHeader):
SupportBlock(inStream, data,
fileHeader.getSupportBlockByteOffset(), fileHeader.getSupportBlockSize())
{
}
int64_t SupportBlock::getFileOffset(const std::string& id) const
{
if (mOffsets.count(id) != 1)
{
throw except::Exception(Ctxt("Invalid support array identifier number"));
}
return mOffsets.find(id)->second;
}
void SupportBlock::read(const std::string& id,
size_t numThreads,
const mem::BufferView<sys::ubyte>& data_) const
{
void* pData = data_.data;
auto data = sys::make_span<std::byte>(pData, data_.size);
read(id, numThreads, data);
}
void SupportBlock::read(const std::string& id, size_t numThreads, std::span<std::byte> data) const
{
const size_t minSize = mData.getSupportArrayById(id).getSize();
if (data.size() < minSize)
{
std::ostringstream ostr;
ostr << "Need at least " << minSize << " bytes but only got " << data.size();
throw except::Exception(Ctxt(ostr.str()));
}
// Perform the read
// Compute the byte offset into this SupportArray in the CPHD file
// First to the start of the first support array we're going to read
int64_t inOffset = getFileOffset(id);
auto dataPtr = data.data();
mInStream->seek(inOffset, io::FileInputStream::START);
size_t bytes = mData.getSupportArrayById(id).size_bytes();
mInStream->read(dataPtr, bytes);
if ((std::endian::native == std::endian::little) && mData.getElementSize(id) > 1)
{
cphd::byteSwap(dataPtr, mData.getElementSize(id),
mData.getSupportArrayById(id).size(),
numThreads);
}
}
std::vector<std::byte> SupportBlock::readAll(size_t numThreads) const
{
std::vector<std::byte> retval(mSupportSize);
for (auto& supportArrayMapPair : mData.supportArrayMap)
{
const size_t bufSize = supportArrayMapPair.second.getSize();
auto pData = &retval[supportArrayMapPair.second.arrayByteOffset];
read(supportArrayMapPair.first, numThreads, sys::make_span(pData, bufSize));
}
return retval;
}
std::vector<std::byte> SupportBlock::read(const std::string& id, size_t numThreads) const
{
std::vector<std::byte> retval(mData.getSupportArrayById(id).getSize());
read(id, numThreads, sys::make_span(retval));
return retval;
}
std::ostream& operator<< (std::ostream& os, const SupportBlock& d)
{
os << "SupportBlock::\n"
<< " mData: " << d.mData << "\n"
<< " mSupportOffset: " << d.mSupportOffset << "\n"
<< " mSupportSize: " << d.mSupportSize << "\n";
if (d.mOffsets.empty())
{
os << " mOffsets: (empty)" << "\n";
}
else
{
for (auto it = d.mOffsets.begin(); it != d.mOffsets.end(); ++it)
{
os << "[" << it->first << "] mOffsets: " << it->second << "\n";
}
}
return os;
}
}