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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
|
if not modules then modules = { } end modules ['font-otp'] = {
version = 1.001,
comment = "companion to font-otf.lua (packing)",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- todo: pack math (but not that much to share)
local next, type = next, type
local sort, concat = table.sort, table.concat
local trace_loading = false trackers.register("otf.loading", function(v) trace_loading = v end)
local report_otf = logs.reporter("fonts","otf loading")
-- also used in other scripts so we need to check some tables:
fonts = fonts or { }
fonts.handlers = fonts.handlers or { }
local handlers = fonts.handlers
handlers.otf = handlers.otf or { }
local otf = handlers.otf
otf.enhancers = otf.enhancers or { }
local enhancers = otf.enhancers
otf.glists = otf.glists or { "gsub", "gpos" }
local glists = otf.glists
local criterium = 1
local threshold = 0
local function tabstr(t)
local s, n = { }, 0
for k, v in next, t do
n = n + 1
if type(v) == "table" then
s[n] = k .. "={" .. tabstr(v) .. "}"
elseif v == true then
s[n] = k .. "=true"
elseif v then
s[n] = k .. "=" .. v
else
s[n] = k .. "=false"
end
end
sort(s)
return concat(s,",")
end
local function packdata(data)
if data then
local h, t, c = { }, { }, { }
local hh, tt, cc = { }, { }, { }
local nt, ntt = 0, 0
local function pack_1(v,indexed)
-- v == table
local tag = indexed and concat(v," ") or tabstr(v)
local ht = h[tag]
if not ht then
nt = nt + 1
ht = nt
t[ht] = v
h[tag] = ht
c[ht] = 1
else
c[ht] = c[ht] + 1
end
return ht
end
local function pack_2(v,indexed)
-- v == number
if c[v] <= criterium then
return t[v]
else
-- compact hash
local hv = hh[v]
if not hv then
ntt = ntt + 1
hv = ntt
tt[hv] = t[v]
hh[v] = hv
cc[hv] = c[v]
end
return hv
end
end
local function success(stage,pass)
if nt == 0 then
if trace_loading then
report_otf("pack quality: nothing to pack")
end
return false
elseif nt >= threshold then
local one, two, rest = 0, 0, 0
if pass == 1 then
for k,v in next, c do
if v == 1 then
one = one + 1
elseif v == 2 then
two = two + 1
else
rest = rest + 1
end
end
else
for k,v in next, cc do
if v > 20 then
rest = rest + 1
elseif v > 10 then
two = two + 1
else
one = one + 1
end
end
data.tables = tt
end
if trace_loading then
report_otf("pack quality: stage %s, pass %s, %s packed, 1-10:%s, 11-20:%s, rest:%s (criterium: %s)", stage, pass, one+two+rest, one, two, rest, criterium)
end
return true
else
if trace_loading then
report_otf("pack quality: stage %s, pass %s, %s packed, aborting pack (threshold: %s)", stage, pass, nt, threshold)
end
return false
end
end
local resources = data.resources
local lookuptypes = resources.lookuptypes
for pass=1,2 do
local pack = (pass == 1 and pack_1) or pack_2
for unicode, description in next, data.descriptions do
local boundingbox = description.boundingbox
if boundingbox then
description.boundingbox = pack(boundingbox,true)
end
local slookups = description.slookups
if slookups then
for tag, slookup in next, slookups do
local what = lookuptypes[tag]
if what == "pair" then
local t = slookup[2] if t then slookup[2] = pack(t,true) end
local t = slookup[3] if t then slookup[3] = pack(t,true) end
elseif what ~= "substitution" then
slookups[tag] = pack(slookup)
end
end
end
local mlookups = description.mlookups
if mlookups then
for tag, mlookup in next, mlookups do
local what = lookuptypes[tag]
if what == "pair" then
for i=1,#mlookup do
local lookup = mlookup[i]
local t = lookup[2] if t then lookup[2] = pack(t,true) end
local t = lookup[3] if t then lookup[3] = pack(t,true) end
end
elseif what ~= "substitution" then
for i=1,#mlookup do
mlookup[i] = pack(mlookup[i]) -- true
end
end
end
end
local kerns = description.kerns
if kerns then
for tag, kern in next, kerns do
kerns[tag] = pack(kern)
end
end
local math = description.math
if math then
local kerns = math.kerns
if kerns then
for tag, kern in next, kerns do
kerns[tag] = pack(kern)
end
end
end
local anchors = description.anchors
if anchors then
for what, anchor in next, anchors do
if what == "baselig" then
for _, a in next, anchor do
for k=1,#a do
a[k] = pack(a[k])
end
end
else
for k, v in next, anchor do
anchor[k] = pack(v)
end
end
end
end
end
local lookups = data.lookups
if lookups then
for _, lookup in next, lookups do
local rules = lookup.rules
if rules then
for i=1,#rules do -- was next loop
local rule = rules[i]
--~ local r = rule.before if r then for i=1,#r do r[i] = pack(r[i],true) end end
--~ local r = rule.after if r then for i=1,#r do r[i] = pack(r[i],true) end end
--~ local r = rule.current if r then for i=1,#r do r[i] = pack(r[i],true) end end
--~ local r = rule.replacements if r then rule.replacements = pack(r, true) end
--~ local r = rule.fore if r then rule.fore = pack(r, true) end
--~ local r = rule.back if r then rule.back = pack(r, true) end
--~ local r = rule.names if r then rule.names = pack(r, true) end
--~ local r = rule.lookups if r then rule.lookups = pack(r) end
local r = rule.before if r then for i=1,#r do r[i] = pack(r[i]) end end
local r = rule.after if r then for i=1,#r do r[i] = pack(r[i]) end end
local r = rule.current if r then for i=1,#r do r[i] = pack(r[i]) end end
local r = rule.replacements if r then rule.replacements = pack(r) end
-- local r = rule.fore if r then rule.fore = pack(r) end
-- local r = rule.back if r then rule.back = pack(r) end
-- local r = rule.names if r then rule.names = pack(r) end
local r = rule.lookups if r then rule.lookups = pack(r) end
end
end
end
end
local anchor_to_lookup = resources.anchor_to_lookup
if anchor_to_lookup then
for anchor, lookup in next, anchor_to_lookup do
anchor_to_lookup[anchor] = pack(lookup)
end
end
local lookup_to_anchor = resources.lookup_to_anchor
if lookup_to_anchor then
for lookup, anchor in next, lookup_to_anchor do
lookup_to_anchor[lookup] = pack(anchor)
end
end
local sequences = resources.sequences
if sequences then
for feature, sequence in next, sequences do
local flags = sequence.flags
if flags then
sequence.flags = pack(flags)
end
local subtables = sequence.subtables
if subtables then
sequence.subtables = pack(subtables)
end
local features = sequence.features
if features then
for script, feature in next, features do
features[script] = pack(feature)
end
end
end
end
local lookups = resources.lookups
if lookups then
for name, lookup in next, lookups do
local flags = lookup.flags
if flags then
lookup.flags = pack(flags)
end
local subtables = lookup.subtables
if subtables then
lookup.subtables = pack(subtables)
end
end
end
local features = resources.features
if features then
for _, what in next, glists do
local list = features[what]
if list then
for feature, spec in next, list do
list[feature] = pack(spec)
end
end
end
end
if not success(1,pass) then
return
end
end
if nt > 0 then
for pass=1,2 do
local pack = (pass == 1 and pack_1) or pack_2
for unicode, description in next, data.descriptions do
local kerns = description.kerns
if kerns then
description.kerns = pack(kerns)
end
local math = description.math
if math then
local kerns = math.kerns
if kerns then
math.kerns = pack(kerns)
end
end
local anchors = description.anchors
if anchors then
description.anchors = pack(anchors)
end
local mlookups = description.mlookups
if mlookups then
for tag, mlookup in next, mlookups do
mlookups[tag] = pack(mlookup)
end
end
end
local lookups = data.lookups
if lookups then
for _, lookup in next, lookups do
local rules = lookup.rules
if rules then
for i=1,#rules do -- was next loop
local rule = rules[i]
local r = rule.before if r then rule.before = pack(r) end
local r = rule.after if r then rule.after = pack(r) end
local r = rule.current if r then rule.current = pack(r) end
end
end
end
end
local sequences = resources.sequences
if sequences then
for feature, sequence in next, sequences do
sequence.features = pack(sequence.features)
end
end
if not success(2,pass) then
-- return
end
end
for pass=1,2 do
local pack = (pass == 1 and pack_1) or pack_2
for unicode, description in next, data.descriptions do
local slookups = description.slookups
if slookups then
description.slookups = pack(slookups)
end
local mlookups = description.mlookups
if mlookups then
description.mlookups = pack(mlookups)
end
end
end
end
end
end
local unpacked_mt = {
__index =
function(t,k)
t[k] = false
return k -- next time true
end
}
local function unpackdata(data)
if data then
local tables = data.tables
if tables then
local resources = data.resources
local lookuptypes = resources.lookuptypes
local unpacked = { }
setmetatable(unpacked,unpacked_mt)
for unicode, description in next, data.descriptions do
local tv = tables[description.boundingbox]
if tv then
description.boundingbox = tv
end
local slookups = description.slookups
if slookups then
local tv = tables[slookups]
if tv then
description.slookups = tv
slookups = unpacked[tv]
end
if slookups then
for tag, lookup in next, slookups do
local what = lookuptypes[tag]
if what == "pair" then
local tv = tables[lookup[2]]
if tv then
lookup[2] = tv
end
local tv = tables[lookup[3]]
if tv then
lookup[3] = tv
end
elseif what ~= "substitution" then
local tv = tables[lookup]
if tv then
slookups[tag] = tv
end
end
end
end
end
local mlookups = description.mlookups
if mlookups then
local tv = tables[mlookups]
if tv then
description.mlookups = tv
mlookups = unpacked[tv]
end
if mlookups then
for tag, list in next, mlookups do
local tv = tables[list]
if tv then
mlookups[tag] = tv
list = unpacked[tv]
end
if list then
local what = lookuptypes[tag]
if what == "pair" then
for i=1,#list do
local lookup = list[i]
local tv = tables[lookup[2]]
if tv then
lookup[2] = tv
end
local tv = tables[lookup[3]]
if tv then
lookup[3] = tv
end
end
elseif what ~= "substitution" then
for i=1,#list do
local tv = tables[list[i]]
if tv then
list[i] = tv
end
end
end
end
end
end
end
local kerns = description.kerns
if kerns then
local tm = tables[kerns]
if tm then
description.kerns = tm
kerns = unpacked[tm]
end
if kerns then
for k, kern in next, kerns do
local tv = tables[kern]
if tv then
kerns[k] = tv
end
end
end
end
local math = description.math
if math then
local kerns = math.kerns
if kerns then
local tm = tables[kerns]
if tm then
math.kerns = tm
kerns = unpacked[tm]
end
if kerns then
for k, kern in next, kerns do
local tv = tables[kern]
if tv then
kerns[k] = tv
end
end
end
end
end
local anchors = description.anchors
if anchors then
local ta = tables[anchors]
if ta then
description.anchors = ta
anchors = unpacked[ta]
end
if anchors then
for tag, anchor in next, anchors do
if tag == "baselig" then
for _, list in next, anchor do
for i=1,#list do
local tv = tables[list[i]]
if tv then
list[i] = tv
end
end
end
else
for a, data in next, anchor do
local tv = tables[data]
if tv then
anchor[a] = tv
end
end
end
end
end
end
end
local lookups = data.lookups
if lookups then
for _, lookup in next, lookups do
local rules = lookup.rules
if rules then
for i=1,#rules do -- was next loop
local rule = rules[i]
local before = rule.before
if before then
local tv = tables[before]
if tv then
rule.before = tv
before = unpacked[tv]
end
if before then
for i=1,#before do
local tv = tables[before[i]]
if tv then
before[i] = tv
end
end
end
end
local after = rule.after
if after then
local tv = tables[after]
if tv then
rule.after = tv
after = unpacked[tv]
end
if after then
for i=1,#after do
local tv = tables[after[i]]
if tv then
after[i] = tv
end
end
end
end
local current = rule.current
if current then
local tv = tables[current]
if tv then
rule.current = tv
current = unpacked[tv]
end
if current then
for i=1,#current do
local tv = tables[current[i]]
if tv then
current[i] = tv
end
end
end
end
local replacements = rule.replacements
if replacements then
local tv = tables[replacements]
if tv then
rule.replacements = tv
end
end
local fore = rule.fore
if fore then
local tv = tables[fore]
if tv then
rule.fore = tv
end
end
local back = rule.back
if back then
local tv = tables[back]
if tv then
rule.back = tv
end
end
local names = rule.names
if names then
local tv = tables[names]
if tv then
rule.names = tv
end
end
local lookups = rule.lookups
if lookups then
local tv = tables[lookups]
if tv then
rule.lookups = tv
end
end
end
end
end
end
local anchor_to_lookup = resources.anchor_to_lookup
if anchor_to_lookup then
for anchor, lookup in next, anchor_to_lookup do
local tv = tables[lookup]
if tv then
anchor_to_lookup[anchor] = tv
end
end
end
local lookup_to_anchor = resources.lookup_to_anchor
if lookup_to_anchor then
for lookup, anchor in next, lookup_to_anchor do
local tv = tables[anchor]
if tv then
lookup_to_anchor[lookup] = tv
end
end
end
local ls = resources.sequences
if ls then
for _, feature in next, ls do
local flags = feature.flags
if flags then
local tv = tables[flags]
if tv then
feature.flags = tv
end
end
local subtables = feature.subtables
if subtables then
local tv = tables[subtables]
if tv then
feature.subtables = tv
end
end
local features = feature.features
if features then
local tv = tables[features]
if tv then
feature.features = tv
features = unpacked[tv]
end
if features then
for script, data in next, features do
local tv = tables[data]
if tv then
features[script] = tv
end
end
end
end
end
end
local lookups = resources.lookups
if lookups then
for _, lookup in next, lookups do
local flags = lookup.flags
if flags then
local tv = tables[flags]
if tv then
lookup.flags = tv
end
end
local subtables = lookup.subtables
if subtables then
local tv = tables[subtables]
if tv then
lookup.subtables = tv
end
end
end
end
local features = resources.features
if features then
for _, what in next, glists do
local feature = features[what]
if feature then
for tag, spec in next, feature do
local tv = tables[spec]
if tv then
feature[tag] = tv
end
end
end
end
end
data.tables = nil
end
end
end
if otf.enhancers.register then
otf.enhancers.register( "pack", packdata)
otf.enhancers.register("unpack",unpackdata)
-- todo: directive
end
otf.enhancers.unpack = unpackdata -- used elsewhere
|