OSDN Git Service

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