00001
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00032
00033 #ifndef GROOVX_RUTZ_BACKTRACEFORMAT_CC_UTC20050630214129_DEFINED
00034 #define GROOVX_RUTZ_BACKTRACEFORMAT_CC_UTC20050630214129_DEFINED
00035
00036 #include "rutz/backtraceformat.h"
00037
00038 #include "rutz/backtrace.h"
00039 #include "rutz/compat_snprintf.h"
00040 #include "rutz/fstring.h"
00041 #include "rutz/trace.h"
00042
00043 #include <cstdio>
00044 #include <sstream>
00045
00046 rutz::fstring rutz::format(const rutz::backtrace& bt)
00047 {
00048 const unsigned int size = bt.size();
00049
00050 if (size == 0) return rutz::fstring();
00051
00052 std::ostringstream result;
00053
00054 const int LINELEN = 256;
00055 char line[LINELEN];
00056
00057 unsigned int s = size;
00058 int width = 0;
00059 while (s != 0)
00060 { s /= 10; ++width; }
00061
00062 for (unsigned int i = size; i > 0; --i)
00063 {
00064 snprintf(&line[0], LINELEN, "[%*d] %-35s (%s:%d)\n",
00065 width,
00066 size - i,
00067 bt[i-1]->context_name(),
00068 bt[i-1]->src_file_name(),
00069 bt[i-1]->src_line_no());
00070
00071 result << &line[0];
00072 }
00073
00074 return rutz::fstring(result.str().c_str());
00075 }
00076
00077 static const char __attribute__((used)) vcid_groovx_rutz_backtraceformat_cc_utc20050630214129[] = "$Id: backtraceformat.cc 10065 2007-04-12 05:54:56Z rjpeters $ $HeadURL: file:
00078 #endif // !GROOVX_RUTZ_BACKTRACEFORMAT_CC_UTC20050630214129DEFINED