OSDN Git Service

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