PSCF v1.2
TextFileIArchive.h
1#ifndef UTIL_TEXT_FILE_I_ARCHIVE_H
2#define UTIL_TEXT_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 <fstream>
21
22namespace Util
23{
24
31 {
32
33 public:
34
35 // Static functions
36
40 static bool is_saving();
41
45 static bool is_loading();
46
47 // Lifetime and file control
48
53
59 TextFileIArchive(std::string filename);
60
66 TextFileIArchive(std::ifstream& file);
67
71 virtual ~TextFileIArchive();
72
76 std::ifstream& file();
77
78 // Overloaded >> (extraction) and & operator templates.
79
88 template <typename T>
90
98 template <typename T>
100
108 template <typename T, size_t N>
109 TextFileIArchive& operator >> (T (& data)[N]);
110
118 template <typename T, size_t N>
119 TextFileIArchive& operator & (T (& data)[N]);
120
121 // Unpack functions (building blocks)
122
132 template <typename T>
133 void unpack(T& data);
134
145 template <typename T>
146 void unpack(T* array, int n);
147
160 template <typename T>
161 void unpack(T* array, int m, int n, int np);
162
163 private:
164
166 std::ifstream* filePtr_;
167
169 unsigned int version_;
170
172 bool createdFile_;
173
174 };
175
176 // Inline methods
177
179 { return false; }
180
182 { return true; }
183
184 // Inline non-static methods
185
186 /*
187 * Load one object via operator >>.
188 */
189 template <typename T>
191 {
192 serialize(*this, data, version_);
193 return *this;
194 }
195
196 /*
197 * Load one object via operator &.
198 */
199 template <typename T>
201 {
202 serialize(*this, data, version_);
203 return *this;
204 }
205
206 /*
207 * Load a fixed size array of objects via operator >>.
208 */
209 template <typename T, size_t N>
211 {
212 for (size_t i = 0; i < N; ++i) {
213 serialize(*this, data[i], version_);
214 }
215 return *this;
216 }
217
218 /*
219 * Load a fixed size array of objects via operator &.
220 */
221 template <typename T, size_t N>
223 {
224 for (size_t i = 0; i < N; ++i) {
225 serialize(*this, data[i], version_);
226 }
227 return *this;
228 }
229
230 // Unpack method templates
231
232 /*
233 * Load a single object of type T.
234 */
235 template <typename T>
236 inline void TextFileIArchive::unpack(T& data)
237 { *filePtr_ >> data; }
238
239 /*
240 * Load a C array.
241 */
242 template <typename T>
243 inline void TextFileIArchive::unpack(T* array, int n)
244 {
245 for (int i=0; i < n; ++i) {
246 *filePtr_ >> array[i];
247 }
248 }
249
250 /*
251 * Bitwise pack a 2D C-array of objects of type T.
252 */
253 template <typename T>
254 void TextFileIArchive::unpack(T* array, int m, int n, int np)
255 {
256 int i, j;
257 for (i = 0; i < m; ++i) {
258 for (j = 0; j < n; ++j) {
259 *filePtr_ >> array[i*np + j];
260 }
261 }
262 }
263
264 /*
265 * Load a single char.
266 */
267 template <>
268 inline void TextFileIArchive::unpack(char& data)
269 { filePtr_->get(data); }
270
271 /*
272 * Load a C-array of characters.
273 */
274 template <>
275 inline void TextFileIArchive::unpack(char* array, int n)
276 {
277 filePtr_->get(array, n+1,'\0');
278 }
279
280 // Explicit serialize functions for primitive types
281
282 /*
283 * Load a bool from a TextFileIArchive.
284 */
285 template <>
286 inline void serialize(TextFileIArchive& ar, bool& data,
287 const unsigned int version)
288 { ar.unpack(data); }
289
290 /*
291 * Load a char from a TextFileIArchive.
292 */
293 template <>
294 inline void serialize(TextFileIArchive& ar, char& data,
295 const unsigned int version)
296 { ar.unpack(data); }
297
298 /*
299 * Load an unsigned int from a TextFileIArchive.
300 */
301 template <>
302 inline void serialize(TextFileIArchive& ar, unsigned int& data,
303 const unsigned int version)
304 { ar.unpack(data); }
305
306 /*
307 * Load an int from a TextFileIArchive.
308 */
309 template <>
310 inline void serialize(TextFileIArchive& ar, int& data,
311 const unsigned int version)
312 { ar.unpack(data); }
313
314 /*
315 * Load an unsigned long int from a TextFileIArchive.
316 */
317 template <>
318 inline void serialize(TextFileIArchive& ar, unsigned long& data,
319 const unsigned int version)
320 { ar.unpack(data); }
321
322 /*
323 * Load a long int from a TextFileIArchive.
324 */
325 template <>
326 inline void serialize(TextFileIArchive& ar, long& data,
327 const unsigned int version)
328 { ar.unpack(data); }
329
330 /*
331 * Load a float from a TextFileIArchive.
332 */
333 template <>
334 inline void serialize(TextFileIArchive& ar, float& data,
335 const unsigned int version)
336 { ar.unpack(data); }
337
338 /*
339 * Load a double from a TextFileIArchive.
340 */
341 template <>
342 inline void serialize(TextFileIArchive& ar, double& data,
343 const unsigned int version)
344 { ar.unpack(data); }
345
346 /*
347 * Load a std::vector from a TextFileIArchive.
348 */
349 template <typename T>
350 void serialize(TextFileIArchive& ar, std::vector<T>& data,
351 const unsigned int version)
352 {
353 T element;
354 std::size_t size;
355 ar.unpack(size);
356 data.reserve(size);
357 data.clear();
358 for (size_t i = 0; i < size; ++i) {
359 ar & element;
360 data.push_back(element);
361 }
362 }
363
364 // Explicit serialize functions for std library types
365
366 /*
367 * Load a std::complex<float> from a TextFileIArchive.
368 */
369 template <>
370 inline
371 void serialize(TextFileIArchive& ar, std::complex<float>& data,
372 const unsigned int version)
373 { ar.unpack(data); }
374
375 /*
376 * Load a std::complex<double> from a TextFileIArchive.
377 */
378 template <>
379 inline
380 void serialize(TextFileIArchive& ar, std::complex<double>& data,
381 const unsigned int version)
382 { ar.unpack(data); }
383
384 /*
385 * Load a std::string from a TextFileIArchive.
386 */
387 template <>
388 void serialize(TextFileIArchive& ar, std::string& data,
389 const unsigned int version);
390
391 // Explicit serialize functions for namespace Util types
392
393 /*
394 * Load a Util::Vector from a TextFileIArchive.
395 */
396 template <>
397 inline void serialize(TextFileIArchive& ar, Vector& data,
398 const unsigned int version)
399 { ar.unpack(data); }
400
401 /*
402 * Load a Util::IntVector from a TextFileIArchive.
403 */
404 template <>
405 inline void serialize(TextFileIArchive& ar, IntVector& data,
406 const unsigned int version)
407 { ar.unpack(data); }
408
409}
410#endif
Loading archive for text istream.
TextFileIArchive & operator&(T &data)
Load one object of type T via operator &.
std::ifstream & file()
Get the underlying ifstream by reference.
static bool is_saving()
Is this a saving (output) archive? Returns false.
TextFileIArchive & operator>>(T &data)
Load one object of type T via operator >>.
void unpack(T &data)
Load a single T object.
static bool is_loading()
Is this a loading (input) archive? Returns true.
virtual ~TextFileIArchive()
Destructor.
Utility classes for scientific computation.