OSDN Git Service

target release date: 2022-12-13
[luatex-ja/luatexja.git] / src / ltj-ruby.lua
1 --
2 -- ltj-ruby.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.ruby',
6   date = '2022-08-29',
7   description = 'Ruby annotation',
8 })
9 luatexja.ruby = {}
10 luatexja.load_module 'stack';     local ltjs = luatexja.stack
11 luatexja.load_module 'base';      local ltjb = luatexja.base
12
13 local to_node =  node.direct.tonode
14 local to_direct =  node.direct.todirect
15
16 local getfield =  node.direct.getfield
17 local getid =  node.direct.getid
18 local getfont =  node.direct.getfont
19 local getlist =  node.direct.getlist
20 local getchar =  node.direct.getchar
21 local getsubtype =  node.direct.getsubtype
22 local getkern = node.direct.getkern
23 local getwidth =  node.direct.getwidth
24 local getheight = node.direct.getheight
25 local getdepth = node.direct.getdepth
26 local getwhd = node.direct.getwhd
27 local getvalue = node.direct.getdata
28 local setfield =  node.direct.setfield
29 local setglue = node.direct.setglue
30 local setkern = node.direct.setkern
31 local setnext = node.direct.setnext
32 local setshift = node.direct.setshift
33 local setwidth = node.direct.setwidth
34 local setheight = node.direct.setheight
35 local setdepth = node.direct.setdepth
36 local setwhd = node.direct.setwhd
37 local setlist = node.direct.setlist
38 local setvalue = node.direct.setdata
39
40 local node_new = node.direct.new
41 local node_remove = node.direct.remove
42 local node_next =  node.direct.getnext
43 local node_copy, node_tail = node.direct.copy, node.direct.tail
44 local node_free = node.direct.flush_node or node.direct.free
45 local get_attr, set_attr = node.direct.get_attribute, node.direct.set_attribute
46 local insert_before, insert_after = node.direct.insert_before, node.direct.insert_after
47 local hpack = node.direct.hpack
48
49 local id_hlist  = node.id 'hlist'
50 local id_vlist  = node.id 'vlist'
51 local id_rule   = node.id 'rule'
52 local id_whatsit= node.id 'whatsit'
53 local id_glue   = node.id 'glue'
54 local id_kern   = node.id 'kern'
55 local id_penalty= node.id 'penalty'
56 local sid_user  = node.subtype 'user_defined'
57 local ltjs_get_stack_table = luatexja.stack.get_stack_table
58 local id_pbox_w = 258 -- cluster which consists of a whatsit
59
60 local attr_icflag = luatexbase.attributes['ltj@icflag']
61 -- ルビ処理用の attribute は他のやつの流用なので注意!
62 -- 進入許容量 (sp)
63 local attr_ruby_id = luatexbase.attributes['ltj@kcat4'] -- uniq id
64 local attr_ruby = luatexbase.attributes['ltj@rubyattr']
65 -- ルビ内部処理用,以下のようにノードによって使われ方が異なる
66 -- * (whatsit) では JAglue 処理時に,
67 --     「2つ前のクラスタもルビ」 ==> そのルビクラスタの id
68 --   otherwise ==> unset
69 -- * (whatsit).value node ではルビ全角の値(sp単位)
70 -- * 行分割で whatsit の前後に並ぶノードでは,「何番目のルビ関連ノード」か
71 -- * (whatsit).value に続く整形済み vbox たちでは post_intrusion の値
72 local attr_ruby_post_jfmgk = luatexbase.attributes['ltj@kcat3']
73 -- JAglue 処理時に,2つ前のクラスタもルビであれば,そのルビが直後の和文処理グルーへ
74 -- 正の進入をしたか否か(した:1,しなかった:0)
75 local cat_lp = luatexbase.catcodetables['latex-package']
76
77 local round, floor = tex.round, math.floor
78 local min, max = math.min, math.max
79
80 luatexja.userid_table.RUBY_PRE = luatexbase.newuserwhatsitid('ruby_pre',  'luatexja')
81 luatexja.userid_table.RUBY_POST = luatexbase.newuserwhatsitid('ruby_post',  'luatexja')
82 local RUBY_PRE  = luatexja.userid_table.RUBY_PRE
83 local RUBY_POST = luatexja.userid_table.RUBY_POST
84 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
85
86 ----------------------------------------------------------------
87 -- TeX interface 0
88 ----------------------------------------------------------------
89 do
90    local getbox = node.direct.getbox
91    function luatexja.ruby.cpbox() return node_copy(getbox(0)) end
92 end
93
94 ----------------------------------------------------------------
95 -- 補助関数群 1
96 ----------------------------------------------------------------
97
98 local function gauss(coef)
99    -- #coef 式,#coef 変数の連立1次方程式系を掃きだし法で解く.
100    local deg = #coef
101    for i = 1, deg do
102       if coef[i][i]==0 then
103          for j = i+1, deg do
104             if coef[j][i]~=0 then
105                coef[i], coef[j] = coef[j], coef[i]; break
106             end
107          end
108       end
109       for j = 1,deg do
110          local d = coef[i][i];
111          if j~=i then
112             local e = coef[j][i]
113             for k = 1, deg+1 do coef[j][k] = coef[j][k] - e*coef[i][k]/d end
114          else
115             for k = 1, deg+1 do coef[i][k] = coef[i][k]/d end
116          end
117       end
118    end
119 end
120
121 local function solve_1(coef)
122    local a, b, c = coef[1][4], coef[2][4], coef[3][4]
123    coef[1][4], coef[2][4], coef[3][4] = c-b, a+b-c, c-a
124    return coef
125 end
126
127 local function solve_2(coef)
128    local a, b, c, d, e = coef[1][6], coef[2][6], coef[3][6], coef[4][6], coef[5][6]
129    coef[1][6], coef[2][6], coef[3][6], coef[4][6], coef[5][6]
130       = e-c, a+c-e, e-a-d, b+d-e, e-b
131    return coef
132 end
133
134
135 -- 実行回数 + ルビ中身 から uniq_id を作る関数
136 luatexja.ruby.old_break_info = {} -- public, 前 run 時の分割情報
137 local old_break_info = luatexja.ruby.old_break_info
138 local cache_handle
139 function luatexja.ruby.read_old_break_info()
140    if  tex.jobname then
141       local fname = tex.jobname .. '.ltjruby'
142       local real_file = kpse.find_file(fname)
143       if real_file then dofile(real_file) end
144       cache_handle = io.open(fname, 'w')
145       if cache_handle then
146          cache_handle:write('local lrob=luatexja.ruby.old_break_info\n')
147       end
148    end
149 end
150 local make_uniq_id
151 do
152    local exec_count = 0
153    make_uniq_id = function (w)
154       exec_count = exec_count + 1
155       return exec_count
156    end
157 end
158
159 -- concatenation of boxes: reusing nodes
160 -- ルビ組版が行われている段落/hboxでの設定が使われる.
161 -- ルビ文字を格納しているボックスでの設定ではない!
162 local function get_attr_icflag(p)
163     return (get_attr(p, attr_icflag) or 0) % PROCESSED_BEGIN_FLAG
164 end
165 local concat
166 do
167    local node_prev = node.direct.getprev
168    function concat(f, b)
169       if f then
170          if b then
171             local h, nh = getlist(f), getlist(b)
172             if getid(nh)==id_whatsit and getsubtype(nh)==sid_user then
173                nh=node_next(nh); node_free(node_prev(nh))
174             end
175             set_attr(nh, attr_icflag,
176               get_attr_icflag(nh) + PROCESSED_BEGIN_FLAG)
177             setnext(node_tail(h), nh)
178             setlist(f, nil); node_free(f)
179             setlist(b, nil); node_free(b)
180             local g = luatexja.jfmglue.main(h,false)
181             return hpack(g)
182          else
183             return f
184          end
185       elseif b then
186          return b
187       else
188          local h = node_new(id_hlist, 0)
189          setwhd(h, 0, 0, 0)
190          setfield(h, 'glue_set', 0)
191          setfield(h, 'glue_order', 0)
192          setlist(h, nil)
193          return h
194       end
195    end
196 end
197
198 local function expand_3bits(num)
199    local t = {}; local a = num
200    for i = 1, 10 do t[i], a = a%8, a//8 end
201    return t
202 end
203 ----------------------------------------------------------------
204 -- 補助関数群 2
205 ----------------------------------------------------------------
206
207 -- box の中身のノードは再利用される
208 local enlarge
209 do
210    local FROM_JFM       = luatexja.icflag_table.FROM_JFM
211    local PROCESSED      = luatexja.icflag_table.PROCESSED
212    local KANJI_SKIP     = luatexja.icflag_table.KANJI_SKIP
213    local KANJI_SKIP_JFM = luatexja.icflag_table.KANJI_SKIP_JFM
214    local XKANJI_SKIP    = luatexja.icflag_table.XKANJI_SKIP
215    local XKANJI_SKIP_JFM= luatexja.icflag_table.XKANJI_SKIP_JFM
216    enlarge = function (box, new_width, pre, middle, post, prenw, postnw)
217       -- pre, middle, post: 伸縮比率
218       -- prenw, postnw: 前後の自然長 (sp)
219       local h = getlist(box);
220       local _, hh, hd = getwhd(box)
221       local hx = h
222       while hx do
223          local hic = get_attr(hx, attr_icflag) or 0
224          if (hic == KANJI_SKIP) or (hic == KANJI_SKIP_JFM)
225             or (hic == XKANJI_SKIP) or (hic == XKANJI_SKIP_JFM)
226             or ((hic<=FROM_JFM+63) and (hic>=FROM_JFM)) then
227             -- この 5 種類の空白をのばす
228                if getid(hx) == id_kern then
229                   local k = node_new(id_glue, 0)
230                   setglue(k, getkern(hx), round(middle*65536), 0,
231                              2, 0)
232                   h = insert_after(h, hx, k);
233                   h = node_remove(h, hx); node_free(hx); hx = k
234                else -- glue
235                   setglue(hx, getwidth(hx), round(middle*65536), 0,
236                              2, 0)
237                end
238          end
239          hx = node_next(hx)
240       end
241       -- 先頭の空白を挿入
242       local k = node_new(id_glue);
243       setglue(k, prenw, round(pre*65536), 0, 2, 0)
244       h = insert_before(h, h, k);
245       -- 末尾の空白を挿入
246       local k = node_new(id_glue);
247       setglue(k, postnw, round(post*65536), 0, 2, 0)
248       insert_after(h, node_tail(h), k);
249       -- hpack
250       setlist(box, nil); node_free(box)
251       box = hpack(h, new_width, 'exactly')
252       setheight(box, hh); setdepth(box, hd)
253       return box
254    end
255 end
256
257
258 ----------------------------------------------------------------
259 -- TeX interface
260 ----------------------------------------------------------------
261
262 -- rtlr: ルビ部分のボックスたち r1, r2, ...
263 -- rtlp: 親文字 のボックスたち p1, p2, ...
264 local function texiface_low(rst, rtlr, rtlp)
265    local w = node_new(id_whatsit, sid_user)
266    setfield(w, 'type', 110); setfield(w, 'user_id', RUBY_PRE)
267    local wv = node_new(id_whatsit, sid_user)
268    setfield(wv, 'type', 108)
269    setvalue(w, to_node(wv)); setvalue(wv, rst); rst.count = #rtlr
270    setfield(wv, 'user_id', RUBY_PRE) -- dummy
271    local n = wv
272    for i = 1, #rtlr do
273       _, n = insert_after(wv, n, rtlr[i])
274       _, n = insert_after(wv, n, rtlp[i])
275    end
276    -- w.value: (whatsit) .. r1 .. p1 .. r2 .. p2
277    node.direct.write(w); return w,wv
278 end
279
280 -- rst: table
281 function luatexja.ruby.texiface(rst, rtlr, rtlp)
282    if #rtlr ~= #rtlp then
283       for i=1, #rtlr do node_free(rtlr[i]) end
284       for i=1, #rtlp do node_free(rtlp[i]) end
285       ltjb.package_error('luatexja-ruby',
286                          'Group count mismatch between the ruby and\n' ..
287                          'the body (' .. #rtlr .. ' != ' .. #rtlp .. ').',
288                          '')
289    else
290       local f, eps = true, rst.eps
291       for i = 1,#rtlr do
292          if getwidth(rtlr[i]) > getwidth(rtlp[i]) + eps then
293             f = false; break
294          end
295       end
296       if f then -- モノルビ * n
297          local r,p = {true}, {true}
298          for i = 1,#rtlr do
299             r[1] = rtlr[i]; p[1] = rtlp[i]; texiface_low(rst, r, p)
300          end
301       else
302          local w, wv = texiface_low(rst, rtlr, rtlp)
303          local id = make_uniq_id(w)
304          set_attr(wv, attr_ruby_id, id)
305       end
306    end
307 end
308
309 ----------------------------------------------------------------
310 -- pre_line_break
311 ----------------------------------------------------------------
312
313 -- r, p の中身のノードは再利用される
314 local function enlarge_parent(r, p, tmp_tbl, no_begin, no_end)
315    -- r: ルビ部分の格納された box,p: 同,親文字
316    local rwidth = getwidth(r)
317    local sumprot = rwidth - getwidth(p) -- >0
318    local pre_intrusion, post_intrusion
319    local ppre, pmid, ppost = tmp_tbl.ppre, tmp_tbl.pmid, tmp_tbl.ppost
320    local mapre, mapost = tmp_tbl.mapre, tmp_tbl.mapost
321    local intmode = (tmp_tbl.mode//4)%4
322    if no_begin then mapre  = mapre + tmp_tbl.before_jfmgk end
323    if no_end   then mapost = mapost + tmp_tbl.after_jfmgk end
324    if (tmp_tbl.mode%4 >=2) and (tmp_tbl.pre<0) and (tmp_tbl.post<0) then
325        mapre = min(mapre,mapost); mapost = mapre
326    end
327    if intmode == 0 then --  とりあえず組んでから決める
328       p = enlarge(p, rwidth, ppre, pmid, ppost, 0, 0)
329       pre_intrusion  = min(mapre, round(ppre*getfield(p, 'glue_set')*65536))
330       post_intrusion = min(mapost, round(ppost*getfield(p, 'glue_set')*65536))
331    elseif intmode == 1 then
332       pre_intrusion = min(mapre, sumprot);
333       post_intrusion = min(mapost, max(sumprot-pre_intrusion, 0))
334       p = enlarge(p, rwidth, ppre, pmid, ppost, pre_intrusion, post_intrusion)
335    elseif intmode == 2 then
336       post_intrusion = min(mapost, sumprot);
337       pre_intrusion = min(mapre, max(sumprot-post_intrusion, 0))
338       p = enlarge(p, rwidth, ppre, pmid, ppost, pre_intrusion, post_intrusion)
339    else --  intmode == 3
340       local n = min(mapre, mapost)*2
341       if n < sumprot then
342          pre_intrusion = n/2; post_intrusion = n/2
343       else
344          pre_intrusion = sumprot//2; post_intrusion = sumprot - pre_intrusion
345       end
346       p = enlarge(p, rwidth, ppre, pmid, ppost, pre_intrusion, post_intrusion)
347       pre_intrusion = min(mapre, pre_intrusion + round(ppre*getfield(p, 'glue_set')*65536))
348       post_intrusion = min(mapost, post_intrusion + round(ppost*getfield(p, 'glue_set')*65536))
349    end
350    setshift(r, -pre_intrusion)
351    local rwidth = rwidth - pre_intrusion - post_intrusion
352    setwidth(r, rwidth); setwidth(p, rwidth)
353    local ps = getlist(p)
354    setwidth(ps, getwidth(ps) - pre_intrusion)
355    local orig_post_intrusion, post_jfmgk = post_intrusion, false
356    if no_end then
357        if orig_post_intrusion > tmp_tbl.after_jfmgk then
358            orig_post_intrusion = orig_post_intrusion - tmp_tbl.after_jfmgk
359            post_jfmgk = (tmp_tbl.after_jfmgk > 0)
360        else
361            orig_post_intrusion = 0
362            post_jfmgk = (post_intrusion > 0)
363        end
364     end
365    return r, p, orig_post_intrusion, post_jfmgk
366 end
367
368 -- ルビボックスの生成(単一グループ)
369 -- returned value: <new box>, <ruby width>, <post_intrusion>
370 local max_margin
371 local function new_ruby_box(r, p, tmp_tbl, no_begin, no_end)
372    local post_intrusion, post_jfmgk = 0, false
373    local imode
374    local ppre, pmid, ppost = tmp_tbl.ppre, tmp_tbl.pmid, tmp_tbl.ppost
375    local mapre, mapost = tmp_tbl.mapre, tmp_tbl.mapost
376    local rpre, rmid, rpost, rsmash
377    imode = tmp_tbl.mode//0x100000; rsmash = (imode%2 ==1)
378    imode = imode//2; rpost = imode%8;
379    imode = (imode-rpost)/8;  rmid  = imode%8;
380    imode = (imode-rmid)/8;   rpre  = imode%8
381    if getwidth(r) > getwidth(p) then  -- change the width of p
382       r, p, post_intrusion, post_jfmgk = enlarge_parent(r, p, tmp_tbl, no_begin, no_end)
383    elseif getwidth(r) < getwidth(p) then -- change the width of r
384       r = enlarge(r, getwidth(p), rpre, rmid, rpost, 0, 0)
385       post_intrusion = 0
386       local need_repack = false
387       -- margin が大きくなりすぎた時の処理
388       if round(rpre*getfield(r, 'glue_set')*65536) > max_margin then
389          local ps = getlist(r); need_repack = true
390          setwidth(ps, max_margin)
391          setfield(ps, 'stretch', 1) -- 全く伸縮しないのも困る
392       end
393       if round(rpost*getfield(r, 'glue_set')*65536) > max_margin then
394          local ps = node_tail(getlist(r)); need_repack = true
395          setwidth(ps, max_margin)
396          setfield(ps, 'stretch', 1) -- 全く伸縮しないのも困る
397       end
398       if need_repack then
399          local rt = r
400          r = hpack(getlist(r), getwidth(r), 'exactly')
401          setlist(rt, nil); node_free(rt);
402       end
403    end
404    local a, k = node_new(id_rule), node_new(id_kern, 1)
405    setwhd(a, 0, 0, 0); setkern(k, tmp_tbl.intergap)
406    insert_after(r, r, a); insert_after(r, a, k);
407    insert_after(r, k, p); setnext(p, nil)
408    if tmp_tbl.rubydepth >= 0 then setdepth(r, tmp_tbl.rubydepth) end
409    if tmp_tbl.baseheight >= 0 then setheight(p, tmp_tbl.baseheight) end
410    a = node.direct.vpack(r); setshift(a, 0)
411    set_attr(a, attr_ruby, post_intrusion)
412    set_attr(a, attr_ruby_post_jfmgk, post_jfmgk and 1 or 0)
413    if rsmash or getheight(a)<getheight(p) then
414       local k = node_new(id_kern, 1)
415       setkern(k, -getheight(a)+getheight(p))
416       setlist(a, k); insert_before(r, r, k)
417       setheight(a, getheight(p))
418    end
419
420    return a, getwidth(r), post_intrusion, post_jfmgk
421 end
422
423
424 -- High-level routine in pre_linebreak_filter
425 local post_intrusion_backup, post_jfmgk_backup
426 local max_allow_pre, max_allow_post
427
428 local flush_list = node.direct.flush_list
429 -- 中付き熟語ルビ,cmp containers
430 -- 「文字の構成を考えた」やつはどうしよう
431 local function pre_low_cal_box(w, cmp)
432    local rb = {}
433    local pb = {}
434    local kf = {}
435    -- kf[i] : container 1--i からなる行末形
436    -- kf[cmp+i] : container i--cmp からなる行頭形
437    -- kf[2cmp+1] : 行中形
438    local wv = getvalue(w)
439    local rst = getvalue(wv)
440    local mdt -- nt*: node temp
441    local coef = {} -- 連立一次方程式の拡大係数行列
442    local rtb = expand_3bits(rst.stretch)
443
444    -- node list 展開・行末形の計算
445    local nt, nta, ntb = wv, nil, nil -- nt*: node temp
446    rst.ppre, rst.pmid, rst.ppost = rtb[6], rtb[5], rtb[4]
447    rst.mapre, rst.mapost = max_allow_pre, 0
448   for i = 1, cmp do
449       nt = node_next(nt); rb[i] = nt; nta = concat(nta, node_copy(nt))
450       nt = node_next(nt); pb[i] = nt; ntb = concat(ntb, node_copy(nt))
451       coef[i] = {}
452       for j = 1, 2*i do coef[i][j] = 1 end
453       for j = 2*i+1, 2*cmp+1 do coef[i][j] = 0 end
454       kf[i], coef[i][2*cmp+2]
455          = new_ruby_box(node_copy(nta), node_copy(ntb), rst, true, false)
456    end
457    node_free(nta); node_free(ntb)
458
459    -- 行頭形の計算
460    local nta, ntb = nil, nil
461    rst.ppre, rst.pmid, rst.ppost = rtb[9], rtb[8], rtb[7]
462    rst.mapre, rst.mapost = 0, max_allow_post
463    for i = cmp,1,-1 do
464       coef[cmp+i] = {}
465       for j = 1, 2*i-1 do coef[cmp+i][j] = 0 end
466       for j = 2*i, 2*cmp+1 do coef[cmp+i][j] = 1 end
467       nta = concat(node_copy(rb[i]), nta); ntb = concat(node_copy(pb[i]), ntb)
468       kf[cmp+i], coef[cmp+i][2*cmp+2]
469          = new_ruby_box(node_copy(nta), node_copy(ntb), rst, false, true)
470    end
471
472    -- ここで,nta, ntb には全 container を連結した box が入っているので
473    -- それを使って行中形を計算する.
474    coef[2*cmp+1] = {}
475    for j = 1, 2*cmp+1 do coef[2*cmp+1][j] = 1 end
476    rst.ppre, rst.pmid, rst.ppost = rtb[3], rtb[2], rtb[1]
477    rst.mapre, rst.mapost = max_allow_pre, max_allow_post
478    kf[2*cmp+1], coef[2*cmp+1][2*cmp+2], post_intrusion_backup, post_jfmgk_backup
479       = new_ruby_box(nta, ntb, rst, true, true)
480
481    -- w.value の node list 更新.
482    local nt = wv
483    flush_list(node_next(wv))
484    for i = 1, 2*cmp+1 do setnext(nt, kf[i]); nt = kf[i]  end
485
486    if cmp==1 then     solve_1(coef)
487    elseif cmp==2 then solve_2(coef)
488    else
489       gauss(coef) -- 掃きだし法で連立方程式形 coef を解く
490    end
491    return coef
492 end
493
494 local first_whatsit
495 do
496    local traverse_id = node.direct.traverse_id
497    function first_whatsit(n) -- n 以後で最初の whatsit
498       for h in traverse_id(id_whatsit, n) do
499          return h
500       end
501       return nil
502    end
503 end
504
505 local next_cluster_array = {}
506 -- ノード追加
507 local function pre_low_app_node(head, w, cmp, coef, ht, dp)
508    -- メインの node list 更新
509    local nt = node_new(id_glue)
510    setglue(nt, coef[1][2*cmp+2], 0, 0, 0, 0)
511    set_attr(nt, attr_ruby, 1); set_attr(w, attr_ruby, 2)
512    head = insert_before(head, w, nt)
513    nt = w
514    for i = 1, cmp do
515       -- rule
516       local nta = node_new(id_rule, 0);
517       setwhd(nta, coef[i*2][2*cmp+2], ht, dp)
518       insert_after(head, nt, nta)
519       set_attr(nta, attr_ruby, 2*i+1)
520       -- glue
521       if i~=cmp or not next_cluster_array[w] then
522          nt = node_new(id_glue); insert_after(head, nta, nt)
523       else
524          nt = next_cluster_array[w]
525       end
526       setglue(nt, coef[i*2+1][2*cmp+2], 0, 0, 0, 0)
527       set_attr(nt, attr_ruby, 2*i+2)
528    end
529    tex.setattribute('global', attr_ruby, -0x7FFFFFFF)
530    setfield(w, 'user_id', RUBY_POST)
531    next_cluster_array[w]=nil
532    return head, first_whatsit(node_next(nt))
533 end
534
535 local function pre_high(ahead)
536    if not ahead then return ahead end
537    local head = to_direct(ahead)
538    post_intrusion_backup, post_jfmgk_backup = 0, false
539    local n = first_whatsit(head)
540    while n do
541       if getsubtype(n) == sid_user and getfield(n, 'user_id') == RUBY_PRE then
542          local nv = getvalue(n)
543          local rst = getvalue(nv)
544          max_allow_pre = rst.pre or 0
545          local atr = get_attr(n, attr_ruby) or 0
546          if max_allow_pre < 0 then
547              -- 直前のルビで intrusion がおこる可能性あり.
548              -- 前 run のデータが残っていればそれを使用,
549              -- そうでなければ行中形のデータを利用する
550              local op = (atr>0) and (old_break_info[atr] or post_intrusion_backup) or 0
551              max_allow_pre = max(0, -max_allow_pre - op)
552          end
553          if rst.exclude_pre_from_prev_ruby  and atr>0 and old_break_info[-atr]
554            and (old_break_info[-atr]>0 or post_jfmgk_backup) then
555             -- 「直前のルビが JFM グルーに進入→現在のルビの前文字進入はなし」という状況
556             max_allow_pre = 0; rst.exclude_pre_from_prev_ruby=false
557          end
558          if rst.exclude_pre_jfmgk_from_prev_ruby
559             and atr>0 and ((old_break_info[atr]  or post_intrusion_backup) > 0) then
560             -- 「直前のルビが文字に進入→現在のルビの和文処理グルーへの進入はなし」という状況
561             rst.before_jfmgk = 0
562          end
563          post_intrusion_backup, post_jfmgk_backup = 0, false
564          max_allow_post = rst.post or 0
565          max_margin = rst.maxmargin or 0
566          local coef = pre_low_cal_box(n, rst.count)
567          local s = node_tail(nv) --ルビ文字
568          head, n = pre_low_app_node(
569             head, n, rst.count, coef, getheight(s), getdepth(s)
570          )
571       else
572          n = first_whatsit(node_next(n))
573       end
574    end
575    return to_node(head)
576 end
577 luatexbase.add_to_callback('pre_linebreak_filter', pre_high, 'ltj.ruby.pre', 100)
578 luatexbase.add_to_callback('hpack_filter', pre_high, 'ltj.ruby.pre', 100)
579
580 ----------------------------------------------------------------
581 -- post_line_break
582 ----------------------------------------------------------------
583 local post_lown
584 do
585    local function write_aux(wv, num, bool)
586       local id = get_attr(wv, attr_ruby_id) or 0
587       if id>0 and cache_handle then
588          cache_handle:write(
589             'lrob[' .. tostring(id) .. ']=' .. num .. '\nlrob[' .. tostring(-id) .. ']=' .. tostring(bool) .. '\n')
590       end
591    end
592
593    post_lown = function (rs, rw, cmp, ch)
594       -- ch: the head of `current' hlist
595       if #rs ==0 or not rw then return ch end
596       local hn = get_attr(rs[1], attr_ruby)
597       local fn = get_attr(rs[#rs], attr_ruby)
598       local wv = getvalue(rw)
599       if hn==1 then
600          if fn==2*cmp+2 then
601             local hn = node_tail(wv)
602             node_remove(wv, hn)
603             insert_after(ch, rs[1], hn)
604             set_attr(hn, attr_icflag,  PROCESSED)
605             write_aux(wv, get_attr(hn, attr_ruby), get_attr(hn, attr_ruby_post_jfmgk))-- 行中形
606          else
607             local deg, hn = (fn-1)/2, wv
608             for i = 1, deg do hn = node_next(hn) end;
609             node_remove(wv, hn)
610             setnext(hn, nil)
611             insert_after(ch, rs[1], hn)
612             set_attr(hn, attr_icflag,  PROCESSED)
613             write_aux(wv, get_attr(hn, attr_ruby), get_attr(hn, attr_ruby_post_jfmgk))
614          end
615       else
616          local deg, hn = max((hn-1)/2,2), wv
617          for i = 1, cmp+deg-1 do hn = node_next(hn) end
618          -- -1 is needed except the case hn = 3,
619          --   because a ending-line form is removed already from the list
620          node_remove(wv, hn); setnext(hn, nil)
621          insert_after(ch, rs[1], hn)
622          set_attr(hn, attr_icflag,  PROCESSED)
623          if fn == 2*cmp-1 then
624             write_aux(wv, get_attr(hn, attr_ruby), get_attr(hn, attr_ruby_post_jfmgk))
625          end
626       end
627       for i = 1,#rs do
628          local ri = rs[i]
629          ch = node_remove(ch, ri); node_free(ri);
630       end
631       -- cleanup
632       if fn >= 2*cmp+1 then node_free(rw) end
633       return ch;
634    end
635 end
636
637 local traverse_id = node.direct.traverse_id
638 local function post_high_break(head)
639    local rs = {}   -- rs: sequence of ruby_nodes,
640    local rw = nil  -- rw: main whatsit
641    local cmp = -2  -- dummy
642    for h in traverse_id(id_hlist, to_direct(head)) do
643       for i = 1, #rs do rs[i] = nil end
644       local ha = getlist(h)
645       while ha do
646          local hai = getid(ha)
647          local i = ((hai == id_glue and getsubtype(ha)==0)
648                        or (hai == id_rule and getsubtype(ha)==0)
649                        or (hai == id_whatsit and getsubtype(ha)==sid_user
650                               and getfield(ha, 'user_id', RUBY_POST)))
651             and get_attr(ha, attr_ruby) or 0
652          if i==0 then
653             ha = node_next(ha)
654          elseif i==1 then
655             setlist(h, post_lown(rs, rw, cmp, getlist(h)))
656             for i = 2, #rs do rs[i] = nil end -- rs[1] is set by the next statement
657             rs[1], rw = ha, nil; ha = node_next(ha)
658          elseif i==2 then
659             rw = ha
660             cmp = getvalue(getvalue(rw)).count
661             local hb, hc =  node_remove(getlist(h), rw)
662             setlist(h, hb); ha = hc
663          else -- i>=3
664             rs[#rs+1] = ha; ha = node_next(ha)
665          end
666       end
667       setlist(h, post_lown(rs, rw, cmp, getlist(h)))
668    end
669    return head
670 end
671
672 local function post_high_hbox(ahead)
673    local ha = to_direct(ahead); local head = ha
674    local rs = {};  -- rs: sequence of ruby_nodes,
675    local rw = nil; -- rw: main whatsit
676    local cmp
677    while ha do
678       local hai = getid(ha)
679       local i = ((hai == id_glue and getsubtype(ha)==0)
680                     or (hai == id_rule and getsubtype(ha)==0)
681                     or (hai == id_whatsit and getsubtype(ha)==sid_user
682                            and getfield(ha, 'user_id', RUBY_POST)))
683          and get_attr(ha, attr_ruby) or 0
684       if i==0 then
685          ha = node_next(ha)
686       elseif i==1 then
687          head = post_lown(rs, rw, cmp, head)
688          for i = 2, #rs do rs[i] = nil end -- rs[1] is set by the next statement
689          rs[1], rw = ha, nil; ha = node_next(ha)
690       elseif i==2 then
691          rw = ha
692          cmp = getvalue(getvalue(rw)).count
693          head, ha = node_remove(head, rw)
694       else -- i >= 3
695          rs[#rs+1] = ha; ha = node_next(ha)
696       end
697    end
698    return to_node(post_lown(rs, rw, cmp, head))
699 end
700
701 luatexbase.add_to_callback('post_linebreak_filter', post_high_break, 'ltj.ruby.post_break', 100)
702 luatexbase.add_to_callback('hpack_filter', post_high_hbox, 'ltj.ruby.post_hbox', 101)
703
704
705 ----------------------------------------------------------------
706 -- for jfmglue callbacks
707 ----------------------------------------------------------------
708 do
709    local RIPRE  = luatexja.stack_table_index.RIPRE
710    local RIPOST = luatexja.stack_table_index.RIPOST
711    local abs = math.abs
712    local function whatsit_callback(Np, lp, Nq)
713       if Np.nuc then return Np
714       elseif  getfield(lp, 'user_id') == RUBY_PRE then
715          Np.first, Np.nuc, Np.last = lp, lp, lp
716          local lpv = getvalue(lp)
717          local rst = getvalue(lpv)
718          local x = node_next(node_next(lpv))
719          Np.last_char = luatexja.jfmglue.check_box_high(Np, getlist(x), nil)
720          if Nq.id ~=id_pbox_w then
721             if type(Nq.char)=='number' then
722                -- Nq is a JAchar
723                if rst.pre < 0 then -- auto
724                   local s = ltjs.table_current_stack[RIPRE + Nq.char] or 0
725                   local p = round(abs(s)*rst.rubyzw)
726                   if rst.mode%2 == 0 then -- intrusion 無効
727                      p = 0
728                   end
729                   rst.pre = -p; rst.exclude_pre_from_prev_ruby = (s<0);
730                    rst.exclude_pre_jfmgk_from_prev_ruby = (ltjs.table_current_stack[RIPOST +Nq.char] or 0)<0;
731                end
732                if Nq.prev_ruby then
733                   set_attr(lp, attr_ruby, Nq.prev_ruby)
734                end
735             elseif rst.pre < 0 then -- auto
736                if Nq.char == 'parbdd' then
737                   local s = ltjs.table_current_stack[RIPRE - 1] or 0
738                   local p = round(abs(s)*rst.rubyzw)
739                   p = min(p, Nq.width)
740                   if rst.mode%2 == 0 then -- intrusion 無効
741                      p = 0
742                   end
743                   rst.pre = p; rst.exclude_pre_from_prev_ruby = (s<0);
744                   rst.exclude_pre_jfmgk_from_prev_ruby = (ltjs.table_current_stack[RIPOST -1] or 0)<0;
745                else
746                   rst.pre = 0
747                end
748             end
749          elseif rst.pre < 0 then -- auto
750             rst.pre = 0
751          end
752          return Np
753       else
754         return Np
755       end
756    end
757    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
758                               "luatexja.ruby.np_info", 1)
759 end
760
761 do
762    local FROM_JFM = luatexja.icflag_table.FROM_JFM
763    local KANJI_SKIP = luatexja.icflag_table.KANJI_SKIP
764    local function add_gk(t, index, p)
765       local ic = get_attr_icflag(p)
766       if ic and (ic>FROM_JFM) and (ic<KANJI_SKIP) then ic = FROM_JFM end
767       if t.intrude_jfmgk[ic] then
768           if getid(p)==id_kern then t[index] = t[index] + getkern(p)
769           else t[index] = t[index] + getwidth(p) end
770       end
771    end
772    local RIPOST = luatexja.stack_table_index.RIPOST
773    local abs = math.abs
774    local function whatsit_after_callback(s, Nq, Np, head)
775       if not s and  getfield(Nq.nuc, 'user_id') == RUBY_PRE then
776          if Np then
777             local last_glue = node_new(id_glue)
778             set_attr(last_glue, attr_icflag, 0)
779             insert_before(Nq.nuc, Np.first, last_glue)
780             Np.first = last_glue
781             next_cluster_array[Nq.nuc] = last_glue -- ルビ処理用のグルー
782          end
783          local nqnv = getvalue(Nq.nuc)
784          local rst = getvalue(nqnv)
785          if Nq.gk then
786             if type(Nq.gk)=="table" then
787                for _,v in ipairs(Nq.gk) do add_gk(rst, 'before_jfmgk', v) end
788             else add_gk(rst, 'before_jfmgk', Nq.gk) end
789          end
790          local x =  node_next(node_next(nqnv))
791          for i = 2, rst.count do x = node_next(node_next(x)) end
792          Nq.last_char = luatexja.jfmglue.check_box_high(Nq, getlist(x), nil)
793          luatexja.jfmglue.after_hlist(Nq)
794          if Np and Np.id ~=id_pbox_w and type(Np.char)=='number' then
795             -- Np is a JAchar
796             if rst.post < 0 then -- auto
797                local p = round(abs(ltjs.table_current_stack[RIPOST + Np.char] or 0)*rst.rubyzw)
798                if rst.mode%2 == 0 then -- intrusion 無効
799                   p = 0
800                end
801                rst.post = p
802             end
803             Np.prev_ruby = get_attr(getvalue(Nq.nuc), attr_ruby_id)
804             -- 前のクラスタがルビであったことのフラグ
805          else -- 直前が文字以外
806             local nqnv = getvalue(Nq.nuc)
807             local rst = getvalue(nqnv)
808             if rst.post < 0 then -- auto
809                rst.post = 0
810             end
811          end
812          return head
813       else
814          return s
815       end
816    end
817    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
818                               "luatexja.ruby.np_info_after", 1)
819    local function w (s, Nq, Np)
820       if not s and  getfield(Nq.nuc, 'user_id') == RUBY_PRE then
821          local rst = getvalue(getvalue(Nq.nuc))
822          if Np.gk then
823             if type(Np.gk)=="table" then
824                for _,v in ipairs(Np.gk) do add_gk(rst, 'after_jfmgk', v) end
825             else add_gk(rst, 'after_jfmgk', Np.gk) end
826          end
827       end
828    end
829    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_last_minute", w,
830                               "luatexja.ruby.np_info_last_minute", 1)
831 end