OSDN Git Service

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