~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/backtrace.cc

  • Committer: Brian Aker
  • Date: 2010-10-20 01:42:35 UTC
  • mto: (1861.4.3 trunk-drizzle)
  • mto: This revision was merged to the branch mainline in revision 1864.
  • Revision ID: brian@tangent.org-20101020014235-z6jon99ukzez8o1c
This just fixes our current catalog to be displayed properly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Brian Aker
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
 
 
22
#include "config.h"
 
23
#include "drizzled/util/backtrace.h"
 
24
 
 
25
#include <string.h>
 
26
#include <stdlib.h>
 
27
#include <iostream>
 
28
 
 
29
#ifdef __GNUC__
 
30
#ifdef HAVE_BACKTRACE
 
31
#include <execinfo.h>
 
32
#include <cxxabi.h>
 
33
#endif // HAVE_BACKTRACE
 
34
#endif // __GNUC__
 
35
 
 
36
 
 
37
namespace drizzled
 
38
{
 
39
namespace util
 
40
{
 
41
 
 
42
void custom_backtrace(void)
 
43
{
 
44
  void *array[50];
 
45
  size_t size;
 
46
  char **strings;
 
47
 
 
48
  size= backtrace(array, 50);
 
49
  strings= backtrace_symbols(array, size);
 
50
 
 
51
  std::cerr << "Number of stack frames obtained: " << size <<  std::endl;
 
52
 
 
53
  for (size_t x= 1; x < size; x++) 
 
54
  {
 
55
    size_t sz= 200;
 
56
    char *function= (char *)malloc(sz);
 
57
    char *begin= 0;
 
58
    char *end= 0;
 
59
 
 
60
    for (char *j = strings[x]; *j; ++j)
 
61
    {
 
62
      if (*j == '(') {
 
63
        begin = j;
 
64
      }
 
65
      else if (*j == '+') {
 
66
        end = j;
 
67
      }
 
68
    }
 
69
    if (begin && end)
 
70
    {
 
71
      begin++;
 
72
      *end= '\0';
 
73
 
 
74
      int status;
 
75
      char *ret = abi::__cxa_demangle(begin, function, &sz, &status);
 
76
      if (ret) 
 
77
      {
 
78
        function= ret;
 
79
      }
 
80
      else
 
81
      {
 
82
        strncpy(function, begin, sz);
 
83
        strncat(function, "()", sz);
 
84
        function[sz-1] = '\0';
 
85
      }
 
86
      std::cerr << function << std::endl;
 
87
    }
 
88
    else
 
89
    {
 
90
      std::cerr << strings[x] << std::endl;
 
91
    }
 
92
    free(function);
 
93
  }
 
94
 
 
95
 
 
96
  free (strings);
 
97
}
 
98
 
 
99
} /* namespace util */
 
100
} /* namespace drizzled */