-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathBaseStructure.cpp
322 lines (267 loc) · 8.4 KB
/
BaseStructure.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
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
/* DIME IME for Windows 7/8/10/11
BSD 3-Clause License
Copyright (c) 2022, Jeremy Wu
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "Globals.h"
//---------------------------------------------------------------------
//
// CLSIDToString
//
//---------------------------------------------------------------------
const BYTE GuidSymbols[] = {
3, 2, 1, 0, '-', 5, 4, '-', 7, 6, '-', 8, 9, '-', 10, 11, 12, 13, 14, 15
};
const WCHAR HexDigits[] = L"0123456789ABCDEF";
BOOL CLSIDToString(REFGUID refGUID, _Out_writes_(39) WCHAR *pCLSIDString)
{
WCHAR* pTemp = pCLSIDString;
const BYTE* pBytes = (const BYTE *) &refGUID;
DWORD j = 0;
pTemp[j++] = L'{';
for (int i = 0; i < sizeof(GuidSymbols) && j < (CLSID_STRLEN - 2); i++)
{
if (GuidSymbols[i] == '-')
{
pTemp[j++] = L'-';
}
else
{
pTemp[j++] = HexDigits[ (pBytes[GuidSymbols[i]] & 0xF0) >> 4 ];
pTemp[j++] = HexDigits[ (pBytes[GuidSymbols[i]] & 0x0F) ];
}
}
pTemp[j++] = L'}';
pTemp[j] = L'\0';
return TRUE;
}
//---------------------------------------------------------------------
//
// SkipWhiteSpace
//
// dwBufLen - in character count
//
//---------------------------------------------------------------------
HRESULT SkipWhiteSpace(LCID locale, _In_ LPCWSTR pwszBuffer, DWORD_PTR dwBufLen, _Out_ DWORD_PTR *pdwIndex)
{
DWORD_PTR index = 0;
*pdwIndex = 0;
while (*pwszBuffer && IsSpace(locale, *pwszBuffer) && dwBufLen)
{
dwBufLen--;
pwszBuffer++;
index++;
}
if (*pwszBuffer && dwBufLen)
{
*pdwIndex = index;
return S_OK;
}
return E_FAIL;
}
//---------------------------------------------------------------------
//
// FindChar
//
// dwBufLen - in character count
//
//---------------------------------------------------------------------
HRESULT FindChar(WCHAR wch, _In_ LPCWSTR pwszBuffer, DWORD_PTR dwBufLen, _Out_ DWORD_PTR *pdwIndex)
{
if(pwszBuffer == NULL) return E_FAIL;
DWORD_PTR index = 0;
*pdwIndex = 0;
while (*pwszBuffer && (*pwszBuffer != wch) && dwBufLen)
{
dwBufLen--;
pwszBuffer++;
index++;
}
if (*pwszBuffer && dwBufLen)
{
*pdwIndex = index;
return S_OK;
}
return E_FAIL;
}
//---------------------------------------------------------------------
//
// IsSpace
//
//---------------------------------------------------------------------
BOOL IsSpace(LCID locale, WCHAR wch)
{
WORD wCharType = 0;
GetStringTypeEx(locale, CT_CTYPE1, &wch, 1, &wCharType);
return (wCharType & C1_SPACE);
}
CStringRange::CStringRange()
{
_stringBufLen = 0;
_pStringBuf = nullptr;
}
CStringRange::~CStringRange()
{
}
const WCHAR *CStringRange::Get() const
{
return _pStringBuf;
}
const DWORD_PTR CStringRange::GetLength() const
{
return _stringBufLen;
}
void CStringRange::Clear()
{
_stringBufLen = 0;
_pStringBuf = nullptr;
}
CStringRange& CStringRange::Set(const WCHAR *pwch, DWORD_PTR dwLength)
{
_stringBufLen = dwLength;
_pStringBuf = pwch;
return *this;
}
CStringRange& CStringRange::Set(CStringRange &sr)
{
*this = sr;
return *this;
}
CStringRange& CStringRange::operator =(const CStringRange& sr)
{
_stringBufLen = sr._stringBufLen;
_pStringBuf = sr._pStringBuf;
return *this;
}
void CStringRange::CharNext(_Inout_ CStringRange* pCharNext)
{
if (!_stringBufLen)
{
pCharNext->_stringBufLen = 0;
pCharNext->_pStringBuf = nullptr;
}
else
{
pCharNext->_stringBufLen = _stringBufLen;
pCharNext->_pStringBuf = _pStringBuf;
while (pCharNext->_stringBufLen)
{
BOOL isSurrogate = (IS_HIGH_SURROGATE(*pCharNext->_pStringBuf) || IS_LOW_SURROGATE(*pCharNext->_pStringBuf));
pCharNext->_stringBufLen--;
pCharNext->_pStringBuf++;
if (!isSurrogate)
{
break;
}
}
}
}
int CStringRange::Compare(LCID locale, _In_ CStringRange* pString1, _In_ CStringRange* pString2)
{
return CompareString(locale,
NORM_IGNORECASE,
pString1->Get(),
(DWORD)pString1->GetLength(),
pString2->Get(),
(DWORD)pString2->GetLength());
}
BOOL CStringRange::WildcardCompare(LCID locale, _In_ CStringRange* stringWithWildcard, _In_ CStringRange* targetString)
{
if (stringWithWildcard->GetLength() == 0)
{
return targetString->GetLength() == 0 ? TRUE : FALSE;
}
CStringRange stringWithWildcard_next;
CStringRange targetString_next;
stringWithWildcard->CharNext(&stringWithWildcard_next);
targetString->CharNext(&targetString_next);
if (*stringWithWildcard->Get() == L'*')
{
return WildcardCompare(locale, &stringWithWildcard_next, targetString) || ((targetString->GetLength() != 0) && WildcardCompare(locale, stringWithWildcard, &targetString_next));
}
if (*stringWithWildcard->Get() == L'?')
{
return ((targetString->GetLength() != 0) && WildcardCompare(locale, &stringWithWildcard_next, &targetString_next));
}
BOOL isSurrogate1 = (IS_HIGH_SURROGATE(*stringWithWildcard->Get()) || IS_LOW_SURROGATE(*stringWithWildcard->Get()));
BOOL isSurrogate2 = (IS_HIGH_SURROGATE(*targetString->Get()) || IS_LOW_SURROGATE(*targetString->Get()));
return ((CompareString(locale,
NORM_IGNORECASE,
stringWithWildcard->Get(),
(isSurrogate1 ? 2 : 1),
targetString->Get(),
(isSurrogate2 ? 2 : 1)) == CSTR_EQUAL) && WildcardCompare(locale, &stringWithWildcard_next, &targetString_next));
}
CCandidateRange::CCandidateRange(void)
{
}
CCandidateRange::~CCandidateRange(void)
{
}
BOOL CCandidateRange::IsRange(UINT vKey, WCHAR Printable, UINT Modifiers, CANDIDATE_MODE candidateMode)
{
debugPrint(L"CCandidateRange::IsRange(): vKey = %d, Modifiers = %d, candiMode = %d. ", vKey, Modifiers, candidateMode);
if (candidateMode != CANDIDATE_MODE::CANDIDATE_NONE)
{
for (UINT i = 0; i < _CandidateListIndexRange.Count(); i++)
{
if (Printable == _CandidateListIndexRange.GetAt(i)->Printable)
{
if (i == 0 && vKey == VK_SPACE && CConfig::GetSpaceAsPageDown())
return FALSE;
else
return TRUE;
}
else if ((VK_NUMPAD0 <= vKey) && (vKey <= VK_NUMPAD9))
{
if ((vKey - VK_NUMPAD0) == _CandidateListIndexRange.GetAt(i)->Index)
{
return TRUE;
}
}
}
}
return FALSE;
}
int CCandidateRange::GetIndex(UINT vKey, WCHAR Printable, CANDIDATE_MODE candidateMode)
{
debugPrint(L"CCandidateRange::GetIndex(): vKey = %d, candidateMode = %d ", vKey, candidateMode);
if(candidateMode != CANDIDATE_MODE::CANDIDATE_NONE)
{
for (UINT i = 0; i < _CandidateListIndexRange.Count(); i++)
{
if (Printable == _CandidateListIndexRange.GetAt(i)->Printable)
{
return i;
}
else if ((VK_NUMPAD0 <= vKey) && (vKey <= VK_NUMPAD9))
{
if ((vKey - VK_NUMPAD0) == _CandidateListIndexRange.GetAt(i)->Index)
{
return i;
}
}
}
}
return -1;
}