OSDN Git Service

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