summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/node-ali.lmt
blob: 5eff779dc24a1e01985669b61da2a21546d132e2 (plain)
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
if not modules then modules = { } end modules ['node-ali'] = {
    version   = 1.001,
    comment   = "companion to node-ini.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local setmetatableindex  = table.setmetatableindex

local a_alignchar        = attributes.private("aligncharacter")

local nuts               = nodes.nuts
local tonut              = nuts.tonut
local tonode             = nuts.tonode
local getwidth           = nuts.getwidth
local setwidth           = nuts.setwidth
local getid              = nuts.getid
local getattr            = nuts.getattr
local setnext            = nuts.setnext
local getnext            = nuts.getnext
local getprev            = nuts.getprev
local getboth            = nuts.getboth
local getglue            = nuts.getglue
local setglue            = nuts.setglue
local getwhd             = nuts.getwhd
local setwhd             = nuts.setwhd
local setpenalty         = nuts.setpenalty
local getlist            = nuts.getlist
local setlist            = nuts.setlist
local setattrlist        = nuts.setattrlist
local setprop            = nuts.setprop
local getprop            = nuts.getprop
local getfont            = nuts.getfont
local getchar            = nuts.getchar
local addmargins         = nuts.addmargins
local findtail           = nuts.tail
local hasglyph           = nuts.hasglyph
local getwordrange       = nuts.getwordrange
local dimensions         = nuts.rangedimensions
local flushnode          = nuts.flush
local hpack              = nuts.hpack
local repack             = nuts.repack
local insertbefore       = nuts.insertbefore
local insertafter        = nuts.insertafter
local effectiveglue      = nuts.effectiveglue

local newkern            = nuts.pool.kern
local newrule            = nuts.pool.rule
local newglue            = nuts.pool.glue

local traversers         = nuts.traversers
local nextrecord         = traversers.alignrecord
local nextunset          = traversers.unset
local nextglyph          = traversers.glyph
local nextglue           = traversers.glue
local nextpenalty        = traversers.penalty
local nextboundary       = traversers.boundary
local nextnode           = traversers.node
local nextlist           = traversers.list
local nextrule           = traversers.rule

local nodecodes          = nodes.nodecodes
local glyph_code         = nodecodes.glyph
local glue_code          = nodecodes.glue
local kern_code          = nodecodes.kern
local disc_code          = nodecodes.disc
local unset_code         = nodecodes.unset
local alignrecord_code   = nodecodes.alignrecord
local rule_code          = nodecodes.rule

local spaceskip_code     = nodes.gluecodes.spaceskip
local xspaceskip_code    = nodes.gluecodes.xspaceskip
local intermathskip_code = nodes.gluecodes.intermathskip
local fontkern_code      = nodes.kerncodes.fontkern
local row_code           = nodes.listcodes.alignment -- should be row
local cell_code          = nodes.listcodes.cell
local line_code          = nodes.listcodes.line
local linepenalty_code   = nodes.penaltycodes.linepanalty

-- local preamble_pass <const> = tex.alignmentcontextcodes.preamble
-- local preroll_pass  <const> = tex.alignmentcontextcodes.preroll
-- local wrapup_pass   <const> = tex.alignmentcontextcodes.wrapup

-- todo statistics and tracing

local method   = 2
local unislots = fonts.hashes.unislots -- todo
local chardata = fonts.hashes.characters

function nodes.handlers.aligncharacter(head,where,attr,preamble)
    if where == "preroll" then
        local attr = getattr(attr,a_alignchar) -- 1 : value doesn't matter (for now)
        if attr then
            local widths = { }
            local data   = { }
            local rows   = 0
            local cols   = 0
            for col in nextrecord, preamble do
                cols = cols + 1
                local w, s = getwidth(col,true)
                widths[cols] = { col, w, s }
            end
            --
            for row in nextunset, head do
                rows = rows + 1
                local c = 0
                local d = { }
                data[rows] = d
                for col in nextunset, getlist(row) do
                    c = c + 1
                    if widths[c][2] then
                        local list = getlist(col)
                     -- if method == 1 then
                     --     local left   = nil
                     --     local right  = nil
                     --     local middle = nil
                     --     for g, char in nextglyph, list do
                     --         if not left then
                     --             left = g
                     --         end
                     --         if char == getattr(g,a_alignchar) then
                     --             middle = g
                     --         end
                     --         right = g
                     --     end
                     --     d[c] = middle and { col, left, middle, right, 0, 0, getwidth(middle) } or false
                     -- elseif method == 2 then
                            local middle = nil
                            -- we can either cache unislots or we can cache for this font
                            for g, char, font in nextglyph, list do
                                local unicode = getattr(g,a_alignchar)
                                if unicode then
                                    if char == unicode then
                                        middle = g
                                    elseif unislots[font][char] == unicode then
                                        middle = g
                                    end
                                end
                            end
                            if middle then
                                local left, right = getwordrange(middle) -- not real gain but handy anyway (less code too)
                             -- local left  = middle
                             -- local right = middle
                             -- for g, id, subtype in nextnode, middle do
                             --     if id == glyph_code or id == disc_code then
                             --         right = g
                             --     elseif id == kern_code and subtype == fontkern_code then
                             --         right = g
                             --     else
                             --         break
                             --     end
                             -- end
                             -- for g, id, subtype in prevnode, middle do
                             --     if id == glyph_code or id == disc_code then
                             --         left = g
                             --     elseif id == kern_code and subtype == fontkern_code then
                             --         left = g
                             --     else
                             --         break
                             --     end
                             -- end
                                d[c] = { col, left, middle, right, 0, 0, getwidth(middle) }
                            else
                                d[c] = false
                            end
                     -- else
                     --     local middle = nil
                     --     for g, char in nextglyph, list do
                     --         if char == getattr(g,a_alignchar) then
                     --             middle = g
                     --         end
                     --     end
                     --     if middle then
                     --         local left  = list
                     --         local right = findtail(list)
                     --         if getid(left) == glue_code then
                     --             left = getnext(left)
                     --         end
                     --         if getid(right) == glue_code then
                     --             right = getprev(right)
                     --         end
                     --         d[c] = { col, left, middle, right, 0, 0, getwidth(middle) }
                     --     else
                     --         d[c] = false
                     --     end
                     -- end
                    else
                        d[c] = false
                    end
                end
            end
            --
            for col=1,cols do
                local maxl = 0
                local maxr = 0
                local minm = 0
                local maxm = 0
                local colw = widths[col]
                for row=1,rows do
                    local d = data[row][col]
                    if d then
                        local p = d[1]
                        local l = d[2]
                        local m = d[3]
                        local r = d[4]
                        if m then
                            local lw = l == m and 0 or dimensions(p,l,m)
                            local rw = m == r and 0 or dimensions(p,getnext(m),getnext(r))
                            d[5] = lw
                            d[6] = rw
                            if lw > maxl then
                                maxl = lw
                            end
                            if rw > maxr then
                                maxr = rw
                            end
                            local mw = d[7]
                            if maxm == 0 then
                                minm = mw
                                maxm = mw
                            else
                                if mw > maxm then
                                    maxm = mw
                                end
                                if mw < minm then
                                    minm = mw
                                end
                            end
                        end
                    end
                end
                --
                local fixedwidth = colw[3] ~= 0
                --
                local old = colw[2]
                local new = old
                for row=1,rows do
                    local d = data[row][col]
                    if d then
                        local p = d[1]
                        local l = d[2]
                        local m = d[3]
                        local r = d[4]
                        if l and m and r then
                            local lw = d[5]
                            local rw = d[6]
                            local mw = d[7]
                            dl = maxl - lw
                            dr = maxr - rw
                            if dl ~= 0 or dr ~= 0 or mw ~= maxm then
                                local lst = getlist(p)
                                local wid = getwidth(p)
                                if dl ~= 0 then
                                    local k = newkern(dl)
                                    lst = insertbefore(lst,l,k)
                                    setattrlist(k,m)
                                    setlist(p,lst)
                                    wid = wid + dl
                                end
                                if dr ~= 0 then
                                    local k = newkern(dr)
                                    insertafter(lst,r,k)
                                    setattrlist(k,m)
                                    wid = wid + dr
                                end
                                if mw ~= maxm then
                                    local dw = (maxm - mw)
                                    local dx = dw / 2
                                    addmargins(m,-dx,-dx)
                                    wid = wid + dw
                                end
                                setwidth(p,wid)
                                if wid > new then
                                    new = wid
                                end
                                setlist(p,lst)
                                -- somewhat fuzzy:
                                if fixedwidth then
                                    local l = hpack(h,getwidth(p),"exactly")
                                    setglue(p,getglue(l))
                                    setlist(l)
                                    flushnode(l)
                                else
                                    setglue(p)
                                end
                                --
                            end
                        end
                    end
                end
                if new > old then
                    if fixedwidth then
                        -- issue overflow warning
                    else
                        setwidth(colw[1],new)
                    end
                end
            end
        end
    end
end

local enabled = false

interfaces.implement {
    name      = "enablealignmentcharacter",
 -- onlyonce  = true,
    public    = true,
    protected = true,
    actions   = function()
        if not enabled then
            nodes.tasks.enableaction("alignments", "nodes.handlers.aligncharacter")
            enabled = true
        end
    end,
}

-- This will go to math-ali.lmt

do

    local getdata           = nuts.getdata
    local removenode        = nuts.remove
    local getwhd            = nuts.getwhd
    local getheight         = nuts.getheight
    local getdepth          = nuts.getdepth
    local setheight         = nuts.setheight
    local setdepth          = nuts.setdepth
    local getglue           = nuts.getglue
    local setoffsets        = nuts.setoffsets
    local setsubtype        = nuts.setsubtype

    local baselineskip_code = nodes.gluecodes.baselineskip
    local lineskip_code     = nodes.gluecodes.lineskip

    local alignrecord_code  = nodecodes.alignrecord
    local hlist_code        = nodecodes.hlist
    local unset_code        = nodecodes.unset
 -- local rule_code         = nodecodes.rule

    local nextnode          = nuts.traversers.node

    local texgetdimen       = tex.getdimen
    local texsetdimen       = tex.setdimen
    local texgetglue        = tex.getglue
    local texget            = tex.get

    local leftmarker        = tex.boundaries.system("c_math_align_l_marker")
    local rightmarker       = tex.boundaries.system("c_math_align_r_marker")

    local a_location        = attributes.system("mathnumberlocation")
    local a_threshold       = attributes.system("mathnumberthreshold")

    local v_first          = interfaces.variables.first
    local v_last           = interfaces.variables.last
    local v_both           = interfaces.variables.both

    -- Here:

    local function openup(specification,head)
        local inbetween   = specification.inbetween or 0
        local height      = specification.height or 0
        local depth       = specification.depth or 0
        local splitmethod = specification.splitmethod or ""
        local lines       = { }
        for n, id, subtype, list in nextlist, head do
            lines[#lines+1] = { n, subtype, getwhd(n) }
        end
        local noflines = #lines
        if noflines > 0 then
            local currentline = 1
            for n, subtype in nextglue, head do
-- print(currentline,height/65536,depth/65536)
                -- one day we can decide what to do with intertext stuff based on the
                -- subtype but not now ... on our agenda (intertext etc)
                if subtype == baselineskip_code or subtype == lineskip_code then
                    local nextline = currentline + 1
                    local amount, stretch, shrink = getglue(n)
                    local prevdp = lines[currentline][5]
                    local nextht = lines[nextline][4]
                    local delta  = 0
                    if prevdp < depth then
                        setdepth(lines[currentline][1],depth)
                        delta = delta + (depth - prevdp)
-- lines[currentline][5] = depth
                    end
                    if nextht < height then
                        setheight(lines[nextline][1],height)
-- lines[nextline][4] = height
                        delta = delta + (height - nextht)
                    end
--                     if subtype == lineskip_code then
--                         setglue(n,inbetween,stretch,shrink)
                        setsubtype(n,baselineskip_code)
--                     else
                        setglue(n,amount+inbetween-delta,stretch,shrink)
--                     end
                    currentline = nextline -- was curline
-- if currentline > noflines then
--     break
-- end
                end
            end
            if splitmethod ~= "" then
                local currentline = 0
                for n, subtype in nextpenalty, head do
                    if subtype == linepenalty_code then
                        if l == 1 then
                            if splitmethod == v_both or splitmethod == v_first then
-- print("FIRST")
                                setpenalty(n, 10000)
                            end
                        elseif l == noflines then
                            if splitmethod == v_both or splitmethod == v_last then
-- print("LAST")
                                setpenalty(n, 10000)
                            end
                        end
                        curline = currentline
                    end
                end
            end
            local firstht = lines[1][4]
            local lastdp  = lines[noflines][5]
            if firstht < height then
                setheight(lines[1],height)
            end
            if lastdp < depth then
                setdepth(lines[noflines],depth)
            end
        end
    end

    nuts.openup = openup

    -- When present, the number is after the right marker. We need to move the
    -- number when we want it at the left.
    --
    -- Todo: set a flag in mathalignment and support atttibutes on it so that
    -- we can check if this is needed.

    -- [dummy] [left -2] [second -1] [number 0]

    -- In the end it makes more sense to just calculate the alignment in lua
    -- but it is kind of fun to see how we can control alignments.

    local totals     = { }
    local widths     = { }
    local records    = { }
    local deltas     = { }
    local cellwidths = { }

    local a_flushleft  <const> = 1
    local a_centered   <const> = 2
    local a_flushright <const> = 3

    local function first_pass(head,attr,preamble)
            --
        local width    = 0
        local hsize    = texget("hsize")
        local count    = 0
        local overflow = false
totals   = { } -- maybe use one table
widths   = { }
records  = { }
deltas   = { }
        for n in nextrecord, preamble do
            local wd = getwidth(n)
            count    = count + 1
            width    = width + wd
            totals [count] = width
            widths [count] = wd
            records[count] = n
            deltas [count] = 0
        end
        --
        local lindex   = 0
        local rindex   = 0
        local lwidth   = 0
        local rwidth   = 0
        local centered = false
        for row in nextunset, head do
            local count      = 0
            local anchor     = nil
            local rochan     = nil
         -- local cellwidths = { }
            for cell in nextunset, getlist(row) do
                local list = getlist(cell)
                count = count + 1
                cellwidths[count] = getwidth(cell)
                for bound in nextboundary, list do
                    local marker = getdata(bound)
                    if marker == leftmarker then
                        lindex = count
                        anchor = bound
                        rochan = list
                    elseif marker == rightmarker then
                        local n = getnext(bound)
                        if n and getid(n) == hlist_code then
                            local wd, ht, dp = getwhd(n)
                            local lc = getattr(n,a_location)
                            if lc then
                                -- todo: just store align in the outer attribute so once ...
                                local align     = lc // 0x10
                                local location  = lc % 0x10
                                local threshold = getattr(n,a_threshold)
                                if location == 1 then
                                    -- number right
                                    local m = 1
                                    local s = align == a_centered and 2 or 1
--                                     if align == 1 then
                                    if align == a_flushleft then
                                        -- flushleft
                                        rwidth = wd
--                                     elseif align == 3 then
                                    elseif align == a_flushright then
                                        -- flushright
                                        rwidth = wd
                                    elseif wd > lwidth then
                                        lwidth = wd
                                        rwidth = wd
                                        centered = true
                                    end
                                    if totals[count-2] + cellwidths[count-1] + s*wd - s*threshold > hsize then
                                        local total = ht + dp
                                        setdepth(row,getdepth(row) + total)
                                        setoffsets(n,0,-total)
                                        local pr = records[count-1]
                                        local cw = getwidth(pr)
                                        if cw - wd > deltas[count-1] then
                                            deltas[count-1] = cw - wd
                                        end
                                        overflow = true
                                    end
                                elseif location == 2 then
                                    -- number left
--                                     if align == 1 then
                                    if align == a_flushleft then
                                        -- flushleft
                                        lwidth = wd
--                                     elseif align == 3 then
                                    elseif align == a_flushright then
                                        -- flushright
                                        lwidth = wd
                                    end
                                end
                                if location == 2 and anchor then
                                    local l, l, n = removenode(list,n)
                                    if l ~= list then
                                        setlist(cell,l)
                                     -- setwidth(cell,0)
                                    end
                                    insertafter(rochan,anchor,n)
                                end
                            end
                        end
                        rindex = count
                    end
                end
            end
        end
        --
        if overflow then
            if deltas[rindex-1] ~= 0 then
                setwidth(records[rindex-1],deltas[rindex-1])
            end
        end
        for count=1,#records do
            if count == lindex then
                if centered and overflow then
                    lwidth = lwidth - texgetdimen("d_math_eqalign_number_distance")
                end
                setwidth(records[count],lwidth)
            elseif count == rindex then
                setwidth(records[count],rwidth)
            end
        end
    end

    local function second_pass(head,attr,preamble)
        local done  = setmetatableindex("table")
        local glues = { }
        local okay  = false
        for row, id, subtype in nextlist, head do
            if id == hlist_code and subtype == row_code then
                for cell, id, subtype in nextlist, getlist(row) do
                    if id == hlist_code and subtype == cell_code then
                        for n, s in nextglue, getlist(cell) do
                            if s == intermathskip_code then
                                local e = effectiveglue(n,cell)
                                local g = getglue(n)
                                local f = getfont(n)
                                local a = done[f]
                                local d = a[g]
                                glues[n] = g
                                if not d then
                                    a[g] = e
                                elseif d > e then
                                    a[g] = e
                                    okay = true
                                end
                            end
                        end
                    end
                end
            end
        end
        if okay then
            for k, v in next, glues do
                local g = done[getfont(k)][v]
                if g then
                    setglue(k,g)
                    setprop(k,"fixedmathalign",true)
                end
            end
            for row, id, subtype in nextlist, head do
                if id == hlist_code and subtype == row_code then
                    for cell, id, subtype, list in nextlist, getlist(row) do
                        if list and id == hlist_code and subtype == cell_code then
                            local wd = getwidth(cell)
                            repack(cell,wd,"exactly")
                        end
                    end
                end
            end
        end
    end

    local function third_pass(head,attr,preamble)
        local inbetween, stretch, shrink = texgetglue("s_strc_math_alignment_inbetween")
        openup({ inbetween = inbetween }, head)
    end

    -- This will become a bit more pluggable so that we have less checking.

    -- maybe zero pass: preamble pass

    function nodes.handlers.fixmathalign(head,where,attr,preamble)
        if where == "preroll" then
            local signal = getattr(attr,a_location)
            if signal == 0x20 or signal == 0x40 then
                first_pass(head,attr,preamble)
            end
        elseif where == "wrapup" then
            local signal = getattr(attr,a_location)
            if signal == 0x40 then
                second_pass(head,attr,preamble)
            end
            if signal then
                third_pass(head,attr,preamble)
            end
        end
    end

    --

do

    local a_mathalignmentvrule = attributes.private("mathalignmentvrule")
    local a_mathalignmenthrule = attributes.private("mathalignmenthrule")

    -- these loops will be combined

    local dp = { }
    local ht = { }

    local function vrule_pass(head,attr,preamble)
        local i = 0
        for row, id, subtype, list in nextlist, head do
            if id == hlist_code and subtype == row_code then
                i = i + 1
                local prv, nxt = getboth(row)
                for cell, id, subtype, list in nextlist, list do
                    if list then
                        for n, id, subtype in nextrule, list do
                            local signal = getattr(n,a_mathalignmentvrule)
                            if signal then
                                if prv then
                                    if getid(prv) ~= rule_code or not getattr(prv,a_mathalignmentvrule) then
                                        prv = nil
                                    end
                                end
                                if nxt then
                                    if getid(nxt) ~= rule_code or not getattr(nxt,a_mathalignmentvrule) then
                                        nxt = nil
                                    end
                                end
                                local top = not prv and 0 or nil
                                local bot = not nxt and 0 or nil
                                setoffsets(n,nil,nil,d and -d or top,h and -h or bot)
                            end
                        end
                    end
                end
            end
        end
    end

    local function hrule_pass(head,attr,preamble)
        local i = 0
        for row, id, subtype, list in nextlist, head do
            if id == hlist_code and subtype == row_code then
                i = i + 1
                local height = 0
                local depth  = 0
                local done   = false
                for cell, id, subtype, list in nextlist, list do
                    if list then
                        for n, id, subtype in nextglue, list do
                            local signal = getattr(n,a_mathalignmenthrule)
                            if signal then
                                local w, h, d = getwhd(n)
                                if h and d then
                                    if h > height then
                                        height = h
                                    end
                                    if d > depth then
                                        depth = d
                                    end
                                    done = true
                                end
                            end
                        end
                    end
                end
                if done then
                    setheight(row,height)
                    setdepth(row,depth)
                    dp[i] = height
                    ht[i] = depth
                end
            end
        end
    end

    function nodes.handlers.mathmatrixrules(head,where,attr,preamble)
        if where == "wrapup" then
            dp = { }
            ht = { }
            local signal = getattr(attr,a_mathalignmenthrule)
            if signal == 0x01 then -- matrix
                hrule_pass(head,attr,preamble)
            end
            local signal = getattr(attr,a_mathalignmentvrule)
            if signal == 0x01 then -- matrix
                vrule_pass(head,attr,preamble)
            end
        end
    end

    local enabled = false

    interfaces.implement {
        name      = "enablematrixrules",
     -- onlyonce  = true,
        public    = true,
        protected = true,
        actions   = function()
            if not enabled then
                nodes.tasks.enableaction("alignments", "nodes.handlers.mathmatrixrules")
                enabled = true
            end
        end,
    }

end

    --

    local a_ornament     = attributes.system("mathmatrixornament")

    local leftornament   = tex.boundaries.system("c_math_matrix_ornament_l")
    local rightornament  = tex.boundaries.system("c_math_matrix_ornament_r")
    local topornament    = tex.boundaries.system("c_math_matrix_ornament_t")
    local bottomornament = tex.boundaries.system("c_math_matrix_ornament_b")

    local verticalline   = tex.boundaries.system("c_math_matrix_vl_boundary")

    local left     = 0
    local right    = 0
    local nofcells = 0
    local found    = false

    local lefts    = false
    local rights   = false
    local tops     = false
    local bottoms  = false

    local function first_pass(head,attr,preamble)
        nofcells = 0
        left     = 0
        right    = 0
        found    = false
        lefts   = { }
        rights  = { }
        tops    = { }
        bottoms = { }
        for n in nextrecord, preamble do
            nofcells = nofcells + 1
        end
        local cells = { }
        for row in nextunset, head do
            local c = 0
            for cell in nextunset, getlist(row) do
                local list = getlist(cell)
                c = c + 1
                for bound in nextboundary, list do
                    local ornament = getdata(bound)
                    if ornament == verticalline then
                        -- this hack is is beyond ugly as we omit and span
                        c = c + 1
                        break
                    elseif ornament == leftornament then
                        if c == 1 then
                            local w = getwidth(cell)
                            if w > left then
                                left = w
                            end
                            setwidth(cell,0)
                            cells[c+1] = true
                            cells[c] = true
                            found = true
                            lefts[#lefts+1] = cell
                        end
                    elseif ornament == rightornament then
                        if c == nofcells then
                            local w = getwidth(cell)
                            if w > right then
                                right = w
                            end
                            setwidth(cell,0)
                            cells[c-1] = true
                            cells[c] = true
                            found = true
                            rights[#rights+1] = cell
                        end
                    elseif ornament == topornament then
                        setheight(row,0)
                        setdepth(row,0)
                        found = true
                        tops[#tops+1] = cell
                    elseif ornament == bottomornament then
                        setheight(row,0)
                        setdepth(row,0)
                        found = true
                        bottoms[#bottoms+1] = cell
                    end
                end
            end
        end
        if next(cells) then
            local c = 0
            for n in nextrecord, preamble do
                c = c + 1
                if cells[c] then
                    setwidth(n)
                end
            end
        end
    end

    local function second_pass(box)
        if found then
            local head = getlist(nuts.getbox(box))
            local leftmargin   = texgetdimen("d_math_matrix_margin_l")
            local rightmargin  = texgetdimen("d_math_matrix_margin_r")
            local topmargin    = texgetdimen("d_math_matrix_margin_t")
            local bottommargin = texgetdimen("d_math_matrix_margin_b")
            for i=1,#lefts do
                setoffsets(lefts[i],-(left+leftmargin),0)
            end
            for i=1,#rights do
                setoffsets(rights[i], (rightmargin),0)
            end
            for i=1,#tops do
                setoffsets(tops[i],0,topmargin)
            end
            for i=1,#bottoms do
                setoffsets(bottoms[i],0,-bottommargin)
            end
            lefts   = false
            rights  = false
            tops    = false
            bottoms = false
            texsetdimen("global","d_math_matrix_max_left", left)
            texsetdimen("global","d_math_matrix_max_right",right)
        end
    end

    function nodes.handlers.mathmatrixornaments(head,where,attr,preamble)
        if where == "preroll" then
            local signal = getattr(attr,a_ornament)
            if signal == 0x10 then
                first_pass(head,attr,preamble)
            end
     -- elseif where == "wrapup" then
     --     local signal = getattr(attr,a_ornament)
     --     if signal == 0x10 then
     --         second_pass(head,attr,preamble)
     --     end
        end
    end

    interfaces.implement {
        name      = "shiftmatrixornaments",
        actions   = second_pass,
        arguments = "integer",
    }

    local enabled = false

    interfaces.implement {
        name      = "enablematrixalign",
     -- onlyonce  = true,
        public    = true,
        protected = true,
        actions   = function()
            if not enabled then
                nodes.tasks.enableaction("alignments", "nodes.handlers.fixmathalign")
                enabled = true
            end
        end,
    }

    local enabled = false

    interfaces.implement {
        name      = "enablematrixornaments",
     -- onlyonce  = true,
        public    = true,
        protected = true,
        actions   = function()
            if not enabled then
                nodes.tasks.enableaction("alignments", "nodes.handlers.mathmatrixornaments")
                enabled = true
            end
        end,
    }

end

local report = logs.reporter("alignment","preamble")
local trace    trackers.register("alignments.showstates",function(v) trace = v end)

function nodes.handlers.showpreamble(head,where,attr,preamble)
    if trace then
        local c = 0
        for n, id in nextnode, preamble do
            if id == unset_code or id == alignrecord_code then
                c = c + 1
                report("stage %a, cell %i, width %p",where,c,getwidth(n))
            elseif id == glue_code then
                report("stage %a, tabskip %s",where,node.direct.gluetostring(n))
            else
                report("stage %a, node %a",where,nodecodes[id])
            end
        end
    end
end