-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathposition.cpp
163 lines (132 loc) · 4.51 KB
/
position.cpp
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#include "position.hpp"
namespace Sass {
using namespace std;
Offset::Offset(const char* string)
: line(0), column(0)
{
*this = inc(string, string + strlen(string));
}
Offset::Offset(const string& text)
: line(0), column(0)
{
*this = inc(text.c_str(), text.c_str() + text.size());
}
Offset::Offset(const size_t line, const size_t column)
: line(line), column(column) { }
// init/create instance from const char substring
Offset Offset::init(const char* beg, const char* end)
{
Offset offset(0, 0);
if (end == 0) {
end += strlen(beg);
}
offset.add(beg, end);
return offset;
}
// increase offset by given string (mostly called by lexer)
// increase line counter and count columns on the last line
// ToDo: make the col count utf8 aware
Offset Offset::add(const char* begin, const char* end)
{
if (end == 0) return *this;
while (begin < end && *begin) {
if (*begin == '\n') {
++ line;
// start new line
column = 0;
} else {
++ column;
}
++begin;
}
return *this;
}
// increase offset by given string (mostly called by lexer)
// increase line counter and count columns on the last line
Offset Offset::inc(const char* begin, const char* end) const
{
Offset offset(line, column);
offset.add(begin, end);
return offset;
}
bool Offset::operator== (const Offset &pos) const
{
return line == pos.line && column == pos.column;
}
bool Offset::operator!= (const Offset &pos) const
{
return line != pos.line || column != pos.column;
}
void Offset::operator+= (const Offset &off)
{
*this = Offset(line + off.line, off.line > 0 ? off.column : column + off.column);
}
Offset Offset::operator+ (const Offset &off) const
{
return Offset(line + off.line, off.line > 0 ? off.column : column + off.column);
}
Offset Offset::operator- (const Offset &off) const
{
return Offset(line - off.line, off.line == line ? column - off.column : column);
}
Position::Position(const size_t file)
: Offset(0, 0), file(file) { }
Position::Position(const size_t file, const Offset& offset)
: Offset(offset), file(file) { }
Position::Position(const size_t line, const size_t column)
: Offset(line, column), file(-1) { }
Position::Position(const size_t file, const size_t line, const size_t column)
: Offset(line, column), file(file) { }
ParserState::ParserState(string path, const char* src, const size_t file)
: Position(file, 0, 0), path(path), src(src), offset(0, 0), token() { }
ParserState::ParserState(string path, const char* src, Position position, Offset offset)
: Position(position), path(path), src(src), offset(offset), token() { }
ParserState::ParserState(string path, const char* src, Token token, Position position, Offset offset)
: Position(position), path(path), src(src), offset(offset), token(token) { }
Position Position::add(const char* begin, const char* end)
{
Offset::add(begin, end);
return *this;
}
Position Position::inc(const char* begin, const char* end) const
{
Offset offset(line, column);
offset = offset.inc(begin, end);
return Position(file, offset);
}
bool Position::operator== (const Position &pos) const
{
return file == pos.file && line == pos.line && column == pos.column;
}
bool Position::operator!= (const Position &pos) const
{
return file == pos.file || line != pos.line || column != pos.column;
}
void Position::operator+= (const Offset &off)
{
*this = Position(file, line + off.line, off.line > 0 ? off.column : column + off.column);
}
const Position Position::operator+ (const Offset &off) const
{
return Position(file, line + off.line, off.line > 0 ? off.column : column + off.column);
}
const Offset Position::operator- (const Offset &off) const
{
return Offset(line - off.line, off.line == line ? column - off.column : column);
}
/* not used anymore - remove?
std::ostream& operator<<(std::ostream& strm, const Offset& off)
{
if (off.line == string::npos) strm << "-1:"; else strm << off.line << ":";
if (off.column == string::npos) strm << "-1"; else strm << off.column;
return strm;
} */
/* not used anymore - remove?
std::ostream& operator<<(std::ostream& strm, const Position& pos)
{
if (pos.file != string::npos) strm << pos.file << ":";
if (pos.line == string::npos) strm << "-1:"; else strm << pos.line << ":";
if (pos.column == string::npos) strm << "-1"; else strm << pos.column;
return strm;
} */
}