forked from Andersbakken/rtags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathToken.h
81 lines (68 loc) · 2.24 KB
/
Token.h
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
#ifndef Token_h
#define Token_h
/* This file is part of RTags (http://rtags.net).
RTags is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
RTags is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with RTags. If not, see <http://www.gnu.org/licenses/>. */
#include <rct/Map.h>
struct Token
{
Token(const char *bytes = 0, int size = 0)
: data(bytes), length(size)
{}
inline bool operator==(const Token &other) const
{
return length == other.length && !strncmp(data, other.data, length);
}
inline bool operator<(const Token &other) const
{
if (!data)
return !other.data ? 0 : -1;
if (!other.data)
return 1;
const int minLength = std::min(length, other.length);
int ret = memcmp(data, other.data, minLength);
if (!ret) {
if (length < other.length) {
ret = -1;
} else if (other.length < length) {
ret = 1;
}
}
return ret;
}
const char *data;
int length;
static inline Map<Token, int> tokenize(const char *data, int size)
{
Map<Token, int> tokens;
int tokenEnd = -1;
for (int i=size - 1; i>=0; --i) {
if (RTags::isSymbol(data[i])) {
if (tokenEnd == -1)
tokenEnd = i;
} else if (tokenEnd != -1) {
addToken(data, i + 1, tokenEnd - i, tokens);
tokenEnd = -1;
}
}
if (tokenEnd != -1)
addToken(data, 0, tokenEnd + 1, tokens);
return tokens;
}
private:
static inline void addToken(const char *data, int pos, int len, Map<Token, int> &tokens)
{
int &val = tokens[Token(data + pos, len)];
if (!val)
val = pos;
}
};
#endif