forked from lualatex/lualibs
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlualibs-util-sac.lua
582 lines (508 loc) · 13.8 KB
/
lualibs-util-sac.lua
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
if not modules then modules = { } end modules ['util-sac'] = {
version = 1.001,
optimize = true,
comment = "companion to luat-lib.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- experimental string access (some 3 times faster than file access when messing
-- with bytes)
local byte, sub = string.byte, string.sub
local tonumber = tonumber
utilities = utilities or { }
local streams = { }
utilities.streams = streams
function streams.open(filename,zerobased)
local f = filename and io.loaddata(filename)
if f then
return { f, 1, #f, zerobased or false }
end
end
function streams.openstring(f,zerobased)
if f then
return { f, 1, #f, zerobased or false }
end
end
function streams.getstring(f)
if f then
return f[1]
end
end
function streams.close()
-- dummy
end
function streams.size(f)
return f and f[3] or 0
end
streams.getsize = streams.size
function streams.setposition(f,i)
if f[4] then
-- zerobased
if i <= 0 then
f[2] = 1
else
f[2] = i + 1
end
else
if i <= 1 then
f[2] = 1
else
f[2] = i
end
end
end
function streams.getposition(f)
if f[4] then
-- zerobased
return f[2] - 1
else
return f[2]
end
end
function streams.look(f,n,chars)
local b = f[2]
local e = b + n - 1
if chars then
return sub(f[1],b,e)
else
return byte(f[1],b,e)
end
end
function streams.skip(f,n)
f[2] = f[2] + n
end
function streams.readbyte(f)
local i = f[2]
f[2] = i + 1
return byte(f[1],i)
end
function streams.readbytes(f,n)
local i = f[2]
local j = i + n
f[2] = j
return byte(f[1],i,j-1)
end
function streams.readbytetable(f,n)
local i = f[2]
local j = i + n
f[2] = j
return { byte(f[1],i,j-1) }
end
function streams.skipbytes(f,n)
f[2] = f[2] + n
end
function streams.readchar(f)
local i = f[2]
f[2] = i + 1
return sub(f[1],i,i)
end
function streams.readstring(f,n)
local i = f[2]
local j = i + n
f[2] = j
return sub(f[1],i,j-1)
end
function streams.readinteger1(f) -- one byte
local i = f[2]
f[2] = i + 1
local n = byte(f[1],i)
if n >= 0x80 then
return n - 0x100
else
return n
end
end
streams.readcardinal1 = streams.readbyte -- one byte
streams.readcardinal = streams.readcardinal1
streams.readinteger = streams.readinteger1
function streams.readcardinal2(f)
local i = f[2]
local j = i + 1
f[2] = j + 1
local a, b = byte(f[1],i,j)
return 0x100 * a + b
end
function streams.readcardinal2le(f)
local i = f[2]
local j = i + 1
f[2] = j + 1
local b, a = byte(f[1],i,j)
return 0x100 * a + b
end
function streams.readinteger2(f)
local i = f[2]
local j = i + 1
f[2] = j + 1
local a, b = byte(f[1],i,j)
if a >= 0x80 then
return 0x100 * a + b - 0x10000
else
return 0x100 * a + b
end
end
function streams.readinteger2le(f)
local i = f[2]
local j = i + 1
f[2] = j + 1
local b, a = byte(f[1],i,j)
if a >= 0x80 then
return 0x100 * a + b - 0x10000
else
return 0x100 * a + b
end
end
function streams.readcardinal3(f)
local i = f[2]
local j = i + 2
f[2] = j + 1
local a, b, c = byte(f[1],i,j)
return 0x10000 * a + 0x100 * b + c
end
function streams.readcardinal3le(f)
local i = f[2]
local j = i + 2
f[2] = j + 1
local c, b, a = byte(f[1],i,j)
return 0x10000 * a + 0x100 * b + c
end
function streams.readinteger3(f)
local i = f[2]
local j = i + 3
f[2] = j + 1
local a, b, c = byte(f[1],i,j)
if a >= 0x80 then
return 0x10000 * a + 0x100 * b + c - 0x1000000
else
return 0x10000 * a + 0x100 * b + c
end
end
function streams.readinteger3le(f)
local i = f[2]
local j = i + 3
f[2] = j + 1
local c, b, a = byte(f[1],i,j)
if a >= 0x80 then
return 0x10000 * a + 0x100 * b + c - 0x1000000
else
return 0x10000 * a + 0x100 * b + c
end
end
function streams.readcardinal4(f)
local i = f[2]
local j = i + 3
f[2] = j + 1
local a, b, c, d = byte(f[1],i,j)
return 0x1000000 * a + 0x10000 * b + 0x100 * c + d
end
function streams.readcardinal4le(f)
local i = f[2]
local j = i + 3
f[2] = j + 1
local d, c, b, a = byte(f[1],i,j)
return 0x1000000 * a + 0x10000 * b + 0x100 * c + d
end
function streams.readinteger4(f)
local i = f[2]
local j = i + 3
f[2] = j + 1
local a, b, c, d = byte(f[1],i,j)
if a >= 0x80 then
return 0x1000000 * a + 0x10000 * b + 0x100 * c + d - 0x100000000
else
return 0x1000000 * a + 0x10000 * b + 0x100 * c + d
end
end
function streams.readinteger4le(f)
local i = f[2]
local j = i + 3
f[2] = j + 1
local d, c, b, a = byte(f[1],i,j)
if a >= 0x80 then
return 0x1000000 * a + 0x10000 * b + 0x100 * c + d - 0x100000000
else
return 0x1000000 * a + 0x10000 * b + 0x100 * c + d
end
end
function streams.readfixed2(f)
local i = f[2]
local j = i + 1
f[2] = j + 1
local n1, n2 = byte(f[1],i,j)
if n1 >= 0x80 then
n1 = n1 - 0x100
end
return n1 + n2/0xFF
end
function streams.readfixed4(f)
local i = f[2]
local j = i + 3
f[2] = j + 1
local a, b, c, d = byte(f[1],i,j)
local n1 = 0x100 * a + b
local n2 = 0x100 * c + d
if n1 >= 0x8000 then
n1 = n1 - 0x10000
end
return n1 + n2/0xFFFF
end
if bit32 then
local extract = bit32.extract
local band = bit32.band
function streams.read2dot14(f)
local i = f[2]
local j = i + 1
f[2] = j + 1
local a, b = byte(f[1],i,j)
if a >= 0x80 then
local n = -(0x100 * a + b)
return - (extract(n,14,2) + (band(n,0x3FFF) / 16384.0))
else
local n = 0x100 * a + b
return (extract(n,14,2) + (band(n,0x3FFF) / 16384.0))
end
end
end
function streams.skipshort(f,n)
f[2] = f[2] + 2*(n or 1)
end
function streams.skiplong(f,n)
f[2] = f[2] + 4*(n or 1)
end
if sio and sio.readcardinal2 then
local readcardinal1 = sio.readcardinal1
local readcardinal2 = sio.readcardinal2
local readcardinal3 = sio.readcardinal3
local readcardinal4 = sio.readcardinal4
local readinteger1 = sio.readinteger1
local readinteger2 = sio.readinteger2
local readinteger3 = sio.readinteger3
local readinteger4 = sio.readinteger4
local readfixed2 = sio.readfixed2
local readfixed4 = sio.readfixed4
local read2dot14 = sio.read2dot14
local readbytes = sio.readbytes
local readbytetable = sio.readbytetable
function streams.readcardinal1(f)
local i = f[2]
f[2] = i + 1
return readcardinal1(f[1],i)
end
function streams.readcardinal2(f)
local i = f[2]
f[2] = i + 2
return readcardinal2(f[1],i)
end
function streams.readcardinal3(f)
local i = f[2]
f[2] = i + 3
return readcardinal3(f[1],i)
end
function streams.readcardinal4(f)
local i = f[2]
f[2] = i + 4
return readcardinal4(f[1],i)
end
function streams.readinteger1(f)
local i = f[2]
f[2] = i + 1
return readinteger1(f[1],i)
end
function streams.readinteger2(f)
local i = f[2]
f[2] = i + 2
return readinteger2(f[1],i)
end
function streams.readinteger3(f)
local i = f[2]
f[2] = i + 3
return readinteger3(f[1],i)
end
function streams.readinteger4(f)
local i = f[2]
f[2] = i + 4
return readinteger4(f[1],i)
end
function streams.readfixed2(f) -- needs recent luatex
local i = f[2]
f[2] = i + 2
return readfixed2(f[1],i)
end
function streams.readfixed4(f) -- needs recent luatex
local i = f[2]
f[2] = i + 4
return readfixed4(f[1],i)
end
function streams.read2dot14(f)
local i = f[2]
f[2] = i + 2
return read2dot14(f[1],i)
end
function streams.readbytes(f,n)
local i = f[2]
local s = f[3]
local p = i + n
if p > s then
f[2] = s + 1
else
f[2] = p
end
return readbytes(f[1],i,n)
end
function streams.readbytetable(f,n)
local i = f[2]
local s = f[3]
local p = i + n
if p > s then
f[2] = s + 1
else
f[2] = p
end
return readbytetable(f[1],i,n)
end
streams.readbyte = streams.readcardinal1
streams.readsignedbyte = streams.readinteger1
streams.readcardinal = streams.readcardinal1
streams.readinteger = streams.readinteger1
end
if sio and sio.readcardinaltable then
local readcardinaltable = sio.readcardinaltable
local readintegertable = sio.readintegertable
function utilities.streams.readcardinaltable(f,n,b)
local i = f[2]
local s = f[3]
local p = i + n * b
if p > s then
f[2] = s + 1
else
f[2] = p
end
return readcardinaltable(f[1],i,n,b)
end
function utilities.streams.readintegertable(f,n,b)
local i = f[2]
local s = f[3]
local p = i + n * b
if p > s then
f[2] = s + 1
else
f[2] = p
end
return readintegertable(f[1],i,n,b)
end
else
local readcardinal1 = streams.readcardinal1
local readcardinal2 = streams.readcardinal2
local readcardinal3 = streams.readcardinal3
local readcardinal4 = streams.readcardinal4
function streams.readcardinaltable(f,n,b)
local i = f[2]
local s = f[3]
local p = i + n * b
if p > s then
f[2] = s + 1
else
f[2] = p
end
local t = { }
if b == 1 then for i=1,n do t[i] = readcardinal1(f[1],i) end
elseif b == 2 then for i=1,n do t[i] = readcardinal2(f[1],i) end
elseif b == 3 then for i=1,n do t[i] = readcardinal3(f[1],i) end
elseif b == 4 then for i=1,n do t[i] = readcardinal4(f[1],i) end end
return t
end
local readinteger1 = streams.readinteger1
local readinteger2 = streams.readinteger2
local readinteger3 = streams.readinteger3
local readinteger4 = streams.readinteger4
function streams.readintegertable(f,n,b)
local i = f[2]
local s = f[3]
local p = i + n * b
if p > s then
f[2] = s + 1
else
f[2] = p
end
local t = { }
if b == 1 then for i=1,n do t[i] = readinteger1(f[1],i) end
elseif b == 2 then for i=1,n do t[i] = readinteger2(f[1],i) end
elseif b == 3 then for i=1,n do t[i] = readinteger3(f[1],i) end
elseif b == 4 then for i=1,n do t[i] = readinteger4(f[1],i) end end
return t
end
end
-- For practical reasons we put this here. It's less efficient but ok when we don't
-- have much access.
do
local files = utilities.files
if files then
local openfile = files.open
local openstream = streams.open
local openstring = streams.openstring
local setmetatable = setmetatable
function io.newreader(str,method)
local f, m
if method == "string" then
f = openstring(str,true)
m = streams
elseif method == "stream" then
f = openstream(str,true)
m = streams
else
f = openfile(str,"rb")
m = files
end
if f then
local t = { }
setmetatable(t, {
__index = function(t,k)
local r = m[k]
if k == "close" then
-- maybe use __toclose
if f then
m.close(f)
f = nil
end
return function() end
elseif r then
local v = function(_,a,b) return r(f,a,b) end
t[k] = v
return v
else
print("unknown key",k)
end
end
} )
return t
end
end
end
end
if bit32 and not streams.tocardinal1 then
local extract = bit32.extract
local char = string.char
streams.tocardinal1 = char
function streams.tocardinal2(n) return char(extract(n, 8,8),extract(n, 0,8)) end
function streams.tocardinal3(n) return char(extract(n,16,8),extract(n, 8,8),extract(n,0,8)) end
function streams.tocardinal4(n) return char(extract(n,24,8),extract(n,16,8),extract(n,8,8),extract(n,0,8)) end
streams.tocardinal1le = char
function streams.tocardinal2le(n) return char(extract(n,0,8),extract(n,8,8)) end
function streams.tocardinal3le(n) return char(extract(n,0,8),extract(n,8,8),extract(n,16,8)) end
function streams.tocardinal4le(n) return char(extract(n,0,8),extract(n,8,8),extract(n,16,8),extract(n,24,8)) end
end
if not streams.readcstring then
local readchar = streams.readchar
local concat = table.concat
function streams.readcstring(f)
local t = { }
while true do
local c = readchar(f)
if c and c ~= "\0" then
t[#t+1] = c
else
return concat(t)
end
end
end
end