OSDN Git Service

Fix ticket #34441.
[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 min, max = math.min, math.max
320 local function calc_np_aux_glyph_common(lp)
321    Np.nuc = lp
322    Np.id = npi
323    if (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1)) then
324       Np.id = id_jglyph
325       set_np_xspc_jachar(Np, lp)
326       local npi, npf
327       lp, head, npi, npf = capsule_glyph(lp, Np.met, Np.class, head, tex_dir)
328       Np.first = (Np.first~=Np.nuc) and Np.first or npf or npi
329       Np.nuc = npi
330       return true, check_next_ickern(lp);
331    else
332       Np.id = id_glyph
333       set_np_xspc_alchar(Np, getchar(lp), lp, 1)
334       -- loop
335       local first_glyph, last_glyph = lp
336       set_attr(lp, attr_icflag, PROCESSED); Np.last = lp
337       local y_adjust = has_attr(lp,attr_ablshift) or 0
338       local node_depth = getfield(lp, 'depth') + min(y_adjust, 0)
339       local adj_depth = (y_adjust>0) and (getfield(lp, 'depth') + y_adjust) or 0
340       setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
341       lp = node_next(lp)
342       for lp in traverse(lp) do
343          if lp==last or  get_attr_icflag(lp)>=PACKED then
344             break
345          else
346             local lid = getid(lp)
347             if lid==id_glyph and not (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1)) then
348                -- 欧文文字
349                last_glyph = lp; set_attr(lp, attr_icflag, PROCESSED); Np.last = lp
350                y_adjust = has_attr(lp,attr_ablshift) or 0
351                node_depth = max(getfield(lp, 'depth') + min(y_adjust, 0), node_depth)
352                adj_depth = (y_adjust>0) and max(getfield(lp, 'depth') + y_adjust, adj_depth) or adj_depth
353                setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
354             elseif lid==id_kern and getsubtype(lp)==2 then -- アクセント用の kern
355                set_attr(lp, attr_icflag, PROCESSED)
356                lp = node_next(lp) -- lp: アクセント本体
357                setfield(lp, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lp,attr_ablshift) or 0))
358                lp = node_next(node_next(lp))
359             else
360                break
361             end
362          end
363          -- イタリック補正はあんまり使わない,と考えてループ継続条件に入れない.
364       end
365       local r
366       if adj_depth>node_depth then
367             r = node_new(id_rule)
368             setfield(r, 'width', 0); setfield(r, 'height', 0)
369             setfield(r, 'depth',adj_depth); setfield(r, 'dir', tex_dir)
370             set_attr(r, attr_icflag, PROCESSED)
371       end
372       if last_glyph then
373          Np.last_char = last_glyph
374          if r then insert_after(head, first_glyph, r) end
375       else
376          local npn = Np.nuc
377          Np.last_char = npn
378          if r then
379             local nf, nc = getfont(npn), getchar(npn)
380             local ct = (font.getfont(nf) or font.fonts[nf] ).characters[nc]
381             if (ct.left_protruding or 0) == 0 then
382                head = insert_before(head, npn, r)
383                Np.first = (Np.first==npn) and r or npn
384             elseif (ct.right_protruding or 0) == 0 then
385                insert_after(head, npn, r); Np.last, lp = r, r
386             else
387                ltjb.package_warning_no_line(
388                   'luatexja',
389                   'Check depth of glyph node ' .. tostring(npn) .. '(font=' .. nf
390                      .. ', char=' .. nc .. '),    because its \\lpcode is ' .. tostring(ct.left_protruding)
391                      .. ' and its \\rpcode is ' .. tostring(ct.right_protruding)
392                ); node_free(r)
393             end
394          end
395       end
396       return true, check_next_ickern(lp)
397    end
398 end
399 local calc_np_auxtable = {
400    [id_glyph] = function (lp)
401       Np.first= (Np.first or lp)
402       return calc_np_aux_glyph_common(lp)
403    end,
404    [id_hlist] = function(lp)
405       local op, flag
406       head, lp, op, flag = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm hlist')
407       set_attr(op, attr_icflag, PROCESSED)
408       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
409       if (flag or getfield(op, 'shift')~=0) then
410          Np.id = id_box_like
411       else
412          Np.id = id_hlist
413          Np.last_char = check_box_high(Np, getlist(op), nil)
414       end
415       return true, lp
416    end,
417    [id_vlist] =  function(lp)
418       local op
419       head, lp, op = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm:' .. getid(lp))
420       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
421       Np.id = id_box_like;
422       return true, lp
423    end,
424    box_like = function(lp)
425       Np.first = Np.first or lp; Np.last = lp; Np.nuc = lp;
426       Np.id = id_box_like;
427       return true, node_next(lp)
428    end,
429    skip = function(lp)
430       set_attr(lp, attr_icflag, PROCESSED)
431       return false, node_next(lp)
432    end,
433    [id_whatsit] = function(lp)
434       local lps = getsubtype(lp)
435       if lps==sid_user then
436          if getfield(lp, 'user_id')==luatexja.userid_table.IHB then
437             local lq = node_next(lp);
438             head = node_remove(head, lp); node_free(lp); ihb_flag = true
439             return false, lq;
440          else
441             set_attr(lp, attr_icflag, PROCESSED)
442             luatexbase.call_callback("luatexja.jfmglue.whatsit_getinfo",
443                                      Np, lp, Nq)
444             if Np.nuc then
445                Np.id = id_pbox_w; Np.first = Np.nuc; Np.last = Np.nuc;
446                return true, node_next(lp)
447             else
448                return false, node_next(lp)
449             end
450          end
451       else
452          -- we do special treatment for these whatsit nodes.
453          if lps == sid_start_link or lps == sid_start_thread then
454             Np.first = lp
455          elseif lps == sid_end_link or lps == sid_end_thread then
456             Np.first, Nq.last = nil, lp;
457          end
458          set_attr(lp, attr_icflag, PROCESSED)
459          return false, node_next(lp)
460       end
461    end,
462    [id_math] = function(lp)
463       Np.first, Np.nuc = (Np.first or lp), lp;
464       set_attr(lp, attr_icflag, PROCESSED)
465       set_np_xspc_alchar(Np, -1, lp)
466       local end_math  = node_end_of_math(lp)
467       ltjw_apply_ashift_math(lp, end_math, attr_ablshift)
468       set_attr(end_math, attr_icflag, PROCESSED)
469       Np.last, Np.id = end_math, id_math;
470       return true, node_next(end_math);
471    end,
472    discglue = function(lp)
473       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
474       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
475       return true, node_next(lp)
476    end,
477    [id_kern] = function(lp)
478       Np.first = Np.first or lp
479       if getsubtype(lp)==2 then
480          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
481          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
482          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
483          set_attr(lp, attr_icflag, PROCESSED);
484          return calc_np_aux_glyph_common(lp)
485       else
486          Np.id = id_kern; set_attr(lp, attr_icflag, PROCESSED)
487          Np.last = lp; return true, node_next(lp)
488       end
489    end,
490    [id_penalty] = function(lp)
491       Bp[#Bp+1] = lp; set_attr(lp, attr_icflag, PROCESSED)
492       return false, node_next(lp)
493    end,
494 }
495 calc_np_auxtable[id_rule]   = calc_np_auxtable.box_like
496 calc_np_auxtable[13]        = calc_np_auxtable.box_like
497 calc_np_auxtable[id_ins]    = calc_np_auxtable.skip
498 calc_np_auxtable[id_mark]   = calc_np_auxtable.skip
499 calc_np_auxtable[id_adjust] = calc_np_auxtable.skip
500 calc_np_auxtable[id_disc]   = calc_np_auxtable.discglue
501 calc_np_auxtable[id_glue]   = calc_np_auxtable.discglue
502
503 function calc_np(lp, last)
504    local k
505    -- We assume lp = node_next(Np.last)
506    Np, Nq, ihb_flag = Nq, Np, nil
507    -- We clear `predefined' entries of Np before pairs() loop,
508    -- because using only pairs() loop is slower.
509    Np.post, Np.pre, Np.xspc = nil, nil, nil
510    Np.first, Np.id, Np.last, Np.met, Np.class= nil, nil, nil, nil
511    Np.auto_kspc, Np.auto_xspc, Np.char, Np.nuc = nil, nil, nil, nil
512    for k in pairs(Np) do Np[k] = nil end
513
514    for k = 1,#Bp do Bp[k] = nil end
515    while lp ~= last  do
516       local lpa = has_attr(lp, attr_icflag) or 0
517        -- unbox 由来ノードの検出
518       if lpa>=PACKED then
519          if lpa%PROCESSED_BEGIN_FLAG == BOXBDD then
520             local lq = node_next(lp)
521             head = node_remove(head, lp); node_free(lp); lp = lq
522          else
523             return calc_np_pbox(lp, last)
524          end -- id_pbox
525       else
526          k, lp = calc_np_auxtable[getid(lp)](lp)
527          if k then return lp end
528       end
529    end
530    Np = nil; return lp
531 end
532
533 end
534 local calc_np = calc_np
535
536 -- extract informations from Np
537 -- We think that "Np is a Japanese character" if Np.met~=nil,
538 --            "Np is an alphabetic character" if Np.pre~=nil,
539 --            "Np is not a character" otherwise.
540 after_hlist = nil -- global
541 local after_alchar, extract_np
542 do
543   local PRE  = luatexja.stack_table_index.PRE
544   local POST = luatexja.stack_table_index.POST
545   local KCAT = luatexja.stack_table_index.KCAT
546   local XSP  = luatexja.stack_table_index.XSP
547   local dir_tate = luatexja.dir_table.dir_tate
548
549 -- 和文文字のデータを取得
550    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
551    local attr_orig_char = luatexbase.attributes['ltj@origchar']
552    local attr_autospc = luatexbase.attributes['ltj@autospc']
553    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
554    function set_np_xspc_jachar_yoko(Nx, x)
555       local m = ltjf_font_metric_table[getfont(x)]
556       local cls, c = slow_find_char_class(has_attr(x, attr_orig_char), m, getchar(x))
557       Nx.met, Nx.char = m, c; Nx.class = cls;
558       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
559       Nx.pre  = table_current_stack[PRE + c]  or 0
560       Nx.post = table_current_stack[POST + c] or 0
561       Nx.xspc = table_current_stack[XSP  + c] or 3
562       Nx.kcat = table_current_stack[KCAT + c] or 0
563       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
564    end
565    function set_np_xspc_jachar_tate(Nx, x)
566       local m = ltjf_font_metric_table[getfont(x)]
567       local cls, c
568       local c1, c2 = getchar(x), has_attr(x, attr_orig_char)
569       c = has_attr(x, attr_dir) or c1 or c2
570       cls = ltjf_find_char_class(c, m)
571       if cls==0 then cls = slow_find_char_class(c2, m, c1) end
572       Nx.met, Nx.char = m, c; Nx.class = cls;
573       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
574       Nx.pre  = table_current_stack[PRE + c]  or 0
575       Nx.post = table_current_stack[POST + c] or 0
576       Nx.xspc = table_current_stack[XSP  + c] or 3
577       Nx.kcat = table_current_stack[KCAT + c] or 0
578       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
579    end
580
581 -- 欧文文字のデータを取得
582    local floor = math.floor
583    function set_np_xspc_alchar(Nx, c,x, lig)
584       if c~=-1 then
585          local f = (lig ==1) and nullfunc or node_tail
586          local xc, xs = getfield(x, 'components'), getsubtype(x)
587          while xc and xs and xs%4>=2 do
588             x = f(xc); xc, xs = getfield(x, 'components'), getsubtype(x)
589          end
590          c = getchar(x)
591          Nx.pre  = table_current_stack[PRE + c]  or 0
592          Nx.post = table_current_stack[POST + c] or 0
593          Nx.xspc = table_current_stack[XSP  + c] or 3
594          Nx.char = 'jcharbdd'
595       else
596          Nx.pre, Nx.post, Nx.char = 0, 0, -1
597          Nx.xspc = table_current_stack[XSP - 1] or 3
598       end
599       Nx.met = nil
600       Nx.auto_xspc = (has_attr(x, attr_autoxspc)==1)
601    end
602    local set_np_xspc_alchar = set_np_xspc_alchar
603
604 -- Np の情報取得メインルーチン
605    extract_np = function ()
606       local x, i = Np.nuc, Np.id;
607 --      if i ==  id_jglyph then return set_np_xspc_jachar(Np, x)
608 --      elseif i == id_glyph then return set_np_xspc_alchar(Np, getchar(x), x, 1)
609 --      if i == id_hlist then Np.last_char = check_box_high(Np, getlist(x), nil)
610       if i == id_pbox then Np.last_char = check_box_high(Np, Np.first, node_next(Np.last))
611       elseif i == id_disc then Np.last_char = check_box_high(Np, getfield(x, 'replace'), nil)
612 --      elseif i == id_math then return set_np_xspc_alchar(Np, -1, x)
613       end
614    end
615
616    -- change the information for the next loop
617    -- (will be done if Nx is an alphabetic character or a hlist)
618    after_hlist = function (Nx)
619       local s = Nx.last_char
620       if s then
621          if getid(s)==id_glyph then
622             if getfont(s) == (has_attr(s, attr_curjfnt) or -1) then
623                set_np_xspc_jachar(Nx, s)
624             else
625                set_np_xspc_alchar(Nx, getchar(s), s, 2)
626             end
627          else
628             set_np_xspc_alchar(Nx, -1, s)
629          end
630       else
631          Nx.pre, Nx.met = nil, nil
632       end
633    end
634
635    after_alchar = function (Nx)
636       local x = Nx.last_char
637       return set_np_xspc_alchar(Nx, getchar(x), x, 2)
638    end
639
640 end
641
642 -------------------- 最下層の処理
643
644 -- change penalties (or create a new penalty, if needed)
645 local function handle_penalty_normal(post, pre, g)
646    local a = (pre or 0) + (post or 0)
647    if #Bp == 0 then
648       if (a~=0 and not(g and getid(g)==id_kern)) then
649          local p = node_new(id_penalty)
650          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
651          setfield(p, 'penalty', a)
652          head = insert_before(head, Np.first, p)
653          Bp[1]=p;
654          set_attr(p, attr_icflag, KINSOKU)
655       end
656    else for _, v in pairs(Bp) do add_penalty(v,a) end
657    end
658 end
659
660 local function handle_penalty_always(post, pre, g)
661    local a = (pre or 0) + (post or 0)
662    if #Bp == 0 then
663       if not (g and getid(g)==id_glue) or a~=0 then
664          local p = node_new(id_penalty)
665          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
666          setfield(p, 'penalty', a)
667          head = insert_before(head, Np.first, p)
668          Bp[1]=p
669          set_attr(p, attr_icflag, KINSOKU)
670       end
671    else for _, v in pairs(Bp) do add_penalty(v,a) end
672    end
673 end
674
675 local function handle_penalty_suppress(post, pre, g)
676    local a = (pre or 0) + (post or 0)
677    if #Bp == 0 then
678       if g and getid(g)==id_glue then
679          local p = node_new(id_penalty)
680          setfield(p, 'penalty', 10000); 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 -- 和文文字間の JFM glue を node 化
689 local function new_jfm_glue(m, bc, ac)
690 -- bc, ac: char classes
691    local g, d = m.char_type[bc][ac], 0
692    local n
693    if g then
694       n,d = node_copy(g[2]), g[3]
695       if g[1] then
696          local f = node_new(id_glue)
697          set_attr(f, attr_icflag, g[4])
698          setfield(f, 'spec', n)
699          return f, d
700       end
701    end
702    return n, d
703 end
704
705 -- Nq.last (kern w) .... (glue/kern g) Np.first
706 local function real_insert(g)
707    if g then
708       head  = insert_before(head, Np.first, g)
709       Np.first = g
710    end
711 end
712
713
714 -------------------- 和文文字間空白量の決定
715
716 -- get kanjiskip
717 local get_kanjiskip
718 local get_kanjiskip_normal, get_kanjiskip_jfm
719 do
720    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
721    local KANJI_SKIP_JFM   = luatexja.icflag_table.KANJI_SKIP_JFM
722    get_kanjiskip_normal = function ()
723       if Np.auto_kspc or Nq.auto_kspc then
724          return node_copy(kanji_skip)
725       else
726          local g = node_copy(zero_glue)
727          set_attr(g, attr_icflag, KANJI_SKIP)
728          return g
729       end
730    end
731
732    get_kanjiskip_jfm = function ()
733       local g
734       if Np.auto_kspc or Nq.auto_kspc then
735          g = node_new(id_glue); --copy_attr(g, Nq.nuc)
736          local gx = node_new(id_glue_spec);
737          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
738          local pm, qm = Np.met, Nq.met
739          local bk = qm.kanjiskip or {0, 0, 0}
740          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
741             setfield(gx, 'width', bk[1])
742             setfield(gx, 'stretch', bk[2])
743             setfield(gx, 'shrink', bk[3])
744          else
745             local ak = pm.kanjiskip or {0, 0, 0}
746             setfield(gx, 'width', round(diffmet_rule(bk[1], ak[1])))
747             setfield(gx, 'stretch', round(diffmet_rule(bk[2], ak[2])))
748             setfield(gx, 'shrink', -round(diffmet_rule(-bk[3], -ak[3])))
749          end
750          setfield(g, 'spec', gx)
751       else
752          g =  node_copy(zero_glue)
753       end
754       set_attr(g, attr_icflag, KANJI_SKIP_JFM)
755       return g
756    end
757 end
758
759 local calc_ja_ja_aux
760 do
761    local bg_ag = 2*id_glue - id_glue
762    local bg_ak = 2*id_glue - id_kern
763    local bk_ag = 2*id_kern - id_glue
764    local bk_ak = 2*id_kern - id_kern
765
766    calc_ja_ja_aux = function (gb,ga, db, da)
767       local rbb, rab = (1-db)/2, (1-da)/2 -- 「前の文字」由来のグルーの割合
768       local rba, raa = (1+db)/2, (1+da)/2 -- 「前の文字」由来のグルーの割合
769       if diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright
770           and diffmet_rule ~= math.two_paverage then
771          rbb, rab, rba, raa = 1,0,0,1
772       end
773       if not gb then
774          if ga then
775             gb = node_new(id_kern); setfield(gb, 'kern', 0)
776          else return nil end
777       elseif not ga then
778          ga = node_new(id_kern); setfield(ga, 'kern', 0)
779       end
780
781       local k = 2*getid(gb) - getid(ga)
782       if k == bg_ag then
783          local bs, as = getfield(gb, 'spec'), getfield(ga, 'spec')
784          -- 両方とも glue.
785          local bd, ad = getfield(bs, 'width'), getfield(as, 'width')
786          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
787          bd, ad = getfield(bs, 'stretch'), getfield(as, 'stretch')
788          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
789          bd, ad = getfield(bs, 'shrink'), getfield(as, 'shrink')
790          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd - rba*ad, -rab*bd - raa*ad)))
791          node_free(ga)
792          return gb
793       elseif k == bk_ak then
794          -- 両方とも kern.
795          local bd, ad = getfield(gb, 'kern'), getfield(ga, 'kern')
796          setfield(gb, 'kern', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
797          node_free(ga)
798          return gb
799       elseif k == bk_ag then
800          local as = getfield(ga, 'spec')
801          -- gb: kern, ga: glue
802          local bd, ad = getfield(gb, 'kern'), getfield(as, 'width')
803          setfield(as, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
804          ad = getfield(as, 'stretch')
805          setfield(bs, 'stretch', round(diffmet_rule(rba*ad, raa*ad)))
806          ad = getfield(as, 'shrink')
807          setfield(bs, 'shrink', -round(diffmet_rule(-rba*ad, -raa*ad)))
808          node_free(gb)
809          return ga
810       else
811          local bs = getfield(gb, 'spec')
812          -- gb: glue, ga: kern
813          local bd, ad = getfield(bs, 'width'), getfield(ga, 'kern')
814          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
815          bd = getfield(bs, 'stretch')
816          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd, rab*bd)))
817          bd = getfield(bs, 'shrink')
818          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd, -rab*bd)))
819          node_free(ga)
820          return gb
821       end
822    end
823 end
824
825 local function calc_ja_ja_glue()
826    if  ihb_flag then return nil
827    else
828       local qm, pm = Nq.met, Np.met
829       if (qm.char_type==pm.char_type) and (qm.var==pm.var) then
830          return new_jfm_glue(qm, Nq.class, Np.class)
831       else
832          local npn, nqn = Np.nuc, Nq.nuc
833          local gb, db = new_jfm_glue(qm, Nq.class,
834                                      slow_find_char_class(has_attr(npn, attr_orig_char),
835                                                           qm, getchar(npn)))
836          local ga, da = new_jfm_glue(pm,
837                                      slow_find_char_class(has_attr(nqn, attr_orig_char),
838                                                           pm, getchar(nqn)),
839                                Np.class)
840          return calc_ja_ja_aux(gb, ga, db, da);
841       end
842    end
843 end
844
845 -------------------- 和欧文間空白量の決定
846
847 -- get xkanjiskip
848 local get_xkanjiskip
849 local get_xkanjiskip_normal, get_xkanjiskip_jfm
850 do
851    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
852    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
853    get_xkanjiskip_normal = function (Nn)
854       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
855          return node_copy(xkanji_skip)
856       else
857          local g = node_copy(zero_glue)
858          set_attr(g, attr_icflag, XKANJI_SKIP)
859          return g
860       end
861    end
862    get_xkanjiskip_jfm = function (Nn)
863       local g
864       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
865          g = node_new(id_glue)
866          local gx = node_new(id_glue_spec);
867          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
868          local bk = Nn.met.xkanjiskip or {0, 0, 0}
869          setfield(gx, 'width', bk[1])
870          setfield(gx, 'stretch', bk[2])
871          setfield(gx, 'shrink', bk[3])
872          setfield(g, 'spec', gx)
873       else
874          g = node_copy(zero_glue)
875       end
876       set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
877       return g
878    end
879 end
880
881 -------------------- 隣接した「塊」間の処理
882
883 local function get_OA_skip()
884    if not ihb_flag then
885       local pm = Np.met
886       return new_jfm_glue(pm,
887         fast_find_char_class(((Nq.id == id_math and -1) or (type(Nq.char)=='string' and Nq.char or 'jcharbdd')), pm), Np.class)
888    else return nil
889    end
890 end
891 local function get_OB_skip()
892    if not ihb_flag then
893       local qm = Nq.met
894       return new_jfm_glue(qm, Nq.class,
895         fast_find_char_class(((Np.id == id_math and -1) or'jcharbdd'), qm))
896    else return nil
897    end
898 end
899
900 -- (anything) .. jachar
901 local function handle_np_jachar(mode)
902    local qid = Nq.id
903    if qid==id_jglyph or ((qid==id_pbox or qid==id_pbox_w) and Nq.met) then
904       local g = calc_ja_ja_glue() or get_kanjiskip() -- M->K
905       handle_penalty_normal(Nq.post, Np.pre, g); real_insert(g)
906    elseif Nq.met then  -- qid==id_hlist
907       local g = get_OA_skip() or get_kanjiskip() -- O_A->K
908       handle_penalty_normal(0, Np.pre, g); real_insert(g)
909    elseif Nq.pre then
910       local g = get_OA_skip() or get_xkanjiskip(Np) -- O_A->X
911       handle_penalty_normal((qid==id_hlist and 0 or Nq.post), Np.pre, g); real_insert(g)
912    else
913       local g = get_OA_skip() -- O_A
914       if qid==id_glue then handle_penalty_normal(0, Np.pre, g)
915       elseif qid==id_kern then handle_penalty_suppress(0, Np.pre, g)
916       else handle_penalty_always(0, Np.pre, g)
917       end
918       real_insert(g)
919    end
920    if mode and Np.kcat%2~=1 then
921       widow_Np.first, widow_Bp, Bp = Np.first, Bp, widow_Bp
922    end
923 end
924
925
926 -- jachar .. (anything)
927 local function handle_nq_jachar()
928     if Np.pre then
929       local g = get_OB_skip() or get_xkanjiskip(Nq) -- O_B->X
930       handle_penalty_normal(Nq.post, (Np.id==id_hlist and 0 or Np.pre), g); real_insert(g)
931    else
932       local g = get_OB_skip() -- O_B
933       if Np.id==id_glue then handle_penalty_normal(Nq.post, 0, g)
934       elseif Np.id==id_kern then handle_penalty_suppress(Nq.post, 0, g)
935       else handle_penalty_always(Nq.post, 0, g)
936       end
937       real_insert(g)
938    end
939 end
940
941 -- (anything) .. (和文文字で始まる hlist)
942 local function handle_np_ja_hlist()
943    local qid = Nq.id
944    if qid==id_jglyph or ((qid==id_pbox or Nq.id == id_pbox_w) and Nq.met) then
945       local g = get_OB_skip() or get_kanjiskip() -- O_B->K
946       handle_penalty_normal(Nq.post, 0, g); real_insert(g)
947    elseif Nq.met then  -- Nq.id==id_hlist
948       local g = get_kanjiskip() -- K
949       handle_penalty_suppress(0, 0, g); real_insert(g)
950    elseif Nq.pre then
951       local g = get_xkanjiskip(Np) -- X
952       handle_penalty_suppress(0, 0, g); real_insert(g)
953    end
954 end
955
956 -- (和文文字で終わる hlist) .. (anything)
957 local function handle_nq_ja_hlist()
958    if Np.pre then
959       local g = get_xkanjiskip(Nq) -- X
960       handle_penalty_suppress(0, 0, g); real_insert(g)
961    end
962 end
963
964
965 -- Nq が前側のクラスタとなることによる修正
966 do
967    local adjust_nq_aux = {
968       [id_glyph] = function() after_alchar(Nq) end, -- after_alchar(Nq)
969       [id_hlist]  = function() after_hlist(Nq) end,
970       [id_pbox]  = function() after_hlist(Nq) end,
971       [id_disc]  = function() after_hlist(Nq) end,
972       [id_pbox_w]  = function()
973                         luatexbase.call_callback("luatexja.jfmglue.whatsit_after",
974                                                  false, Nq, Np)
975                      end,
976    }
977
978    function adjust_nq()
979       local x = adjust_nq_aux[Nq.id]
980       if x then x()  end
981    end
982 end
983
984
985 -------------------- 開始・終了時の処理
986 do
987
988 -- リスト末尾の処理
989 local JWP  = luatexja.stack_table_index.JWP
990 local function handle_list_tail(mode)
991    adjust_nq(); Np = Nq
992    if mode then
993       -- the current list is to be line-breaked.
994       -- Insert \jcharwidowpenalty
995       Bp = widow_Bp; Np = widow_Np
996       if Np.first then
997          handle_penalty_normal(0,
998                                table_current_stack[JWP] or 0)
999       end
1000    else
1001       -- the current list is the contents of a hbox
1002       local npi, pm = Np.id, Np.met
1003       if npi == id_jglyph or (npi==id_pbox and pm) then
1004          local g = new_jfm_glue(pm, Np.class, fast_find_char_class('boxbdd', pm))
1005          if g then
1006             set_attr(g, attr_icflag, BOXBDD)
1007             head = insert_after(head, Np.last, g)
1008          end
1009       end
1010    end
1011 end
1012
1013 -- リスト先頭の処理
1014 local function handle_list_head(par_indented)
1015    local npi, pm = Np.id, Np.met
1016    if npi ==  id_jglyph or (npi==id_pbox and pm) then
1017       if not ihb_flag then
1018          local g = new_jfm_glue(pm, fast_find_char_class(par_indented, pm), Np.class)
1019          if g then
1020             set_attr(g, attr_icflag, BOXBDD)
1021             if getid(g)==id_glue and #Bp==0 then
1022                local h = node_new(id_penalty)
1023                setfield(h, 'penalty', 10000); set_attr(h, attr_icflag, BOXBDD)
1024             end
1025             head = insert_before(head, Np.first, g)
1026          end
1027       end
1028    end
1029 end
1030
1031 -- initialize
1032 -- return value: (the initial cursor lp), (last node)
1033 local init_var
1034 do
1035    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
1036    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
1037    local KSK  = luatexja.stack_table_index.KSK
1038    local XSK  = luatexja.stack_table_index.XSK
1039    local dir_yoko = luatexja.dir_table.dir_yoko
1040    local dir_tate = luatexja.dir_table.dir_tate
1041    local attr_yablshift = luatexbase.attributes['ltj@yablshift']
1042    local attr_tablshift = luatexbase.attributes['ltj@tablshift']
1043    init_var = function (mode,dir)
1044       -- 1073741823: max_dimen
1045       Bp, widow_Bp, widow_Np = {}, {}, {first = nil}
1046       table_current_stack = ltjs.table_current_stack
1047
1048       list_dir = ltjs.list_dir or dir_yoko
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       set_np_xspc_jachar = is_dir_tate and set_np_xspc_jachar_tate or set_np_xspc_jachar_yoko
1053
1054
1055       tex_dir = dir or 'TLT'
1056       kanji_skip = node_new(id_glue)
1057       setfield(kanji_skip, 'spec', skip_table_to_spec(KSK))
1058       set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
1059       get_kanjiskip = (getfield(getfield(kanji_skip, 'spec'), 'width') == 1073741823)
1060          and get_kanjiskip_jfm or get_kanjiskip_normal
1061
1062       xkanji_skip = node_new(id_glue)
1063       setfield(xkanji_skip, 'spec', skip_table_to_spec(XSK))
1064       set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
1065       get_xkanjiskip = (getfield(getfield(xkanji_skip, 'spec'), 'width') == 1073741823)
1066          and get_xkanjiskip_jfm or get_xkanjiskip_normal
1067
1068       Np = {
1069          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1070          first=nil, id=nil, last=nil, met=nil, nuc=nil,
1071          post=nil, pre=nil, xspc=nil,
1072       }
1073       Nq = {
1074          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1075          first=nil, id=nil, last=nil, met=nil, nuc=nil,
1076          post=nil, pre=nil, xspc=nil,
1077       }
1078       if mode then
1079          -- the current list is to be line-breaked:
1080          -- hbox from \parindent is skipped.
1081          local lp, par_indented, lpi, lps  = head, 'boxbdd', getid(head), getsubtype(head)
1082          while lp and ((lpi==id_whatsit and lps~=sid_user)
1083                        or ((lpi==id_hlist) and (lps==3))) do
1084             if (lpi==id_hlist) and (lps==3) then
1085                Np.char, par_indented = 'parbdd', 'parbdd'
1086                Np.width = getfield(lp, 'width')
1087             end
1088             lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
1089          return lp, node_tail(head), par_indented
1090       else
1091          return head, nil, 'boxbdd'
1092       end
1093    end
1094 end
1095
1096 local tex_set_attr = tex.setattribute
1097 local function cleanup(mode)
1098    -- adjust attr_icflag for avoiding error
1099    tex_set_attr('global', attr_icflag, 0)
1100    node_free(kanji_skip); node_free(xkanji_skip)
1101    if mode then
1102       local h = node_next(head)
1103       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
1104          h = node_next(h)
1105          if getid(h) == id_glue and getsubtype(h) == 15 and not node_next(h) then
1106             return false
1107          end
1108       end
1109    end
1110    return head
1111 end
1112 -------------------- 外部から呼ばれる関数
1113
1114 -- main interface
1115 function main(ahead, mode, dir)
1116    if not ahead then return ahead end
1117    head = ahead;
1118    local lp, last, par_indented = init_var(mode,dir)
1119    lp = calc_np(lp, last)
1120    if Np then
1121       extract_np(); handle_list_head(par_indented)
1122    else
1123       return cleanup(mode)
1124    end
1125    lp = calc_np(lp, last)
1126    while Np do
1127       extract_np();
1128       adjust_nq();
1129       local pid, pm = Np.id, Np.met
1130       -- 挿入部
1131       if pid == id_jglyph then
1132          handle_np_jachar(mode)
1133       elseif pm then
1134          if pid==id_hlist then handle_np_ja_hlist()
1135          else handle_np_jachar() end
1136       elseif Nq.met then
1137          if Nq.id==id_hlist then handle_nq_ja_hlist()
1138          else handle_nq_jachar() end
1139       end
1140       lp = calc_np(lp, last)
1141    end
1142    handle_list_tail(mode)
1143    return cleanup(mode)
1144 end
1145 end
1146
1147 do
1148    local IHB  = luatexja.userid_table.IHB
1149    local BPAR = luatexja.userid_table.BPAR
1150    local node_prev = (Dnode ~= node) and Dnode.getprev or node.prev
1151    local node_write = Dnode.write
1152
1153    -- \inhibitglue
1154    function create_inhibitglue_node()
1155       local tn = node_new(id_whatsit, sid_user)
1156       setfield(tn, 'user_id', IHB)
1157       setfield(tn, 'type', 100)
1158       setfield(tn, 'value', 1)
1159       node_write(tn)
1160    end
1161
1162    -- Node for indicating beginning of a paragraph
1163    -- (for ltjsclasses)
1164    function create_beginpar_node()
1165       local tn = node_new(id_whatsit, sid_user)
1166       setfield(tn, 'user_id', BPAR)
1167       setfield(tn, 'type', 100)
1168       setfield(tn, 'value', 1)
1169       node_write(tn)
1170    end
1171
1172    local function whatsit_callback(Np, lp, Nq)
1173       if Np and Np.nuc then return Np
1174       elseif Np and getfield(lp, 'user_id') == BPAR then
1175          Np.first = lp; Np.nuc = lp; Np.last = lp
1176          Np.char = 'parbdd'
1177          Np.met = nil
1178          Np.pre = 0; Np.post = 0
1179          Np.xspc = 0
1180          Np.auto_xspc = false
1181          return Np
1182       end
1183    end
1184
1185     local function whatsit_after_callback(s, Nq, Np)
1186        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1187          local x, y = node_prev(Nq.nuc), Nq.nuc
1188          Nq.first, Nq.nuc, Nq.last = x, x, x
1189          head = node_remove(head, y)
1190          node_free(y)
1191       end
1192       return s
1193    end
1194
1195    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1196                               "luatexja.beginpar.np_info", 1)
1197    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1198                               "luatexja.beginpar.np_info_after", 1)
1199
1200 end