Skip to content

Latest commit

 

History

History
572 lines (480 loc) · 17.2 KB

physfs_unicode.c

File metadata and controls

572 lines (480 loc) · 17.2 KB
 
Nov 5, 2006
Nov 5, 2006
1
2
3
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
Aug 11, 2017
Aug 11, 2017
4
5
#include "physfs_casefolding.h"
Nov 5, 2006
Nov 5, 2006
6
7
8
/*
* From rfc3629, the UTF-8 spec:
Feb 25, 2016
Feb 25, 2016
9
* https://www.ietf.org/rfc/rfc3629.txt
Nov 5, 2006
Nov 5, 2006
10
11
12
13
14
15
16
17
18
19
20
21
22
23
*
* Char. number range | UTF-8 octet sequence
* (hexadecimal) | (binary)
* --------------------+---------------------------------------------
* 0000 0000-0000 007F | 0xxxxxxx
* 0000 0080-0000 07FF | 110xxxxx 10xxxxxx
* 0000 0800-0000 FFFF | 1110xxxx 10xxxxxx 10xxxxxx
* 0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
*/
/*
* This may not be the best value, but it's one that isn't represented
* in Unicode (0x10FFFF is the largest codepoint value). We return this
May 20, 2022
May 20, 2022
24
25
* value from __PHYSFS_utf8codepoint() if there's bogus bits in the
* stream. __PHYSFS_utf8codepoint() will turn this value into something
Nov 5, 2006
Nov 5, 2006
26
27
28
29
30
31
32
33
34
35
36
37
* reasonable (like a question mark), for text that wants to try to recover,
* whereas utf8valid() will use the value to determine if a string has bad
* bits.
*/
#define UNICODE_BOGUS_CHAR_VALUE 0xFFFFFFFF
/*
* This is the codepoint we currently return when there was bogus bits in a
* UTF-8 string. May not fly in Asian locales?
*/
#define UNICODE_BOGUS_CHAR_CODEPOINT '?'
May 20, 2022
May 20, 2022
38
PHYSFS_uint32 __PHYSFS_utf8codepoint(const char **_str)
Nov 5, 2006
Nov 5, 2006
39
40
41
42
43
44
45
46
47
48
49
50
{
const char *str = *_str;
PHYSFS_uint32 retval = 0;
PHYSFS_uint32 octet = (PHYSFS_uint32) ((PHYSFS_uint8) *str);
PHYSFS_uint32 octet2, octet3, octet4;
if (octet == 0) /* null terminator, end of string. */
return 0;
else if (octet < 128) /* one octet char: 0 to 127 */
{
(*_str)++; /* skip to next possible start of codepoint. */
Jan 28, 2010
Jan 28, 2010
51
return octet;
Nov 5, 2006
Nov 5, 2006
52
53
54
55
56
57
58
59
60
61
62
63
64
65
} /* else if */
else if ((octet > 127) && (octet < 192)) /* bad (starts with 10xxxxxx). */
{
/*
* Apparently each of these is supposed to be flagged as a bogus
* char, instead of just resyncing to the next valid codepoint.
*/
(*_str)++; /* skip to next possible start of codepoint. */
return UNICODE_BOGUS_CHAR_VALUE;
} /* else if */
else if (octet < 224) /* two octets */
{
Jun 1, 2011
Jun 1, 2011
66
(*_str)++; /* advance at least one byte in case of an error */
Nov 5, 2006
Nov 5, 2006
67
68
69
70
71
octet -= (128+64);
octet2 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet2 & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
Jun 1, 2011
Jun 1, 2011
72
*_str += 1; /* skip to next possible start of codepoint. */
Nov 5, 2006
Nov 5, 2006
73
74
75
76
77
78
79
retval = ((octet << 6) | (octet2 - 128));
if ((retval >= 0x80) && (retval <= 0x7FF))
return retval;
} /* else if */
else if (octet < 240) /* three octets */
{
Jun 1, 2011
Jun 1, 2011
80
(*_str)++; /* advance at least one byte in case of an error */
Nov 5, 2006
Nov 5, 2006
81
82
83
84
85
86
87
88
89
octet -= (128+64+32);
octet2 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet2 & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
Jun 1, 2011
Jun 1, 2011
90
*_str += 2; /* skip to next possible start of codepoint. */
Nov 5, 2006
Nov 5, 2006
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
retval = ( ((octet << 12)) | ((octet2-128) << 6) | ((octet3-128)) );
/* There are seven "UTF-16 surrogates" that are illegal in UTF-8. */
switch (retval)
{
case 0xD800:
case 0xDB7F:
case 0xDB80:
case 0xDBFF:
case 0xDC00:
case 0xDF80:
case 0xDFFF:
return UNICODE_BOGUS_CHAR_VALUE;
} /* switch */
/* 0xFFFE and 0xFFFF are illegal, too, so we check them at the edge. */
if ((retval >= 0x800) && (retval <= 0xFFFD))
return retval;
} /* else if */
else if (octet < 248) /* four octets */
{
Jun 1, 2011
Jun 1, 2011
113
(*_str)++; /* advance at least one byte in case of an error */
Nov 5, 2006
Nov 5, 2006
114
115
116
117
118
119
120
121
122
123
124
125
126
octet -= (128+64+32+16);
octet2 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet2 & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet4 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet4 & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
Jun 1, 2011
Jun 1, 2011
127
*_str += 3; /* skip to next possible start of codepoint. */
Nov 5, 2006
Nov 5, 2006
128
129
130
131
132
133
134
135
136
137
138
139
140
141
retval = ( ((octet << 18)) | ((octet2 - 128) << 12) |
((octet3 - 128) << 6) | ((octet4 - 128)) );
if ((retval >= 0x10000) && (retval <= 0x10FFFF))
return retval;
} /* else if */
/*
* Five and six octet sequences became illegal in rfc3629.
* We throw the codepoint away, but parse them to make sure we move
* ahead the right number of bytes and don't overflow the buffer.
*/
else if (octet < 252) /* five octets */
{
Jun 1, 2011
Jun 1, 2011
142
(*_str)++; /* advance at least one byte in case of an error */
Nov 5, 2006
Nov 5, 2006
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
Jun 1, 2011
Jun 1, 2011
159
*_str += 4; /* skip to next possible start of codepoint. */
Nov 5, 2006
Nov 5, 2006
160
161
162
163
164
return UNICODE_BOGUS_CHAR_VALUE;
} /* else if */
else /* six octets */
{
Jun 1, 2011
Jun 1, 2011
165
(*_str)++; /* advance at least one byte in case of an error */
Nov 5, 2006
Nov 5, 2006
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
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
octet = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str));
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
return UNICODE_BOGUS_CHAR_VALUE;
*_str += 6; /* skip to next possible start of codepoint. */
return UNICODE_BOGUS_CHAR_VALUE;
} /* else if */
return UNICODE_BOGUS_CHAR_VALUE;
May 20, 2022
May 20, 2022
191
192
193
194
195
} /* __PHYSFS_utf8codepoint */
static inline PHYSFS_uint32 utf8codepoint(const char **_str)
{
return __PHYSFS_utf8codepoint(_str);
Nov 5, 2006
Nov 5, 2006
196
197
} /* utf8codepoint */
Aug 20, 2017
Aug 20, 2017
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
static PHYSFS_uint32 utf16codepoint(const PHYSFS_uint16 **_str)
{
const PHYSFS_uint16 *src = *_str;
PHYSFS_uint32 cp = (PHYSFS_uint32) *(src++);
if (cp == 0) /* null terminator, end of string. */
return 0;
/* Orphaned second half of surrogate pair? */
else if ((cp >= 0xDC00) && (cp <= 0xDFFF))
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
else if ((cp >= 0xD800) && (cp <= 0xDBFF)) /* start surrogate pair! */
{
const PHYSFS_uint32 pair = (PHYSFS_uint32) *src;
if (pair == 0)
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
else if ((pair < 0xDC00) || (pair > 0xDFFF))
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
else
{
src++; /* eat the other surrogate. */
Sep 10, 2021
Sep 10, 2021
218
cp = 0x10000 + (((cp - 0xD800) << 10) | (pair - 0xDC00));
Aug 20, 2017
Aug 20, 2017
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
} /* else */
} /* else if */
*_str = src;
return cp;
} /* utf16codepoint */
static PHYSFS_uint32 utf32codepoint(const PHYSFS_uint32 **_str)
{
const PHYSFS_uint32 *src = *_str;
PHYSFS_uint32 cp = *(src++);
if (cp == 0) /* null terminator, end of string. */
return 0;
else if (cp > 0x10FFF)
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
*_str = src;
return cp;
} /* utf32codepoint */
Mar 15, 2007
Mar 15, 2007
240
241
void PHYSFS_utf8ToUcs4(const char *src, PHYSFS_uint32 *dst, PHYSFS_uint64 len)
Nov 5, 2006
Nov 5, 2006
242
243
244
245
{
len -= sizeof (PHYSFS_uint32); /* save room for null char. */
while (len >= sizeof (PHYSFS_uint32))
{
May 20, 2022
May 20, 2022
246
PHYSFS_uint32 cp = __PHYSFS_utf8codepoint(&src);
Nov 5, 2006
Nov 5, 2006
247
248
249
250
251
252
253
254
255
if (cp == 0)
break;
else if (cp == UNICODE_BOGUS_CHAR_VALUE)
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
*(dst++) = cp;
len -= sizeof (PHYSFS_uint32);
} /* while */
*dst = 0;
Mar 15, 2007
Mar 15, 2007
256
257
} /* PHYSFS_utf8ToUcs4 */
Nov 5, 2006
Nov 5, 2006
258
Mar 15, 2007
Mar 15, 2007
259
void PHYSFS_utf8ToUcs2(const char *src, PHYSFS_uint16 *dst, PHYSFS_uint64 len)
Nov 5, 2006
Nov 5, 2006
260
261
262
263
{
len -= sizeof (PHYSFS_uint16); /* save room for null char. */
while (len >= sizeof (PHYSFS_uint16))
{
May 20, 2022
May 20, 2022
264
PHYSFS_uint32 cp = __PHYSFS_utf8codepoint(&src);
Nov 5, 2006
Nov 5, 2006
265
266
267
268
269
if (cp == 0)
break;
else if (cp == UNICODE_BOGUS_CHAR_VALUE)
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
Aug 20, 2010
Aug 20, 2010
270
if (cp > 0xFFFF) /* UTF-16 surrogates (bogus chars in UCS-2) */
Nov 5, 2006
Nov 5, 2006
271
272
273
274
275
276
277
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
*(dst++) = cp;
len -= sizeof (PHYSFS_uint16);
} /* while */
*dst = 0;
Mar 15, 2007
Mar 15, 2007
278
} /* PHYSFS_utf8ToUcs2 */
Nov 5, 2006
Nov 5, 2006
279
Aug 20, 2010
Aug 20, 2010
280
281
282
283
284
285
void PHYSFS_utf8ToUtf16(const char *src, PHYSFS_uint16 *dst, PHYSFS_uint64 len)
{
len -= sizeof (PHYSFS_uint16); /* save room for null char. */
while (len >= sizeof (PHYSFS_uint16))
{
May 20, 2022
May 20, 2022
286
PHYSFS_uint32 cp = __PHYSFS_utf8codepoint(&src);
Aug 20, 2010
Aug 20, 2010
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
if (cp == 0)
break;
else if (cp == UNICODE_BOGUS_CHAR_VALUE)
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
if (cp > 0xFFFF) /* encode as surrogate pair */
{
if (len < (sizeof (PHYSFS_uint16) * 2))
break; /* not enough room for the pair, stop now. */
cp -= 0x10000; /* Make this a 20-bit value */
*(dst++) = 0xD800 + ((cp >> 10) & 0x3FF);
len -= sizeof (PHYSFS_uint16);
cp = 0xDC00 + (cp & 0x3FF);
} /* if */
*(dst++) = cp;
len -= sizeof (PHYSFS_uint16);
} /* while */
*dst = 0;
} /* PHYSFS_utf8ToUtf16 */
Nov 5, 2006
Nov 5, 2006
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
static void utf8fromcodepoint(PHYSFS_uint32 cp, char **_dst, PHYSFS_uint64 *_len)
{
char *dst = *_dst;
PHYSFS_uint64 len = *_len;
if (len == 0)
return;
if (cp > 0x10FFFF)
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
else if ((cp == 0xFFFE) || (cp == 0xFFFF)) /* illegal values. */
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
else
{
/* There are seven "UTF-16 surrogates" that are illegal in UTF-8. */
switch (cp)
{
case 0xD800:
case 0xDB7F:
case 0xDB80:
case 0xDBFF:
case 0xDC00:
case 0xDF80:
case 0xDFFF:
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
} /* switch */
} /* else */
/* Do the encoding... */
if (cp < 0x80)
{
*(dst++) = (char) cp;
len--;
} /* if */
else if (cp < 0x800)
{
if (len < 2)
len = 0;
else
{
*(dst++) = (char) ((cp >> 6) | 128 | 64);
*(dst++) = (char) (cp & 0x3F) | 128;
len -= 2;
} /* else */
} /* else if */
else if (cp < 0x10000)
{
if (len < 3)
len = 0;
else
{
*(dst++) = (char) ((cp >> 12) | 128 | 64 | 32);
*(dst++) = (char) ((cp >> 6) & 0x3F) | 128;
*(dst++) = (char) (cp & 0x3F) | 128;
len -= 3;
} /* else */
} /* else if */
else
{
if (len < 4)
len = 0;
else
{
*(dst++) = (char) ((cp >> 18) | 128 | 64 | 32 | 16);
*(dst++) = (char) ((cp >> 12) & 0x3F) | 128;
*(dst++) = (char) ((cp >> 6) & 0x3F) | 128;
*(dst++) = (char) (cp & 0x3F) | 128;
len -= 4;
} /* else if */
} /* else */
*_dst = dst;
*_len = len;
} /* utf8fromcodepoint */
#define UTF8FROMTYPE(typ, src, dst, len) \
Aug 20, 2010
Aug 20, 2010
391
if (len == 0) return; \
Nov 5, 2006
Nov 5, 2006
392
393
394
len--; \
while (len) \
{ \
Jun 3, 2009
Jun 3, 2009
395
const PHYSFS_uint32 cp = (PHYSFS_uint32) ((typ) (*(src++))); \
Nov 5, 2006
Nov 5, 2006
396
397
398
399
400
if (cp == 0) break; \
utf8fromcodepoint(cp, &dst, &len); \
} \
*dst = '\0'; \
Mar 15, 2007
Mar 15, 2007
401
void PHYSFS_utf8FromUcs4(const PHYSFS_uint32 *src, char *dst, PHYSFS_uint64 len)
Nov 5, 2006
Nov 5, 2006
402
403
{
UTF8FROMTYPE(PHYSFS_uint32, src, dst, len);
Mar 15, 2007
Mar 15, 2007
404
} /* PHYSFS_utf8FromUcs4 */
Nov 5, 2006
Nov 5, 2006
405
Mar 15, 2007
Mar 15, 2007
406
void PHYSFS_utf8FromUcs2(const PHYSFS_uint16 *src, char *dst, PHYSFS_uint64 len)
Nov 5, 2006
Nov 5, 2006
407
408
{
UTF8FROMTYPE(PHYSFS_uint64, src, dst, len);
Aug 20, 2010
Aug 20, 2010
409
} /* PHYSFS_utf8FromUcs2 */
Nov 5, 2006
Nov 5, 2006
410
411
/* latin1 maps to unicode codepoints directly, we just utf-8 encode it. */
Mar 15, 2007
Mar 15, 2007
412
void PHYSFS_utf8FromLatin1(const char *src, char *dst, PHYSFS_uint64 len)
Nov 5, 2006
Nov 5, 2006
413
414
{
UTF8FROMTYPE(PHYSFS_uint8, src, dst, len);
Mar 15, 2007
Mar 15, 2007
415
} /* PHYSFS_utf8FromLatin1 */
Nov 5, 2006
Nov 5, 2006
416
417
418
#undef UTF8FROMTYPE
Mar 15, 2007
Mar 15, 2007
419
Aug 20, 2010
Aug 20, 2010
420
421
422
423
424
425
426
427
void PHYSFS_utf8FromUtf16(const PHYSFS_uint16 *src, char *dst, PHYSFS_uint64 len)
{
if (len == 0)
return;
len--;
while (len)
{
Aug 20, 2017
Aug 20, 2017
428
429
const PHYSFS_uint32 cp = utf16codepoint(&src);
if (!cp)
Aug 20, 2010
Aug 20, 2010
430
431
432
433
434
435
436
437
break;
utf8fromcodepoint(cp, &dst, &len);
} /* while */
*dst = '\0';
} /* PHYSFS_utf8FromUtf16 */
Aug 20, 2017
Aug 20, 2017
438
int PHYSFS_caseFold(const PHYSFS_uint32 from, PHYSFS_uint32 *to)
Mar 15, 2007
Mar 15, 2007
439
{
Aug 11, 2017
Aug 11, 2017
440
int i;
Mar 15, 2007
Mar 15, 2007
441
Aug 11, 2017
Aug 11, 2017
442
443
444
if (from < 128) /* low-ASCII, easy! */
{
if ((from >= 'A') && (from <= 'Z'))
Apr 4, 2024
Apr 4, 2024
445
{
Aug 11, 2017
Aug 11, 2017
446
*to = from - ('A' - 'a');
Apr 4, 2024
Apr 4, 2024
447
448
return 1;
} /* if */
Aug 11, 2017
Aug 11, 2017
449
} /* if */
Mar 15, 2007
Mar 15, 2007
450
Aug 11, 2017
Aug 11, 2017
451
452
453
454
else if (from <= 0xFFFF)
{
const PHYSFS_uint8 hash = ((from ^ (from >> 8)) & 0xFF);
const PHYSFS_uint16 from16 = (PHYSFS_uint16) from;
Mar 15, 2007
Mar 15, 2007
455
Aug 11, 2017
Aug 11, 2017
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
{
const CaseFoldHashBucket1_16 *bucket = &case_fold_hash1_16[hash];
const int count = (int) bucket->count;
for (i = 0; i < count; i++)
{
const CaseFoldMapping1_16 *mapping = &bucket->list[i];
if (mapping->from == from16)
{
*to = mapping->to0;
return 1;
} /* if */
} /* for */
}
{
const CaseFoldHashBucket2_16 *bucket = &case_fold_hash2_16[hash & 15];
const int count = (int) bucket->count;
for (i = 0; i < count; i++)
{
const CaseFoldMapping2_16 *mapping = &bucket->list[i];
if (mapping->from == from16)
{
to[0] = mapping->to0;
to[1] = mapping->to1;
return 2;
} /* if */
} /* for */
}
Mar 15, 2007
Mar 15, 2007
484
Aug 11, 2017
Aug 11, 2017
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
{
const CaseFoldHashBucket3_16 *bucket = &case_fold_hash3_16[hash & 3];
const int count = (int) bucket->count;
for (i = 0; i < count; i++)
{
const CaseFoldMapping3_16 *mapping = &bucket->list[i];
if (mapping->from == from16)
{
to[0] = mapping->to0;
to[1] = mapping->to1;
to[2] = mapping->to2;
return 3;
} /* if */
} /* for */
}
} /* else if */
else /* codepoint that doesn't fit in 16 bits. */
Mar 15, 2007
Mar 15, 2007
503
{
Aug 11, 2017
Aug 11, 2017
504
505
506
507
const PHYSFS_uint8 hash = ((from ^ (from >> 8)) & 0xFF);
const CaseFoldHashBucket1_32 *bucket = &case_fold_hash1_32[hash & 15];
const int count = (int) bucket->count;
for (i = 0; i < count; i++)
Mar 15, 2007
Mar 15, 2007
508
{
Aug 11, 2017
Aug 11, 2017
509
510
511
512
513
514
515
516
517
const CaseFoldMapping1_32 *mapping = &bucket->list[i];
if (mapping->from == from)
{
*to = mapping->to0;
return 1;
} /* if */
} /* for */
} /* else */
Mar 15, 2007
Mar 15, 2007
518
519
/* Not found...there's no remapping for this codepoint. */
Aug 11, 2017
Aug 11, 2017
520
521
*to = from;
return 1;
Aug 20, 2017
Aug 20, 2017
522
} /* PHYSFS_caseFold */
Mar 15, 2007
Mar 15, 2007
523
524
Aug 20, 2017
Aug 20, 2017
525
526
527
528
529
530
531
532
#define UTFSTRICMP(bits) \
PHYSFS_uint32 folded1[3], folded2[3]; \
int head1 = 0, tail1 = 0, head2 = 0, tail2 = 0; \
while (1) { \
PHYSFS_uint32 cp1, cp2; \
if (head1 != tail1) { \
cp1 = folded1[tail1++]; \
} else { \
Aug 20, 2017
Aug 20, 2017
533
head1 = PHYSFS_caseFold(utf##bits##codepoint(&str1), folded1); \
Aug 20, 2017
Aug 20, 2017
534
535
536
537
538
539
cp1 = folded1[0]; \
tail1 = 1; \
} \
if (head2 != tail2) { \
cp2 = folded2[tail2++]; \
} else { \
Aug 20, 2017
Aug 20, 2017
540
head2 = PHYSFS_caseFold(utf##bits##codepoint(&str2), folded2); \
Aug 20, 2017
Aug 20, 2017
541
542
543
544
545
546
547
548
549
550
551
552
553
cp2 = folded2[0]; \
tail2 = 1; \
} \
if (cp1 < cp2) { \
return -1; \
} else if (cp1 > cp2) { \
return 1; \
} else if (cp1 == 0) { \
break; /* complete match. */ \
} \
} \
return 0
Aug 11, 2017
Aug 11, 2017
554
int PHYSFS_utf8stricmp(const char *str1, const char *str2)
Mar 15, 2007
Mar 15, 2007
555
{
Aug 20, 2017
Aug 20, 2017
556
557
UTFSTRICMP(8);
} /* PHYSFS_utf8stricmp */
Mar 15, 2007
Mar 15, 2007
558
Aug 20, 2017
Aug 20, 2017
559
560
561
562
int PHYSFS_utf16stricmp(const PHYSFS_uint16 *str1, const PHYSFS_uint16 *str2)
{
UTFSTRICMP(16);
} /* PHYSFS_utf16stricmp */
Mar 15, 2007
Mar 15, 2007
563
Aug 20, 2017
Aug 20, 2017
564
565
566
567
int PHYSFS_ucs4stricmp(const PHYSFS_uint32 *str1, const PHYSFS_uint32 *str2)
{
UTFSTRICMP(32);
} /* PHYSFS_ucs4stricmp */
Mar 15, 2007
Mar 15, 2007
568
Aug 20, 2017
Aug 20, 2017
569
#undef UTFSTRICMP
Mar 15, 2007
Mar 15, 2007
570
Nov 5, 2006
Nov 5, 2006
571
/* end of physfs_unicode.c ... */