aboutsummaryrefslogtreecommitdiff
path: root/src/exceptionbase.cpp
blob: 6e5ae1064fcdc2b54c8e1ade6023e9ee855848e2 (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
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
/*
 * Copyright (C) 2007-2008 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "exceptionbase.h"
#include <stdarg.h>

Bu::ExceptionBase::ExceptionBase( const char *lpFormat, ... ) throw() :
	nErrorCode( 0 ),
	sWhat( NULL )
#ifdef LIBBU_EXCEPTION_BACKTRACE
	, sBT( NULL )
#endif
{
	va_list ap;

	va_start(ap, lpFormat);
	setWhat( lpFormat, ap );
	va_end(ap);
#ifdef LIBBU_EXCEPTION_BACKTRACE
	createBacktrace();
#endif
}

Bu::ExceptionBase::ExceptionBase( int nCode, const char *lpFormat, ... ) throw() :
	nErrorCode( nCode ),
	sWhat( NULL )
#ifdef LIBBU_EXCEPTION_BACKTRACE
	, sBT( NULL )
#endif
{
	va_list ap;

	va_start(ap, lpFormat);
	setWhat( lpFormat, ap );
	va_end(ap);
#ifdef LIBBU_EXCEPTION_BACKTRACE
	createBacktrace();
#endif
}

Bu::ExceptionBase::ExceptionBase( int nCode ) throw() :
	nErrorCode( nCode ),
	sWhat( NULL )
#ifdef LIBBU_EXCEPTION_BACKTRACE
	, sBT( NULL )
#endif
{
#ifdef LIBBU_EXCEPTION_BACKTRACE
	createBacktrace();
#endif
}

Bu::ExceptionBase::ExceptionBase( const ExceptionBase &e ) throw () :
	nErrorCode( e.nErrorCode ),
	sWhat( NULL )
#ifdef LIBBU_EXCEPTION_BACKTRACE
	, sBT( NULL )
#endif
{
	setWhat( e.sWhat );
#ifdef LIBBU_EXCEPTION_BACKTRACE
	createBacktrace();
#endif
}

Bu::ExceptionBase::~ExceptionBase() throw()
{
	delete[] sWhat;
	sWhat = NULL;
#ifdef LIBBU_EXCEPTION_BACKTRACE
	delete[] sBT;
	sBT = NULL;
#endif
}

void Bu::ExceptionBase::setWhat( const char *lpFormat, va_list &vargs )
{
	if( sWhat ) delete[] sWhat;
	int nSize;

	nSize = vsnprintf( NULL, 0, lpFormat, vargs );
	sWhat = new char[nSize+1];
	vsnprintf( sWhat, nSize+1, lpFormat, vargs );
}

void Bu::ExceptionBase::setWhat( const char *lpText )
{
	if( sWhat ) delete[] sWhat;
	int nSize;

	nSize = strlen( lpText );
	sWhat = new char[nSize+1];
	strcpy( sWhat, lpText );
}

const char *Bu::ExceptionBase::what() const throw()
{
	return sWhat;
}

int Bu::ExceptionBase::getErrorCode()
{
	return nErrorCode;
}

#ifdef LIBBU_EXCEPTION_BACKTRACE
const char *Bu::ExceptionBase::getBacktrace() const throw()
{
	return sBT;
}

#include "bu/fstring.h"
#include <execinfo.h>

void Bu::ExceptionBase::createBacktrace()
{
	void *array[1000];
	size_t size;
	char **strings;
	size_t i;
	
	size = backtrace (array, 1000);
	strings = backtrace_symbols (array, size);

	Bu::FString s;
	s.format("Obtained %zd stack frames.\n", size );

	for (i = 0; i < size; i++)
	{
		s += strings[i];
		s += "\n";
	}

	free (strings);

	sBT = new char[s.getSize()+1];
	strcpy( sBT, s.getStr() );
}

#else
const char *Bu::ExceptionBase::getBacktrace() const throw()
{
	return "Backtrace support is not compiled in.\n";
}
#endif