#include <RawFileUtil.h>
Definition at line 125 of file RawFileUtil.h.
◆ DataSeparatorRecord()
DataSeparatorRecord::DataSeparatorRecord |
( |
| ) |
|
◆ dump()
void DataSeparatorRecord::dump |
( |
std::ostream & | os = std::cout | ) |
const |
Definition at line 328 of file RawFileUtil.cxx.
328 {
329 os << "[RawFile] DataSeparatorRecord:" << std::endl << std::hex
330 << "[RawFile] \tmarker : 0x" << m_record.marker << std::endl
331 << "[RawFile] \trecord_size : 0x" << m_record.record_size << std::endl
332 << "[RawFile] \tdata_block_number : 0x" << m_record.data_block_number << std::endl
333 << "[RawFile] \tdata_block_size : 0x" << m_record.data_block_size
334 << std::dec << std::endl;
335}
◆ getRecord()
◆ setDataBlockNumber()
void DataSeparatorRecord::setDataBlockNumber |
( |
uint32_t | dn | ) |
|
|
inline |
Definition at line 135 of file RawFileUtil.h.
135{ m_record.data_block_number = dn; }
◆ setDataBlockSize()
void DataSeparatorRecord::setDataBlockSize |
( |
uint32_t | ds | ) |
|
|
inline |
Definition at line 136 of file RawFileUtil.h.
136{ m_record.data_block_size = ds; }
◆ operator<<
Definition at line 212 of file RawFileUtil.cxx.
212 {
213
214 if (os.write((char*)(&record.m_record), sizeof(data_separator_record)).fail()) {
215 std::cerr << "[RawFile] Error occurred while writing file" << std::endl;
216 throw FailedToWrite("DataSeparatorRecord");
217 }
218
219 return os;
220}
◆ operator>>
Definition at line 96 of file RawFileUtil.cxx.
96 {
97
98 if (is.read((char*)(&record.m_record), sizeof(data_separator_record)).fail()) {
99
100 throw BadInputStream("DataSeparatorRecord");
101
102 }
103
104
105 if (record.m_record.
marker != 0x1234cccc) {
106 if (record.m_record.
marker == 0x1234dddd) {
108 }
109
110 throw WrongMarker(0x1234cccc, record.m_record.
marker);
111 }
112
114
115 throw UnexpectedRecordSize(
"DataSeparatorRecord", 4, record.m_record.
record_size);
116 }
117
118 return is;
119}
std::string currentFile() const
The documentation for this class was generated from the following files: