manually revert 4b3043cc and 141e6fb8181; add detailed explanatory comment
[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::demangle_symbol (const std::string& mangled_symbol)
28 {
29 #if defined(__GLIBCXX__)
30         int status;
31
32         try {
33
34                 char* realname = abi::__cxa_demangle (mangled_symbol.c_str(), 0, 0, &status);
35                 std::string demangled_symbol (realname);
36                 free (realname);
37                 return demangled_symbol;
38         } catch (std::exception) {
39
40         }
41 #endif
42
43         /* Note: on win32, you can use UnDecorateSymbolName.
44            See http://msdn.microsoft.com/en-us/library/ms681400%28VS.85%29.aspx
45            See also: http://msdn.microsoft.com/en-us/library/ms680344%28VS.85%29.aspx
46         */
47
48         return mangled_symbol;
49 }
50
51 std::string
52 PBD::demangle (std::string const& str)
53 {
54         std::string::size_type const b = str.find_first_of ("(");
55
56         if (b == std::string::npos) {
57                 return demangle_symbol (str);
58         }
59
60         std::string::size_type const p = str.find_last_of ("+");
61         if (p == std::string::npos) {
62                 return demangle_symbol (str);
63         }
64
65         if ((p - b) <= 1) {
66                 return demangle_symbol (str);
67         }
68
69         std::string const symbol = str.substr (b + 1, p - b - 1);
70
71         return demangle_symbol (symbol);
72 }