for windows build, add fallback_folders.cc to libpbd source list
[ardour.git] / libs / pbd / stacktrace.cc
index ca614509a5196c6b30a883ea8dcd50c126af1179..c74dd946f78d7896246d4dfe36f19df64440bc32 100644 (file)
@@ -22,6 +22,7 @@
 #include "pbd/stacktrace.h"
 #include <cstdio>
 #include <iostream>
+#include <string>
 
 void
 PBD::trace_twb ()
@@ -35,37 +36,45 @@ PBD::trace_twb ()
 #include <execinfo.h>
 #include <cxxabi.h>
 
-std::string demangle (std::string const & l)
+static std::string 
+symbol_demangle (const std::string& l)
+{
+       int status;
+
+       try {
+               
+               char* realname = abi::__cxa_demangle (l.c_str(), 0, 0, &status);
+               std::string d (realname);
+               free (realname);
+               return d;
+       } catch (std::exception) {
+               
+       }
+
+       return l;
+}
+
+std::string 
+PBD::demangle (std::string const & l)
 {
        std::string::size_type const b = l.find_first_of ("(");
+
        if (b == std::string::npos) {
-               return l;
+               return symbol_demangle (l);
        }
 
        std::string::size_type const p = l.find_last_of ("+");
        if (p == std::string::npos) {
-               return l;
+               return symbol_demangle (l);
        }
 
        if ((p - b) <= 1) {
-               return l;
+               return symbol_demangle (l);
        }
        
        std::string const fn = l.substr (b + 1, p - b - 1);
 
-       int status;
-       try {
-               
-               char* realname = abi::__cxa_demangle (fn.c_str(), 0, 0, &status);
-               std::string d (realname);
-               free (realname);
-               return d;
-               
-       } catch (std::exception) {
-               
-       }
-       
-       return l;
+       return symbol_demangle (fn);
 }
 
 void
@@ -85,7 +94,6 @@ PBD::stacktrace (std::ostream& out, int levels)
                        
                        for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
                                out << "  " << demangle (strings[i]) << std::endl;
-                               std::cerr << "  " << demangle (strings[i]) << std::endl;
                        }
                        
                        free (strings);
@@ -97,6 +105,12 @@ PBD::stacktrace (std::ostream& out, int levels)
 
 #else
 
+std::string 
+PBD::demangle (std::string const & l) /* JE - !!!! 'PBD' namespace might possibly get removed (except it's still used in 'libs/canvas/item.cc') */
+{
+       return std::string();
+}
+
 void
 PBD::stacktrace (std::ostream& out, int /*levels*/)
 {