Move PBD symbol demangle functions into pbd/demangle.h/cc
[ardour.git] / libs / pbd / demangle.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis
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 2 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, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "pbd/demangle.h"
21
22 #if defined(__GLIBCXX__)
23 #include <cxxabi.h>
24 #endif
25
26 std::string
27 PBD::symbol_demangle (const std::string& l)
28 {
29 #if defined(__GLIBCXX__)
30         int status;
31
32         try {
33
34                 char* realname = abi::__cxa_demangle (l.c_str(), 0, 0, &status);
35                 std::string d (realname);
36                 free (realname);
37                 return d;
38         } catch (std::exception) {
39
40         }
41 #endif
42
43         return l;
44 }
45
46 std::string
47 PBD::demangle (std::string const & l)
48 {
49         std::string::size_type const b = l.find_first_of ("(");
50
51         if (b == std::string::npos) {
52                 return symbol_demangle (l);
53         }
54
55         std::string::size_type const p = l.find_last_of ("+");
56         if (p == std::string::npos) {
57                 return symbol_demangle (l);
58         }
59
60         if ((p - b) <= 1) {
61                 return symbol_demangle (l);
62         }
63
64         std::string const fn = l.substr (b + 1, p - b - 1);
65
66         return symbol_demangle (fn);
67 }