-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathbacktrace.hpp
61 lines (48 loc) · 1.11 KB
/
backtrace.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#define SASS_BACKTRACE
#include <sstream>
#ifndef SASS_POSITION
#include "position.hpp"
#endif
namespace Sass {
using namespace std;
struct Backtrace {
Backtrace* parent;
string path;
Position position;
string caller;
Backtrace(Backtrace* prn, string pth, Position position, string c)
: parent(prn),
path(pth),
position(position),
caller(c)
{ }
string to_string(bool warning = false)
{
stringstream ss;
Backtrace* this_point = this;
if (!warning) ss << endl << "Backtrace:";
// the first tracepoint (which is parent-less) is an empty placeholder
while (this_point->parent) {
ss << endl
<< "\t"
<< (warning ? " " : "")
<< this_point->path
<< ":"
<< this_point->position.line
<< this_point->parent->caller;
this_point = this_point->parent;
}
return ss.str();
}
size_t depth()
{
size_t d = 0;
Backtrace* p = parent;
while (p) {
++d;
p = p->parent;
}
return d-1;
}
};
}