OSDN Git Service

ltj-direction.lua: output when page_dir != dir_yoko.
[luatex-ja/luatexja.git] / src / ltj-jfmglue.lua
1 --
2 -- luatexja/ltj-jfmglue.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.jfmglue',
6   date = '2014/10/03',
7   description = 'Insertion process of JFM glues and kanjiskip',
8 })
9 module('luatexja.jfmglue', package.seeall)
10 local err, warn, info, log = luatexbase .errwarinf(_NAME)
11
12 luatexja.load_module('base');      local ltjb = luatexja.base
13 luatexja.load_module('stack');     local ltjs = luatexja.stack
14 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
15 luatexja.load_module('direction'); local ltjd = luatexja.direction
16 luatexja.load_module('setwidth');      local ltjw = luatexja.setwidth
17 local pairs = pairs
18
19 local Dnode = node.direct or node
20
21 local nullfunc = function(n) return n end
22 local to_node = (Dnode ~= node) and Dnode.tonode or nullfunc
23 local to_direct = (Dnode ~= node) and Dnode.todirect or nullfunc
24
25 local setfield = (Dnode ~= node) and Dnode.setfield or function(n, i, c) n[i] = c end
26 local getfield = (Dnode ~= node) and Dnode.getfield or function(n, i) return n[i] end
27 local getid = (Dnode ~= node) and Dnode.getid or function(n) return n.id end
28 local getfont = (Dnode ~= node) and Dnode.getfont or function(n) return n.font end
29 local getlist = (Dnode ~= node) and Dnode.getlist or function(n) return n.head end
30 local getchar = (Dnode ~= node) and Dnode.getchar or function(n) return n.char end
31 local getsubtype = (Dnode ~= node) and Dnode.getsubtype or function(n) return n.subtype end
32
33 local has_attr = Dnode.has_attribute
34 local set_attr = Dnode.set_attribute
35 local insert_before = Dnode.insert_before
36 local insert_after = Dnode.insert_after
37 local node_next = (Dnode ~= node) and Dnode.getnext or node.next
38 local round = tex.round
39 local ltjd_make_dir_whatsit = ltjd.make_dir_whatsit
40 local ltjf_font_metric_table = ltjf.font_metric_table
41 local ltjf_find_char_class = ltjf.find_char_class
42 local node_new = Dnode.new
43 local node_copy = Dnode.copy
44 local node_remove = Dnode.remove
45 local node_tail = Dnode.tail
46 local node_free = Dnode.free
47 local node_end_of_math = Dnode.end_of_math
48
49 local id_glyph = node.id('glyph')
50 local id_hlist = node.id('hlist')
51 local id_vlist = node.id('vlist')
52 local id_rule = node.id('rule')
53 local id_ins = node.id('ins')
54 local id_mark = node.id('mark')
55 local id_adjust = node.id('adjust')
56 local id_disc = node.id('disc')
57 local id_whatsit = node.id('whatsit')
58 local id_math = node.id('math')
59 local id_glue = node.id('glue')
60 local id_kern = node.id('kern')
61 local id_penalty = node.id('penalty')
62
63 local id_glue_spec = node.id('glue_spec')
64 local id_jglyph    = 512 -- Japanese character
65 local id_box_like  = 256 -- vbox, shifted hbox
66 local id_pbox      = 257 -- already processed nodes (by \unhbox)
67 local id_pbox_w    = 258 -- cluster which consists of a whatsit
68 local sid_user = node.subtype('user_defined')
69
70 local sid_start_link = node.subtype('pdf_start_link')
71 local sid_start_thread = node.subtype('pdf_start_thread')
72 local sid_end_link = node.subtype('pdf_end_link')
73 local sid_end_thread = node.subtype('pdf_end_thread')
74
75 local ITALIC       = luatexja.icflag_table.ITALIC
76 local PACKED       = luatexja.icflag_table.PACKED
77 local KINSOKU      = luatexja.icflag_table.KINSOKU
78 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
79 local PROCESSED    = luatexja.icflag_table.PROCESSED
80 local IC_PROCESSED = luatexja.icflag_table.IC_PROCESSED
81 local BOXBDD       = luatexja.icflag_table.BOXBDD
82 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
83 local kanji_skip
84 local xkanji_skip
85 local table_current_stack
86 local list_dir
87 local capsule_glyph
88 local tex_dir
89 local attr_ablshift
90 local set_np_xspc_jachar
91
92 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
93 local attr_dir = luatexbase.attributes['ltj@dir']
94 local attr_icflag = luatexbase.attributes['ltj@icflag']
95
96 local function get_attr_icflag(p)
97    return (has_attr(p, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG
98 end
99
100 -------------------- Helper functions
101
102 local function copy_attr(new, old)
103   -- 仕様が決まるまで off にしておく
104 end
105
106 -- This function is called only for acquiring `special' characters.
107 local function fast_find_char_class(c,m)
108    return m.chars[c] or 0
109 end
110
111 -- 文字クラスの決定
112 local slow_find_char_class
113 do
114    local start_time_measure = ltjb.start_time_measure
115    local stop_time_measure = ltjb.stop_time_measure
116    slow_find_char_class = function (c, m, oc)
117       local cls = ltjf_find_char_class(oc, m)
118       if oc~=c and cls==0 then
119          return ltjf_find_char_class(-c, m), oc
120       else
121          return cls, oc
122       end
123    end
124 end
125
126 local zero_glue = node_new(id_glue)
127 spec_zero_glue = to_node(node_new(id_glue_spec))
128   -- must be public, since mentioned from other sources
129 local spec_zero_glue = to_direct(spec_zero_glue)
130 setfield(spec_zero_glue, 'width', 0)
131 setfield(spec_zero_glue, 'stretch', 0)
132 setfield(spec_zero_glue, 'shrink', 0)
133 setfield(spec_zero_glue, 'stretch_order', 0)
134 setfield(spec_zero_glue, 'shrink_order', 0)
135 setfield(zero_glue, 'spec', spec_zero_glue)
136
137 local function skip_table_to_spec(n)
138    local g, st = node_new(id_glue_spec), ltjs.fast_get_stack_skip(n)
139    setfield(g, 'width', st.width)
140    setfield(g, 'stretch', st.stretch)
141    setfield(g, 'shrink', st.shrink)
142    setfield(g, 'stretch_order', st.stretch_order)
143    setfield(g, 'shrink_order', st.shrink_order)
144    return g
145 end
146
147
148 -- penalty 値の計算
149 local function add_penalty(p,e)
150    local pp = getfield(p, 'penalty')
151    if pp>=10000 then
152       if e<=-10000 then setfield(p, 'penalty', 0) end
153    elseif pp<=-10000 then
154       if e>=10000 then  setfield(p, 'penalty', 0) end
155    else
156       pp = pp + e
157       if pp>=10000 then      setfield(p, 'penalty', 10000)
158       elseif pp<=-10000 then setfield(p, 'penalty', -10000)
159       else                   setfield(p, 'penalty', pp) end
160    end
161 end
162
163 -- 「異なる JFM」の間の調整方法
164 diffmet_rule = math.two_paverage
165 function math.two_add(a,b) return a+b end
166 function math.two_average(a,b) return (a+b)*0.5 end
167 function math.two_paverage(a,b) return (a+b)/2 end
168 function math.two_pleft(a,b) return a end
169 function math.two_pright(a,b) return b end
170
171 local head -- the head of current list
172
173 local Np, Nq, Bp
174 local widow_Bp, widow_Np -- \jcharwidowpenalty 挿入位置管理用
175
176 local ihb_flag -- JFM グルー挿入抑止用 flag
177                -- on: \inhibitglue 指定時,hlist の周囲
178
179 -------------------- hlist 内の文字の検索
180
181 local first_char, last_char, find_first_char
182 do
183 local ltjd_glyph_from_packed = ltjd.glyph_from_packed
184 local function check_box(box_ptr, box_end)
185    local p = box_ptr; local found_visible_node = false
186    if not p then
187       find_first_char = false; last_char = nil
188       return true
189    end
190    while p and p~=box_end do
191       local pid = getid(p)
192       if pid==id_kern and getsubtype(p)==2 then
193          p = node_next(node_next(node_next(p))); pid = getid(p) -- p must be glyph_node
194        end
195       if pid==id_glyph then
196          repeat
197             if find_first_char then
198                first_char = p; find_first_char = false
199             end
200             last_char = p; found_visible_node = true; p=node_next(p)
201             if (not p) or p==box_end then
202                return found_visible_node
203             end
204          until getid(p)~=id_glyph
205          pid = getid(p) -- p must be non-nil
206       end
207       if pid==id_kern then
208          local pa = get_attr_icflag(p)
209          if pa==IC_PROCESSED then
210             -- do nothing
211          elseif getsubtype(p)==2 then
212             p = node_next(node_next(p));
213             -- Note that another node_next will be executed outside this if-statement.
214          else
215             found_visible_node = true
216             find_first_char = false; last_char = nil
217          end
218       elseif pid==id_hlist then
219          if PACKED == get_attr_icflag(p) then
220             local s = ltjd_glyph_from_packed(p)
221             if find_first_char then
222                first_char = s; find_first_char = false
223             end
224             last_char = s; found_visible_node = true
225          else
226             if getfield(p, 'shift')==0 then
227                if check_box(getlist(p), nil) then found_visible_node = true end
228             else
229                find_first_char = false; last_char = nil
230             end
231          end
232       elseif pid==id_math then
233          if find_first_char then
234             first_char = p; find_first_char = false
235          end
236          last_char = p; found_visible_node = true
237       elseif pid==id_rule and get_attr_icflag(p)==PACKED then 
238          -- do nothing
239       elseif not (pid==id_ins   or pid==id_mark
240                   or pid==id_adjust or pid==id_whatsit
241                   or pid==id_penalty) then
242          found_visible_node = true
243          find_first_char = false; last_char = nil
244       end
245       p = node_next(p)
246    end
247    return found_visible_node
248 end
249
250 function check_box_high(Nx, box_ptr, box_end)
251    first_char = nil;  last_char = nil;  find_first_char = true
252    if check_box(box_ptr, box_end) then
253       local first_char = first_char
254       if first_char then
255          if getid(first_char)==id_glyph then
256             if getfont(first_char) == (has_attr(first_char, attr_curjfnt) or -1) then
257                set_np_xspc_jachar(Nx, first_char)
258             else
259                set_np_xspc_alchar(Nx, getchar(first_char),first_char, 1)
260             end
261          else -- math_node
262             set_np_xspc_alchar(Nx, -1,first_char)
263          end
264       end
265    end
266    return last_char
267 end
268 end
269 -------------------- Np の計算と情報取得
270
271 luatexbase.create_callback("luatexja.jfmglue.whatsit_getinfo", "data",
272                            function (Np, lp, Nq)
273                               if Np.nuc then return Np
274                               else
275                                  return Np  -- your code
276                               end
277                            end)
278 luatexbase.create_callback("luatexja.jfmglue.whatsit_after", "data",
279                            function (stat, Nq, Np) return false end)
280
281 -- calc next Np
282 do
283
284 local traverse = Dnode.traverse
285 local function set_attr_icflag_processed(p)
286    if get_attr_icflag(p)<= ITALIC then
287       set_attr(p, attr_icflag, PROCESSED)
288    end
289 end
290
291 local function check_next_ickern(lp)
292    if lp and getid(lp) == id_kern and ITALIC == get_attr_icflag(lp) then
293       set_attr(lp, attr_icflag, IC_PROCESSED)
294       Np.last = lp; return node_next(lp)
295    else
296       Np.last = Np.nuc; return lp
297    end
298 end
299
300 local function calc_np_pbox(lp, last)
301    local first, lpa, nc = (not Np.first), KINSOKU, nil
302    Np.first = Np.first or lp; Np.id = id_pbox
303    set_attr(lp, attr_icflag, get_attr_icflag(lp));
304    while lp ~=last and (lpa>=PACKED) and (lpa<BOXBDD) do
305       if getid(lp)==id_hlist or getid(lp)==id_vlist then
306          head, lp, nc = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm pbox')
307          if first then Np.first = nc end
308       else
309          nc, lp = lp, node_next(lp)
310       end
311       first, lpa = false, (lp and has_attr(lp, attr_icflag) or 0)
312      -- get_attr_icflag() ではいけない!
313    end
314    Np.nuc = nc
315    return check_next_ickern(lp)
316 end
317
318 local ltjw_apply_ashift_math = ltjw.apply_ashift_math
319 local ltjw_apply_ashift_disc = ltjw.apply_ashift_disc
320 local min, max = math.min, math.max
321 local function calc_np_aux_glyph_common(lp)
322    Np.nuc = lp
323    Np.id = npi
324    if (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1)) then
325       Np.id = id_jglyph
326       set_np_xspc_jachar(Np, lp)
327       local npi, npf
328       lp, head, npi, npf = capsule_glyph(lp, Np.met, Np.class, head, tex_dir)
329       Np.first = (Np.first~=Np.nuc) and Np.first or npf or npi
330       Np.nuc = npi
331       return true, check_next_ickern(lp);
332    else
333       Np.id = id_glyph
334       set_np_xspc_alchar(Np, getchar(lp), lp, 1)
335       -- loop
336       local first_glyph, last_glyph = lp
337       set_attr(lp, attr_icflag, PROCESSED); Np.last = lp
338       local y_adjust = has_attr(lp,attr_ablshift) or 0
339       local node_depth = getfield(lp, 'depth') + min(y_adjust, 0)
340       local adj_depth = (y_adjust>0) and (getfield(lp, 'depth') + y_adjust) or 0
341       setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
342       lp = node_next(lp)
343       for lp in traverse(lp) do
344          local lai = get_attr_icflag(lp)
345          if lp==last or  lai>=PACKED then
346             break
347          else
348             local lid = getid(lp)
349             if lid==id_glyph and not (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1)) then
350                -- 欧文文字
351                last_glyph = lp; set_attr(lp, attr_icflag, PROCESSED); Np.last = lp
352                y_adjust = has_attr(lp,attr_ablshift) or 0
353                node_depth = max(getfield(lp, 'depth') + min(y_adjust, 0), node_depth)
354                adj_depth = (y_adjust>0) and max(getfield(lp, 'depth') + y_adjust, adj_depth) or adj_depth
355                setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
356             elseif lid==id_kern then
357                local ls = getsubtype(lp)
358                if ls==2 then -- アクセント用の kern
359                   set_attr(lp, attr_icflag, PROCESSED)
360                   lp = node_next(lp) -- lp: アクセント本体
361                   setfield(lp, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lp,attr_ablshift) or 0))
362                   lp = node_next(node_next(lp))
363                elseif ls==0 or (ls==1 and lai==ITALIC) then
364                   Np.last = lp
365                else
366                   break
367                end
368             else
369                break
370             end
371          end
372          -- イタリック補正はあんまり使わない,と考えてループ継続条件に入れない.
373       end
374       local r
375       if adj_depth>node_depth then
376             r = node_new(id_rule)
377             setfield(r, 'width', 0); setfield(r, 'height', 0)
378             setfield(r, 'depth',adj_depth); setfield(r, 'dir', tex_dir)
379             set_attr(r, attr_icflag, PROCESSED)
380       end
381       if last_glyph then
382          Np.last_char = last_glyph
383          if r then insert_after(head, first_glyph, r) end
384       else
385          local npn = Np.nuc
386          Np.last_char = npn
387          if r then
388             local nf, nc = getfont(npn), getchar(npn)
389             local ct = (font.getfont(nf) or font.fonts[nf] ).characters[nc]
390             if (ct.left_protruding or 0) == 0 then
391                head = insert_before(head, npn, r)
392                Np.first = (Np.first==npn) and r or npn
393             elseif (ct.right_protruding or 0) == 0 then
394                insert_after(head, npn, r); Np.last, lp = r, r
395             else
396                ltjb.package_warning_no_line(
397                   'luatexja',
398                   'Check depth of glyph node ' .. tostring(npn) .. '(font=' .. nf
399                      .. ', char=' .. nc .. '),    because its \\lpcode is ' .. tostring(ct.left_protruding)
400                      .. ' and its \\rpcode is ' .. tostring(ct.right_protruding)
401                ); node_free(r)
402             end
403          end
404       end
405       return true, lp
406    end
407 end
408 local calc_np_auxtable = {
409    [id_glyph] = function (lp)
410       Np.first= (Np.first or lp)
411       return calc_np_aux_glyph_common(lp)
412    end,
413    [id_hlist] = function(lp)
414       local op, flag
415       head, lp, op, flag = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm hlist')
416       set_attr(op, attr_icflag, PROCESSED)
417       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
418       if (flag or getfield(op, 'shift')~=0) then
419          Np.id = id_box_like
420       else
421          Np.id = id_hlist
422          Np.last_char = check_box_high(Np, getlist(op), nil)
423       end
424       return true, lp
425    end,
426    [id_vlist] =  function(lp)
427       local op
428       head, lp, op = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm:' .. getid(lp))
429       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
430       Np.id = id_box_like;
431       return true, lp
432    end,
433    box_like = function(lp)
434       Np.first = Np.first or lp; Np.last = lp; Np.nuc = lp;
435       Np.id = id_box_like;
436       return true, node_next(lp)
437    end,
438    skip = function(lp)
439       set_attr(lp, attr_icflag, PROCESSED)
440       return false, node_next(lp)
441    end,
442    [id_whatsit] = function(lp)
443       local lps = getsubtype(lp)
444       if lps==sid_user then
445          if getfield(lp, 'user_id')==luatexja.userid_table.IHB then
446             local lq = node_next(lp);
447             head = node_remove(head, lp); node_free(lp); ihb_flag = true
448             return false, lq;
449          else
450             set_attr(lp, attr_icflag, PROCESSED)
451             luatexbase.call_callback("luatexja.jfmglue.whatsit_getinfo",
452                                      Np, lp, Nq)
453             if Np.nuc then
454                Np.id = id_pbox_w; Np.first = Np.nuc; Np.last = Np.nuc;
455                return true, node_next(lp)
456             else
457                return false, node_next(lp)
458             end
459          end
460       else
461          -- we do special treatment for these whatsit nodes.
462          if lps == sid_start_link or lps == sid_start_thread then
463             Np.first = lp
464          elseif lps == sid_end_link or lps == sid_end_thread then
465             Np.first, Nq.last = nil, lp;
466          end
467          set_attr(lp, attr_icflag, PROCESSED)
468          return false, node_next(lp)
469       end
470    end,
471    [id_math] = function(lp)
472       Np.first, Np.nuc = (Np.first or lp), lp;
473       set_attr(lp, attr_icflag, PROCESSED)
474       set_np_xspc_alchar(Np, -1, lp)
475       local end_math  = node_end_of_math(lp)
476       ltjw_apply_ashift_math(lp, end_math, attr_ablshift)
477       set_attr(end_math, attr_icflag, PROCESSED)
478       Np.last, Np.id = end_math, id_math;
479       return true, node_next(end_math);
480    end,
481    [id_glue] = function(lp)
482       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
483       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
484       return true, node_next(lp)
485    end,
486    [id_disc] = function(lp)
487       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
488       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
489       ltjw_apply_ashift_disc(lp, (list_dir==dir_tate), tex_dir)
490       return true, node_next(lp)
491    end,
492    [id_kern] = function(lp)
493       Np.first = Np.first or lp
494       if getsubtype(lp)==2 then
495          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
496          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
497          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
498          set_attr(lp, attr_icflag, PROCESSED);
499          return calc_np_aux_glyph_common(lp)
500       else
501          Np.id = id_kern; set_attr(lp, attr_icflag, PROCESSED)
502          Np.last = lp; return true, node_next(lp)
503       end
504    end,
505    [id_penalty] = function(lp)
506       Bp[#Bp+1] = lp; set_attr(lp, attr_icflag, PROCESSED)
507       return false, node_next(lp)
508    end,
509 }
510 calc_np_auxtable[id_rule]   = calc_np_auxtable.box_like
511 calc_np_auxtable[13]        = calc_np_auxtable.box_like
512 calc_np_auxtable[id_ins]    = calc_np_auxtable.skip
513 calc_np_auxtable[id_mark]   = calc_np_auxtable.skip
514 calc_np_auxtable[id_adjust] = calc_np_auxtable.skip
515
516 function calc_np(lp, last)
517    local k
518    -- We assume lp = node_next(Np.last)
519    Np, Nq, ihb_flag = Nq, Np, nil
520    -- We clear `predefined' entries of Np before pairs() loop,
521    -- because using only pairs() loop is slower.
522    Np.post, Np.pre, Np.xspc = nil, nil, nil
523    Np.first, Np.id, Np.last, Np.met, Np.class= nil, nil, nil, nil
524    Np.auto_kspc, Np.auto_xspc, Np.char, Np.nuc = nil, nil, nil, nil
525    for k in pairs(Np) do Np[k] = nil end
526
527    for k = 1,#Bp do Bp[k] = nil end
528    while lp ~= last  do
529       local lpa = has_attr(lp, attr_icflag) or 0
530        -- unbox 由来ノードの検出
531       if lpa>=PACKED then
532          if lpa%PROCESSED_BEGIN_FLAG == BOXBDD then
533             local lq = node_next(lp)
534             head = node_remove(head, lp); node_free(lp); lp = lq
535          else
536             return calc_np_pbox(lp, last)
537          end -- id_pbox
538       else
539          k, lp = calc_np_auxtable[getid(lp)](lp)
540          if k then return lp end
541       end
542    end
543    Np = nil; return lp
544 end
545
546 end
547 local calc_np = calc_np
548
549 -- extract informations from Np
550 -- We think that "Np is a Japanese character" if Np.met~=nil,
551 --            "Np is an alphabetic character" if Np.pre~=nil,
552 --            "Np is not a character" otherwise.
553 after_hlist = nil -- global
554 local after_alchar, extract_np
555 do
556   local PRE  = luatexja.stack_table_index.PRE
557   local POST = luatexja.stack_table_index.POST
558   local KCAT = luatexja.stack_table_index.KCAT
559   local XSP  = luatexja.stack_table_index.XSP
560   local dir_tate = luatexja.dir_table.dir_tate
561
562 -- 和文文字のデータを取得
563    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
564    local attr_orig_char = luatexbase.attributes['ltj@origchar']
565    local attr_autospc = luatexbase.attributes['ltj@autospc']
566    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
567    function set_np_xspc_jachar_yoko(Nx, x)
568       local m = ltjf_font_metric_table[getfont(x)]
569       local cls, c = slow_find_char_class(has_attr(x, attr_orig_char), m, getchar(x))
570       Nx.met, Nx.char = m, c; Nx.class = cls;
571       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
572       Nx.pre  = table_current_stack[PRE + c]  or 0
573       Nx.post = table_current_stack[POST + c] or 0
574       Nx.xspc = table_current_stack[XSP  + c] or 3
575       Nx.kcat = table_current_stack[KCAT + c] or 0
576       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
577    end
578    function set_np_xspc_jachar_tate(Nx, x)
579       local m = ltjf_font_metric_table[getfont(x)]
580       local cls, c
581       local c1, c2 = getchar(x), has_attr(x, attr_orig_char)
582       c = has_attr(x, attr_dir) or c1 or c2
583       cls = ltjf_find_char_class(c, m)
584       if cls==0 then cls = slow_find_char_class(c2, m, c1) end
585       Nx.met, Nx.char = m, c; Nx.class = cls;
586       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
587       Nx.pre  = table_current_stack[PRE + c]  or 0
588       Nx.post = table_current_stack[POST + c] or 0
589       Nx.xspc = table_current_stack[XSP  + c] or 3
590       Nx.kcat = table_current_stack[KCAT + c] or 0
591       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
592    end
593
594 -- 欧文文字のデータを取得
595    local floor = math.floor
596    function set_np_xspc_alchar(Nx, c,x, lig)
597       if c~=-1 then
598          local f = (lig ==1) and nullfunc or node_tail
599          local xc, xs = getfield(x, 'components'), getsubtype(x)
600          while xc and xs and xs%4>=2 do
601             x = f(xc); xc, xs = getfield(x, 'components'), getsubtype(x)
602          end
603          c = getchar(x)
604          Nx.pre  = table_current_stack[PRE + c]  or 0
605          Nx.post = table_current_stack[POST + c] or 0
606          Nx.xspc = table_current_stack[XSP  + c] or 3
607          Nx.char = 'jcharbdd'
608       else
609          Nx.pre, Nx.post, Nx.char = 0, 0, -1
610          Nx.xspc = table_current_stack[XSP - 1] or 3
611       end
612       Nx.met = nil
613       Nx.auto_xspc = (has_attr(x, attr_autoxspc)==1)
614    end
615    local set_np_xspc_alchar = set_np_xspc_alchar
616
617 -- Np の情報取得メインルーチン
618    extract_np = function ()
619       local x, i = Np.nuc, Np.id;
620 --      if i ==  id_jglyph then return set_np_xspc_jachar(Np, x)
621 --      elseif i == id_glyph then return set_np_xspc_alchar(Np, getchar(x), x, 1)
622 --      if i == id_hlist then Np.last_char = check_box_high(Np, getlist(x), nil)
623       if i == id_pbox then Np.last_char = check_box_high(Np, Np.first, node_next(Np.last))
624       elseif i == id_disc then Np.last_char = check_box_high(Np, getfield(x, 'replace'), nil)
625 --      elseif i == id_math then return set_np_xspc_alchar(Np, -1, x)
626       end
627    end
628
629    -- change the information for the next loop
630    -- (will be done if Nx is an alphabetic character or a hlist)
631    after_hlist = function (Nx)
632       local s = Nx.last_char
633       if s then
634          if getid(s)==id_glyph then
635             if getfont(s) == (has_attr(s, attr_curjfnt) or -1) then
636                set_np_xspc_jachar(Nx, s)
637             else
638                set_np_xspc_alchar(Nx, getchar(s), s, 2)
639             end
640          else
641             set_np_xspc_alchar(Nx, -1, s)
642          end
643       else
644          Nx.pre, Nx.met = nil, nil
645       end
646    end
647
648    after_alchar = function (Nx)
649       local x = Nx.last_char
650       return set_np_xspc_alchar(Nx, getchar(x), x, 2)
651    end
652
653 end
654
655 -------------------- 最下層の処理
656
657 -- change penalties (or create a new penalty, if needed)
658 local function handle_penalty_normal(post, pre, g)
659    local a = (pre or 0) + (post or 0)
660    if #Bp == 0 then
661       if (a~=0 and not(g and getid(g)==id_kern)) then
662          local p = node_new(id_penalty)
663          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
664          setfield(p, 'penalty', a)
665          head = insert_before(head, Np.first, p)
666          Bp[1]=p;
667          set_attr(p, attr_icflag, KINSOKU)
668       end
669    else for _, v in pairs(Bp) do add_penalty(v,a) end
670    end
671 end
672
673 local function handle_penalty_always(post, pre, g)
674    local a = (pre or 0) + (post or 0)
675    if #Bp == 0 then
676       if not (g and getid(g)==id_glue) or a~=0 then
677          local p = node_new(id_penalty)
678          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
679          setfield(p, 'penalty', a)
680          head = insert_before(head, Np.first, p)
681          Bp[1]=p
682          set_attr(p, attr_icflag, KINSOKU)
683       end
684    else for _, v in pairs(Bp) do add_penalty(v,a) end
685    end
686 end
687
688 local function handle_penalty_suppress(post, pre, g)
689    local a = (pre or 0) + (post or 0)
690    if #Bp == 0 then
691       if g and getid(g)==id_glue then
692          local p = node_new(id_penalty)
693          setfield(p, 'penalty', 10000); head = insert_before(head, Np.first, p)
694          Bp[1]=p
695          set_attr(p, attr_icflag, KINSOKU)
696       end
697    else for _, v in pairs(Bp) do add_penalty(v,a) end
698    end
699 end
700
701 -- 和文文字間の JFM glue を node 化
702 local function new_jfm_glue(m, bc, ac)
703 -- bc, ac: char classes
704    local g, d = m.char_type[bc][ac], 0
705    local n
706    if g then
707       n,d = node_copy(g[2]), g[3]
708       if g[1] then
709          local f = node_new(id_glue)
710          set_attr(f, attr_icflag, g[4])
711          setfield(f, 'spec', n)
712          return f, d
713       end
714    end
715    return n, d
716 end
717
718 -- Nq.last (kern w) .... (glue/kern g) Np.first
719 local function real_insert(g)
720    if g then
721       head  = insert_before(head, Np.first, g)
722       Np.first = g
723    end
724 end
725
726
727 -------------------- 和文文字間空白量の決定
728
729 -- get kanjiskip
730 local get_kanjiskip
731 local get_kanjiskip_normal, get_kanjiskip_jfm
732 do
733    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
734    local KANJI_SKIP_JFM   = luatexja.icflag_table.KANJI_SKIP_JFM
735    get_kanjiskip_normal = function ()
736       if Np.auto_kspc or Nq.auto_kspc then
737          return node_copy(kanji_skip)
738       else
739          local g = node_copy(zero_glue)
740          set_attr(g, attr_icflag, KANJI_SKIP)
741          return g
742       end
743    end
744
745    get_kanjiskip_jfm = function ()
746       local g
747       if Np.auto_kspc or Nq.auto_kspc then
748          g = node_new(id_glue); --copy_attr(g, Nq.nuc)
749          local gx = node_new(id_glue_spec);
750          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
751          local pm, qm = Np.met, Nq.met
752          local bk = qm.kanjiskip or {0, 0, 0}
753          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
754             setfield(gx, 'width', bk[1])
755             setfield(gx, 'stretch', bk[2])
756             setfield(gx, 'shrink', bk[3])
757          else
758             local ak = pm.kanjiskip or {0, 0, 0}
759             setfield(gx, 'width', round(diffmet_rule(bk[1], ak[1])))
760             setfield(gx, 'stretch', round(diffmet_rule(bk[2], ak[2])))
761             setfield(gx, 'shrink', -round(diffmet_rule(-bk[3], -ak[3])))
762          end
763          setfield(g, 'spec', gx)
764       else
765          g =  node_copy(zero_glue)
766       end
767       set_attr(g, attr_icflag, KANJI_SKIP_JFM)
768       return g
769    end
770 end
771
772 local calc_ja_ja_aux
773 do
774    local bg_ag = 2*id_glue - id_glue
775    local bg_ak = 2*id_glue - id_kern
776    local bk_ag = 2*id_kern - id_glue
777    local bk_ak = 2*id_kern - id_kern
778
779    calc_ja_ja_aux = function (gb,ga, db, da)
780       local rbb, rab = (1-db)/2, (1-da)/2 -- 「前の文字」由来のグルーの割合
781       local rba, raa = (1+db)/2, (1+da)/2 -- 「前の文字」由来のグルーの割合
782       if diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright
783           and diffmet_rule ~= math.two_paverage then
784          rbb, rab, rba, raa = 1,0,0,1
785       end
786       if not gb then
787          if ga then
788             gb = node_new(id_kern); setfield(gb, 'kern', 0)
789          else return nil end
790       elseif not ga then
791          ga = node_new(id_kern); setfield(ga, 'kern', 0)
792       end
793
794       local k = 2*getid(gb) - getid(ga)
795       if k == bg_ag then
796          local bs, as = getfield(gb, 'spec'), getfield(ga, 'spec')
797          -- 両方とも glue.
798          local bd, ad = getfield(bs, 'width'), getfield(as, 'width')
799          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
800          bd, ad = getfield(bs, 'stretch'), getfield(as, 'stretch')
801          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
802          bd, ad = getfield(bs, 'shrink'), getfield(as, 'shrink')
803          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd - rba*ad, -rab*bd - raa*ad)))
804          node_free(ga)
805          return gb
806       elseif k == bk_ak then
807          -- 両方とも kern.
808          local bd, ad = getfield(gb, 'kern'), getfield(ga, 'kern')
809          setfield(gb, 'kern', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
810          node_free(ga)
811          return gb
812       elseif k == bk_ag then
813          local as = getfield(ga, 'spec')
814          -- gb: kern, ga: glue
815          local bd, ad = getfield(gb, 'kern'), getfield(as, 'width')
816          setfield(as, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
817          ad = getfield(as, 'stretch')
818          setfield(bs, 'stretch', round(diffmet_rule(rba*ad, raa*ad)))
819          ad = getfield(as, 'shrink')
820          setfield(bs, 'shrink', -round(diffmet_rule(-rba*ad, -raa*ad)))
821          node_free(gb)
822          return ga
823       else
824          local bs = getfield(gb, 'spec')
825          -- gb: glue, ga: kern
826          local bd, ad = getfield(bs, 'width'), getfield(ga, 'kern')
827          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
828          bd = getfield(bs, 'stretch')
829          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd, rab*bd)))
830          bd = getfield(bs, 'shrink')
831          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd, -rab*bd)))
832          node_free(ga)
833          return gb
834       end
835    end
836 end
837
838 local function calc_ja_ja_glue()
839    if  ihb_flag then return nil
840    else
841       local qm, pm = Nq.met, Np.met
842       if (qm.char_type==pm.char_type) and (qm.var==pm.var) then
843          return new_jfm_glue(qm, Nq.class, Np.class)
844       else
845          local npn, nqn = Np.nuc, Nq.nuc
846          local gb, db = new_jfm_glue(qm, Nq.class,
847                                      slow_find_char_class(has_attr(npn, attr_orig_char),
848                                                           qm, getchar(npn)))
849          local ga, da = new_jfm_glue(pm,
850                                      slow_find_char_class(has_attr(nqn, attr_orig_char),
851                                                           pm, getchar(nqn)),
852                                Np.class)
853          return calc_ja_ja_aux(gb, ga, db, da);
854       end
855    end
856 end
857
858 -------------------- 和欧文間空白量の決定
859
860 -- get xkanjiskip
861 local get_xkanjiskip
862 local get_xkanjiskip_normal, get_xkanjiskip_jfm
863 do
864    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
865    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
866    get_xkanjiskip_normal = function (Nn)
867       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
868          return node_copy(xkanji_skip)
869       else
870          local g = node_copy(zero_glue)
871          set_attr(g, attr_icflag, XKANJI_SKIP)
872          return g
873       end
874    end
875    get_xkanjiskip_jfm = function (Nn)
876       local g
877       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
878          g = node_new(id_glue)
879          local gx = node_new(id_glue_spec);
880          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
881          local bk = Nn.met.xkanjiskip or {0, 0, 0}
882          setfield(gx, 'width', bk[1])
883          setfield(gx, 'stretch', bk[2])
884          setfield(gx, 'shrink', bk[3])
885          setfield(g, 'spec', gx)
886       else
887          g = node_copy(zero_glue)
888       end
889       set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
890       return g
891    end
892 end
893
894 -------------------- 隣接した「塊」間の処理
895
896 local function get_OA_skip()
897    if not ihb_flag then
898       local pm = Np.met
899       return new_jfm_glue(pm,
900         fast_find_char_class(((Nq.id == id_math and -1) or (type(Nq.char)=='string' and Nq.char or 'jcharbdd')), pm), Np.class)
901    else return nil
902    end
903 end
904 local function get_OB_skip()
905    if not ihb_flag then
906       local qm = Nq.met
907       return new_jfm_glue(qm, Nq.class,
908         fast_find_char_class(((Np.id == id_math and -1) or'jcharbdd'), qm))
909    else return nil
910    end
911 end
912
913 -- (anything) .. jachar
914 local function handle_np_jachar(mode)
915    local qid = Nq.id
916    if qid==id_jglyph or ((qid==id_pbox or qid==id_pbox_w) and Nq.met) then
917       local g = calc_ja_ja_glue() or get_kanjiskip() -- M->K
918       handle_penalty_normal(Nq.post, Np.pre, g); real_insert(g)
919    elseif Nq.met then  -- qid==id_hlist
920       local g = get_OA_skip() or get_kanjiskip() -- O_A->K
921       handle_penalty_normal(0, Np.pre, g); real_insert(g)
922    elseif Nq.pre then
923       local g = get_OA_skip() or get_xkanjiskip(Np) -- O_A->X
924       handle_penalty_normal((qid==id_hlist and 0 or Nq.post), Np.pre, g); real_insert(g)
925    else
926       local g = get_OA_skip() -- O_A
927       if qid==id_glue then handle_penalty_normal(0, Np.pre, g)
928       elseif qid==id_kern then handle_penalty_suppress(0, Np.pre, g)
929       else handle_penalty_always(0, Np.pre, g)
930       end
931       real_insert(g)
932    end
933    if mode and Np.kcat%2~=1 then
934       widow_Np.first, widow_Bp, Bp = Np.first, Bp, widow_Bp
935    end
936 end
937
938
939 -- jachar .. (anything)
940 local function handle_nq_jachar()
941     if Np.pre then
942       local g = get_OB_skip() or get_xkanjiskip(Nq) -- O_B->X
943       handle_penalty_normal(Nq.post, (Np.id==id_hlist and 0 or Np.pre), g); real_insert(g)
944    else
945       local g = get_OB_skip() -- O_B
946       if Np.id==id_glue then handle_penalty_normal(Nq.post, 0, g)
947       elseif Np.id==id_kern then handle_penalty_suppress(Nq.post, 0, g)
948       else handle_penalty_always(Nq.post, 0, g)
949       end
950       real_insert(g)
951    end
952 end
953
954 -- (anything) .. (和文文字で始まる hlist)
955 local function handle_np_ja_hlist()
956    local qid = Nq.id
957    if qid==id_jglyph or ((qid==id_pbox or Nq.id == id_pbox_w) and Nq.met) then
958       local g = get_OB_skip() or get_kanjiskip() -- O_B->K
959       handle_penalty_normal(Nq.post, 0, g); real_insert(g)
960    elseif Nq.met then  -- Nq.id==id_hlist
961       local g = get_kanjiskip() -- K
962       handle_penalty_suppress(0, 0, g); real_insert(g)
963    elseif Nq.pre then
964       local g = get_xkanjiskip(Np) -- X
965       handle_penalty_suppress(0, 0, g); real_insert(g)
966    end
967 end
968
969 -- (和文文字で終わる hlist) .. (anything)
970 local function handle_nq_ja_hlist()
971    if Np.pre then
972       local g = get_xkanjiskip(Nq) -- X
973       handle_penalty_suppress(0, 0, g); real_insert(g)
974    end
975 end
976
977
978 -- Nq が前側のクラスタとなることによる修正
979 do
980    local adjust_nq_aux = {
981       [id_glyph] = function() after_alchar(Nq) end, -- after_alchar(Nq)
982       [id_hlist]  = function() after_hlist(Nq) end,
983       [id_pbox]  = function() after_hlist(Nq) end,
984       [id_disc]  = function() after_hlist(Nq) end,
985       [id_pbox_w]  = function()
986                         luatexbase.call_callback("luatexja.jfmglue.whatsit_after",
987                                                  false, Nq, Np)
988                      end,
989    }
990
991    function adjust_nq()
992       local x = adjust_nq_aux[Nq.id]
993       if x then x()  end
994    end
995 end
996
997
998 -------------------- 開始・終了時の処理
999 do
1000
1001 -- リスト末尾の処理
1002 local JWP  = luatexja.stack_table_index.JWP
1003 local function handle_list_tail(mode)
1004    adjust_nq(); Np = Nq
1005    if mode then
1006       -- the current list is to be line-breaked.
1007       -- Insert \jcharwidowpenalty
1008       Bp = widow_Bp; Np = widow_Np
1009       if Np.first then
1010          handle_penalty_normal(0,
1011                                table_current_stack[JWP] or 0)
1012       end
1013    else
1014       -- the current list is the contents of a hbox
1015       local npi, pm = Np.id, Np.met
1016       if npi == id_jglyph or (npi==id_pbox and pm) then
1017          local g = new_jfm_glue(pm, Np.class, fast_find_char_class('boxbdd', pm))
1018          if g then
1019             set_attr(g, attr_icflag, BOXBDD)
1020             head = insert_after(head, Np.last, g)
1021          end
1022       end
1023    end
1024 end
1025
1026 -- リスト先頭の処理
1027 local function handle_list_head(par_indented)
1028    local npi, pm = Np.id, Np.met
1029    if npi ==  id_jglyph or (npi==id_pbox and pm) then
1030       if not ihb_flag then
1031          local g = new_jfm_glue(pm, fast_find_char_class(par_indented, pm), Np.class)
1032          if g then
1033             set_attr(g, attr_icflag, BOXBDD)
1034             if getid(g)==id_glue and #Bp==0 then
1035                local h = node_new(id_penalty)
1036                setfield(h, 'penalty', 10000); set_attr(h, attr_icflag, BOXBDD)
1037             end
1038             head = insert_before(head, Np.first, g)
1039          end
1040       end
1041    end
1042 end
1043
1044 -- initialize
1045 -- return value: (the initial cursor lp), (last node)
1046 local init_var
1047 do
1048    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
1049    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
1050    local KSK  = luatexja.stack_table_index.KSK
1051    local XSK  = luatexja.stack_table_index.XSK
1052    local dir_yoko = luatexja.dir_table.dir_yoko
1053    local dir_tate = luatexja.dir_table.dir_tate
1054    local attr_yablshift = luatexbase.attributes['ltj@yablshift']
1055    local attr_tablshift = luatexbase.attributes['ltj@tablshift']
1056    init_var = function (mode,dir)
1057       -- 1073741823: max_dimen
1058       Bp, widow_Bp, widow_Np = {}, {}, {first = nil}
1059       table_current_stack = ltjs.table_current_stack
1060
1061       list_dir = ltjs.list_dir or dir_yoko
1062       local is_dir_tate = list_dir==dir_tate
1063       capsule_glyph = is_dir_tate and ltjw.capsule_glyph_tate or ltjw.capsule_glyph_yoko
1064       attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
1065       set_np_xspc_jachar = is_dir_tate and set_np_xspc_jachar_tate or set_np_xspc_jachar_yoko
1066
1067
1068       tex_dir = dir or 'TLT'
1069       kanji_skip = node_new(id_glue)
1070       setfield(kanji_skip, 'spec', skip_table_to_spec(KSK))
1071       set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
1072       get_kanjiskip = (getfield(getfield(kanji_skip, 'spec'), 'width') == 1073741823)
1073          and get_kanjiskip_jfm or get_kanjiskip_normal
1074
1075       xkanji_skip = node_new(id_glue)
1076       setfield(xkanji_skip, 'spec', skip_table_to_spec(XSK))
1077       set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
1078       get_xkanjiskip = (getfield(getfield(xkanji_skip, 'spec'), 'width') == 1073741823)
1079          and get_xkanjiskip_jfm or get_xkanjiskip_normal
1080
1081       Np = {
1082          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1083          first=nil, id=nil, last=nil, met=nil, nuc=nil,
1084          post=nil, pre=nil, xspc=nil,
1085       }
1086       Nq = {
1087          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1088          first=nil, id=nil, last=nil, met=nil, nuc=nil,
1089          post=nil, pre=nil, xspc=nil,
1090       }
1091       if mode then
1092          -- the current list is to be line-breaked:
1093          -- hbox from \parindent is skipped.
1094          local lp, par_indented, lpi, lps  = head, 'boxbdd', getid(head), getsubtype(head)
1095          while lp and ((lpi==id_whatsit and lps~=sid_user)
1096                        or ((lpi==id_hlist) and (lps==3))) do
1097             if (lpi==id_hlist) and (lps==3) then
1098                Np.char, par_indented = 'parbdd', 'parbdd'
1099                Np.width = getfield(lp, 'width')
1100             end
1101             lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
1102          return lp, node_tail(head), par_indented
1103       else
1104          return head, nil, 'boxbdd'
1105       end
1106    end
1107 end
1108
1109 local tex_set_attr = tex.setattribute
1110 local function cleanup(mode)
1111    -- adjust attr_icflag for avoiding error
1112    tex_set_attr('global', attr_icflag, 0)
1113    node_free(kanji_skip); node_free(xkanji_skip)
1114    if mode then
1115       local h = node_next(head)
1116       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
1117          h = node_next(h)
1118          if getid(h) == id_glue and getsubtype(h) == 15 and not node_next(h) then
1119             return false
1120          end
1121       end
1122    end
1123    return head
1124 end
1125 -------------------- 外部から呼ばれる関数
1126
1127 -- main interface
1128 function main(ahead, mode, dir)
1129    if not ahead then return ahead end
1130    head = ahead;
1131    local lp, last, par_indented = init_var(mode,dir)
1132    lp = calc_np(lp, last)
1133    if Np then
1134       extract_np(); handle_list_head(par_indented)
1135    else
1136       return cleanup(mode)
1137    end
1138    lp = calc_np(lp, last)
1139    while Np do
1140       extract_np();
1141       adjust_nq();
1142       local pid, pm = Np.id, Np.met
1143       -- 挿入部
1144       if pid == id_jglyph then
1145          handle_np_jachar(mode)
1146       elseif pm then
1147          if pid==id_hlist then handle_np_ja_hlist()
1148          else handle_np_jachar() end
1149       elseif Nq.met then
1150          if Nq.id==id_hlist then handle_nq_ja_hlist()
1151          else handle_nq_jachar() end
1152       end
1153       lp = calc_np(lp, last)
1154    end
1155    handle_list_tail(mode)
1156    return cleanup(mode)
1157 end
1158 end
1159
1160 do
1161    local IHB  = luatexja.userid_table.IHB
1162    local BPAR = luatexja.userid_table.BPAR
1163    local node_prev = (Dnode ~= node) and Dnode.getprev or node.prev
1164    local node_write = Dnode.write
1165
1166    -- \inhibitglue
1167    function create_inhibitglue_node()
1168       local tn = node_new(id_whatsit, sid_user)
1169       setfield(tn, 'user_id', IHB)
1170       setfield(tn, 'type', 100)
1171       setfield(tn, 'value', 1)
1172       node_write(tn)
1173    end
1174
1175    -- Node for indicating beginning of a paragraph
1176    -- (for ltjsclasses)
1177    function create_beginpar_node()
1178       local tn = node_new(id_whatsit, sid_user)
1179       setfield(tn, 'user_id', BPAR)
1180       setfield(tn, 'type', 100)
1181       setfield(tn, 'value', 1)
1182       node_write(tn)
1183    end
1184
1185    local function whatsit_callback(Np, lp, Nq)
1186       if Np and Np.nuc then return Np
1187       elseif Np and getfield(lp, 'user_id') == BPAR then
1188          Np.first = lp; Np.nuc = lp; Np.last = lp
1189          Np.char = 'parbdd'
1190          Np.met = nil
1191          Np.pre = 0; Np.post = 0
1192          Np.xspc = 0
1193          Np.auto_xspc = false
1194          return Np
1195       end
1196    end
1197
1198     local function whatsit_after_callback(s, Nq, Np)
1199        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1200          local x, y = node_prev(Nq.nuc), Nq.nuc
1201          Nq.first, Nq.nuc, Nq.last = x, x, x
1202          head = node_remove(head, y)
1203          node_free(y)
1204       end
1205       return s
1206    end
1207
1208    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1209                               "luatexja.beginpar.np_info", 1)
1210    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1211                               "luatexja.beginpar.np_info_after", 1)
1212
1213 end