expanded Array and replaced all usages of std::vector with bear::Array
[libbear.git] / lib / src / debug.cpp
1 /*
2  *  Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com.
3  *
4  *  This program is free software: you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation, either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "debug.h"
19
20 #include <iostream>
21 using std::cerr;
22 using std::cout;
23 using std::endl;
24
25 #include <assert.h>
26 #include <execinfo.h>
27 #include <stdlib.h>
28
29 #include "Lock.h"
30 #include "Autolock.h"
31
32 using namespace bear;
33
34
35 /// ***** Public Methods *****
36
37 Lock muDPF;
38
39 void bear::debug::init()
40 {
41     muDPF.init();
42 }
43
44 void bear::debug::fini()
45 {
46     muDPF.fini();
47 }
48
49 void bear::debug::printTrace()
50 {
51     int     size;
52     char**  strings;
53
54     {
55         void*   array[50];
56
57         size = backtrace (array, 50);
58         strings = backtrace_symbols (array, size);
59     }
60
61     {
62         Autolock lock(&muDPF);
63
64         cout << "Obtained " << size << " stack frames." << endl;
65
66         for (int i = 0; i < size; i++)
67         {
68             cout << strings[i] << endl;
69         }
70     }
71
72     free (strings);
73 }
74
75 void bear::DPF(int iLevel, const char* pstr)
76 {
77     Autolock lock(&muDPF);
78
79     (void)iLevel;
80
81     cout << pstr << endl;
82 }
83
84 void bear::DASSERT(bool fAssert)
85 {
86   if(!fAssert)
87   {
88     bear::debug::printTrace();
89   }
90
91 //#ifdef DEBUG
92     assert(fAssert);
93 //#else
94 //  (void)fAssert;
95 //#endif
96 }
97
98 /// ***** Private Methods *****