PSCF v1.2
BinaryFileIArchive.h
1#ifndef UTIL_BINARY_FILE_I_ARCHIVE_H
2#define UTIL_BINARY_FILE_I_ARCHIVE_H
3
4/*
5* Util Package - C++ Utilities for Scientific Computation
6*
7* Copyright 2010 - 2017, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "Byte.h"
12#include "serialize.h"
13
14#include <util/space/Vector.h>
15#include <util/space/IntVector.h>
16
17#include <complex>
18#include <string>
19#include <vector>
20#include <iostream>
21
22namespace Util
23{
24
31 {
32
33 public:
34
38 static bool is_saving();
39
43 static bool is_loading();
44
49
55 BinaryFileIArchive(std::string filename);
56
62 BinaryFileIArchive(std::ifstream& file);
63
67 virtual ~BinaryFileIArchive();
68
72 std::ifstream& file();
73
79 template <typename T>
81
89 template <typename T>
91
101 template <typename T, size_t N>
102 BinaryFileIArchive& operator >> (T (& data)[N]);
103
111 template <typename T, size_t N>
112 BinaryFileIArchive& operator & (T (& data)[N]);
113 // Unpack function templates
114
118 template <typename T>
119 void unpack(T& data);
120
127 template <typename T>
128 void unpack(T* array, int n);
129
143 template <typename T>
144 void unpack(T* array, int m, int n, int np);
145
146 private:
147
149 std::ifstream* filePtr_;
150
152 unsigned int version_;
153
155 bool createdFile_;
156
157 };
158
159 // Inline static member functions
160
162 { return false; }
163
165 { return true; }
166
167 // Overloaded >> (extraction) and & operators.
168
169 /*
170 * Load (read) one object of type T via the >> operator.
171 */
172 template <typename T>
174 {
175 serialize(*this, data, version_);
176 return *this;
177 }
178
179 /*
180 * Load (read) one object of type T via the & operator.
181 */
182 template <typename T>
184 {
185 serialize(*this, data, version_);
186 return *this;
187 }
188
189 /*
190 * Load a fixed size array of objects via operator >>.
191 */
192 template <typename T, size_t N>
193 inline
195 {
196 for (size_t i=0; i < N; ++i) {
197 serialize(*this, data[i], version_);
198 }
199 return *this;
200 }
201
202 /*
203 * Load a fixed size array of objects via operator &.
204 */
205 template <typename T, size_t N>
206 inline
208 {
209 for (size_t i=0; i < N; ++i) {
210 serialize(*this, data[i], version_);
211 }
212 return *this;
213 }
214
215 // Unpack function templates
216
217 /*
218 * Load a single object of type T.
219 */
220 template <typename T>
221 inline void BinaryFileIArchive::unpack(T& data)
222 { filePtr_->read( (char*)(&data), sizeof(T) ); }
223
224 /*
225 * Load a C-array of objects of type T.
226 */
227 template <typename T>
228 inline void BinaryFileIArchive::unpack(T* array, int n)
229 {
230 for (int i=0; i < n; ++i) {
231 filePtr_->read( (char*)(&array[i]), sizeof(T));
232 }
233 }
234
235 /*
236 * Unpack a 2D C-array of objects of type T.
237 */
238 template <typename T>
239 inline void BinaryFileIArchive::unpack(T* array, int m, int n, int np)
240 {
241 int i, j;
242 for (i = 0; i < m; ++i) {
243 for (j = 0; j < n; ++j) {
244 filePtr_->read( (char*)(&array[i*np + j]), sizeof(T));
245 }
246 }
247 }
248
249 // Explicit serialize functions for primitive types
250
251 /*
252 * Load a bool from a BinaryFileIArchive.
253 */
254 template <>
255 inline void serialize(BinaryFileIArchive& ar, bool& data,
256 const unsigned int version)
257 { ar.unpack(data); }
258
259 /*
260 * Load a char from a BinaryFileIArchive.
261 */
262 template <>
263 inline void serialize(BinaryFileIArchive& ar, char& data,
264 const unsigned int version)
265 { ar.unpack(data); }
266
267 /*
268 * Load an unsigned int from a BinaryFileIArchive.
269 */
270 template <>
271 inline void serialize(BinaryFileIArchive& ar, unsigned int& data,
272 const unsigned int version)
273 { ar.unpack(data); }
274
275 /*
276 * Load an int from a BinaryFileIArchive.
277 */
278 template <>
279 inline void serialize(BinaryFileIArchive& ar, int& data,
280 const unsigned int version)
281 { ar.unpack(data); }
282
283 /*
284 * Load an unsigned long int from a BinaryFileIArchive.
285 */
286 template <>
287 inline void serialize(BinaryFileIArchive& ar, unsigned long& data,
288 const unsigned int version)
289 { ar.unpack(data); }
290
291 /*
292 * Load a long int from a BinaryFileIArchive.
293 */
294 template <>
295 inline void serialize(BinaryFileIArchive& ar, long& data,
296 const unsigned int version)
297 { ar.unpack(data); }
298
299 /*
300 * Load a float from a BinaryFileIArchive.
301 */
302 template <>
303 inline void serialize(BinaryFileIArchive& ar, float& data,
304 const unsigned int version)
305 { ar.unpack(data); }
306
307 /*
308 * Load a double from a BinaryFileIArchive.
309 */
310 template <>
311 inline void serialize(BinaryFileIArchive& ar, double& data,
312 const unsigned int version)
313 { ar.unpack(data); }
314
315 /*
316 * Load a std::vector from a BinaryFileIArchive.
317 */
318 template <typename T>
319 void serialize(BinaryFileIArchive& ar, std::vector<T>& data,
320 const unsigned int version)
321 {
322 T element;
323 std::size_t size;
324 ar.unpack(size);
325 data.reserve(size);
326 data.clear();
327 for (size_t i = 0; i < size; ++i) {
328 ar & element;
329 data.push_back(element);
330 }
331 }
332
333 // Explicit serialize functions for std library types
334
335 /*
336 * Load a std::complex<float> from a BinaryFileIArchive.
337 */
338 template <>
339 inline
340 void serialize(BinaryFileIArchive& ar, std::complex<float>& data,
341 const unsigned int version)
342 { ar.unpack(data); }
343
344 /*
345 * Load a std::complex<double> from a BinaryFileIArchive.
346 */
347 template <>
348 inline
349 void serialize(BinaryFileIArchive& ar, std::complex<double>& data,
350 const unsigned int version)
351 { ar.unpack(data); }
352
353 /*
354 * Load a std::string from a BinaryFileIArchive.
355 */
356 template <>
357 void serialize(BinaryFileIArchive& ar, std::string& data,
358 const unsigned int version);
359
360 // Explicit serialize functions for namespace Util types
361
362 /*
363 * Load a Util::Vector from a BinaryFileIArchive.
364 */
365 template <>
366 inline void serialize(BinaryFileIArchive& ar, Vector& data,
367 const unsigned int version)
368 { ar.unpack(data); }
369
370 /*
371 * Load a Util::IntVector from a BinaryFileIArchive.
372 */
373 template <>
374 inline void serialize(BinaryFileIArchive& ar, IntVector& data,
375 const unsigned int version)
376 { ar.unpack(data); }
377
378}
379#endif
Loading (input) archive for binary istream.
BinaryFileIArchive & operator>>(T &data)
Load (read) one object of type T via the & operator.
static bool is_loading()
Is this a loading (input) archive? Returns true.
void unpack(T &data)
Unpack a single T object.
std::ifstream & file()
Get the underlying ifstream by reference.
virtual ~BinaryFileIArchive()
Destructor.
BinaryFileIArchive & operator&(T &data)
Load (read) one object of type T via the & operator.
static bool is_saving()
Is this a saving (output) archive? Returns false.
Utility classes for scientific computation.