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
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
|
-----------------------------------------------------------------------
-- FILE: luaotfload-harf-plug.lua
-- DESCRIPTION: part of luaotfload / HarfBuzz / fontloader plugin
-----------------------------------------------------------------------
do -- block to avoid to many local variables error
assert(luaotfload_module, "This is a part of luaotfload and should not be loaded independently") {
name = "luaotfload-harf-plug",
version = "3.17", --TAGVERSION
date = "2021-01-08", --TAGDATE
description = "luaotfload submodule / HarfBuzz shaping",
license = "GPL v2.0",
author = "Khaled Hosny, Marcel Krüger",
copyright = "Luaotfload Development Team",
}
end
local hb = luaotfload.harfbuzz
local logreport = luaotfload.log.report
local assert = assert
local next = next
local tonumber = tonumber
local type = type
local format = string.format
local open = io.open
local tableinsert = table.insert
local tableremove = table.remove
local ostmpname = os.tmpname
local osremove = os.remove
local direct = node.direct
local tonode = direct.tonode
local todirect = direct.todirect
local traverse = direct.traverse
local traverse_list = direct.traverse_list
local insertbefore = direct.insert_before
local insertafter = direct.insert_after
local protectglyph = direct.protect_glyph
local newnode = direct.new
local freenode = direct.free
local copynode = direct.copy
local removenode = direct.remove
local copynodelist = direct.copy_list
local ischar = direct.is_char
local uses_font = direct.uses_font
local length = direct.length
local getattrs = direct.getattributelist
local setattrs = direct.setattributelist
local getchar = direct.getchar
local setchar = direct.setchar
local getdirection = direct.getdirection
local getdisc = direct.getdisc
local setdisc = direct.setdisc
local getfont = direct.getfont
local getdata = direct.getdata
local setdata = direct.setdata
local getfont = direct.getfont
local setfont = direct.setfont
local getwhatsitfield = direct.getwhatsitfield or direct.getfield
local setwhatsitfield = direct.setwhatsitfield or direct.setfield
local getfield = direct.getfield
local setfield = direct.setfield
local getid = direct.getid
local getkern = direct.getkern
local setkern = direct.setkern
local getnext = direct.getnext
local setnext = direct.setnext
local getoffsets = direct.getoffsets
local setoffsets = direct.setoffsets
local getproperty = direct.getproperty
local setproperty = direct.setproperty
local getprev = direct.getprev
local setprev = direct.setprev
local getsubtype = direct.getsubtype
local setsubtype = direct.setsubtype
local getwidth = direct.getwidth
local setwidth = direct.setwidth
local setlist = direct.setlist
local is_char = direct.is_char
local tail = direct.tail
local getboth = direct.getboth
local setlink = direct.setlink
local properties = direct.get_properties_table()
local hlist_t = node.id("hlist")
local disc_t = node.id("disc")
local glue_t = node.id("glue")
local glyph_t = node.id("glyph")
local dir_t = node.id("dir")
local kern_t = node.id("kern")
local localpar_t = node.id("local_par")
local whatsit_t = node.id("whatsit")
local pdfliteral_t = node.subtype("pdf_literal")
local line_t = 1
local explicitdisc_t = 1
local firstdisc_t = 4
local seconddisc_t = 5
local fontkern_t = 0
local italiccorr_t = 3
local regulardisc_t = 3
local spaceskip_t = 13
local dir_ltr = hb.Direction.new("ltr")
local dir_rtl = hb.Direction.new("rtl")
local fl_unsafe = hb.Buffer.GLYPH_FLAG_UNSAFE_TO_BREAK
local startactual_p = "luaotfload_startactualtext"
local endactual_p = "luaotfload_endactualtext"
local empty_table = {}
-- "Copy" properties as done by LuaTeX: Make old properties metatable
local function copytable(old)
local new = {}
for k, v in next, old do
if type(v) == "table" then v = copytable(v) end
new[k] = v
end
setmetatable(new, getmetatable(old))
return new
end
-- Set and get properties.
local function setprop(n, prop, value)
local props = properties[n]
if not props then
props = {}
properties[n] = props
end
props[prop] = value
end
local function inherit(t, base, properties)
local n = newnode(t)
setattrs(n, getattrs(base))
if properties then
setproperty(n, setmetatable({}, {__index = properties}))
end
return n
end
-- New kern node of amount `v`, inheriting the properties/attributes of `n`.
local function newkern(v, n)
local kern = inherit(kern_t, n, getproperty(n))
setkern(kern, v)
return kern
end
local function insertkern(head, current, kern, rtl)
if rtl then
head = insertbefore(head, current, kern)
else
head, current = insertafter(head, current, kern)
end
return head, current
end
-- Convert list of integers to UTF-16 hex string used in PDF.
local function to_utf16_hex(uni)
if uni < 0x10000 then
return format("%04X", uni)
else
uni = uni - 0x10000
local hi = 0xD800 + (uni // 0x400)
local lo = 0xDC00 + (uni % 0x400)
return format("%04X%04X", hi, lo)
end
end
local process
local function itemize(head, fontid, direction)
local fontdata = font.getfont(fontid)
local hbdata = fontdata and fontdata.hb
local spec = fontdata and fontdata.specification
local options = spec and spec.features.raw
local runs, codes = {}, {}
local dirstack = {}
local currdir = direction or 0
local lastskip, lastdir = true
local lastrun = {}
local lastdisc
local in_disc
for n, id, subtype in traverse(head) do
if in_disc == n then in_disc = nil end
local disc
local code = 0xFFFC -- OBJECT REPLACEMENT CHARACTER
local skip = lastskip
local props = properties[n]
if props and props.zwnj then
code = 0x200C
-- skip = false -- Not sure about this, but lastskip should be a bit faster
elseif id == glyph_t then
local char = is_char(n, fontid)
if char then
code = char
skip = false
else
skip = true
end
elseif id == glue_t and subtype == spaceskip_t then
code = 0x0020 -- SPACE
elseif id == disc_t then
if uses_font(n, fontid) then
local _, _, rep, _, _, rep_tail = getdisc(n, true)
setfield(n, 'replace', nil)
local prev, next = getboth(n)
in_disc = next
disc = {
disc = n,
anchor_cluster = #codes - (lastrun.start or 0) + 1,
after_cluster = #codes - (lastrun.start or 0) + 1 + length(rep),
}
if rep then
setlink(rep_tail, next)
setnext(n, rep) -- This one is just to keep the loop going
n = rep
else
n = next
end
setlink(prev, n)
code = nil
skip = false
if not prev then
head = n
end
else
skip = true
end
elseif id == dir_t then
local dir, cancel = getdirection(n)
local direction, kind = getdirection(n)
if cancel then
assert(currdir == dir)
-- Pop the last direction from the stack.
currdir = tableremove(dirstack)
else
-- Push the current direction to the stack.
tableinsert(dirstack, currdir)
currdir = dir
end
elseif id == localpar_t then
currdir = getdirection(n)
end
local ncodes = #codes -- Necessary to count discs correctly
codes[ncodes + 1] = code
if (disc or not in_disc) and (lastdir ~= currdir or lastskip ~= skip) then
if disc then
disc.after_cluster = disc.after_cluster - disc.anchor_cluster
disc.anchor_cluster = 0
end
lastrun.after = n
lastrun = {
start = ncodes + 1,
len = code and 1 or 0,
font = fontid,
dir = currdir == 1 and dir_rtl or dir_ltr,
skip = skip,
codes = codes,
discs = disc,
}
runs[#runs + 1] = lastrun
lastdir, lastskip, lastdisc = currdir, skip, disc
elseif code then
lastrun.len = lastrun.len + 1
elseif disc then
if lastdisc then
lastdisc.next = disc
lastdisc = disc
else
lastrun.discs, lastdisc = disc, disc
end
end
end
return head, runs
end
-- Check if it is not safe to break before this glyph.
local function unsafetobreak(glyph)
return glyph
and glyph.flags
and glyph.flags & fl_unsafe
end
local shape
-- Make s a sub run, used by discretionary nodes.
local function makesub(run, codes, nodelist)
local subrun = {
start = 1,
len = #codes,
font = run.font,
dir = run.dir,
fordisc = true,
codes = codes,
}
local glyphs
if nodelist == 0 then -- FIXME: This shouldn't happen
nodelist = nil
end
nodelist, nodelist, glyphs = shape(nodelist, nodelist, subrun)
assert(glyphs, [[Shaping discretionary list failed. This shouldn't happen.]])
return { glyphs = glyphs, run = subrun, head = nodelist }
end
local function printnodes(label, head, after)
after = tonode(after)
for n in node.traverse(tonode(head)) do
if n == after then return end
print(label, n, n.font or '', n.char or '')
local pre, post, rep = getdisc(todirect(n))
if pre then
printnodes(label .. '<', pre)
end
if post then
printnodes(label .. '>', post)
end
if rep then
printnodes(label .. '=', rep)
end
end
end
-- Main shaping function that calls HarfBuzz, and does some post-processing of
-- the output.
function shape(head, firstnode, run)
local node = firstnode
local codes = run.codes
local offset = run.start - 1 -- -1 because we want the cluster
local len = run.len
local fontid = run.font
local dir = run.dir
local cluster
local discs = (not run.fordisc) and run.discs
local fontdata = font.getfont(fontid)
local hbdata = fontdata.hb
local spec = fontdata.specification
local features = spec.hb_features
local options = spec.features.raw
local hbshared = hbdata.shared
local hbfont = hbshared.font
local lang = spec.language
local script = spec.script
local shapers = options.shaper and { options.shaper } or {}
local buf = hb.Buffer.new()
if buf.set_flags then
buf:set_flags(hbdata.buf_flags)
end
buf:set_direction(dir)
buf:set_script(script)
buf:set_language(lang)
buf:set_cluster_level(buf.CLUSTER_LEVEL_MONOTONE_CHARACTERS)
buf:add_codepoints(codes, offset, len)
local hscale = hbdata.hscale
local vscale = hbdata.vscale
hbfont:set_scale(hscale, vscale)
do
features = table.merged(features) -- We don't want to modify the global features
local current_features = {}
local n = node
for i = offset, offset+len-1 do
local props = properties[n] or empty_table
if props then
local local_feat = props.glyph_features or empty_table
if local_feat then
for tag, value in next, current_features do
local loc = local_feat[tag]
loc = loc ~= nil and (tonumber(loc) or (loc and 1 or 0)) or nil
if value.value ~= loc then -- This includes loc == nil
value._end = i
features[#features + 1] = value
current_features[tag] = nil
end
end
for tag, value in next, local_feat do
if not current_features[tag] then
local feat = hb.Feature.new(tag)
feat.value = tonumber(value) or (value and 1 or 0)
feat.start = i
current_features[tag] = feat
end
end
end
end
n = getnext(n)
end
for _, feat in next, current_features do
features[#features + 1] = feat
end
end
if hb.shape_full(hbfont, buf, features, shapers) then
-- The engine wants the glyphs in logical order, but HarfBuzz outputs them
-- in visual order, so we reverse RTL buffers.
if dir:is_backward() then buf:reverse() end
local glyphs = buf:get_glyphs()
local break_glyph, break_cluster, break_node = 1, offset, node
local disc_glyph, disc_cluster, disc_node
local disc_cluster
local i = 0
local glyph
-- The following is a repeat {...} while glyph {...} loop.
while true do
repeat
i = i+1
glyph = glyphs[i]
until not glyph or glyph.cluster ~= cluster
do
local oldcluster = cluster
cluster = glyph and glyph.cluster or offset + len
if oldcluster then
for _ = oldcluster+1, cluster do
node = getnext(node)
end
end
end
-- Is this a safe breakpoint?
if discs and ((not glyph) or codes[cluster] == 0x20 or codes[cluster+1] == 0x20 or codes[cluster+1] == 0xFFFC
or not unsafetobreak(glyph)) then
-- Should we change the discretionary state?
local anchor_cluster, after_cluster = offset + discs.anchor_cluster, offset + discs.after_cluster
local saved_anchor, saved_after = (discs.next and discs.next.anchor_cluster or math.huge) + offset
while disc_cluster and after_cluster <= cluster
or not disc_cluster and anchor_cluster <= cluster do
if disc_cluster then
if not saved_after and saved_anchor < cluster then
saved_after = discs.next.after_cluster + offset
if saved_after > cluster then
saved_after, after_cluster = after_cluster, saved_after
break
end
elseif saved_after then
saved_after, after_cluster = after_cluster, saved_after
end
local rep_glyphs = table.move(glyphs, disc_glyph, i - 1, 1, {})
for j = 1, #rep_glyphs do
local glyph = rep_glyphs[j]
glyph.cluster = glyph.cluster - disc_cluster
glyph.nextcluster = glyph.nextcluster - disc_cluster
end
do
local cluster_offset = disc_cluster - cluster + (saved_after and 2 or 1) -- The offset the glyph indices will move
for j = i, #glyphs do
local glyph = glyphs[j]
glyph.cluster = glyph.cluster + cluster_offset
end
len = len + cluster_offset
table.move(glyphs, i, #glyphs + i - disc_glyph, disc_glyph + (saved_after and 2 or 1))
local discs = discs.next
while discs do
discs.anchor_cluster = discs.anchor_cluster + cluster_offset
discs.after_cluster = discs.after_cluster + cluster_offset
discs = discs.next
end
end
local pre, post, _, _, lastpost, _ = getdisc(discs.disc, true)
local precodes, postcodes, repcodes = {}, {}
table.move(codes, disc_cluster + 1, anchor_cluster, 1, precodes)
for n in traverse(pre) do
precodes[#precodes + 1] = is_char(n, fontid) or 0xFFFC
end
for n in traverse(post) do
postcodes[#postcodes + 1] = is_char(n, fontid) or 0xFFFC
end
table.move(codes, after_cluster + 1, cluster, #postcodes + 1, postcodes)
if saved_after then
repcodes = table.move(codes, disc_cluster + 1, cluster, 1, {})
table.move(codes, cluster + 1, #codes + cluster - disc_cluster, disc_cluster + 3)
codes[disc_cluster + 1], codes[disc_cluster + 2] = 0xFFFC, 0xFFFC
else
table.move(codes, cluster + 1, #codes + cluster - disc_cluster, disc_cluster + 2)
codes[disc_cluster + 1] = 0xFFFC
end
do
local iter = disc_node
for _ = disc_cluster, anchor_cluster-1 do iter = getnext(iter) end
if iter ~= disc_node then
local newpre = copynodelist(disc_node, iter)
setlink(tail(newpre), pre)
pre = newpre
end
for _ = anchor_cluster, after_cluster-1 do iter = getnext(iter) end
if post then
setlink(lastpost, copynodelist(iter, node))
else
post = copynodelist(iter, node)
end
end
local prev = getprev(disc_node)
if disc_cluster ~= cluster then
setprev(disc_node, nil)
setnext(getprev(node), nil)
end
setlink(prev, discs.disc, node)
if disc_node == firstnode then
firstnode = discs.disc
if head == disc_node then
head = firstnode
end
end
glyphs[disc_glyph] = {
replace = {
glyphs = rep_glyphs,
head = disc_node ~= node and disc_node or nil,
run = {
start = 1,
font = run.font,
dir = run.dir,
},
},
pre = makesub(run, precodes, pre),
post = makesub(run, postcodes, post),
cluster = disc_cluster,
nextcluster = disc_cluster + 1,
codepoint = 0xFFFC,
}
if saved_after then
local next_disc = discs.next
setlink(discs.disc, next_disc.disc, node)
local next_pre, next_post, _, _, next_lastpost, _ = getdisc(next_disc.disc, true)
local next_rep = copynodelist(next_pre)
-- Let's play the game again. We need three parts:
-- The pre and post branches in the outer post branch
local next_precodes, next_postcodes, next_repcodes = {}, {}, {}
do
local saved_offset = length(post) - cluster
local saved_anchor, saved_after = saved_anchor + saved_offset, saved_after + saved_offset
table.move(postcodes, 1, saved_anchor, 1, next_precodes)
for n in traverse(next_pre) do
next_precodes[#next_precodes + 1] = is_char(n, fontid) or 0xFFFC
end
for n in traverse(next_post) do
next_postcodes[#next_postcodes + 1] = is_char(n, fontid) or 0xFFFC
end
table.move(postcodes, saved_after + 1, #postcodes, #next_postcodes + 1, next_postcodes)
local iter = post
for _ = 1, saved_anchor do iter = getnext(iter) end
if iter ~= post then
local newpre = copynodelist(post, iter)
setlink(tail(newpre), next_pre)
next_pre = newpre
end
for _ = saved_anchor, saved_after - 1 do iter = getnext(iter) end
if next_post then
setlink(next_lastpost, copynodelist(iter))
else
next_post = copynodelist(iter)
end
end
-- The pre branch in the outer replace branch. The post branch is implicitly the same as the previous one
do
local saved_anchor = saved_anchor - disc_cluster
table.move(repcodes, 1, saved_anchor, 1, next_repcodes)
for n in traverse(next_rep) do
next_repcodes[#next_repcodes + 1] = is_char(n, fontid) or 0xFFFC
end
local rep = glyphs[disc_glyph].replace.head
local iter = rep
for _ = 1, saved_anchor do iter = getnext(iter) end
if iter ~= rep then
local newpre = copynodelist(rep, iter)
setlink(tail(newpre), next_rep)
next_rep = newpre
end
end
setsubtype(discs.disc, firstdisc_t)
setsubtype(next_disc.disc, seconddisc_t)
discs = discs.next
disc_glyph = disc_glyph + 1
disc_cluster = disc_cluster + 1
glyphs[disc_glyph] = {
replace = makesub(run, next_repcodes, next_rep),
pre = makesub(run, next_precodes, next_pre),
post = makesub(run, next_postcodes, next_post),
cluster = disc_cluster,
nextcluster = disc_cluster + 1,
codepoint = 0xFFFC,
}
end
i = disc_glyph + 1
assert(node == getnext(discs.disc))
cluster = disc_cluster + 1
disc_cluster = nil
discs = discs.next
while discs and discs.anchor_cluster + offset < cluster do
freenode(discs.disc)
discs = discs.next
end
if not discs then break end
anchor_cluster, after_cluster = offset + discs.anchor_cluster, offset + discs.after_cluster
saved_anchor, saved_after = (discs.next and discs.next.anchor_cluster or math.huge) + offset
elseif anchor_cluster == cluster then
disc_glyph, disc_cluster, disc_node = i, cluster, node
else
disc_glyph, disc_cluster, disc_node = break_glyph, break_cluster, break_node
end
end
break_glyph, break_cluster, break_node = i, cluster, node
end
if not glyph then break end
local nextcluster
for j = i+1, #glyphs do
nextcluster = glyphs[j].cluster
if cluster ~= nextcluster then
glyph.nglyphs = j - i
goto NEXTCLUSTERFOUND -- break
end
end -- else -- only executed if the loop reached the end without
-- finding another cluster
nextcluster = offset + len
glyph.nglyphs = #glyphs + 1 - i
::NEXTCLUSTERFOUND:: -- end
glyph.nextcluster = nextcluster
local disc, discindex
-- Calculate the Unicode code points of this glyph. If cluster did not
-- change then this is a glyph inside a complex cluster and will be
-- handled with the start of its cluster.
do
local hex = ""
local str = ""
local node = node
for j = cluster+1,nextcluster do
local char, id = is_char(node, fontid)
if char then
-- assert(char == codes[j])
hex = hex .. to_utf16_hex(char)
str = str .. utf8.char(char)
elseif not discindex and id == disc_t then
local props = properties[disc]
if not (props and props.zwnj) then
disc, discindex = node, j
end
end
node = getnext(node)
end
glyph.tounicode = hex
glyph.string = str
end
if not fordisc and discindex then
end
end
return head, firstnode, glyphs, run.len - len
else
if not fontdata.shaper_warning then
local shaper = shapers[1]
if shaper then
tex.error("luaotfload | harf : Shaper failed", {
string.format("You asked me to use shaper %q to shape", shaper),
string.format("the font %q", fontdata.name),
"but the shaper failed. This probably means that either the shaper is not",
"available or the font is not compatible.",
"Maybe you should try the default shaper instead?"
})
else
tex.error(string.format("luaotfload | harf : All shapers failed for font %q.", fontdata.name))
end
fontdata.shaper_warning = true -- Only warn once for every font
end
end
end
local function color_to_rgba(color)
local r = color.red / 255
local g = color.green / 255
local b = color.blue / 255
local a = color.alpha / 255
if a ~= 1 then
-- XXX: alpha
return format('%s %s %s rg', r, g, b)
else
return format('%s %s %s rg', r, g, b)
end
end
-- Cache of color glyph PNG data for bookkeeping, only because I couldn't
-- figure how to make the engine load the image from the binary data directly.
local pngcache = {}
local pngcachefiles = {}
local function cachedpng(data)
local hash = md5.sumhexa(data)
local i = pngcache[hash]
if not i then
local path = ostmpname()
pngcachefiles[#pngcachefiles + 1] = path
open(path, "wb"):write(data):close()
-- local file = open(path, "wb"):write():close()
-- file:write(data)
-- file:close()
i = img.scan{filename = path}
pngcache[hash] = i
end
return i
end
local function get_png_glyph(gid, fontid, characters, haspng)
return gid
end
local push_cmd = { "push" }
local pop_cmd = { "pop" }
local nop_cmd = { "nop" }
--[[
In the following, "text" actually refers to "font" mode and not to "text"
mode. "font" mode is called "text" inside of virtual font commands (don't
ask me why, but the LuaTeX source does make it clear that this is intentional)
and behaves mostly like "page" (especially it does not enter a "BT" "ET"
block) except that it always resets the current position to the origin.
This is necessary to ensure that the q/Q pair does not interfere with TeX's
position tracking.
]]
local save_cmd = { "pdf", "text", "q" }
local restore_cmd = { "pdf", "text", "Q" }
-- Convert glyphs to nodes and collect font characters.
local function tonodes(head, node, run, glyphs)
local nodeindex = run.start
local dir = run.dir
local fontid = run.font
local fontdata = font.getfont(fontid)
local space = fontdata.parameters.space
local characters = fontdata.characters
local hbdata = fontdata.hb
local hfactor = (fontdata.extend or 1000) / 1000
local palette = hbdata.palette
local hbshared = hbdata.shared
local hbface = hbshared.face
local nominals = hbshared.nominals
local hbfont = hbshared.font
local fontglyphs = hbshared.glyphs
local gid_offset = hbshared.gid_offset
local rtl = dir:is_backward()
local lastprops
local scale = hbdata.scale
local haspng = hbshared.haspng
local fonttype = hbshared.fonttype
local nextcluster
for i, glyph in ipairs(glyphs) do
if glyph.cluster + 1 >= nodeindex then -- Reached a new cluster
nextcluster = glyph.nextcluster
assert(nextcluster)
for j = nodeindex, glyph.cluster do
local oldnode = node
head, node = removenode(head, node)
freenode(oldnode)
end
lastprops = getproperty(node)
nodeindex = glyph.cluster + 1
elseif nextcluster + 1 == nodeindex then -- Oops, we went too far
nodeindex = nodeindex - 1
local new = inherit(glyph_t, getprev(node), lastprops)
setfont(new, fontid)
head, node = insertbefore(head, node, new)
end
local gid = glyph.codepoint
local char = nominals[gid] or gid_offset + gid
local orig_char, id = is_char(node, fontid)
if glyph.replace then
-- For discretionary the glyph itself is skipped and a discretionary node
-- is output in place of it.
local rep, pre, post = glyph.replace, glyph.pre, glyph.post
setdisc(node, tonodes(pre.head, pre.head, pre.run, pre.glyphs),
tonodes(post.head, post.head, post.run, post.glyphs),
(tonodes(rep.head, rep.head, rep.run, rep.glyphs)))
node = getnext(node)
nodeindex = nodeindex + 1
else
if lastprops and lastprops.zwnj and nodeindex == glyph.cluster + 1 then
elseif orig_char then
local done
local fontglyph = fontglyphs[gid]
local character = characters[char]
if not character.commands then
if palette then
local layers = fontglyph.layers
if layers == nil then
layers = hbface:ot_color_glyph_get_layers(gid) or false
fontglyph.layers = layers
end
if layers then
local cmds = {} -- Every layer will add 5 cmds
local prev_color = nil
local k = 1 -- k == j except that k does only get increased if the layer isn't dropped
for j = 1, #layers do
local layer = layers[j]
local layerchar = characters[gid_offset + layer.glyph]
if layerchar.height > character.height then
character.height = layerchar.height
end
if layerchar.depth > character.depth then
character.depth = layerchar.depth
end
-- color_index has a special value, 0x10000, that mean use text
-- color, we don't check for it here explicitly since we will
-- get nil anyway.
local color = palette[layer.color_index]
if not color or color.alpha ~= 0 then
cmds[5*k - 4] = (color and not prev_color) and save_cmd or nop_cmd
cmds[5*k - 3] = prev_color == color and nop_cmd or (color and {"pdf", "page", color_to_rgba(color)} or restore_cmd)
cmds[5*k - 2] = push_cmd
cmds[5*k - 1] = {"char", layer.glyph + gid_offset}
cmds[5*k] = pop_cmd
fontglyphs[layer.glyph].used = true
prev_color = color
k = k+1
end
end
cmds[#cmds + 1] = prev_color and restore_cmd
if not character.colored then
local coloredcharacter = {}
for k,v in next, character do
coloredcharacter[k] = v
end
coloredcharacter.commands = cmds
local newcharacters = {[gid + 0x130000] = coloredcharacter}
characters[gid + 0x130000] = coloredcharacter
if char ~= gid + gid_offset then
newcharacters[char] = coloredcharacter
characters[char] = coloredcharacter
character.colored = char
else
character.colored = gid + 0x130000
end
font.addcharacters(fontid, {characters = newcharacters})
end
char = character.colored
character = characters[char]
end
end
if haspng then
local pngglyph = character.pngglyph
if pngglyph == nil then
local pngblob = hbfont:ot_color_glyph_get_png(gid)
if pngblob then
local glyphimg = cachedpng(pngblob:get_data())
local pngchar = { }
for k,v in next, character do
pngchar[k] = v
end
local i = img.copy(glyphimg)
i.width = character.width
i.depth = 0
i.height = character.height + character.depth
pngchar.commands = fonttype and {
{"push"}, {"char", gid_offset + gid}, {"pop"},
{"down", character.depth}, {"image", i}
} or { {"down", character.depth}, {"image", i} }
if not nominals[gid] then
char = 0x130000 + gid
end
characters[char] = pngchar
pngglyph = char
font.addcharacters(fontid, {characters = {[char] = pngchar}})
end
character.pngglyph = pngglyph
end
if pngglyph then
char = pngglyph
elseif not fonttype then
-- Color bitmap font with no glyph outlines (like Noto
-- Color Emoji) but has no bitmap for current glyph (most likely
-- `.notdef` glyph). The engine does not know how to embed such
-- fonts, so we don't want them to reach the backend as it will cause
-- a fatal error. We use `nullfont` instead. That is a hack, but I
-- think it is good enough for now. We could make the glyph virtual
-- with empty commands suh that LuaTeX ignores it, but we still want
-- a missing glyph warning.
-- We insert the glyph node and move on, no further work is needed.
setfont(node, 0)
done = true
end
end
end
if not done then
local oldcharacter = characters[orig_char]
-- If the glyph index of current font character is the same as shaped
-- glyph, keep the node char unchanged. Helps with primitives that
-- take characters as input but actually work on glyphs, like
-- `\rpcode`.
if not oldcharacter then
if gid == 0 then
local new = copynode(node)
head, node = insertafter(head, node, new)
end
setchar(node, char)
elseif character.commands
or character.index ~= oldcharacter.index then
setchar(node, char)
end
local xoffset = (rtl and -glyph.x_offset or glyph.x_offset) * scale
local yoffset = glyph.y_offset * scale
setoffsets(node, xoffset, yoffset)
fontglyph.used = fonttype and true
-- The engine will use this string when printing a glyph node e.g. in
-- overfull messages, otherwise it will be trying to print our
-- invalid pseudo Unicode code points.
-- If the string is empty it means this glyph is part of a larger
-- cluster and we don't to print anything for it as the first glyph
-- in the cluster will have the string of the whole cluster.
local props = properties[node]
if not props then
props = {}
properties[node] = props
end
props.glyph_info = glyph.string or ""
-- Handle PDF text extraction:
-- * Find how many characters in this cluster and how many glyphs,
-- * If there is more than 0 characters
-- * One glyph: one to one or one to many mapping, can be
-- represented by font's /ToUnicode
-- * More than one: many to one or many to many mapping, can be
-- represented by /ActualText spans.
-- * If there are zero characters, then this glyph is part of complex
-- cluster that will be covered by an /ActualText span.
local tounicode = glyph.tounicode
if tounicode then
if glyph.nglyphs == 1
and not character.commands
and not fontglyph.tounicode then
fontglyph.tounicode = tounicode
elseif character.commands or tounicode ~= fontglyph.tounicode then
setprop(node, startactual_p, tounicode)
glyphs[i + glyph.nglyphs - 1].endactual = true
end
end
if glyph.endactual then
setprop(node, endactual_p, true)
end
local x_advance = glyph.x_advance
local width = fontglyph.width * hfactor
if width ~= x_advance then
-- The engine always uses the glyph width from the font, so we need
-- to insert a kern node if the x advance is different.
local kern = newkern((x_advance - width) * scale, node)
head, node = insertkern(head, node, kern, rtl)
end
end
elseif id == glue_t and getsubtype(node) == spaceskip_t then
-- If the glyph advance is different from the font space, then a
-- substitution or positioning was applied to the space glyph changing
-- it from the default. We try to maintain as much as possible from the
-- original value because we assume that we want to keep spacefactors and
-- assume that we got mostly positioning applied. TODO: Handle the case that
-- we became a glyph in the process.
-- We are intentionally not comparing with the existing glue width as
-- spacing after the period is larger by default in TeX.
local width = glyph.x_advance * scale
-- if space > width + 2 or width > space + 2 then
if space ~= width then
setwidth(node, getwidth(node) - space + width)
-- setfield(node, "stretch", width / 2)
-- setfield(node, "shrink", width / 3)
end
elseif id == kern_t and getsubtype(node) == italiccorr_t then
-- If this is an italic correction node and the previous node is a
-- glyph, update its kern value with the glyph's italic correction.
local prevchar, prevfontid = ischar(getprev(node))
if prevfontid == fontid and prevchar and prevchar > 0 then
local italic = characters[prevchar].italic
if italic then
setkern(node, italic)
end
end
end
node = getnext(node)
nodeindex = nodeindex + 1
end
end
while node ~= run.after do
local oldnode = node
head, node = removenode(head, node)
freenode(oldnode)
end
return head, node
end
local function shape_run(head, current, run)
if not run.skip then
-- Font loaded with our loader and an HarfBuzz face is present, do our
-- shaping.
local glyphs, offset
head, current, glyphs, offset = shape(head, current, run)
if glyphs then
return offset, tonodes(head, current, run, glyphs)
end
end
return 0, head, run.after
end
function process(head, font, _attr, direction)
local newhead, runs = itemize(head, font, direction)
local current = newhead
local offset = 0
for i = 1,#runs do
local run = runs[i]
run.start = run.start - offset
local new_offset
new_offset, newhead, current = shape_run(newhead, current, run)
offset = offset + new_offset
end
return newhead or head
end
local function pageliteral(data)
local n = newnode(whatsit_t, pdfliteral_t)
setwhatsitfield(n, "mode", 1) -- page
setwhatsitfield(n, "data", data) -- page
return n
end
local function post_process(head)
for n in traverse(head) do
local props = properties[n]
local startactual, endactual
if props then
startactual = rawget(props, startactual_p)
endactual = rawget(props, endactual_p)
end
if startactual then
local actualtext = "/Span<</ActualText<FEFF"..startactual..">>>BDC"
head = insertbefore(head, n, pageliteral(actualtext))
props[startactual_p] = nil
end
if endactual then
head = insertafter(head, n, pageliteral("EMC"))
props[endactual_p] = nil
end
local replace = getfield(n, "replace")
if replace then
setfield(n, "replace", post_process(replace))
end
end
return head
end
local function post_process_vlist(head)
for n, id, subtype, list in traverse_list(head) do
if id == hlist_t and subtype == line_t then
setlist(n, post_process(list))
end
end
return true
end
local function post_process_nodes(head)
return tonode(post_process(todirect(head)))
end
local function post_process_vlist_nodes(head)
return tonode(post_process_vlist(todirect(head)))
end
local function run_cleanup()
-- Remove temporary PNG files that we created, if any.
-- FIXME: It would be nice if we wouldn't need this
for _, path in next, pngcachefiles do
osremove(path)
end
end
local function set_tounicode()
for fontid, fontdata in font.each() do
local hbdata = fontdata.hb
if hbdata and fontid == pdf.getfontname(fontid) then
local characters = fontdata.characters
local newcharacters = {}
local hbshared = hbdata.shared
local glyphs = hbshared.glyphs
local nominals = hbshared.nominals
local gid_offset = hbshared.gid_offset
for gid = 0, #glyphs do
local glyph = glyphs[gid]
if glyph.used then
local character = characters[gid + gid_offset]
newcharacters[gid + gid_offset] = character
local unicode = nominals[gid]
if unicode then
newcharacters[unicode] = character
end
character.tounicode = glyph.tounicode or "FFFD"
character.used = true
end
end
font.addcharacters(fontid, { characters = newcharacters })
end
end
end
-- FIXME: Move this into generic parts of luaotfload
local utfchar = utf8.char
local function get_glyph_info(n)
n = todirect(n)
local props = properties[n]
local info = props and props.glyph_info
if info then return info end
local c = getchar(n)
if c == 0 then
return '^^@'
elseif c < 0x110000 then
return utfchar(c)
else
return string.format("^^^^^^%06X", c)
end
end
fonts.handlers.otf.registerplugin('harf', process)
local add_to_callback = luatexbase.add_to_callback
add_to_callback('post_linebreak_filter', post_process_vlist_nodes, 'luaotfload.harf.finalize_vlist')
add_to_callback('hpack_filter', post_process_nodes, 'luaotfload.harf.finalize_hlist')
add_to_callback('wrapup_run', run_cleanup, 'luaotfload.cleanup_files')
add_to_callback('finish_pdffile', set_tounicode, 'luaotfload.harf.finalize_unicode')
add_to_callback('glyph_info', get_glyph_info, 'luaotfload.glyphinfo')
|