OSDN Git Service

trailed whitespace at the end of a line
[luatex-ja/luatexja.git] / src / ltj-jfmglue.lua
1 --
2 -- luatexja/ltj-jfmglue.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.jfmglue',
6   date = '2014/02/02',
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('stack');     local ltjs = luatexja.stack
13 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
14 luatexja.load_module('direction'); local ltjd = luatexja.direction
15 local pairs = pairs
16
17 local Dnode = node.direct or node
18
19 local nullfunc = function(n) return n end
20 local to_node = (Dnode ~= node) and Dnode.tonode or nullfunc
21 local to_direct = (Dnode ~= node) and Dnode.todirect or nullfunc
22
23 local setfield = (Dnode ~= node) and Dnode.setfield or function(n, i, c) n[i] = c end
24 local getfield = (Dnode ~= node) and Dnode.getfield or function(n, i) return n[i] end
25 local getid = (Dnode ~= node) and Dnode.getid or function(n) return n.id end
26 local getfont = (Dnode ~= node) and Dnode.getfont or function(n) return n.font end
27 local getlist = (Dnode ~= node) and Dnode.getlist or function(n) return n.head end
28 local getchar = (Dnode ~= node) and Dnode.getchar or function(n) return n.char end
29 local getsubtype = (Dnode ~= node) and Dnode.getsubtype or function(n) return n.subtype end
30
31 local has_attr = Dnode.has_attribute
32 local set_attr = Dnode.set_attribute
33 local insert_before = Dnode.insert_before
34 local insert_after = Dnode.insert_after
35 local node_next = (Dnode ~= node) and Dnode.getnext or node.next
36 local round = tex.round
37 local ltjd_make_dir_node = ltjd.make_dir_node
38 local ltjf_font_metric_table = ltjf.font_metric_table
39 local ltjf_find_char_class = ltjf.find_char_class
40 local node_new = Dnode.new
41 local node_copy = Dnode.copy
42 local node_remove = luatexja.Dnode_remove -- Dnode.remove
43 local node_tail = Dnode.tail
44 local node_free = Dnode.free
45 local node_end_of_math = Dnode.end_of_math
46
47 local dir_tate = 3
48 local dir_yoko  = 4
49
50 local id_glyph = node.id('glyph')
51 local id_hlist = node.id('hlist')
52 local id_vlist = node.id('vlist')
53 local id_rule = node.id('rule')
54 local id_ins = node.id('ins')
55 local id_mark = node.id('mark')
56 local id_adjust = node.id('adjust')
57 local id_disc = node.id('disc')
58 local id_whatsit = node.id('whatsit')
59 local id_math = node.id('math')
60 local id_glue = node.id('glue')
61 local id_kern = node.id('kern')
62 local id_penalty = node.id('penalty')
63
64 local id_glue_spec = node.id('glue_spec')
65 local id_jglyph    = 512 -- Japanese character
66 local id_box_like  = 256 -- vbox, shifted hbox
67 local id_pbox      = 257 -- already processed nodes (by \unhbox)
68 local id_pbox_w    = 258 -- cluster which consists of a whatsit
69 local sid_user = node.subtype('user_defined')
70
71 local sid_start_link = node.subtype('pdf_start_link')
72 local sid_start_thread = node.subtype('pdf_start_thread')
73 local sid_end_link = node.subtype('pdf_end_link')
74 local sid_end_thread = node.subtype('pdf_end_thread')
75
76 local ITALIC       = luatexja.icflag_table.ITALIC
77 local PACKED       = luatexja.icflag_table.PACKED
78 local KINSOKU      = luatexja.icflag_table.KINSOKU
79 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
80 local PROCESSED    = luatexja.icflag_table.PROCESSED
81 local IC_PROCESSED = luatexja.icflag_table.IC_PROCESSED
82 local BOXBDD       = luatexja.icflag_table.BOXBDD
83 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
84 local kanji_skip
85 local xkanji_skip
86 local table_current_stack
87 local list_dir
88
89 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
90 local attr_dir = luatexbase.attributes['ltj@dir']
91 local attr_icflag = luatexbase.attributes['ltj@icflag']
92
93 local function get_attr_icflag(p)
94    return (has_attr(p, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG
95 end
96
97 -------------------- Helper functions
98
99 local function copy_attr(new, old)
100   -- 仕様が決まるまで off にしておく
101 end
102
103 -- This function is called only for acquiring `special' characters.
104 local function fast_find_char_class(c,m)
105    return m.chars[c] or 0
106 end
107
108 -- 文字クラスの決定
109 local function slow_find_char_class(c, m, oc)
110    local xc = c or oc
111    local cls = ltjf_find_char_class(oc, m)
112    if xc ~= oc and  cls==0 then cls = ltjf_find_char_class(-xc, m) end
113    return cls, xc
114 end
115
116 local zero_glue = node_new(id_glue)
117 spec_zero_glue = to_node(node_new(id_glue_spec))
118   -- must be public, since mentioned from other sources
119 local spec_zero_glue = to_direct(spec_zero_glue)
120 setfield(spec_zero_glue, 'width', 0)
121 setfield(spec_zero_glue, 'stretch', 0)
122 setfield(spec_zero_glue, 'shrink', 0)
123 setfield(spec_zero_glue, 'stretch_order', 0)
124 setfield(spec_zero_glue, 'shrink_order', 0)
125 setfield(zero_glue, 'spec', spec_zero_glue)
126
127 local function skip_table_to_spec(n)
128    local g, st = node_new(id_glue_spec), ltjs.fast_get_stack_skip(n)
129    setfield(g, 'width', st.width)
130    setfield(g, 'stretch', st.stretch)
131    setfield(g, 'shrink', st.shrink)
132    setfield(g, 'stretch_order', st.stretch_order)
133    setfield(g, 'shrink_order', st.shrink_order)
134    return g
135 end
136
137
138 -- penalty 値の計算
139 local function add_penalty(p,e)
140    local pp = getfield(p, 'penalty')
141    if pp>=10000 then
142       if e<=-10000 then pp = 0 end
143    elseif pp<=-10000 then
144       if e>=10000 then pp = 0 end
145    else
146       pp = pp + e
147       if pp>=10000 then      setfield(p, 'penalty', 10000)
148       elseif pp<=-10000 then setfield(p, 'penalty', -10000)
149       else                   setfield(p, 'penalty', pp) end
150    end
151    return
152 end
153
154 -- 「異なる JFM」の間の調整方法
155 diffmet_rule = math.two_paverage
156 function math.two_add(a,b) return a+b end
157 function math.two_average(a,b) return (a+b)*0.5 end
158 function math.two_paverage(a,b) return (a+b)/2 end
159 function math.two_pleft(a,b) return a end
160 function math.two_pright(a,b) return b end
161
162 local head -- the head of current list
163
164 local Np, Nq, Bp
165 local widow_Bp, widow_Np -- \jcharwidowpenalty 挿入位置管理用
166
167 local ihb_flag -- JFM グルー挿入抑止用 flag
168                -- on: \inhibitglue 指定時,hlist の周囲
169
170 -------------------- hlist 内の文字の検索
171
172 local first_char, last_char, find_first_char
173
174 local function check_box(box_ptr, box_end)
175    local p = box_ptr; local found_visible_node = false
176    if not p then
177       find_first_char = false; last_char = nil
178       return true
179    end
180    while p and p~=box_end do
181       local pid = getid(p)
182       if pid==id_kern and getsubtype(p)==2 then
183          p = node_next(node_next(node_next(p))); pid = getid(p) -- p must be glyph_node
184        end
185       if pid==id_glyph then
186          repeat
187             if find_first_char then
188                first_char = p; find_first_char = false
189             end
190             last_char = p; found_visible_node = true; p=node_next(p)
191             if (not p) or p==box_end then
192                return found_visible_node
193             end
194          until getid(p)~=id_glyph
195          pid = getid(p) -- p must be non-nil
196       end
197       if pid==id_kern then
198          local pa = get_attr_icflag(p)
199          --if pa==IC_PROCESSED or pa == PACKED then
200          if pa==IC_PROCESSED then
201             -- do nothing
202          elseif getsubtype(p)==2 then
203             p = node_next(node_next(p));
204             -- Note that another node_next will be executed outside this if-statement.
205          else
206             found_visible_node = true
207             find_first_char = false; last_char = nil
208          end
209       elseif pid==id_hlist then
210          if PACKED == get_attr_icflag(p) then
211             if find_first_char then
212                first_char = getlist(p); find_first_char = false
213             end
214             last_char = getlist(p); found_visible_node = true
215          else
216             if getfield(p, 'shift')==0 then
217                if check_box(getlist(p), nil) then found_visible_node = true end
218             else
219                find_first_char = false; last_char = nil
220             end
221          end
222       elseif pid==id_math then
223          if find_first_char then
224             first_char = p; find_first_char = false
225          end
226          last_char = p; found_visible_node = true
227          --elseif pid==id_rule and get_attr_icflag(p)==PACKED then -- 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 function check_box_high(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 getfont(first_char) == (has_attr(first_char, attr_curjfnt) or -1) then
246                set_np_xspc_jachar(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
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 do
272
273 local function set_attr_icflag_processed(p)
274    if get_attr_icflag(p)<= ITALIC then
275       set_attr(p, attr_icflag, PROCESSED)
276    end
277 end
278
279 local function check_next_ickern(lp)
280    if lp and getid(lp) == id_kern and ITALIC == get_attr_icflag(lp) then
281       set_attr(lp, attr_icflag, IC_PROCESSED)
282       Np.last = lp; return node_next(lp)
283    else
284       Np.last = Np.nuc; return lp
285    end
286 end
287
288 local function calc_np_pbox(lp, last)
289    Np.first = Np.first or lp; Np.id = id_pbox
290    local lpa, nc = KINSOKU, nil
291    set_attr(lp, attr_icflag, get_attr_icflag(lp));
292    while lp ~=last and (lpa>=PACKED) and (lpa<BOXBDD) do
293       nc, lp = lp, node_next(lp); lpa = lp and has_attr(lp, attr_icflag) or 0
294      -- get_attr_icflag() ではいけない!
295    end
296    Np.nuc = nc
297    return check_next_ickern(lp)
298 end
299
300
301 local calc_np_auxtable = {
302    [id_glyph] = function (lp)
303       Np.first, Np.nuc = (Np.first or lp), lp;
304       Np.id = (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1))
305          and id_jglyph or id_glyph
306       return true, check_next_ickern(node_next(lp));
307    end,
308    [id_hlist] = function(lp)
309       local op, flag
310       head, lp, op, flag = ltjd_make_dir_node(head, lp, list_dir, 'jfm hlist')
311       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
312       Np.id = (flag or getfield(op, 'shift')~=0) and id_box_like or id_hlist
313       return true, lp
314    end,
315    [id_vlist] =  function(lp)
316       local op
317       head, lp, op = ltjd_make_dir_node(head, lp, list_dir, 'jfm:' .. getid(lp))
318       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
319       Np.id = id_box_like;
320       return true, lp
321    end,
322    box_like = function(lp)
323       Np.first = Np.first or lp; Np.last = lp; Np.nuc = lp;
324       Np.id = id_box_like;
325       return true, node_next(lp)
326    end,
327    skip = function(lp)
328       set_attr(lp, attr_icflag, PROCESSED)
329       return false, node_next(lp)
330    end,
331    [id_whatsit] = function(lp)
332       local lps = getsubtype(lp)
333       if lps==sid_user then
334          if getfield(lp, 'user_id')==luatexja.userid_table.IHB then
335             local lq = node_next(lp);
336             head = node_remove(head, lp); node_free(lp); ihb_flag = true
337             return false, lq;
338          else
339             set_attr(lp, attr_icflag, PROCESSED)
340             luatexbase.call_callback("luatexja.jfmglue.whatsit_getinfo",
341                                      Np, lp, Nq)
342             if Np.nuc then
343                Np.id = id_pbox_w; Np.first = Np.nuc; Np.last = Np.nuc;
344                return true, node_next(lp)
345             else
346                return false, node_next(lp)
347             end
348          end
349       else
350          -- we do special treatment for these whatsit nodes.
351          if lps == sid_start_link or lps == sid_start_thread then
352             Np.first = lp
353          elseif lps == sid_end_link or lps == sid_end_thread then
354             Np.first, Nq.last = nil, lp;
355          end
356          set_attr(lp, attr_icflag, PROCESSED)
357          return false, node_next(lp)
358       end
359    end,
360    [id_math] = function(lp)
361       Np.first, Np.nuc = (Np.first or lp), lp;
362       set_attr(lp, attr_icflag, PROCESSED)
363       lp  = node_end_of_math(lp)
364       set_attr(lp, attr_icflag, PROCESSED)
365       Np.last, Np.id = lp, id_math;
366       return true, node_next(lp);
367    end,
368    discglue = function(lp)
369       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
370       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
371       return true, node_next(lp)
372    end,
373    [id_kern] = function(lp)
374       Np.first = Np.first or lp
375       if getsubtype(lp)==2 then
376          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
377          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
378          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
379          set_attr(lp, attr_icflag, PROCESSED); Np.nuc = lp
380          Np.id = (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1)) and id_jglyph or id_glyph
381          return true, check_next_ickern(node_next(lp));
382       else
383          Np.id = id_kern; set_attr(lp, attr_icflag, PROCESSED)
384          Np.last = lp; return true, node_next(lp)
385       end
386    end,
387    [id_penalty] = function(lp)
388       Bp[#Bp+1] = lp; set_attr(lp, attr_icflag, PROCESSED)
389       return false, node_next(lp)
390    end,
391 }
392 calc_np_auxtable[id_rule]   = calc_np_auxtable.box_like
393 calc_np_auxtable[13]        = calc_np_auxtable.box_like
394 calc_np_auxtable[id_ins]    = calc_np_auxtable.skip
395 calc_np_auxtable[id_mark]   = calc_np_auxtable.skip
396 calc_np_auxtable[id_adjust] = calc_np_auxtable.skip
397 calc_np_auxtable[id_disc]   = calc_np_auxtable.discglue
398 calc_np_auxtable[id_glue]   = calc_np_auxtable.discglue
399
400 function calc_np(lp, last)
401    local k
402    -- We assume lp = node_next(Np.last)
403    Np, Nq, ihb_flag = Nq, Np, nil
404    -- We clear `predefined' entries of Np before pairs() loop,
405    -- because using only pairs() loop is slower.
406    Np.post, Np.pre, Np.xspc = nil, nil, nil
407    Np.first, Np.id, Np.last, Np.met, Np.class= nil, nil, nil, nil
408    Np.auto_kspc, Np.auto_xspc, Np.char, Np.nuc = nil, nil, nil, nil
409    for k in pairs(Np) do Np[k] = nil end
410
411    for k = 1,#Bp do Bp[k] = nil end
412    while lp ~= last  do
413       local lpa = has_attr(lp, attr_icflag) or 0
414        -- unbox 由来ノードの検出
415       if lpa>=PACKED then
416          if lpa%PROCESSED_BEGIN_FLAG == BOXBDD then
417             local lq = node_next(lp)
418             head = node_remove(head, lp); node_free(lp); lp = lq
419          else return calc_np_pbox(lp, last)
420          end -- id_pbox
421       else
422          k, lp = calc_np_auxtable[getid(lp)](lp)
423          if k then return lp end
424       end
425    end
426    Np = nil; return lp
427 end
428
429 end
430 local calc_np = calc_np
431
432 -- extract informations from Np
433 -- We think that "Np is a Japanese character" if Np.met~=nil,
434 --            "Np is an alphabetic character" if Np.pre~=nil,
435 --            "Np is not a character" otherwise.
436 after_hlist = nil -- global
437 local after_alchar, extract_np
438 do
439   local PRE  = luatexja.stack_table_index.PRE
440   local POST = luatexja.stack_table_index.POST
441   local KCAT = luatexja.stack_table_index.KCAT
442   local XSP  = luatexja.stack_table_index.XSP
443
444 -- 和文文字のデータを取得
445    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
446    local attr_orig_char = luatexbase.attributes['ltj@origchar']
447    local attr_autospc = luatexbase.attributes['ltj@autospc']
448    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
449    function set_np_xspc_jachar(Nx, x)
450       local m = ltjf_font_metric_table[getfont(x)]
451       local cls, c
452       if list_dir == dir_tate then
453          local c1, c2 = getchar(x), has_attr(x, attr_orig_char)
454          c = has_attr(x, attr_dir) or c1 or c2
455          cls = ltjf_find_char_class(c, m)
456          if cls==0 then cls = slow_find_char_class(c2, m, c1) end
457       else
458          cls, c = slow_find_char_class(has_attr(x, attr_orig_char), m, getchar(x))
459       end
460       Nx.met, Nx.char = m, c; Nx.class = cls;
461       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
462       Nx.pre  = table_current_stack[PRE + c]  or 0
463       Nx.post = table_current_stack[POST + c] or 0
464       Nx.xspc = table_current_stack[XSP  + c] or 3
465       Nx.kcat = table_current_stack[KCAT + c] or 0
466       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
467    end
468    local set_np_xspc_jachar = set_np_xspc_jachar
469
470 -- 欧文文字のデータを取得
471    local floor = math.floor
472    function set_np_xspc_alchar(Nx, c,x, lig)
473       if c~=-1 then
474          local f = (lig ==1) and nullfunc or node_tail
475          local xc, xs = getfield(x, 'components'), getsubtype(x)
476          while xc and xs and xs%4>=2 do
477             x = f(xc); xc, xs = getfield(x, 'components'), getsubtype(x)
478          end
479          c = getchar(x)
480          Nx.pre  = table_current_stack[PRE + c]  or 0
481          Nx.post = table_current_stack[POST + c] or 0
482          Nx.xspc = table_current_stack[XSP  + c] or 3
483          Nx.char = 'jcharbdd'
484       else
485          Nx.pre, Nx.post, Nx.char = 0, 0, -1
486          Nx.xspc = table_current_stack[XSP - 1] or 3
487       end
488       Nx.met = nil
489       Nx.auto_xspc = (has_attr(x, attr_autoxspc)==1)
490    end
491    local set_np_xspc_alchar = set_np_xspc_alchar
492
493 -- Np の情報取得メインルーチン
494    extract_np = function ()
495       local x, i = Np.nuc, Np.id;
496       if i ==  id_jglyph then return set_np_xspc_jachar(Np, x)
497       elseif i == id_glyph then return set_np_xspc_alchar(Np, getchar(x), x, 1)
498       elseif i == id_hlist then Np.last_char = check_box_high(Np, getlist(x), nil)
499       elseif i == id_pbox then Np.last_char = check_box_high(Np, Np.first, node_next(Np.last))
500       elseif i == id_disc then Np.last_char = check_box_high(Np, getfield(x, 'replace'), nil)
501       elseif i == id_math then return set_np_xspc_alchar(Np, -1, x)
502       end
503    end
504
505    -- change the information for the next loop
506    -- (will be done if Nx is an alphabetic character or a hlist)
507    after_hlist = function (Nx)
508       local s = Nx.last_char
509       if s then
510          if getid(s)==id_glyph then
511             if getfont(s) == (has_attr(s, attr_curjfnt) or -1) then
512                set_np_xspc_jachar(Nx, s)
513             else
514                set_np_xspc_alchar(Nx, getchar(s), s, 2)
515             end
516          else
517             set_np_xspc_alchar(Nx, -1, s)
518          end
519       else
520          Nx.pre, Nx.met = nil, nil
521       end
522    end
523
524    after_alchar = function (Nx)
525       local x = Nx.nuc
526       return set_np_xspc_alchar(Nx, getchar(x), x, 2)
527    end
528
529 end
530
531 -------------------- 最下層の処理
532
533 -- change penalties (or create a new penalty, if needed)
534 local function handle_penalty_normal(post, pre, g)
535    local a = (pre or 0) + (post or 0)
536    if #Bp == 0 then
537       if (a~=0 and not(g and getid(g)==id_kern)) then
538          local p = node_new(id_penalty)
539          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
540          setfield(p, 'penalty', a)
541          head = insert_before(head, Np.first, p)
542          Bp[1]=p;
543          set_attr(p, attr_icflag, KINSOKU)
544       end
545    else for _, v in pairs(Bp) do add_penalty(v,a) end
546    end
547 end
548
549 local function handle_penalty_always(post, pre, g)
550    local a = (pre or 0) + (post or 0)
551    if #Bp == 0 then
552       if not (g and getid(g)==id_glue) then
553          local p = node_new(id_penalty)
554          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
555          setfield(p, 'penalty', a)
556          head = insert_before(head, Np.first, p)
557          Bp[1]=p
558          set_attr(p, attr_icflag, KINSOKU)
559       end
560    else for _, v in pairs(Bp) do add_penalty(v,a) end
561    end
562 end
563
564 local function handle_penalty_suppress(post, pre, g)
565    local a = (pre or 0) + (post or 0)
566    if #Bp == 0 then
567       if g and getid(g)==id_glue then
568          local p = node_new(id_penalty)
569          setfield(p, 'penalty', 10000); head = insert_before(head, Np.first, p)
570          Bp[1]=p
571          set_attr(p, attr_icflag, KINSOKU)
572       end
573    else for _, v in pairs(Bp) do add_penalty(v,a) end
574    end
575 end
576
577 -- 和文文字間の JFM glue を node 化
578 local function new_jfm_glue(m, bc, ac)
579 -- bc, ac: char classes
580    local g, d = m.char_type[bc][ac], 0
581    local n
582    if g then
583       n,d = node_copy(g[2]), g[3]
584       if g[1] then
585          local f = node_new(id_glue)
586          set_attr(f, attr_icflag, g[4])
587          setfield(f, 'spec', n)
588          return f, d
589       end
590    end
591    return n, d
592 end
593
594 -- Nq.last (kern w) .... (glue/kern g) Np.first
595 local function real_insert(g)
596    if g then
597       head  = insert_before(head, Np.first, g)
598       Np.first = g
599    end
600 end
601
602
603 -------------------- 和文文字間空白量の決定
604
605 -- get kanjiskip
606 local get_kanjiskip
607 local get_kanjiskip_normal, get_kanjiskip_jfm
608 do
609    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
610    local KANJI_SKIP_JFM   = luatexja.icflag_table.KANJI_SKIP_JFM
611    get_kanjiskip_normal = function ()
612       if Np.auto_kspc or Nq.auto_kspc then
613          return node_copy(kanji_skip)
614       else
615          local g = node_copy(zero_glue)
616          set_attr(g, attr_icflag, KANJI_SKIP)
617          return g
618       end
619    end
620
621    get_kanjiskip_jfm = function ()
622       local g
623       if Np.auto_kspc or Nq.auto_kspc then
624          g = node_new(id_glue); --copy_attr(g, Nq.nuc)
625          local gx = node_new(id_glue_spec);
626          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
627          local pm, qm = Np.met, Nq.met
628          local bk = qm.kanjiskip or {0, 0, 0}
629          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
630             setfield(gx, 'width', bk[1])
631             setfield(gx, 'stretch', bk[2])
632             setfield(gx, 'shrink', bk[3])
633          else
634             local ak = pm.kanjiskip or {0, 0, 0}
635             setfield(gx, 'width', round(diffmet_rule(bk[1], ak[1])))
636             setfield(gx, 'stretch', round(diffmet_rule(bk[2], ak[2])))
637             setfield(gx, 'shrink', -round(diffmet_rule(-bk[3], -ak[3])))
638          end
639          setfield(g, 'spec', gx)
640       else
641          g =  node_copy(zero_glue)
642       end
643       set_attr(g, attr_icflag, KANJI_SKIP_JFM)
644       return g
645    end
646 end
647
648 local calc_ja_ja_aux
649 do
650    local bg_ag = 2*id_glue - id_glue
651    local bg_ak = 2*id_glue - id_kern
652    local bk_ag = 2*id_kern - id_glue
653    local bk_ak = 2*id_kern - id_kern
654
655    calc_ja_ja_aux = function (gb,ga, db, da)
656       local rbb, rab = (1-db)/2, (1-da)/2 -- 「前の文字」由来のグルーの割合
657       local rba, raa = (1+db)/2, (1+da)/2 -- 「前の文字」由来のグルーの割合
658       if diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright
659           and diffmet_rule ~= math.two_paverage then
660          rbb, rab, rba, raa = 1,0,0,1
661       end
662       if not gb then
663          if ga then
664             gb = node_new(id_kern); setfield(gb, 'kern', 0)
665          else return nil end
666       elseif not ga then
667          ga = node_new(id_kern); setfield(ga, 'kern', 0)
668       end
669
670       local k = 2*getid(gb) - getid(ga)
671       if k == bg_ag then
672          local bs, as = getfield(gb, 'spec'), getfield(ga, 'spec')
673          -- 両方とも glue.
674          local bd, ad = getfield(bs, 'width'), getfield(as, 'width')
675          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
676          bd, ad = getfield(bs, 'stretch'), getfield(as, 'stretch')
677          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
678          bd, ad = getfield(bs, 'shrink'), getfield(as, 'shrink')
679          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd - rba*ad, -rab*bd - raa*ad)))
680          node_free(ga)
681          return gb
682       elseif k == bk_ak then
683          -- 両方とも kern.
684          local bd, ad = getfield(gb, 'kern'), getfield(ga, 'kern')
685          setfield(gb, 'kern', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
686          node_free(ga)
687          return gb
688       elseif k == bk_ag then
689          local as = getfield(ga, 'spec')
690          -- gb: kern, ga: glue
691          local bd, ad = getfield(gb, 'kern'), getfield(as, 'width')
692          setfield(as, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
693          ad = getfield(as, 'stretch')
694          setfield(bs, 'stretch', round(diffmet_rule(rba*ad, raa*ad)))
695          ad = getfield(as, 'shrink')
696          setfield(bs, 'shrink', -round(diffmet_rule(-rba*ad, -raa*ad)))
697          node_free(gb)
698          return ga
699       else
700          local bs = getfield(gb, 'spec')
701          -- gb: glue, ga: kern
702          local bd, ad = getfield(bs, 'width'), getfield(ga, 'kern')
703          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
704          bd = getfield(bs, 'stretch')
705          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd, rab*bd)))
706          bd = getfield(bs, 'shrink')
707          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd, -rab*bd)))
708          node_free(ga)
709          return gb
710       end
711    end
712 end
713
714 local function calc_ja_ja_glue()
715    if  ihb_flag then return nil
716    else
717       local qm, pm = Nq.met, Np.met
718       if (qm.char_type==pm.char_type) and (qm.var==pm.var) then
719          return new_jfm_glue(qm, Nq.class, Np.class)
720       else
721          local npn, nqn = Np.nuc, Nq.nuc
722          local gb, db = new_jfm_glue(qm, Nq.class,
723                                      slow_find_char_class(has_attr(npn, attr_orig_char),
724                                                           qm, getchar(npn)))
725          local ga, da = new_jfm_glue(pm,
726                                      slow_find_char_class(has_attr(nqn, attr_orig_char),
727                                                           pm, getchar(nqn)),
728                                Np.class)
729          return calc_ja_ja_aux(gb, ga, db, da);
730       end
731    end
732 end
733
734 -------------------- 和欧文間空白量の決定
735
736 -- get xkanjiskip
737 local get_xkanjiskip
738 local get_xkanjiskip_normal, get_xkanjiskip_jfm
739 do
740    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
741    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
742    get_xkanjiskip_normal = function (Nn)
743       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
744          local f = node_copy(xkanji_skip)
745          return f
746       else
747          local g = node_copy(zero_glue)
748          set_attr(g, attr_icflag, XKANJI_SKIP)
749          return g
750       end
751    end
752    get_xkanjiskip_jfm = function (Nn)
753       local g
754       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
755          g = node_new(id_glue)
756          local gx = node_new(id_glue_spec);
757          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
758          local bk = Nn.met.xkanjiskip or {0, 0, 0}
759          setfield(gx, 'width', bk[1])
760          setfield(gx, 'stretch', bk[2])
761          setfield(gx, 'shrink', bk[3])
762          setfield(g, 'spec', gx)
763       else
764          g = node_copy(zero_glue)
765       end
766       set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
767       return g
768    end
769 end
770
771 -------------------- 隣接した「塊」間の処理
772
773 local function get_OA_skip()
774    if not ihb_flag then
775       local pm = Np.met
776       return new_jfm_glue(pm,
777         fast_find_char_class(((Nq.id == id_math and -1) or (type(Nq.char)=='string' and Nq.char or 'jcharbdd')), pm), Np.class)
778    else return nil
779    end
780 end
781 local function get_OB_skip()
782    if not ihb_flag then
783       local qm = Nq.met
784       return new_jfm_glue(qm, Nq.class,
785         fast_find_char_class(((Np.id == id_math and -1) or'jcharbdd'), qm))
786    else return nil
787    end
788 end
789
790 -- (anything) .. jachar
791 local function handle_np_jachar(mode)
792    local qid = Nq.id
793    if qid==id_jglyph or ((qid==id_pbox or qid==id_pbox_w) and Nq.met) then
794       local g = calc_ja_ja_glue() or get_kanjiskip() -- M->K
795       handle_penalty_normal(Nq.post, Np.pre, g); real_insert(g)
796    elseif Nq.met then  -- qid==id_hlist
797       local g = get_OA_skip() or get_kanjiskip() -- O_A->K
798       handle_penalty_normal(0, Np.pre, g); real_insert(g)
799    elseif Nq.pre then
800       local g = get_OA_skip() or get_xkanjiskip(Np) -- O_A->X
801       handle_penalty_normal((qid==id_hlist and 0 or Nq.post), Np.pre, g); real_insert(g)
802    else
803       local g = get_OA_skip() -- O_A
804       if qid==id_glue then handle_penalty_normal(0, Np.pre, g)
805       elseif qid==id_kern then handle_penalty_suppress(0, Np.pre, g)
806       else handle_penalty_always(0, Np.pre, g)
807       end
808       real_insert(g)
809    end
810    if mode and Np.kcat%2~=1 then
811       widow_Np.first, widow_Bp, Bp = Np.first, Bp, widow_Bp
812    end
813 end
814
815
816 -- jachar .. (anything)
817 local function handle_nq_jachar()
818     if Np.pre then
819       local g = get_OB_skip() or get_xkanjiskip(Nq) -- O_B->X
820       handle_penalty_normal(Nq.post, (Np.id==id_hlist and 0 or Np.pre), g); real_insert(g)
821    else
822       local g = get_OB_skip() -- O_B
823       if Np.id==id_glue then handle_penalty_normal(Nq.post, 0, g)
824       elseif Np.id==id_kern then handle_penalty_suppress(Nq.post, 0, g)
825       else handle_penalty_always(Nq.post, 0, g)
826       end
827       real_insert(g)
828    end
829 end
830
831 -- (anything) .. (和文文字で始まる hlist)
832 local function handle_np_ja_hlist()
833    local qid = Nq.id
834    if qid==id_jglyph or ((qid==id_pbox or Nq.id == id_pbox_w) and Nq.met) then
835       local g = get_OB_skip() or get_kanjiskip() -- O_B->K
836       handle_penalty_normal(Nq.post, 0, g); real_insert(g)
837    elseif Nq.met then  -- Nq.id==id_hlist
838       local g = get_kanjiskip() -- K
839       handle_penalty_suppress(0, 0, g); real_insert(g)
840    elseif Nq.pre then
841       local g = get_xkanjiskip(Np) -- X
842       handle_penalty_suppress(0, 0, g); real_insert(g)
843    end
844 end
845
846 -- (和文文字で終わる hlist) .. (anything)
847 local function handle_nq_ja_hlist()
848    if Np.pre then
849       local g = get_xkanjiskip(Nq) -- X
850       handle_penalty_suppress(0, 0, g); real_insert(g)
851    end
852 end
853
854
855 -- Nq が前側のクラスタとなることによる修正
856 do
857    local adjust_nq_aux = {
858       [id_glyph] = function()
859                       local x = Nq.nuc
860                       return set_np_xspc_alchar(Nq, getchar(x),x, 2)
861                    end, -- after_alchar(Nq)
862       [id_hlist]  = function() after_hlist(Nq) end,
863       [id_pbox]  = function() after_hlist(Nq) end,
864       [id_disc]  = function() after_hlist(Nq) end,
865       [id_pbox_w]  = function()
866                         luatexbase.call_callback("luatexja.jfmglue.whatsit_after",
867                                                  false, Nq, Np)
868                      end,
869    }
870
871    function adjust_nq()
872       local x = adjust_nq_aux[Nq.id]
873       if x then x()  end
874    end
875 end
876
877
878 -------------------- 開始・終了時の処理
879 do
880
881 -- リスト末尾の処理
882 local JWP  = luatexja.stack_table_index.JWP
883 local function handle_list_tail(mode)
884    adjust_nq(); Np = Nq
885    if mode then
886       -- the current list is to be line-breaked.
887       -- Insert \jcharwidowpenalty
888       Bp = widow_Bp; Np = widow_Np
889       if Np.first then
890          handle_penalty_normal(0,
891                                table_current_stack[JWP] or 0)
892       end
893    else
894       -- the current list is the contents of a hbox
895       local npi, pm = Np.id, Np.met
896       if npi == id_jglyph or (npi==id_pbox and pm) then
897          local g = new_jfm_glue(pm, Np.class, fast_find_char_class('boxbdd', pm))
898          if g then
899             set_attr(g, attr_icflag, BOXBDD)
900             head = insert_after(head, Np.last, g)
901          end
902       end
903    end
904 end
905
906 -- リスト先頭の処理
907 local function handle_list_head(par_indented)
908    local npi, pm = Np.id, Np.met
909    if npi ==  id_jglyph or (npi==id_pbox and pm) then
910       if not ihb_flag then
911          local g = new_jfm_glue(pm, fast_find_char_class(par_indented, pm), Np.class)
912          if g then
913             set_attr(g, attr_icflag, BOXBDD)
914             if getid(g)==id_glue and #Bp==0 then
915                local h = node_new(id_penalty)
916                setfield(h, 'penalty', 10000); set_attr(h, attr_icflag, BOXBDD)
917             end
918             head = insert_before(head, Np.first, g)
919          end
920       end
921    end
922 end
923
924 -- initialize
925 -- return value: (the initial cursor lp), (last node)
926 local init_var
927 do
928    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
929    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
930    local KSK  = luatexja.stack_table_index.KSK
931    local XSK  = luatexja.stack_table_index.XSK
932    local DIR  = luatexja.stack_table_index.DIR
933    init_var = function (mode)
934       -- 1073741823: max_dimen
935       Bp, widow_Bp, widow_Np = {}, {}, {first = nil}
936       table_current_stack = ltjs.table_current_stack
937
938       list_dir = table_current_stack[DIR] or dir_yoko
939       kanji_skip = node_new(id_glue)
940       setfield(kanji_skip, 'spec', skip_table_to_spec(KSK))
941       set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
942       get_kanjiskip = (getfield(getfield(kanji_skip, 'spec'), 'width') == 1073741823)
943          and get_kanjiskip_jfm or get_kanjiskip_normal
944
945       xkanji_skip = node_new(id_glue)
946       setfield(xkanji_skip, 'spec', skip_table_to_spec(XSK))
947       set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
948       get_xkanjiskip = (getfield(getfield(xkanji_skip, 'spec'), 'width') == 1073741823)
949          and get_xkanjiskip_jfm or get_xkanjiskip_normal
950
951       Np = {
952          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
953          first=nil, id=nil, last=nil, met=nil, nuc=nil,
954          post=nil, pre=nil, xspc=nil,
955       }
956       Nq = {
957          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
958          first=nil, id=nil, last=nil, met=nil, nuc=nil,
959          post=nil, pre=nil, xspc=nil,
960       }
961       if mode then
962          -- the current list is to be line-breaked:
963          -- hbox from \parindent is skipped.
964          local lp, par_indented, lpi, lps  = head, 'boxbdd', getid(head), getsubtype(head)
965          while lp and ((lpi==id_whatsit and lps~=sid_user)
966                        or ((lpi==id_hlist) and (lps==3))) do
967             if (lpi==id_hlist) and (lps==3) then
968                Np.char, par_indented = 'parbdd', 'parbdd'
969                Np.width = getfield(lp, 'width')
970             end
971             lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
972          return lp, node_tail(head), par_indented
973       else
974          return head, nil, 'boxbdd'
975       end
976    end
977 end
978
979 local function cleanup(mode)
980    -- adjust attr_icflag for avoiding error
981    tex.setattribute('global', attr_icflag, 0)
982    node_free(kanji_skip); node_free(xkanji_skip)
983    if mode then
984       local h = node_next(head)
985       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
986          h = node_next(h)
987          if getid(h) == id_glue and getsubtype(h) == 15 and not node_next(h) then
988             return false
989          end
990       end
991       return head
992    else
993       set_attr(head, attr_icflag,
994                get_attr_icflag(head) + PROCESSED_BEGIN_FLAG);
995       return head
996    end
997 end
998 -------------------- 外部から呼ばれる関数
999
1000 -- main interface
1001 function main(ahead, mode)
1002    if not ahead then return ahead end
1003    head = ahead;
1004    local lp, last, par_indented = init_var(mode)
1005    lp = calc_np(lp, last)
1006    if Np then
1007       extract_np(); handle_list_head(par_indented)
1008    else
1009       return cleanup(mode)
1010    end
1011    lp = calc_np(lp, last)
1012    while Np do
1013       extract_np();
1014       adjust_nq();
1015       local pid, pm = Np.id, Np.met
1016       -- 挿入部
1017       if pid == id_jglyph then
1018          handle_np_jachar(mode)
1019       elseif pm then
1020          if pid==id_hlist then handle_np_ja_hlist()
1021          else handle_np_jachar() end
1022       elseif Nq.met then
1023          if Nq.id==id_hlist then handle_nq_ja_hlist()
1024          else handle_nq_jachar() end
1025       end
1026       lp = calc_np(lp, last)
1027    end
1028    handle_list_tail(mode)
1029    return cleanup(mode)
1030 end
1031 end
1032
1033 do
1034    local IHB  = luatexja.userid_table.IHB
1035    local BPAR = luatexja.userid_table.BPAR
1036    local node_prev = (Dnode ~= node) and Dnode.getprev or node.prev
1037    local node_write = Dnode.write
1038
1039    -- \inhibitglue
1040    function create_inhibitglue_node()
1041       local tn = node_new(id_whatsit, sid_user)
1042       setfield(tn, 'user_id', IHB)
1043       setfield(tn, 'type', 100)
1044       setfield(tn, 'value', 1)
1045       node_write(tn)
1046    end
1047
1048    -- Node for indicating beginning of a paragraph
1049    -- (for ltjsclasses)
1050    function create_beginpar_node()
1051       local tn = node_new(id_whatsit, sid_user)
1052       setfield(tn, 'user_id', BPAR)
1053       setfield(tn, 'type', 100)
1054       setfield(tn, 'value', 1)
1055       node_write(tn)
1056    end
1057
1058    local function whatsit_callback(Np, lp, Nq)
1059       if Np and Np.nuc then return Np
1060       elseif Np and getfield(lp, 'user_id') == BPAR then
1061          Np.first = lp; Np.nuc = lp; Np.last = lp
1062          Np.char = 'parbdd'
1063          Np.met = nil
1064          Np.pre = 0; Np.post = 0
1065          Np.xspc = 0
1066          Np.auto_xspc = false
1067          return Np
1068       end
1069    end
1070
1071     local function whatsit_after_callback(s, Nq, Np)
1072        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1073          local x, y = node_prev(Nq.nuc), Nq.nuc
1074          Nq.first, Nq.nuc, Nq.last = x, x, x
1075          head = node_remove(head, y)
1076          node_free(y)
1077       end
1078       return s
1079    end
1080
1081    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1082                               "luatexja.beginpar.np_info", 1)
1083    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1084                               "luatexja.beginpar.np_info_after", 1)
1085
1086 end