blob: ba31e489f4566192eadb3608d99f6b4905e22e29 (
plain)
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
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
// **************************************************************************
#ifndef DEBUGNEW_H_INCLUDED
#define DEBUGNEW_H_INCLUDED
#include <string>
#include <sstream>
#include <cstdlib> //malloc(), free()
#ifndef _MSC_VER
#error currently for use with MSC only
#endif
/*overwrite "operator new" to get more detailed error messages on bad_alloc, detect memory leaks and write memory dumps
Usage:
- Include everywhere before any other file: $(ProjectDir)\shared\debug_new.h
For Minidumps:
- Compile "debug_new.cpp"
- Compile with debugging symbols and optimization deactivated
*/
namespace mem_check
{
class BadAllocDetailed : public std::bad_alloc
{
public:
explicit BadAllocDetailed(size_t allocSize)
{
errorMsg = "Memory allocation failed: ";
errorMsg += numberToString(allocSize);
}
~BadAllocDetailed() throw() {}
virtual const char* what() const throw()
{
return errorMsg.c_str();
}
private:
template <class T>
static std::string numberToString(const T& number) //convert number to string the C++ way
{
std::ostringstream ss;
ss << number;
return ss.str();
}
std::string errorMsg;
};
#ifdef _MSC_VER
void writeMinidump();
#endif
}
inline
void* operator new(size_t size)
{
void* newMem = ::malloc(size);
if (!newMem)
{
#ifdef _MSC_VER
mem_check::writeMinidump();
#endif
throw mem_check::BadAllocDetailed(size);
}
return newMem;
}
inline
void operator delete(void* ptr)
{
::free(ptr);
}
inline
void* operator new[](size_t size)
{
return operator new(size);
}
inline
void operator delete[](void* ptr)
{
operator delete(ptr);
}
#endif // DEBUGNEW_H_INCLUDED
|