-
Notifications
You must be signed in to change notification settings - Fork 1
/
html.cpp
169 lines (155 loc) · 3.71 KB
/
html.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
164
165
166
167
168
169
#include "litehtml/html.h"
#include "litehtml/types.h"
#include "litehtml/html_tag.h"
void litehtml::trim(tstring &s)
{
tstring::size_type pos = s.find_first_not_of(_t(" \n\r\t"));
if(pos != tstring::npos)
{
s.erase(s.begin(), s.begin() + pos);
}
pos = s.find_last_not_of(_t(" \n\r\t"));
if(pos != tstring::npos)
{
s.erase(s.begin() + pos + 1, s.end());
}
}
void litehtml::lcase(tstring &s)
{
for(tstring::iterator i = s.begin(); i != s.end(); i++)
{
(*i) = t_tolower(*i);
}
}
litehtml::tstring::size_type litehtml::find_close_bracket(const tstring &s, tstring::size_type off, tchar_t open_b, tchar_t close_b)
{
int cnt = 0;
for(tstring::size_type i = off; i < s.length(); i++)
{
if(s[i] == open_b)
{
cnt++;
} else if(s[i] == close_b)
{
cnt--;
if(!cnt)
{
return i;
}
}
}
return tstring::npos;
}
int litehtml::value_index( const tstring& val, const tstring& strings, int defValue, tchar_t delim )
{
if(val.empty() || strings.empty() || !delim)
{
return defValue;
}
int idx = 0;
tstring::size_type delim_start = 0;
tstring::size_type delim_end = strings.find(delim, delim_start);
tstring::size_type item_len = 0;
while(true)
{
if(delim_end == tstring::npos)
{
item_len = strings.length() - delim_start;
} else
{
item_len = delim_end - delim_start;
}
if(item_len == val.length())
{
if(val == strings.substr(delim_start, item_len))
{
return idx;
}
}
idx++;
delim_start = delim_end;
if(delim_start == tstring::npos) break;
delim_start++;
if(delim_start == strings.length()) break;
delim_end = strings.find(delim, delim_start);
}
return defValue;
}
bool litehtml::value_in_list( const tstring& val, const tstring& strings, tchar_t delim )
{
int idx = value_index(val, strings, -1, delim);
if(idx >= 0)
{
return true;
}
return false;
}
void litehtml::split_string(const tstring& str, string_vector& tokens, const tstring& delims, const tstring& delims_preserve, const tstring& quote)
{
if(str.empty() || (delims.empty() && delims_preserve.empty()))
{
return;
}
tstring all_delims = delims + delims_preserve + quote;
tstring::size_type token_start = 0;
tstring::size_type token_end = str.find_first_of(all_delims, token_start);
tstring::size_type token_len = 0;
tstring token;
while(true)
{
while( token_end != tstring::npos && quote.find_first_of(str[token_end]) != tstring::npos )
{
if(str[token_end] == _t('('))
{
token_end = find_close_bracket(str, token_end, _t('('), _t(')'));
} else if(str[token_end] == _t('['))
{
token_end = find_close_bracket(str, token_end, _t('['), _t(']'));
} else if(str[token_end] == _t('{'))
{
token_end = find_close_bracket(str, token_end, _t('{'), _t('}'));
} else
{
token_end = str.find_first_of(str[token_end], token_end + 1);
}
if(token_end != tstring::npos)
{
token_end = str.find_first_of(all_delims, token_end + 1);
}
}
if(token_end == tstring::npos)
{
token_len = tstring::npos;
} else
{
token_len = token_end - token_start;
}
token = str.substr(token_start, token_len);
if(!token.empty())
{
tokens.push_back( token );
}
if(token_end != tstring::npos && !delims_preserve.empty() && delims_preserve.find_first_of(str[token_end]) != tstring::npos)
{
tokens.push_back( str.substr(token_end, 1) );
}
token_start = token_end;
if(token_start == tstring::npos) break;
token_start++;
if(token_start == str.length()) break;
token_end = str.find_first_of(all_delims, token_start);
}
}
void litehtml::join_string(tstring& str, const string_vector& tokens, const tstring& delims)
{
tstringstream ss;
for(size_t i=0; i<tokens.size(); ++i)
{
if(i != 0)
{
ss << delims;
}
ss << tokens[i];
}
str = ss.str();
}