Last change
on this file since 794482 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
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[39d983] | 1 | /*
|
---|
| 2 | * \file memoryusageobserver.hpp
|
---|
| 3 | *
|
---|
| 4 | * This class represents a Singleton for observing memory usage.
|
---|
| 5 | */
|
---|
| 6 | #ifndef MEMORYUSAGEOBSERVER_HPP_
|
---|
| 7 | #define MEMORYUSAGEOBSERVER_HPP_
|
---|
| 8 |
|
---|
| 9 | using namespace std;
|
---|
| 10 |
|
---|
[17b3a5c] | 11 | /*********************************************** includes ***********************************/
|
---|
| 12 |
|
---|
[39d983] | 13 | // include config.h
|
---|
| 14 | #ifdef HAVE_CONFIG_H
|
---|
| 15 | #include <config.h>
|
---|
| 16 | #endif
|
---|
| 17 |
|
---|
| 18 | #include <map>
|
---|
| 19 | #include <iostream>
|
---|
| 20 | #include <iomanip>
|
---|
| 21 | #include <fstream>
|
---|
| 22 | #include <sstream>
|
---|
| 23 | #include <math.h>
|
---|
| 24 | #include <string>
|
---|
| 25 | #include <typeinfo>
|
---|
| 26 |
|
---|
[17b3a5c] | 27 | /********************************************** declarations *******************************/
|
---|
| 28 |
|
---|
[39d983] | 29 | class MemoryUsageObserver {
|
---|
| 30 | public:
|
---|
| 31 | static MemoryUsageObserver* getInstance();
|
---|
| 32 | static void purgeInstance();
|
---|
| 33 | void addMemory(void* pointer, size_t size);
|
---|
[58808e] | 34 | void removeMemory(void* pointer, const char *msg = NULL);
|
---|
[39d983] | 35 | size_t getUsedMemorySize();
|
---|
| 36 | size_t getMaximumUsedMemory();
|
---|
[729279] | 37 | map<void*, size_t> getPointersToAllocatedMemory();
|
---|
[39d983] | 38 |
|
---|
| 39 | protected:
|
---|
| 40 | /** Do not call this constructor directly, use getInstance() instead. */
|
---|
| 41 | MemoryUsageObserver();
|
---|
| 42 | /** Do not call this destructor directly, use purgeInstance() instead. */
|
---|
| 43 | ~MemoryUsageObserver();
|
---|
| 44 |
|
---|
| 45 | private:
|
---|
| 46 | static MemoryUsageObserver* instance;
|
---|
| 47 | map<void*, size_t> memoryUsers;
|
---|
| 48 | size_t totalSize, maximumSize;
|
---|
| 49 | };
|
---|
| 50 | #endif /*MEMORYUSAGEOBSERVER_HPP_*/
|
---|
Note:
See
TracBrowser
for help on using the repository browser.