-
Notifications
You must be signed in to change notification settings - Fork 115
/
LeakTester.h
174 lines (159 loc) · 5.84 KB
/
LeakTester.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// MEMORY LEAKAGE TESTER
#ifndef LEAKAGE_TEST_H
#define LEAKAGE_TEST_H
#include <cstdio>
#include <cstdlib>
#include <cstddef>
#include <cstring>
#include <exception>
#include <new>
#define INCLUDE_NOTIFICATIONS __Tester__::notifications = true
// #define EXCLUDE_NOTIFICATIONS __Tester__::notifications = false
#define FILE_OUTPUT(name) __Tester__::redirect_output(#name)
#define SCREEN_OUTPUT __Tester__::redirect_output(0)
namespace __Tester__ {
typedef unsigned long ULong;
struct Info {
void *address;
long line;
std::size_t _size;
bool isArray;
Info *link;
} *alloc_map(0);
int alloc_count(0), dealloc_count(0);
long alloc_total(0), dealloc_total(0), alloc_current(0),
alloc_max(0);
bool notifications(false);
char previous_name[1000] = "";
FILE *output(stdout);
void redirect_output(const char name[]) {
if(output != stdout) fclose(output);
if(name) {
if(strcmp(name, previous_name)) output = fopen(name, "w");
else output = fopen(name, "a");
if(output) {
strcpy(previous_name, name); return;
}
}
output = stdout;
}
void *Alloc(long line, std::size_t _size, bool isArray) {
void *address(std::malloc(_size));
if(!address) throw std::bad_alloc();
if(line != -1) {
alloc_count++;
alloc_total += _size; alloc_current += _size;
if(alloc_current > alloc_max) alloc_max = alloc_current;
if(notifications) {
if(line == -2) std::fprintf(output, ">>> Internally allocated ");
else std::fprintf(output, ">>> in %ld. line of the script we have allocated memory with the line: ", line);
std::fprintf(output, "%lu bytes, on address %p\n", (ULong)_size, address);
}
}
Info info = {address, line, _size, isArray, alloc_map};
if(!(alloc_map = (Info*)std::malloc(sizeof(Info))))
throw std::bad_alloc();
*alloc_map = info;
return address;
}
void Dealloc(void *ptr, bool isArray) {
Info *current(alloc_map), *previous(0);
for(; current && current->address != ptr; current = current->link)
previous = current;
if(current) {
if(current->line != -1) {
std::size_t _size(current->_size);
dealloc_count++;
dealloc_total += _size; alloc_current -= _size;
if(notifications) {
std::fprintf(output, ">>> Releasing %lu bytes on address %p\n",
(ULong)_size, ptr);
}
if(isArray != current->isArray)
std::fprintf(output, "*** ERROR: Releasing on address %p %s "
"should be done with delete[]!\n",
ptr, isArray ? "no" : "yes");
}
if(previous) previous->link = current->link;
else alloc_map = current->link;
std::free(current); std::free(ptr);
}
else if(ptr) {
const std::size_t pomak(sizeof(std::size_t));
void *ptr1((char*)ptr + (isArray ? pomak : -pomak));
for(current = alloc_map; current && current->address != ptr1;
current = current->link);
if(current)
std::fprintf(output, "*** ERROR: Releasing on address %p %s should "
"be done with delete[]!\n", ptr1, isArray ? "no" : "yes");
else
fprintf(output, "*** ERROR: You are trying to release already released space "
"on address %p!\n", ptr);
}
}
void Terminator();
struct Reporter {
void (*old_terminator)();
Reporter() : old_terminator(std::set_terminate(Terminator)) {}
~Reporter() {
std::fprintf(output, "\n\n+---------------+\n| FINAL REPORT: |\n"
"+---------------+\n\nTotal number of allocations: %d\nTotal number of "
"deallocations: %d\nTotal number of allocations in bytes: %ld\n"
"Total number of deallocations in bytes: %ld\nMaximum "
"memory occupation during runtime in bytes: %ld\nMemory occupation "
"upon completion: %ld\n", alloc_count,
dealloc_count, alloc_total, dealloc_total,
alloc_max, alloc_current);
if(alloc_map) {
std::fprintf(output, "\n\nLEAK! YOU HAVE MEMORY LEAKAGE ON FOLLOWING PLACES: \n");
for(Info *current = alloc_map; current; current = current->link)
if(current->line == -2)
std::fprintf(output, " - address %p, %lu bytes, allocated internally\n",
current->address, (ULong)current->_size);
else
std::fprintf(output, " - address %p, %lu bytes, allocated in %ld. "
"line\n", current->address, (ULong)current->_size,
current->line);
std::fprintf(output, "\n");
}
else
std::fprintf(output, "\n\nGREAT JOB! YOU DO NOT HAVE MEMORY LEAKAGE\n\n");
if(output != stdout) fclose(output);
std::system("PAUSE");
}
} reporter;
void Terminator() {
reporter.Reporter::~Reporter();
reporter.old_terminator();
}
}
void *operator new(std::size_t _size, long line) // throw(std::bad_alloc)
{
return __Tester__::Alloc(line, _size, false);
}
void* operator new[](std::size_t _size, long line) // throw(std::bad_alloc)
{
return __Tester__::Alloc(line, _size, true);
}
void *operator new(std::size_t _size) // throw(std::bad_alloc)
{
return __Tester__::Alloc(-2, _size, false);
} // Hvata interne alokacije
void* operator new[](std::size_t _size) // throw(std::bad_alloc)
{
return __Tester__::Alloc(-2, _size, true);
}
void operator delete(void *ptr) throw() {
__Tester__::Dealloc(ptr, false);
}
void operator delete[](void* ptr) throw() {
__Tester__::Dealloc(ptr, true);
}
void operator delete(void *ptr, long) throw() { // placement delete!!!
__Tester__::Dealloc(ptr, false);
}
void operator delete[](void* ptr, long) throw() {
__Tester__::Dealloc(ptr, true);
}
#define new new(__LINE__)
#endif