source: molecuilder/src/memoryallocator.hpp@ a2db10

Last change on this file since a2db10 was e71890, checked in by Frederik Heber <heber@…>, 16 years ago

Merge branch 'new-delete-conversion' into CodeRefactoring

Conflicts:

molecuilder/src/Makefile.am
molecuilder/src/helpers.cpp
molecuilder/src/helpers.hpp
molecuilder/src/memoryusageobserver.cpp

  • FIX: performCriticalExit() was declared static but not defined a such.
  • Merge was basically only due to libmolecuilder which was not used in CodeRefactoring branch before.
  • added ActOnAll Unit test to new unittests sub folder and to Makefile.am
  • Property mode set to 100755
File size: 3.6 KB
RevLine 
[390a2b]1/** \file memoryallocator.hpp
2 *
3 * This file provides wrappers for C++'s memory allocation functions.
4 */
5
6#ifndef MEMORYALLOCATOR_HPP_
7#define MEMORYALLOCATOR_HPP_
8
9using namespace std;
10
[17b3a5c]11/*********************************************** includes ***********************************/
12
[390a2b]13// include config.h
14#ifdef HAVE_CONFIG_H
15#include <config.h>
16#endif
17
18#include <iostream>
19#include <iomanip>
20#include <fstream>
21#include <sstream>
22#include <math.h>
23#include <string>
24#include <typeinfo>
25
26#include "defs.hpp"
27#include "verbose.hpp"
[14db08]28#include "memoryusageobserver.hpp"
[390a2b]29
[17b3a5c]30/********************************************** declarations *******************************/
[390a2b]31
[17b3a5c]32/** Allocates a memory range using malloc().
[390a2b]33 * Prints the provided error message in case of a failure.
34 *
35 * \param number of memory slices of type X to allocate
36 * \param failure message which is printed if the allocation fails
37 * \return pointer to the allocated memory range, will be NULL if a failure occurred
38 */
39template <typename X> X* Malloc(size_t size, const char* output)
40{
41 X* buffer = NULL;
42 buffer = (X*) malloc(sizeof(X) * size);
43
[14db08]44 if (buffer != NULL) {
45 MemoryUsageObserver::getInstance()->addMemory(buffer, size);
46 } else {
[390a2b]47 cout << Verbose(0) << "Malloc for datatype " << typeid(X).name()
48 << " failed - pointer is NULL: " << output << endl;
[14db08]49 }
[390a2b]50
51 return buffer;
52};
53
54/** \see helpers.cpp for Malloc<char> */
55template <> char* Malloc<char>(size_t size, const char* output);
56
[17b3a5c]57/** Allocates a memory range using calloc().
[390a2b]58 * Prints the provided error message in case of a failure.
59 *
60 * \param number of memory slices of type X to allocate
61 * \param failure message which is printed if the allocation fails
62 * \return pointer to the allocated memory range, will be NULL if a failure occurred
63 */
64template <typename X> X* Calloc(size_t size, const char* output)
65{
66 X* buffer = NULL;
67 buffer = (X*) calloc(sizeof(X) * size, (size_t) 0);
[14db08]68
69 if (buffer != NULL) {
70 MemoryUsageObserver::getInstance()->addMemory(buffer, size);
71 } else {
[390a2b]72 cout << Verbose(0) << "Calloc for datatype " << typeid(X).name()
73 << " failed - pointer is NULL: " << output << endl;
[14db08]74 }
[390a2b]75
76 return buffer;
77};
78
[17b3a5c]79/** Reallocates a memory range using realloc(). If the provided pointer to the old
[390a2b]80 * memory range is NULL, malloc() is called instead.
81 * Prints the provided error message in case of a failure (of either malloc() or realloc()).
82 *
83 * \param pointer to the old memory range
84 * \param number of memory slices of type X to allocate
85 * \param failure message which is printed if the allocation fails
86 * \return pointer to the reallocated memory range, will be NULL if a failure occurred
87 */
88template <typename X> X* ReAlloc(X* OldPointer, size_t size, const char* output)
89{
90 X* buffer = NULL;
[14db08]91 if (OldPointer == NULL) {
[390a2b]92 buffer = (X*) malloc(sizeof(X) * size);
[14db08]93 } else {
[390a2b]94 buffer = (X*) realloc(OldPointer, sizeof(X) * size);
[14db08]95 MemoryUsageObserver::getInstance()->removeMemory(OldPointer);
96 }
97 if (buffer != NULL) {
98 MemoryUsageObserver::getInstance()->addMemory(buffer, size);
99 } else {
[390a2b]100 cout << Verbose(0) << "ReAlloc for datatype " << typeid(X).name()
101 << " failed - new is NULL: " << output << endl;
[14db08]102 }
[390a2b]103
104 return buffer;
105};
106
[17b3a5c]107/** Frees allocated memory range using free().
[390a2b]108 *
109 * \param pointer to the allocated memory range to free; may be NULL, this function is a no-op then
[58808e]110 * \param *msg optional error message
[390a2b]111 */
[58808e]112template <typename X> void Free(X** buffer, const char *msg = NULL)
[390a2b]113{
114 if ((buffer == NULL) || (*buffer == NULL))
115 return;
116
[729279]117 MemoryUsageObserver::getInstance()->removeMemory(*buffer, msg);
[390a2b]118 free(*buffer);
119 *buffer = NULL;
120};
121
122#endif /*MEMORYALLOCATOR_HPP_*/
Note: See TracBrowser for help on using the repository browser.