-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathystring.h
347 lines (307 loc) · 6.85 KB
/
ystring.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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
// Ultimate Windows Library
// (C) Michael Chourdakis
#pragma once
// astring class
class astring : public std::string
{
public:
astring& Format(const char* f, ...)
{
va_list args;
va_start(args, f);
int len = _vscprintf(f, args) + 100;
if (len < 8192)
len = 8192;
std::vector<char> b(len);
vsprintf_s(b.data(), len, f, args);
assign(b.data());
va_end(args);
return *this;
}
};
// ystring class, wstring <-> string wrapper
class ystring : public std::wstring
{
private:
mutable std::string asc_str_st;
public:
// Constructors
ystring(HWND hh) : std::wstring()
{
AssignFromHWND(hh);
}
ystring(HWND hh, int ID) : std::wstring()
{
AssignFromHWND(GetDlgItem(hh, ID));
}
ystring() : std::wstring()
{
}
ystring(const char* v, int CP = CP_UTF8)
{
EqChar(v, CP);
}
ystring(const std::string& v, int CP = CP_UTF8)
{
EqChar(v.c_str(), CP);
}
ystring(const std::wstring& v)
{
assign(v.c_str());
}
ystring(const wchar_t* f)
{
if (!f)
return;
assign(f);
}
/*
// Constructor and format for sprintf-like
ystring(const wchar_t* f, ...) : std::wstring()
{
va_list args;
va_start(args, f);
int len = _vscwprintf(f, args) + 100;
if (len < 8192)
len = 8192;
vector<wchar_t> b(len);
vswprintf_s(b.data(), len, f, args);
assign(b.data());
va_end(args);
}
*/
ystring& Format(const wchar_t* f, ...)
{
va_list args;
va_start(args, f);
int len = _vscwprintf(f, args) + 100;
if (len < 8192)
len = 8192;
std::vector<wchar_t> b(len);
vswprintf_s(b.data(), len, f, args);
assign(b.data());
va_end(args);
return *this;
}
// operator =
void operator=(const char* v)
{
EqChar(v);
}
void operator=(const wchar_t* v)
{
assign(v);
}
void operator=(const std::wstring& v)
{
assign(v.c_str());
}
void operator=(const ystring& v)
{
assign(v.c_str());
}
void operator=(const std::string& v)
{
EqChar(v.c_str());
}
CLSID ToCLSID()
{
CLSID a;
CLSIDFromString(c_str(), &a);
return a;
}
void operator=(CLSID cid)
{
wchar_t ad[100] = { 0 };
StringFromGUID2(cid, ad, 100);
assign(ad);
}
operator const wchar_t*()
{
return c_str();
}
// asc_str() and a_str() and operator const char*()
const std::string& asc_str(int CP = CP_UTF8) const
{
const wchar_t* s = c_str();
int sz = WideCharToMultiByte(CP, 0, s, -1, 0, 0, 0, 0);
std::vector<char> d(sz + 100);
WideCharToMultiByte(CP, 0, s, -1, d.data(), sz + 100, 0, 0);
asc_str_st = d.data();
return asc_str_st;
}
operator const char*() const
{
return a_str();
}
const char* a_str(int CP = CP_UTF8) const
{
asc_str(CP);
return asc_str_st.c_str();
}
long long ll() const
{
return atoll(a_str());
}
// Internal Convertor
void EqChar(const char* v, int CP = CP_UTF8)
{
clear();
if (!v)
return;
int sz = MultiByteToWideChar(CP, 0, v, -1, 0, 0);
std::vector<wchar_t> d(sz + 100);
MultiByteToWideChar(CP, 0, v, -1, d.data(), sz + 100);
assign(d.data());
}
// From HWND
void AssignFromHWND(HWND hh)
{
int zl = GetWindowTextLength(hh);
std::vector<wchar_t> n(zl + 100);
GetWindowTextW(hh, n.data(), zl + 100);
assign(n.data());
}
};
// String Functions
#define MATCH_TRUE 1
#define MATCH_FALSE 0
#define MATCH_ABORT -1
#define NEGATE_CLASS
#define OPTIMIZE_JUST_STAR
#undef MATCH_TAR_PATTERN
// OPTI
static char DMtable[256] = { 0 };
static void PrepareDoMatchTable()
{
for (int i = 0; i < 256; ++i)
DMtable[i] = (char)toupper(static_cast<char>(i));
}
inline int DoMatch(const char *text, const char *p, bool IsCaseSensitive = false)
{
// DoMatchTable Initialization
if (DMtable[0x31] != '1')
PrepareDoMatchTable();
// probably the MOST DIFFICULT FUNCTION in TurboIRC
// Thanks to BitchX for copying this function
//int last;
int matched;
//int reverse;
int pT = 0;
int pP = 0;
for (; p[pP] != '\0'; pP++, pT++)
{
if (text[pT] == '\0' && p[pP] != '*')
return MATCH_ABORT;
switch (p[pP])
{
// case '\\': // Match with following char
// pP++;
// NO BREAK HERE
default:
if (IsCaseSensitive)
{
if (text[pT] != p[pP])
return MATCH_FALSE;
else
continue;
}
// if (toupper(text[pT]) != toupper(p[pP]))
if (DMtable[text[pT]] != DMtable[p[pP]])
return MATCH_FALSE;
continue;
case '?':
continue;
case '*':
if (p[pP] == '*')
pP++;
if (p[pP] == '\0')
return MATCH_TRUE;
while (text[pT])
{
matched = DoMatch(text + pT++, p + pP);
if (matched != MATCH_FALSE)
return matched;
}
return MATCH_ABORT;
}
}
#ifdef MATCH_TAR_PATTERN
if (text[pT] == '/')
return MATCH_TRUE;
#endif
return (text[pT] == '\0');
}
inline int DoMatch2(const wchar_t* text, const wchar_t* p, bool IsCaseSensitive = false)
{
// DoMatchTable Initialization
if (DMtable[0x31] != '1')
PrepareDoMatchTable();
// probably the MOST DIFFICULT FUNCTION in TurboIRC
// Thanks to BitchX for copying this function
//int last;
int matched;
//int reverse;
int pT = 0;
int pP = 0;
for (; p[pP] != '\0'; pP++, pT++)
{
if (text[pT] == '\0' && p[pP] != '*')
return MATCH_ABORT;
switch (p[pP])
{
// case '\\': // Match with following char
// pP++;
// NO BREAK HERE
default:
if (IsCaseSensitive || text[pT] > 200 || p[pP] > 200)
{
if (text[pT] != p[pP])
return MATCH_FALSE;
else
continue;
}
// if (toupper(text[pT]) != toupper(p[pP]))
if (DMtable[text[pT]] != DMtable[p[pP]])
return MATCH_FALSE;
continue;
case '?':
continue;
case '*':
if (p[pP] == '*')
pP++;
if (p[pP] == '\0')
return MATCH_TRUE;
while (text[pT])
{
matched = DoMatch2(text + pT++, p + pP);
if (matched != MATCH_FALSE)
return matched;
}
return MATCH_ABORT;
}
}
#ifdef MATCH_TAR_PATTERN
if (text[pT] == '/')
return MATCH_TRUE;
#endif
return (text[pT] == '\0');
}
// This will be called from the other funcs
inline int VMatching(const char *text, const char *p, bool IsCaseSensitive = false)
{
#ifdef OPTIMIZE_JUST_STAR
if (p[0] == '*' && p[1] == '\0')
return MATCH_TRUE;
#endif
return (DoMatch(text, p, IsCaseSensitive) == MATCH_TRUE);
}
// This will be called from the other funcs
inline int VMatching2(const wchar_t* text, const wchar_t* p, bool IsCaseSensitive = false)
{
#ifdef OPTIMIZE_JUST_STAR
if (p[0] == '*' && p[1] == '\0')
return MATCH_TRUE;
#endif
return (DoMatch2(text, p, IsCaseSensitive) == MATCH_TRUE);
}