-
Notifications
You must be signed in to change notification settings - Fork 11
/
dev_file_encod_read_core.bas
424 lines (349 loc) · 8.95 KB
/
dev_file_encod_read_core.bas
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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/' UTF-encoded to char or wchar file reading
* (based on ConvertUTF.c free implementation from Unicode, Inc)
'/
#include "fb.bi"
extern "C"
extern __fb_utf8_trailingTb(0 to 255) as const ubyte
extern __fb_utf8_offsetsTb(0 to 5) as const UTF_32
/'::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*
* to char *
*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::'/
private function hReadUTF8ToChar( fp as FILE ptr, dst as ubyte ptr, max_chars as ssize_t ) as ssize_t
dim as UTF_32 wc
dim as ubyte c(0 to 6)
dim as ubyte ptr p
dim as ssize_t chars, extbytes
chars = max_chars
while( chars > 0 )
if( fread( @c(0), 1, 1, fp ) <> 1 ) then
exit while
end if
extbytes = cast(ssize_t, __fb_utf8_trailingTb(c(0)))
if ( extbytes > 0 ) then
if( fread( @c(1), extbytes, 1, fp ) <> 1 ) then
exit while
end if
end if
wc = 0
p = @c(0)
on (extbytes+1) goto case0, case1, case2, case3, case4, case5
goto default
'' switch ( extbytes )
case5:
wc += *p
P += 1
wc shl= 6
/' fall through '/
case4:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case3:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case2:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case1:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case0:
wc += *p
p += 1
default:
'' end switch
wc -= __fb_utf8_offsetsTb(extbytes)
if ( wc > 255 ) then
wc = asc("?")
end if
*dst = wc
dst += 1
chars -= 1
wend
return max_chars - chars
end function
private function hReadUTF16ToChar( fp as FILE ptr, dst as ubyte ptr, max_chars as ssize_t ) as ssize_t
dim as ssize_t chars
dim as UTF_16 c
chars = max_chars
while( chars > 0 )
if( fread( @c, sizeof( UTF_16 ), 1, fp ) <> 1 ) then
exit while
end if
if( c > 255 ) then
if( c >= UTF16_SUR_HIGH_START and c <= UTF16_SUR_HIGH_END ) then
if( fread( @c, sizeof( UTF_16 ), 1, fp ) <> 1 ) then
exit while
end if
end if
c = asc("?")
end if
*dst = c
dst += 1
chars -= 1
wend
return max_chars - chars
end function
private function hReadUTF32ToChar( fp as FILE ptr, dst as ubyte ptr, max_chars as ssize_t ) as ssize_t
dim as ssize_t chars
dim as UTF_32 c
chars = max_chars
while ( chars > 0 )
if ( fread( @c, sizeof( UTF_32 ), 1, fp ) <> 1 ) then
exit while
end if
if ( c > 255 ) then
c = asc("?")
end if
*dst = c
dst += 1
chars -= 1
wend
return max_chars - chars
end function
function fb_hFileRead_UTFToChar( fp as FILE ptr, encod as FB_FILE_ENCOD, dst as ubyte ptr, max_chars as ssize_t ) as ssize_t
select case ( encod )
case FB_FILE_ENCOD_UTF8:
return hReadUTF8ToChar( fp, dst, max_chars )
case FB_FILE_ENCOD_UTF16:
return hReadUTF16ToChar( fp, dst, max_chars )
case FB_FILE_ENCOD_UTF32:
return hReadUTF32ToChar( fp, dst, max_chars )
case else:
return 0
end select
end function
/'::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*
* to wchar *
*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::'/
private function hUTF8ToUTF16( fp as FILE ptr, dst as FB_WCHAR ptr, max_chars as ssize_t ) as ssize_t
dim as UTF_32 wc
dim as ubyte c(0 to 6)
dim as ubyte ptr p
dim as ssize_t chars, extbytes
chars = max_chars
while ( chars > 0 )
if( fread( @c(0), 1, 1, fp ) <> 1 ) then
exit while
end if
extbytes = cast(ssize_t, __fb_utf8_trailingTb(c(0)))
if ( extbytes > 0 ) then
if( fread( @c(1), extbytes, 1, fp ) <> 1 ) then
exit while
end if
end if
wc = 0
p = @c(0)
on (extbytes+1) goto case0, case1, case2, case3, case4, case5
goto default
'' switch ( extbytes )
case5:
wc += *p
P += 1
wc shl= 6
/' fall through '/
case4:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case3:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case2:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case1:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case0:
wc += *p
p += 1
default:
'' end switch
wc -= __fb_utf8_offsetsTb(extbytes)
if ( wc <= UTF16_MAX_BMP ) then
*dst = wc
dst += 1
else
if ( chars > 1 ) then
wc -= UTF16_HALFBASE
*dst = ((wc shr UTF16_HALFSHIFT) + UTF16_SUR_HIGH_START)
dst += 1
*dst = ((wc and UTF16_HALFMASK) + UTF16_SUR_LOW_START)
dst += 1
chars -= 1
end if
end if
chars -= 1
wend
return max_chars - chars
end function
private function hUTF8ToUTF32( fp as FILE ptr, dst as FB_WCHAR ptr, max_chars as ssize_t ) as ssize_t
dim as UTF_32 wc
dim as ubyte c(0 to 6)
dim as ubyte ptr p
dim as ssize_t chars, extbytes
chars = max_chars
while ( chars > 0 )
if( fread( @c(0), 1, 1, fp ) <> 1 ) then
exit while
end if
extbytes = cast(ssize_t, __fb_utf8_trailingTb(c(0)))
if ( extbytes > 0 ) then
if ( fread( @c(1), extbytes, 1, fp ) <> 1 ) then
exit while
end if
end if
wc = 0
p = @c(0)
on (extbytes+1) goto case0, case1, case2, case3, case4, case5
goto default
'' switch ( extbytes )
case5:
wc += *p
P += 1
wc shl= 6
/' fall through '/
case4:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case3:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case2:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case1:
wc += *p
p += 1
wc shl= 6
/' fall through '/
case0:
wc += *p
p += 1
default:
'' end switch
wc -= __fb_utf8_offsetsTb(extbytes)
*dst = wc
dst += 1
chars -= 1
wend
return max_chars - chars
end function
private function hReadUTF8ToWchar( fp as FILE ptr, dst as FB_WCHAR ptr, max_chars as ssize_t ) as ssize_t
dim as ssize_t res = 0
/' convert.. '/
select case ( sizeof( FB_WCHAR ) )
case sizeof( ubyte ptr ):
res = hReadUTF8ToChar( fp, cast(ubyte ptr, dst), max_chars )
case sizeof( UTF_16 ):
res = hUTF8ToUTF16( fp, dst, max_chars )
case sizeof( UTF_32 ):
res = hUTF8ToUTF32( fp, dst, max_chars )
end select
return res
end function
private function hUTF16ToUTF32( fp as FILE ptr, dst as FB_WCHAR ptr, max_chars as ssize_t ) as ssize_t
dim as UTF_32 c, c2
dim as ssize_t chars
chars = max_chars
while ( chars > 0 )
if( fread( @c, sizeof( UTF_16 ), 1, fp ) <> 1 ) then
exit while
end if
c and= &h0000FFFF
if ( c >= UTF16_SUR_HIGH_START and c <= UTF16_SUR_HIGH_END ) then
if( fread( @c2, sizeof( UTF_16 ), 1, fp ) <> 1 ) then
exit while
end if
c = ((c - UTF16_SUR_HIGH_START) shl UTF16_HALFSHIFT) + (c2 - UTF16_SUR_LOW_START) + UTF16_HALFBASE
end if
*dst = c
dst += 1
chars -= 1
wend
return max_chars - chars
end function
private function hReadUTF16ToWchar( fp as FILE ptr, dst as FB_WCHAR ptr, max_chars as ssize_t ) as ssize_t
dim as ssize_t res = 0
/' same size? '/
if ( sizeof( FB_WCHAR ) = sizeof( UTF_16 ) ) then
return fread( cast(ubyte ptr, dst), sizeof( UTF_16 ), max_chars, fp )
end if
/' convert.. '/
select case ( sizeof( FB_WCHAR ) )
case sizeof( ubyte ptr ):
res = hReadUTF16ToChar( fp, cast(ubyte ptr, dst), max_chars )
case sizeof( UTF_32 ):
res = hUTF16ToUTF32( fp, dst, max_chars )
end select
return res
end function
private function hUTF32ToUTF16( fp as FILE ptr, dst as FB_WCHAR ptr, max_chars as ssize_t ) as ssize_t
dim as UTF_32 c
dim as ssize_t chars
chars = max_chars
while ( chars > 0 )
if( fread( @c, sizeof( UTF_32 ), 1, fp ) <> 1 ) then
exit while
end if
if ( c > UTF16_MAX_BMP ) then
c -= UTF16_HALFBASE
if ( chars > 1 ) then
*dst = cast(UTF_16, ((c shr UTF16_HALFSHIFT) + UTF16_SUR_HIGH_START))
dst += 1
chars -= 1
end if
c = ((c and UTF16_HALFMASK) + UTF16_SUR_LOW_START)
end if
*dst = cast(UTF_16, c)
dst += 1
chars -= 1
wend
return max_chars - chars
end function
private function hReadUTF32ToWchar( fp as FILE ptr, dst as FB_WCHAR ptr, max_chars as ssize_t ) as ssize_t
dim as ssize_t res = 0
select case ( sizeof( FB_WCHAR ) )
case sizeof( ubyte ptr ):
res = hReadUTF32ToChar( fp, cast(ubyte ptr, dst), max_chars )
case sizeof( UTF_16 ):
res = hUTF32ToUTF16( fp, dst, max_chars )
case sizeof( UTF_32 ):
res = fread( cast(ubyte ptr, dst), sizeof( UTF_32 ), max_chars, fp )
end select
return res
end function
function fb_hFileRead_UTFToWchar( fp as FILE ptr, encod as FB_FILE_ENCOD, dst as FB_WCHAR ptr, max_chars as ssize_t ) as ssize_t
select case ( encod )
case FB_FILE_ENCOD_UTF8:
return hReadUTF8ToWchar( fp, dst, max_chars )
case FB_FILE_ENCOD_UTF16:
return hReadUTF16ToWchar( fp, dst, max_chars )
case FB_FILE_ENCOD_UTF32:
return hReadUTF32ToWchar( fp, dst, max_chars )
case else:
return 0
end select
end function
end extern