-
Notifications
You must be signed in to change notification settings - Fork 30
/
DataReader.h
91 lines (77 loc) · 1.84 KB
/
DataReader.h
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
#pragma once
#include "Stdafx.h"
#include <fstream>
#include <tuple>
#include <boost/iostreams/filtering_streambuf.hpp>
#if BOOST_VERSION >= 105800
#include <boost/endian/conversion.hpp>
#endif
/*!
* Implements a file stream wrapper for reading binary data files.
*/
class DataReader
{
public:
/*!
* Creates a new instance of this type.
*/
DataReader();
/*!
* Opens the specified file for reading.
*
* \param filename Path to the data file.
*
* \return Value indicating whether the file was opened successfully.
*/
bool OpenFile(const std::string& filename);
/*!
* Finds the data file with the specified name and opens it for reading.
*
* \param name Name of the data file.
*
* \return Value indicating whether the file was opened successfully.
*/
bool OpenEnv(const std::string& name);
/*!
* Closes the currently open file, if any.
*/
void Close();
/*!
* Reads the next field as a numeric of type `T` from the file.
*
* \param value Reference to variable where to store numeric of type `T`.
*/
template <class T>
void Read(T& value)
{
bs->sgetn(reinterpret_cast<char*>(&value), sizeof(T));
#if BOOST_VERSION >= 105800
boost::endian::little_to_native_inplace(value);
#endif
}
/*!
* Reads the next field as a variable-length binary data from the file.
*
* \return Field as variable-length binary data.
*/
std::tuple<int, const char*> ReadData();
/*!
* Reads the next field as string from the file.
*
* \return Field as string value.
*/
std::string ReadString();
/*!
* Frees up the resources allocated during the lifetime of this instance.
*/
~DataReader();
private:
/*!
* Pointer to the currently open data file.
*/
std::ifstream *fs;
/*!
* Pointer to the filtering stream buffer the currently open file is wrapped in.
*/
boost::iostreams::filtering_istreambuf* bs;
};