PSCF v1.2
MemoryCounter.h
1#ifndef UTIL_MEMORY_COUNTER_H
2#define UTIL_MEMORY_COUNTER_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 "serialize.h"
12
13#include <util/space/Vector.h>
14#include <util/space/IntVector.h>
15
16#include <complex>
17
18namespace Util
19{
20
36 {
37
38 public:
39
43 static bool is_saving();
44
48 static bool is_loading();
49
54
59
63 void clear();
64
70 template <typename T>
72
78 template <typename T>
79 MemoryCounter& operator & (T& data);
80
86 template <typename T, size_t N>
87 MemoryCounter& operator << (T (& data)[N]);
88
94 template <typename T, size_t N>
95 MemoryCounter& operator & (T (& data)[N]);
96
104 template <typename T>
105 void count(const T& data);
106
114 template <typename T>
115 void count(T* array, int n);
116
120 size_t size() const;
121
122 private:
123
125 size_t size_;
126
128 int version_;
129
133 MemoryCounter (const MemoryCounter& other);
134
138 MemoryCounter& operator = (const MemoryCounter& other);
139
140 // friends:
141
142 friend void serialize<>(MemoryCounter&, std::string&, const unsigned int);
143
144 };
145
149 template <typename T>
150 int memorySize(T& data)
151 {
152 MemoryCounter counter;
153 counter & data;
154 return counter.size();
155 }
156
157 // Inline methods
158
160 { return true; }
161
163 { return false; }
164
165 /*
166 * Return capacity in Bytes.
167 */
168 inline size_t MemoryCounter::size() const
169 { return size_; }
170
171 /*
172 * Compute size of one object, default implementation.
173 */
174 template <typename T>
176 {
177 serialize(*this, data, version_);
178 return *this;
179 }
180
181 /*
182 * Compute size of one object, default implementation.
183 */
184 template <typename T>
186 {
187 serialize(*this, data, version_);
188 return *this;
189 }
190
191 /*
192 * Compute size of a fixed size array via operator <<.
193 */
194 template <typename T, size_t N>
196 {
197 for (size_t i = 0; i < N; ++i) {
198 serialize(*this, data[i], version_);
199 }
200 return *this;
201 }
202
203 /*
204 * Compute size of a fixed size array via operator &.
205 */
206 template <typename T, size_t N>
208 {
209 for (size_t i = 0; i < N; ++i) {
210 serialize(*this, data[i], version_);
211 }
212 return *this;
213 }
214
215 // Inline method templates
216
217 /*
218 * Compute size of one object.
219 */
220 template <typename T>
221 inline void MemoryCounter::count(const T& data)
222 { size_ += sizeof(T); }
223
224 /*
225 * Bitwise pack a C-array of objects of type T.
226 */
227 template <typename T>
228 inline void MemoryCounter::count(T* array, int n)
229 { size_ += n*sizeof(T); }
230
231
232 // Explicit specializations of serialize function
233
234 // Serialize functions for primitive C++ types
235
236 /*
237 * Compute size of an bool.
238 */
239 template <>
240 inline void serialize(MemoryCounter& ar, bool& data,
241 const unsigned int version)
242 { ar.count(data); }
243
244 /*
245 * Compute size of a char.
246 */
247 template <>
248 inline void serialize(MemoryCounter& ar, char& data,
249 const unsigned int version)
250 { ar.count(data); }
251
252 /*
253 * Compute size of an unsigned int.
254 */
255 template <>
256 inline void serialize(MemoryCounter& ar, unsigned int& data,
257 const unsigned int version)
258 { ar.count(data); }
259
260 /*
261 * Compute size of an int.
262 */
263 template <>
264 inline void serialize(MemoryCounter& ar, int& data,
265 const unsigned int version)
266 { ar.count(data); }
267
268 /*
269 * Compute size of an unsigned long int.
270 */
271 template <>
272 inline void serialize(MemoryCounter& ar, unsigned long& data,
273 const unsigned int version)
274 { ar.count(data); }
275
276 /*
277 * Compute size of a long int.
278 */
279 template <>
280 inline void serialize(MemoryCounter& ar, long& data,
281 const unsigned int version)
282 { ar.count(data); }
283
284 /*
285 * Compute size of a float.
286 */
287 template <>
288 inline void serialize(MemoryCounter& ar, float& data,
289 const unsigned int version)
290 { ar.count(data); }
291
292 /*
293 * Compute size of a double.
294 */
295 template <>
296 inline void serialize(MemoryCounter& ar, double& data,
297 const unsigned int version)
298 { ar.count(data); }
299
300 // Serialize functions for std library types
301
302 /*
303 * Compute size of a std::complex<float>.
304 */
305 template <>
306 inline void serialize(MemoryCounter& ar, std::complex<float>& data,
307 const unsigned int version)
308 { ar.count(data); }
309
310 /*
311 * Compute size of a std::complex<double>.
312 */
313 template <>
314 inline void serialize(MemoryCounter& ar, std::complex<double>& data,
315 const unsigned int version)
316 { ar.count(data); }
317
318 /*
319 * Compute size of a std::string.
320 */
321 template <>
322 inline void serialize(MemoryCounter& ar, std::string& data,
323 const unsigned int version)
324 { ar.size_ += sizeof(size_t) + (data.size() + 1)*sizeof(char); }
325
326 // Serialize functions for Util namespace types
327
328 /*
329 * Compute size of a Util::Vector.
330 */
331 template <>
332 inline void serialize(MemoryCounter& ar, Vector& data,
333 const unsigned int version)
334 { ar.count(data); }
335
336 /*
337 * Compute size of a Util::IntVector.
338 */
339 template <>
340 inline void serialize(MemoryCounter& ar, IntVector& data,
341 const unsigned int version)
342 { ar.count(data); }
343
344}
345#endif
Archive to computed packed size of a sequence of objects, in bytes.
MemoryCounter()
Constructor.
MemoryCounter & operator<<(T &data)
Add packed size of one object via operator <<.
~MemoryCounter()
Destructor.
static bool is_loading()
Returns false.
static bool is_saving()
Returns true.
size_t size() const
Return size required for archive, in Bytes.
void count(const T &data)
Add size of one object in memory.
void clear()
Resets the size counter to zero.
MemoryCounter & operator&(T &data)
Add packed size of one object via operator &.
Utility classes for scientific computation.
int memorySize(T &data)
Function template to compute memory size of one object.