-
Notifications
You must be signed in to change notification settings - Fork 297
/
Copy pathBinaryFileReaderWriter.h
195 lines (160 loc) · 3.83 KB
/
BinaryFileReaderWriter.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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#ifndef __BinaryFileReaderWriter_H__
#define __BinaryFileReaderWriter_H__
#include <iostream>
#include <fstream>
#include "SPlisHSPlasH/Common.h"
#include <Eigen/Sparse>
namespace SPH
{
class BinaryFileWriter
{
public:
std::ofstream m_file;
public:
bool openFile(const std::string &fileName)
{
m_file.open(fileName, std::ios::out | std::ios::binary);
if (!m_file.is_open())
{
std::cout << "Cannot open file.\n";
return false;
}
return true;
}
void closeFile()
{
m_file.close();
}
void writeBuffer(const char *buffer, size_t size)
{
m_file.write(buffer, size);
}
template<typename T>
void write(const T &v)
{
writeBuffer((char*)&v, sizeof(T));
}
void write(const std::string &str)
{
write((unsigned int) str.size());
writeBuffer(str.c_str(), str.size());
}
template<typename T>
void writeMatrix(const T &m)
{
writeBuffer((char*)m.data(), m.size() * sizeof(m.data()[0]));
}
template<typename T, int Rows, int Cols>
void writeMatrixX(const Eigen::Matrix < T, Rows, Cols> & m)
{
const Eigen::Index rows = m.rows();
const Eigen::Index cols = m.cols();
write(rows);
write(cols);
writeBuffer((char*)m.data(), rows * cols* sizeof(T));
}
template <typename T, int Options, typename StorageIndex>
void writeSparseMatrix(Eigen::SparseMatrix<T, Options, StorageIndex>& m)
{
m.makeCompressed();
const Eigen::Index rows = m.rows();
const Eigen::Index cols = m.cols();
const Eigen::Index nnzs = m.nonZeros();
const Eigen::Index outS = m.outerSize();
const Eigen::Index innS = m.innerSize();
write(rows);
write(cols);
write(nnzs);
write(outS);
write(innS);
writeBuffer((const char*)(m.valuePtr()), sizeof(T) * nnzs);
writeBuffer((const char*)(m.outerIndexPtr()), sizeof(StorageIndex) * outS);
writeBuffer((const char*)(m.innerIndexPtr()), sizeof(StorageIndex) * nnzs);
}
template<typename T>
void writeVector(const std::vector<T>& m)
{
write(m.size());
writeBuffer((char*)m.data(), m.size() * sizeof(T));
}
};
class BinaryFileReader
{
public:
std::ifstream m_file;
public:
bool openFile(const std::string &fileName)
{
m_file.open(fileName, std::ios::in | std::ios::binary);
if (!m_file.is_open())
{
std::cout << "Cannot open file.\n";
return false;
}
return true;
}
void closeFile()
{
m_file.close();
}
void readBuffer(char *buffer, size_t size)
{
m_file.read(buffer, size);
}
template<typename T>
void read(T &v)
{
readBuffer((char*)&v, sizeof(T));
}
void read(std::string &str)
{
unsigned int len;
read(len);
char* temp = new char[len + 1u];
readBuffer(temp, len);
temp[len] = '\0';
str = std::string(temp);
delete[] temp;
}
template<typename T>
void readMatrix(T &m)
{
readBuffer((char*)m.data(), m.size() * sizeof(m.data()[0]));
}
template<typename T, int Rows, int Cols>
void readMatrixX(Eigen::Matrix < T, Rows, Cols>& m)
{
Eigen::Index rows, cols;
read(rows);
read(cols);
m.resize(rows, cols);
readBuffer((char*)m.data(), rows * cols * sizeof(T));
}
template <typename T, int Options, typename StorageIndex>
void readSparseMatrix(Eigen::SparseMatrix<T, Options, StorageIndex>& m)
{
Eigen::Index rows, cols, nnzs, innS, outS;
read(rows);
read(cols);
read(nnzs);
read(outS);
read(innS);
m.resize(rows, cols);
m.makeCompressed();
m.resizeNonZeros(nnzs);
readBuffer((char*)(m.valuePtr()), sizeof(T) * nnzs);
readBuffer((char*)(m.outerIndexPtr()), sizeof(StorageIndex) * outS);
readBuffer((char*)(m.innerIndexPtr()), sizeof(StorageIndex) * nnzs);
m.finalize();
}
template<typename T>
void readVector(std::vector<T>& m)
{
size_t size;
read(size);
m.resize(size);
readBuffer((char*)m.data(), m.size() * sizeof(T));
}
};
}
#endif