OSDN Git Service

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