OSDN Git Service

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