OSDN Git Service

dc79ff9ae64ce0eb753c7f699d07a3fa8ae3ac81
[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
93 local attr_icflag = luatexbase.attributes['ltj@icflag']
94 local ltjs_orig_char_table = ltjs.orig_char_table
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 -- This function is called only for acquiring `special' characters.
103 local function fast_find_char_class(c,m)
104    return m.chars[c] or 0
105 end
106
107 -- 文字クラスの決定
108 local slow_find_char_class
109 do
110    local start_time_measure = ltjb.start_time_measure
111    local stop_time_measure = ltjb.stop_time_measure
112    slow_find_char_class = function (c, m, oc)
113       local cls = ltjf_find_char_class(oc, m)
114       if oc~=c and cls==0 then
115          return ltjf_find_char_class(-c, m), oc
116       else
117          return cls, oc
118       end
119    end
120 end
121
122 local zero_glue = node_new(id_glue)
123 spec_zero_glue = to_node(node_new(id_glue_spec))
124   -- must be public, since mentioned from other sources
125 local spec_zero_glue = to_direct(spec_zero_glue)
126 setfield(spec_zero_glue, 'width', 0)
127 setfield(spec_zero_glue, 'stretch', 0)
128 setfield(spec_zero_glue, 'shrink', 0)
129 setfield(spec_zero_glue, 'stretch_order', 0)
130 setfield(spec_zero_glue, 'shrink_order', 0)
131 setfield(zero_glue, 'spec', spec_zero_glue)
132
133 local function skip_table_to_spec(n)
134    local g, st = node_new(id_glue_spec), ltjs.fast_get_stack_skip(n)
135    setfield(g, 'width', st.width)
136    setfield(g, 'stretch', st.stretch)
137    setfield(g, 'shrink', st.shrink)
138    setfield(g, 'stretch_order', st.stretch_order)
139    setfield(g, 'shrink_order', st.shrink_order)
140    return g
141 end
142
143
144 -- penalty 値の計算
145 local function add_penalty(p,e)
146    local pp = getfield(p, 'penalty')
147    if pp>=10000 then
148       if e<=-10000 then setfield(p, 'penalty', 0) end
149    elseif pp<=-10000 then
150       if e>=10000 then  setfield(p, 'penalty', 0) end
151    else
152       pp = pp + e
153       if pp>=10000 then      setfield(p, 'penalty', 10000)
154       elseif pp<=-10000 then setfield(p, 'penalty', -10000)
155       else                   setfield(p, 'penalty', pp) end
156    end
157 end
158
159 -- 「異なる JFM」の間の調整方法
160 diffmet_rule = math.two_paverage
161 function math.two_add(a,b) return a+b end
162 function math.two_average(a,b) return (a+b)*0.5 end
163 function math.two_paverage(a,b) return (a+b)/2 end
164 function math.two_pleft(a,b) return a end
165 function math.two_pright(a,b) return b end
166
167 local head -- the head of current list
168
169 local Np, Nq, Bp
170 local widow_Bp, widow_Np -- \jcharwidowpenalty 挿入位置管理用
171
172 local non_ihb_flag -- JFM グルー挿入抑止用 flag
173 -- false: \inhibitglue 指定時 true: それ以外
174
175 -------------------- hlist 内の文字の検索
176
177 local first_char, last_char, find_first_char
178 do
179 local ltjd_glyph_from_packed = ltjd.glyph_from_packed
180 local function check_box(box_ptr, box_end)
181    local p = box_ptr; local found_visible_node = false
182    if not p then
183       find_first_char = false; last_char = nil
184       return true
185    end
186    while p and p~=box_end do
187       local pid = getid(p)
188       if pid==id_kern and getsubtype(p)==2 then
189          p = node_next(node_next(node_next(p))); pid = getid(p) -- p must be glyph_node
190        end
191       if pid==id_glyph then
192          repeat
193             if find_first_char then
194                first_char = p; find_first_char = false
195             end
196             last_char = p; found_visible_node = true; p=node_next(p)
197             if (not p) or p==box_end then
198                return found_visible_node
199             end
200          until getid(p)~=id_glyph
201          pid = getid(p) -- p must be non-nil
202       end
203       if pid==id_kern then
204          local pa = get_attr_icflag(p)
205          if pa==IC_PROCESSED then
206             -- do nothing
207          elseif getsubtype(p)==2 then
208             p = node_next(node_next(p));
209             -- Note that another node_next will be executed outside this if-statement.
210          else
211             found_visible_node = true
212             find_first_char = false; last_char = nil
213          end
214       elseif pid==id_hlist then
215          if PACKED == get_attr_icflag(p) then
216             local s = ltjd_glyph_from_packed(p)
217             if find_first_char then
218                first_char = s; find_first_char = false
219             end
220             last_char = s; found_visible_node = true
221          else
222             if getfield(p, 'shift')==0 then
223                if check_box(getlist(p), nil) then found_visible_node = true end
224             else
225                find_first_char = false; last_char = nil
226             end
227          end
228       elseif pid==id_math then
229          if find_first_char then
230             first_char = p; find_first_char = false
231          end
232          last_char = p; found_visible_node = true
233       elseif pid==id_rule and get_attr_icflag(p)==PACKED then
234          -- do nothing
235       elseif not (pid==id_ins   or pid==id_mark
236                   or pid==id_adjust or pid==id_whatsit
237                   or pid==id_penalty) then
238          found_visible_node = true
239          find_first_char = false; last_char = nil
240       end
241       p = node_next(p)
242    end
243    return found_visible_node
244 end
245
246 function check_box_high(Nx, box_ptr, box_end)
247    first_char = nil;  last_char = nil;  find_first_char = true
248    if check_box(box_ptr, box_end) then
249       local first_char = first_char
250       if first_char then
251          if getid(first_char)==id_glyph then
252             if getfield(first_char, 'lang') == lang_ja then
253                set_np_xspc_jachar_hbox(Nx, first_char)
254             else
255                set_np_xspc_alchar(Nx, getchar(first_char),first_char, 1)
256             end
257          else -- math_node
258             set_np_xspc_alchar(Nx, -1,first_char)
259          end
260       end
261    end
262    return last_char
263 end
264 end
265 -------------------- Np の計算と情報取得
266
267 luatexbase.create_callback("luatexja.jfmglue.whatsit_getinfo", "data",
268                            function (Np, lp, Nq)
269                               if Np.nuc then return Np
270                               else
271                                  return Np  -- your code
272                               end
273                            end)
274 luatexbase.create_callback("luatexja.jfmglue.whatsit_after", "data",
275                            function (stat, Nq, Np) return false end)
276
277 -- calc next Np
278 do
279
280 local traverse = Dnode.traverse
281 local function set_attr_icflag_processed(p)
282    if get_attr_icflag(p)<= ITALIC then
283       set_attr(p, attr_icflag, PROCESSED)
284    end
285 end
286
287 local function check_next_ickern(lp)
288    if lp and getid(lp) == id_kern and ITALIC == get_attr_icflag(lp) then
289       set_attr(lp, attr_icflag, IC_PROCESSED)
290       Np.last = lp; return node_next(lp)
291    else
292       Np.last = Np.nuc; return lp
293    end
294 end
295
296 local function calc_np_pbox(lp, last)
297    local first, lpa, nc = (not Np.first), KINSOKU, nil
298    Np.first = Np.first or lp; Np.id = id_pbox
299    set_attr(lp, attr_icflag, get_attr_icflag(lp));
300    while lp ~=last and (lpa>=PACKED) and (lpa<BOXBDD) do
301       if getid(lp)==id_hlist or getid(lp)==id_vlist then
302          head, lp, nc = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm pbox')
303          Np.first = first and nc or Np.first
304       else
305          nc, lp = lp, node_next(lp)
306       end
307       first, lpa = false, (lp and has_attr(lp, attr_icflag) or 0)
308      -- get_attr_icflag() ではいけない!
309    end
310    Np.nuc = nc
311    lp = check_next_ickern(lp)
312    Np.last_char = check_box_high(Np, Np.first, lp)
313    return lp
314 end
315
316 local ltjw_apply_ashift_math = ltjw.apply_ashift_math
317 local ltjw_apply_ashift_disc = ltjw.apply_ashift_disc
318 local min, max = math.min, math.max
319 local function calc_np_aux_glyph_common(lp)
320    Np.nuc = lp
321    Np.id = npi
322    if ltjs_orig_char_table[lp] then
323       Np.id = id_jglyph
324       set_np_xspc_jachar(Np, lp)
325       local npi, npf
326       lp, head, npi, npf = capsule_glyph(lp, Np.met, Np.class, head, tex_dir, lp)
327       Np.first = (Np.first~=Np.nuc) and Np.first or npf or npi
328       Np.nuc = npi
329       return true, check_next_ickern(lp);
330    else
331       Np.id = id_glyph
332       set_np_xspc_alchar(Np, getchar(lp), lp, 1)
333       -- loop
334       local first_glyph, last_glyph = lp
335       set_attr(lp, attr_icflag, PROCESSED); Np.last = lp
336       local y_adjust = has_attr(lp,attr_ablshift) or 0
337       local node_depth = getfield(lp, 'depth') + min(y_adjust, 0)
338       local adj_depth = (y_adjust>0) and (getfield(lp, 'depth') + y_adjust) or 0
339       setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
340       lp = node_next(lp)
341       for lx in traverse(lp) do
342          local lai = get_attr_icflag(lx)
343          if lx==last or  lai>=PACKED then
344             lp=lx; break
345          else
346             local lid = getid(lx)
347             if lid==id_glyph and not ltjs_orig_char_table[lx] then
348                -- 欧文文字
349                last_glyph = lx; set_attr(lx, attr_icflag, PROCESSED); Np.last = lx
350                y_adjust = has_attr(lx,attr_ablshift) or 0
351                node_depth = max(getfield(lx, 'depth') + min(y_adjust, 0), node_depth)
352                adj_depth = (y_adjust>0) and max(getfield(lx, 'depth') + y_adjust, adj_depth) or adj_depth
353                setfield(lx, 'yoffset', getfield(lx, 'yoffset') - y_adjust)
354             elseif lid==id_kern then
355                local ls = getsubtype(lx)
356                if ls==2 then -- アクセント用の kern
357                   set_attr(lx, attr_icflag, PROCESSED)
358                   lx = node_next(lx) -- lp: アクセント本体
359                   setfield(lx, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lx,attr_ablshift) or 0))
360                   lx = node_next(node_next(lx))
361                elseif ls==0  then
362                   Np.last = lx
363                elseif (ls==1 and lai==ITALIC) then
364                   Np.last = lx; set_attr(lx, attr_icflag, IC_PROCESSED)
365                else
366                   lp=lx; break
367                end
368             else
369                lp=lx; break
370             end
371          end
372       end
373       local r
374       if adj_depth>node_depth then
375             r = node_new(id_rule)
376             setfield(r, 'width', 0); setfield(r, 'height', 0)
377             setfield(r, 'depth',adj_depth); setfield(r, 'dir', tex_dir)
378             set_attr(r, attr_icflag, PROCESSED)
379       end
380       if last_glyph then
381          Np.last_char = last_glyph
382          if r then insert_after(head, first_glyph, r) end
383       else
384          local npn = Np.nuc
385          Np.last_char = npn
386          if r then
387             local nf, nc = getfont(npn), getchar(npn)
388             local ct = (font.getfont(nf) or font.fonts[nf] ).characters[nc]
389             if (ct.left_protruding or 0) == 0 then
390                head = insert_before(head, npn, r)
391                Np.first = (Np.first==npn) and r or npn
392             elseif (ct.right_protruding or 0) == 0 then
393                insert_after(head, npn, r); Np.last, lp = r, r
394             else
395                ltjb.package_warning_no_line(
396                   'luatexja',
397                   'Check depth of glyph node ' .. tostring(npn) .. '(font=' .. nf
398                      .. ', char=' .. nc .. '),    because its \\lpcode is ' .. tostring(ct.left_protruding)
399                      .. ' and its \\rpcode is ' .. tostring(ct.right_protruding)
400                ); node_free(r)
401             end
402          end
403       end
404       return true, lp
405    end
406 end
407 local calc_np_auxtable = {
408    [id_glyph] = function (lp)
409       Np.first= (Np.first or lp)
410       return calc_np_aux_glyph_common(lp)
411    end,
412    [id_hlist] = function(lp)
413       local op, flag
414       head, lp, op, flag = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm hlist')
415       set_attr(op, attr_icflag, PROCESSED)
416       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
417       if (flag or getfield(op, 'shift')~=0) then
418          Np.id = id_box_like
419       else
420          Np.id = id_hlist
421          Np.last_char = check_box_high(Np, getlist(op), nil)
422       end
423       return true, lp
424    end,
425    [id_vlist] =  function(lp)
426       local op
427       head, lp, op = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm:' .. getid(lp))
428       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
429       Np.id = id_box_like;
430       return true, lp
431    end,
432    box_like = function(lp)
433       Np.first = Np.first or lp; Np.last = lp; Np.nuc = lp;
434       Np.id = id_box_like;
435       return true, node_next(lp)
436    end,
437    skip = function(lp)
438       set_attr(lp, attr_icflag, PROCESSED)
439       return false, node_next(lp)
440    end,
441    [id_whatsit] = function(lp)
442       local lps = getsubtype(lp)
443       if lps==sid_user then
444          if getfield(lp, 'user_id')==luatexja.userid_table.IHB then
445             local lq = node_next(lp);
446             head = node_remove(head, lp); node_free(lp); non_ihb_flag = false
447             return false, lq;
448          else
449             set_attr(lp, attr_icflag, PROCESSED)
450             luatexbase.call_callback("luatexja.jfmglue.whatsit_getinfo",
451                                      Np, lp, Nq)
452             if Np.nuc then
453                Np.id = id_pbox_w; Np.first = Np.nuc; Np.last = Np.nuc;
454                return true, node_next(lp)
455             else
456                return false, node_next(lp)
457             end
458          end
459       else
460          -- we do special treatment for these whatsit nodes.
461          if lps == sid_start_link or lps == sid_start_thread then
462             Np.first = lp
463          elseif lps == sid_end_link or lps == sid_end_thread then
464             Np.first, Nq.last = nil, lp;
465          end
466          set_attr(lp, attr_icflag, PROCESSED)
467          return false, node_next(lp)
468       end
469    end,
470    [id_math] = function(lp)
471       Np.first, Np.nuc = (Np.first or lp), lp;
472       set_attr(lp, attr_icflag, PROCESSED)
473       set_np_xspc_alchar(Np, -1, lp)
474       local end_math  = node_end_of_math(lp)
475       ltjw_apply_ashift_math(lp, end_math, attr_ablshift)
476       set_attr(end_math, attr_icflag, PROCESSED)
477       Np.last, Np.id = end_math, id_math;
478       return true, node_next(end_math);
479    end,
480    [id_glue] = function(lp)
481       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
482       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
483       return true, node_next(lp)
484    end,
485    [id_disc] = function(lp)
486       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
487       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
488       ltjw_apply_ashift_disc(lp, (list_dir==dir_tate), tex_dir)
489       Np.last_char = check_box_high(Np, getfield(lp, 'replace'), nil)
490       return true, node_next(lp)
491    end,
492    [id_kern] = function(lp)
493       Np.first = Np.first or lp
494       if getsubtype(lp)==2 then
495          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
496          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
497          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
498          set_attr(lp, attr_icflag, PROCESSED);
499          return calc_np_aux_glyph_common(lp)
500       else
501          Np.id = id_kern; set_attr(lp, attr_icflag, PROCESSED)
502          Np.last = lp; return true, node_next(lp)
503       end
504    end,
505    [id_penalty] = function(lp)
506       Bp[#Bp+1] = lp; set_attr(lp, attr_icflag, PROCESSED)
507       return false, node_next(lp)
508    end,
509 }
510 calc_np_auxtable[id_rule]   = calc_np_auxtable.box_like
511 calc_np_auxtable[13]        = calc_np_auxtable.box_like
512 calc_np_auxtable[id_ins]    = calc_np_auxtable.skip
513 calc_np_auxtable[id_mark]   = calc_np_auxtable.skip
514 calc_np_auxtable[id_adjust] = calc_np_auxtable.skip
515
516 function calc_np(lp, last)
517    local k
518    -- We assume lp = node_next(Np.last)
519    Np, Nq, non_ihb_flag = Nq, Np, true
520    -- We clear `predefined' entries of Np before pairs() loop,
521    -- because using only pairs() loop is slower.
522    Np.post, Np.pre, Np.xspc = nil, nil, nil
523    Np.first, Np.id, Np.last, Np.met, Np.class= nil, nil, nil, nil
524    Np.auto_kspc, Np.auto_xspc, Np.char, Np.nuc = nil, nil, nil, nil
525    for k in pairs(Np) do Np[k] = nil end
526
527    for k = 1,#Bp do Bp[k] = nil end
528    while lp ~= last  do
529       local lpa = has_attr(lp, attr_icflag) or 0
530        -- unbox 由来ノードの検出
531       if lpa>=PACKED then
532          if lpa%PROCESSED_BEGIN_FLAG == BOXBDD then
533             local lq = node_next(lp)
534             head = node_remove(head, lp); node_free(lp); lp = lq
535          else
536             return calc_np_pbox(lp, last)
537          end -- id_pbox
538       else
539          k, lp = calc_np_auxtable[getid(lp)](lp)
540          if k then return lp end
541       end
542    end
543    Np = nil; return lp
544 end
545
546 end
547 local calc_np = calc_np
548
549 -- extract informations from Np
550 -- We think that "Np is a Japanese character" if Np.met~=nil,
551 --            "Np is an alphabetic character" if Np.pre~=nil,
552 --            "Np is not a character" otherwise.
553 after_hlist = nil -- global
554 local after_alchar, extract_np
555 do
556   local PRE  = luatexja.stack_table_index.PRE
557   local POST = luatexja.stack_table_index.POST
558   local KCAT = luatexja.stack_table_index.KCAT
559   local XSP  = luatexja.stack_table_index.XSP
560   local dir_tate = luatexja.dir_table.dir_tate
561
562 -- 和文文字のデータを取得
563    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
564    local attr_autospc = luatexbase.attributes['ltj@autospc']
565    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
566    function set_np_xspc_jachar_yoko(Nx, x)
567       local m = ltjf_font_metric_table[getfont(x)]
568       local cls, c = slow_find_char_class(ltjs_orig_char_table[x], m, getchar(x))
569       Nx.met = m; Nx.class = cls
570       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
571       Nx.pre  = table_current_stack[PRE + c]  or 0
572       Nx.post = table_current_stack[POST + c] or 0
573       Nx.xspc = table_current_stack[XSP  + c] or 3
574       Nx.kcat = table_current_stack[KCAT + c] or 0
575       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
576    end
577    function set_np_xspc_jachar_tate(Nx, x)
578       local m = ltjf_font_metric_table[getfont(x)]
579       local cls, c
580       local c1, c2 = getchar(x), ltjs_orig_char_table[x][1]
581       c = ltjs_orig_char_table[x][2] or c1 or c2
582       cls = ltjf_find_char_class(c, m)
583       if cls==0 then cls = slow_find_char_class(c2, m, c1) end
584       Nx.met = m; Nx.class = cls;
585       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
586       Nx.pre  = table_current_stack[PRE + c]  or 0
587       Nx.post = table_current_stack[POST + c] or 0
588       Nx.xspc = table_current_stack[XSP  + c] or 3
589       Nx.kcat = table_current_stack[KCAT + c] or 0
590       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
591    end
592    local function set_np_xspc_jachar_hbox(Nx, x)
593       local m = ltjf_font_metric_table[getfont(x)]
594       local c = getchar(x)
595       Nx.met = m; Nx.class = has_attr(x, attr_jchar_class) or 0;
596       Nx.pre  = table_current_stack[PRE + c]  or 0
597       Nx.post = table_current_stack[POST + c] or 0
598       Nx.xspc = table_current_stack[XSP  + c] or 3
599       Nx.kcat = table_current_stack[KCAT + c] or 0
600       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
601    end
602
603 -- 欧文文字のデータを取得
604    local floor = math.floor
605    function set_np_xspc_alchar(Nx, c,x, lig)
606       if c~=-1 then
607          local f = (lig ==1) and nullfunc or node_tail
608          local xc, xs = getfield(x, 'components'), getsubtype(x)
609          while xc and xs and xs%4>=2 do
610             x = f(xc); xc, xs = getfield(x, 'components'), getsubtype(x)
611          end
612          c = getchar(x)
613          Nx.pre  = table_current_stack[PRE + c]  or 0
614          Nx.post = table_current_stack[POST + c] or 0
615          Nx.xspc = table_current_stack[XSP  + c] or 3
616       else
617          Nx.pre, Nx.post = 0, 0
618          Nx.xspc = table_current_stack[XSP - 1] or 3
619       end
620       Nx.met = nil
621       Nx.auto_xspc = (has_attr(x, attr_autoxspc)==1)
622    end
623    local set_np_xspc_alchar = set_np_xspc_alchar
624
625    -- change the information for the next loop
626    -- (will be done if Nx is an alphabetic character or a hlist)
627    after_hlist = function (Nx)
628       local s = Nx.last_char
629       if s then
630          if getid(s)==id_glyph then
631             if getfield(s, 'lang') == lang_ja then
632                set_np_xspc_jachar_hbox(Nx, s)
633             else
634                set_np_xspc_alchar(Nx, getchar(s), s, 2)
635             end
636          else
637             set_np_xspc_alchar(Nx, -1, s)
638          end
639       else
640          Nx.pre, Nx.met = nil, nil
641       end
642    end
643
644    after_alchar = function (Nx)
645       local x = Nx.last_char
646       return set_np_xspc_alchar(Nx, getchar(x), x, 2)
647    end
648
649 end
650
651 -------------------- 最下層の処理
652
653 -- change penalties (or create a new penalty, if needed)
654 local function handle_penalty_normal(post, pre, g)
655    local a = (pre or 0) + (post or 0)
656    if #Bp == 0 then
657       if (a~=0 and not(g and getid(g)==id_kern)) then
658          local p = node_new(id_penalty)
659          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
660          setfield(p, 'penalty', a)
661          head = insert_before(head, Np.first, p)
662          Bp[1]=p;
663          set_attr(p, attr_icflag, KINSOKU)
664       end
665    else for _, v in pairs(Bp) do add_penalty(v,a) end
666    end
667 end
668
669 local function handle_penalty_always(post, pre, g)
670    local a = (pre or 0) + (post or 0)
671    if #Bp == 0 then
672       if not (g and getid(g)==id_glue) or a~=0 then
673          local p = node_new(id_penalty)
674          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
675          setfield(p, 'penalty', a)
676          head = insert_before(head, Np.first, p)
677          Bp[1]=p
678          set_attr(p, attr_icflag, KINSOKU)
679       end
680    else for _, v in pairs(Bp) do add_penalty(v,a) end
681    end
682 end
683
684 local function handle_penalty_suppress(post, pre, g)
685    local a = (pre or 0) + (post or 0)
686    if #Bp == 0 then
687       if g and getid(g)==id_glue then
688          local p = node_new(id_penalty)
689          setfield(p, 'penalty', 10000); head = insert_before(head, Np.first, p)
690          Bp[1]=p
691          set_attr(p, attr_icflag, KINSOKU)
692       end
693    else for _, v in pairs(Bp) do add_penalty(v,a) end
694    end
695 end
696
697 -- 和文文字間の JFM glue を node 化
698 local function new_jfm_glue(m, bc, ac)
699 -- bc, ac: char classes
700    local g, d = m.char_type[bc][ac], 0
701    local n
702    if g then
703       n,d = node_copy(g[2]), g[3]
704       if g[1] then
705          local f = node_new(id_glue)
706          set_attr(f, attr_icflag, g[4])
707          setfield(f, 'spec', n)
708          return f, d
709       end
710    end
711    return n, d
712 end
713
714 -- Nq.last (kern w) .... (glue/kern g) Np.first
715 local function real_insert(g)
716    if g then
717       head  = insert_before(head, Np.first, g)
718       Np.first = g
719    end
720 end
721
722
723 -------------------- 和文文字間空白量の決定
724
725 -- get kanjiskip
726 local get_kanjiskip
727 local get_kanjiskip_normal, get_kanjiskip_jfm
728 do
729    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
730    local KANJI_SKIP_JFM   = luatexja.icflag_table.KANJI_SKIP_JFM
731    get_kanjiskip_normal = function ()
732       if Np.auto_kspc or Nq.auto_kspc then
733          return node_copy(kanji_skip)
734       else
735          local g = node_copy(zero_glue)
736          set_attr(g, attr_icflag, KANJI_SKIP)
737          return g
738       end
739    end
740
741    get_kanjiskip_jfm = function ()
742       local g
743       if Np.auto_kspc or Nq.auto_kspc then
744          g = node_new(id_glue); --copy_attr(g, Nq.nuc)
745          local gx = node_new(id_glue_spec);
746          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
747          local pm, qm = Np.met, Nq.met
748          local bk = qm.kanjiskip or {0, 0, 0}
749          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
750             setfield(gx, 'width', bk[1])
751             setfield(gx, 'stretch', bk[2])
752             setfield(gx, 'shrink', bk[3])
753          else
754             local ak = pm.kanjiskip or {0, 0, 0}
755             setfield(gx, 'width', round(diffmet_rule(bk[1], ak[1])))
756             setfield(gx, 'stretch', round(diffmet_rule(bk[2], ak[2])))
757             setfield(gx, 'shrink', -round(diffmet_rule(-bk[3], -ak[3])))
758          end
759          setfield(g, 'spec', gx)
760       else
761          g =  node_copy(zero_glue)
762       end
763       set_attr(g, attr_icflag, KANJI_SKIP_JFM)
764       return g
765    end
766 end
767
768 local calc_ja_ja_aux
769 do
770    local bg_ag = 2*id_glue - id_glue
771    local bg_ak = 2*id_glue - id_kern
772    local bk_ag = 2*id_kern - id_glue
773    local bk_ak = 2*id_kern - id_kern
774
775    calc_ja_ja_aux = function (gb,ga, db, da)
776       local rbb, rab = (1-db)/2, (1-da)/2 -- 「前の文字」由来のグルーの割合
777       local rba, raa = (1+db)/2, (1+da)/2 -- 「前の文字」由来のグルーの割合
778       if diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright
779           and diffmet_rule ~= math.two_paverage then
780          rbb, rab, rba, raa = 1,0,0,1
781       end
782       if not gb then
783          if ga then
784             gb = node_new(id_kern); setfield(gb, 'kern', 0)
785          else return nil end
786       elseif not ga then
787          ga = node_new(id_kern); setfield(ga, 'kern', 0)
788       end
789
790       local k = 2*getid(gb) - getid(ga)
791       if k == bg_ag then
792          local bs, as = getfield(gb, 'spec'), getfield(ga, 'spec')
793          -- 両方とも glue.
794          local bd, ad = getfield(bs, 'width'), getfield(as, 'width')
795          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
796          bd, ad = getfield(bs, 'stretch'), getfield(as, 'stretch')
797          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
798          bd, ad = getfield(bs, 'shrink'), getfield(as, 'shrink')
799          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd - rba*ad, -rab*bd - raa*ad)))
800          node_free(ga)
801          return gb
802       elseif k == bk_ak then
803          -- 両方とも kern.
804          local bd, ad = getfield(gb, 'kern'), getfield(ga, 'kern')
805          setfield(gb, 'kern', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
806          node_free(ga)
807          return gb
808       elseif k == bk_ag then
809          local as = getfield(ga, 'spec')
810          -- gb: kern, ga: glue
811          local bd, ad = getfield(gb, 'kern'), getfield(as, 'width')
812          setfield(as, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
813          ad = getfield(as, 'stretch')
814          setfield(bs, 'stretch', round(diffmet_rule(rba*ad, raa*ad)))
815          ad = getfield(as, 'shrink')
816          setfield(bs, 'shrink', -round(diffmet_rule(-rba*ad, -raa*ad)))
817          node_free(gb)
818          return ga
819       else
820          local bs = getfield(gb, 'spec')
821          -- gb: glue, ga: kern
822          local bd, ad = getfield(bs, 'width'), getfield(ga, 'kern')
823          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
824          bd = getfield(bs, 'stretch')
825          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd, rab*bd)))
826          bd = getfield(bs, 'shrink')
827          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd, -rab*bd)))
828          node_free(ga)
829          return gb
830       end
831    end
832 end
833
834 local function calc_ja_ja_glue()
835    local qm, pm = Nq.met, Np.met
836    if (qm.char_type==pm.char_type) and (qm.var==pm.var) then
837       return new_jfm_glue(qm, Nq.class, Np.class)
838    else
839       local npn, nqn = Np.nuc, Nq.nuc
840       local gb, db = new_jfm_glue(qm, Nq.class,
841                                   slow_find_char_class(ltjs_orig_char_table[npn],
842                                                        qm, getchar(npn)))
843       local ga, da = new_jfm_glue(pm,
844                                   slow_find_char_class(ltjs_orig_char_table[nqn],
845                                                        pm, getchar(nqn)),
846                                   Np.class)
847       return calc_ja_ja_aux(gb, ga, db, da);
848    end
849 end
850
851 -------------------- 和欧文間空白量の決定
852
853 -- get xkanjiskip
854 local get_xkanjiskip
855 local get_xkanjiskip_normal, get_xkanjiskip_jfm
856 do
857    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
858    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
859    get_xkanjiskip_normal = function (Nn)
860       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
861          return node_copy(xkanji_skip)
862       else
863          local g = node_copy(zero_glue)
864          set_attr(g, attr_icflag, XKANJI_SKIP)
865          return g
866       end
867    end
868    get_xkanjiskip_jfm = function (Nn)
869       local g
870       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
871          g = node_new(id_glue)
872          local gx = node_new(id_glue_spec);
873          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
874          local bk = Nn.met.xkanjiskip or {0, 0, 0}
875          setfield(gx, 'width', bk[1])
876          setfield(gx, 'stretch', bk[2])
877          setfield(gx, 'shrink', bk[3])
878          setfield(g, 'spec', gx)
879       else
880          g = node_copy(zero_glue)
881       end
882       set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
883       return g
884    end
885 end
886
887 -------------------- 隣接した「塊」間の処理
888
889 local function get_OA_skip()
890    local pm = Np.met
891    return new_jfm_glue(pm,
892                        fast_find_char_class((Nq.id == id_math and -1 or 'jcharbdd'), pm), Np.class)
893 end
894 local function get_OB_skip()
895    local qm = Nq.met
896    return new_jfm_glue(qm, Nq.class,
897                        fast_find_char_class((Np.id == id_math and -1 or'jcharbdd'), qm))
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 = non_ihb_flag and 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 = non_ihb_flag and 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 = non_ihb_flag and 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 = non_ihb_flag and 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 = non_ihb_flag and 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 =non_ihb_flag and  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 = non_ihb_flag and 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 non_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       handle_list_head(par_indented)
1122    else
1123       return cleanup(mode)
1124    end
1125    lp = calc_np(lp, last)
1126    while Np do
1127       adjust_nq();
1128       local pid, pm = Np.id, Np.met
1129       -- 挿入部
1130       if pid == id_jglyph then
1131          handle_np_jachar(mode)
1132       elseif pm then
1133          if pid==id_hlist then handle_np_ja_hlist()
1134          else handle_np_jachar() end
1135       elseif Nq.met then
1136          if Nq.id==id_hlist then handle_nq_ja_hlist()
1137          else handle_nq_jachar() end
1138       end
1139       lp = calc_np(lp, last)
1140    end
1141    handle_list_tail(mode)
1142    return cleanup(mode)
1143 end
1144 end
1145
1146 do
1147    local IHB  = luatexja.userid_table.IHB
1148    local BPAR = luatexja.userid_table.BPAR
1149    local node_prev = (Dnode ~= node) and Dnode.getprev or node.prev
1150    local node_write = Dnode.write
1151
1152    -- \inhibitglue
1153    function create_inhibitglue_node()
1154       local tn = node_new(id_whatsit, sid_user)
1155       setfield(tn, 'user_id', IHB)
1156       setfield(tn, 'type', 100)
1157       setfield(tn, 'value', 1)
1158       node_write(tn)
1159    end
1160
1161    -- Node for indicating beginning of a paragraph
1162    -- (for ltjsclasses)
1163    function create_beginpar_node()
1164       local tn = node_new(id_whatsit, sid_user)
1165       setfield(tn, 'user_id', BPAR)
1166       setfield(tn, 'type', 100)
1167       setfield(tn, 'value', 1)
1168       node_write(tn)
1169    end
1170
1171    local function whatsit_callback(Np, lp, Nq)
1172       if Np and Np.nuc then return Np
1173       elseif Np and getfield(lp, 'user_id') == BPAR then
1174          Np.first = lp; Np.nuc = lp; Np.last = lp
1175          Np.char = 'parbdd'
1176          Np.met = nil
1177          Np.pre = 0; Np.post = 0
1178          Np.xspc = 0
1179          Np.auto_xspc = false
1180          return Np
1181       end
1182    end
1183
1184     local function whatsit_after_callback(s, Nq, Np)
1185        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1186          local x, y = node_prev(Nq.nuc), Nq.nuc
1187          Nq.first, Nq.nuc, Nq.last = x, x, x
1188          head = node_remove(head, y)
1189          node_free(y)
1190       end
1191       return s
1192    end
1193
1194    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1195                               "luatexja.beginpar.np_info", 1)
1196    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1197                               "luatexja.beginpar.np_info_after", 1)
1198
1199 end