OSDN Git Service

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