summaryrefslogtreecommitdiff
path: root/shared/debug_new.h
blob: c9c3dbf6ec2d781e44bb812a8b854ca41b5a9f3f (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
// **************************************************************************
// * 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-2010 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************
//
#ifndef DEBUGNEW_H_INCLUDED
#define DEBUGNEW_H_INCLUDED

#include <string>
#include <sstream>
#include <cstdlib> //malloc(), free()


/*all this header does is to globally overwrite "operator new" to give some more detailed error messages and write memory dumps
Usage:
	 - Include everywhere before any other file: $(ProjectDir)\shared\debug_new.h
	 For Minidumps:
	 - Compile "debug_new.cpp"
	 - Include library "Dbghelp.lib"
	 - Compile in Debug build (need Symbols and less restrictive Optimization)
*/

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::stringstream ss;
        ss << number;
        return ss.str();
    }

    std::string errorMsg;
};

#ifdef _MSC_VER
namespace MemoryDump
{
void writeMinidump();
}
#endif

inline
void* operator new(size_t allocSize)
{
    void* newMem = ::malloc(allocSize);
    if (!newMem)
    {
#ifdef _MSC_VER
        MemoryDump::writeMinidump();
#endif
        throw BadAllocDetailed(allocSize);
    }
    return newMem;
}


inline
void* operator new[](size_t allocSize)
{
    return operator new(allocSize);
}


inline
void operator delete(void* memory)
{
    ::free(memory);
}


inline
void operator delete[](void* memory)
{
    operator delete(memory);
}

#endif // DEBUGNEW_H_INCLUDED

bgstack15