OSDN Git Service

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