OSDN Git Service

9f3bd36a3830dd681082436c82151a2e98c1fceb
[luatex-ja/luatexja.git] / src / luatexja.lua
1
2 require('lualibs')
3 tableunpack = table.unpack
4
5 ------------------------------------------------------------------------
6 -- naming:
7 --    ext_... : called from \directlua{}
8 --    int_... : called from other Lua codes, but not from \directlua{}
9 --    (other)     : only called from this file
10 function luatexja.load_module(name)
11    require('ltj-' .. name.. '.lua')
12 end
13 function luatexja.load_lua(fn)
14    local found = kpse.find_file(fn, 'tex')
15    if not found then
16       tex.error("LuaTeX-ja error: File `" .. fn .. "' not found")
17    else
18       texio.write_nl('(' .. found .. ')')
19       dofile(found)
20    end
21 end
22
23 -- check token library
24 if newtoken then
25    luatexja.token = newtoken
26 else
27    local luatex_version = status.list().luatex_version
28    if luatex_version >80 then
29       luatexja.token = token
30    end
31 end
32
33 --- 以下は全ファイルで共有される定数
34 local icflag_table = {}
35 luatexja.icflag_table = icflag_table
36 icflag_table.ITALIC          = 1
37 icflag_table.PACKED          = 2
38 icflag_table.KINSOKU         = 3
39 icflag_table.FROM_JFM        = 6
40 -- FROM_JFM: 4, 5, 6, 7, 8 →優先度高(伸びやすく,縮みやすい)
41 -- 6 が標準
42 icflag_table.KANJI_SKIP      = 9
43 icflag_table.KANJI_SKIP_JFM  = 10
44 icflag_table.XKANJI_SKIP     = 11
45 icflag_table.XKANJI_SKIP_JFM = 12
46 icflag_table.PROCESSED       = 13
47 icflag_table.IC_PROCESSED    = 14
48 icflag_table.BOXBDD          = 15
49 icflag_table.PROCESSED_BEGIN_FLAG = 128
50
51 local stack_table_index = {}
52 luatexja.stack_table_index = stack_table_index
53 stack_table_index.PRE  = 0x200000 -- characterごと
54 stack_table_index.POST = 0x400000 -- characterごと
55 stack_table_index.KCAT = 0x600000 -- characterごと
56 stack_table_index.XSP  = 0x800000 -- characterごと
57 stack_table_index.RIPRE  = 0xA00000 -- characterごと,ruby pre
58 stack_table_index.RIPOST = 0xC00000 -- characterごと,ruby post
59 stack_table_index.JWP  = 0 -- これだけ
60 stack_table_index.KSK  = 1 -- これだけ
61 stack_table_index.XSK  = 2 -- これだけ
62 stack_table_index.MJT  = 0x100 -- 0--255
63 stack_table_index.MJS  = 0x200 -- 0--255
64 stack_table_index.MJSS = 0x300 -- 0--255
65 stack_table_index.KSJ  = 0x400 -- 0--9
66
67 local userid_table = {}
68 luatexja.userid_table = userid_table
69 userid_table.IHB  = luatexbase.newuserwhatsitid('inhibitglue',  'luatexja') -- \inhibitglue
70 userid_table.STCK = luatexbase.newuserwhatsitid('stack_marker', 'luatexja') -- スタック管理
71 userid_table.BPAR = luatexbase.newuserwhatsitid('begin_par',    'luatexja') -- 「段落始め」
72 userid_table.DIR  = luatexbase.newuserwhatsitid('direction',    'luatexja') -- 組方向
73
74 local dir_table = {}
75 luatexja.dir_table = dir_table
76 dir_table.dir_dtou = 1
77 dir_table.dir_tate = 3
78 dir_table.dir_yoko = 4
79 dir_table.dir_math_mod    = 8
80 dir_table.dir_node_auto   = 128 -- 組方向を合わせるために自動で作られたもの
81 dir_table.dir_node_manual = 256 -- 寸法代入によって作られたもの
82 dir_table.dir_utod = dir_table.dir_tate + dir_table.dir_math_mod
83    -- 「縦数式ディレクション」 in pTeX
84 --- 定義終わり
85
86 local load_module = luatexja.load_module
87 load_module('base');      local ltjb = luatexja.base
88 load_module('rmlgbm');    local ltjr = luatexja.rmlgbm -- must be 1st
89
90 if luatexja_debug then load_module('debug') end
91
92 load_module('charrange'); local ltjc = luatexja.charrange
93 load_module('stack');     local ltjs = luatexja.stack
94 load_module('direction'); local ltjd = luatexja.direction -- +1 hlist +1 attr_list
95 load_module('jfont');     local ltjf = luatexja.jfont
96 load_module('inputbuf');  local ltji = luatexja.inputbuf
97 load_module('pretreat');  local ltjp = luatexja.pretreat
98 load_module('setwidth');  local ltjw = luatexja.setwidth
99 load_module('jfmglue');   local ltjj = luatexja.jfmglue -- +1 glue +1 gs +1 attr_list
100 load_module('math');      local ltjm = luatexja.math
101 load_module('tangle');    local ltjb = luatexja.base
102
103
104 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
105 local attr_jchar_code = luatexbase.attributes['ltj@charcode']
106 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
107 local attr_yablshift = luatexbase.attributes['ltj@yablshift']
108 local attr_icflag = luatexbase.attributes['ltj@icflag']
109 local attr_uniqid = luatexbase.attributes['ltj@uniqid']
110 local attr_dir = luatexbase.attributes['ltj@dir']
111 local cat_lp = luatexbase.catcodetables['latex-package']
112
113 -- Three aux. functions, bollowed from tex.web
114
115 local unity=65536
116 local floor = math.floor
117
118 local function print_scaled(s)
119    local out=''
120    local delta=10
121    if s<0 then
122       out=out..'-'; s=-s
123    end
124    out=out..tostring(floor(s/unity)) .. '.'
125    s=10*(s%unity)+5
126    repeat
127       if delta>unity then s=s+32768-50000 end
128       out=out .. tostring(floor(s/unity))
129       s=10*(s%unity)
130       delta=delta*10
131    until s<=delta
132    return out
133 end
134 luatexja.print_scaled = print_scaled
135
136 local function print_glue(d,order)
137    local out=print_scaled(d)
138    if order>0 then
139       out=out..'fi'
140       while order>1 do
141          out=out..'l'; order=order-1
142       end
143    else
144       out=out..'pt'
145    end
146    return out
147 end
148
149 local function print_spec(p)
150    local out=print_scaled(p.width)..'pt'
151    if p.stretch~=0 then
152       out=out..' plus '..print_glue(p.stretch,p.stretch_order)
153    end
154    if p.shrink~=0 then
155       out=out..' minus '..print_glue(p.shrink,p.shrink_order)
156    end
157 return out
158 end
159
160
161 ------------------------------------------------------------------------
162 -- CODE FOR GETTING/SETTING PARAMETERS
163 ------------------------------------------------------------------------
164
165 -- EXT: print parameters that don't need arguments
166 do
167    luatexja.unary_pars = {
168       yalbaselineshift = function(t)
169          return print_scaled(tex.getattribute('ltj@yablshift'))..'pt'
170       end,
171       yjabaselineshift = function(t)
172          return print_scaled(tex.getattribute('ltj@ykblshift'))..'pt'
173       end,
174       talbaselineshift = function(t)
175          return print_scaled(tex.getattribute('ltj@tablshift'))..'pt'
176       end,
177       tjabaselineshift = function(t)
178          return print_scaled(tex.getattribute('ltj@tkblshift'))..'pt'
179       end,
180       kanjiskip = function(t)
181          return print_spec(ltjs.get_stack_skip(stack_table_index.KSK, t))
182       end,
183       xkanjiskip = function(t)
184          return print_spec(ltjs.get_stack_skip(stack_table_index.XSK, t))
185       end,
186       jcharwidowpenalty = function(t)
187          return ltjs.get_stack_table(stack_table_index.JWP, 0, t)
188       end,
189       autospacing = function(t)
190          return tex.getattribute('ltj@autospc')
191       end,
192       autoxspacing = function(t)
193          return tex.getattribute('ltj@autoxspc')
194       end,
195       differentjfm = function(t)
196          local f, r = luatexja.jfmglue.diffmet_rule, '???'
197          if f == math.max then r = 'large'
198          elseif f == math.min then r = 'small'
199          elseif f == math.two_average then r = 'average'
200          elseif f == math.two_paverage then r = 'paverage'
201          elseif f == math.two_pleft then r = 'pleft'
202          elseif f == math.two_pright then r = 'pright'
203          elseif f == math.two_add then r = 'both'
204          end
205          return r
206       end,
207       direction = function()
208          local v = ltjd.get_dir_count()
209          if math.abs(tex.nest[tex.nest.ptr].mode) == ltjs.mmode and v == dir_table.dir_tate then
210             v = dir_table.dir_utod
211          end
212          return v
213       end,
214       adjustdir = ltjd.get_adjust_dir_count,
215    }
216
217    local unary_pars = luatexja.unary_pars
218    function luatexja.ext_get_parameter_unary(k)
219       if unary_pars[k] then
220          tex.write(tostring(unary_pars[k](tex.getcount('ltj@@stack'))))
221       end
222       ltjb.stop_time_measure('get_par')
223    end
224 end
225
226
227 -- EXT: print parameters that need arguments
228 do
229    luatexja.binary_pars = {
230       jacharrange = function(c, t)
231          if type(c)~='number' or c<0 or c>31*ltjc.ATTR_RANGE then
232             -- 0 はエラーにしない(隠し)
233             ltjb.package_error('luatexja',
234                                'invalid character range number (' .. tostring(c) .. ')',
235                                'A character range number should be in the range 1..'
236                                   .. 31*ltjc.ATTR_RANGE .. ",\n"..
237                                   'So I changed this one to ' .. 31*ltjc.ATTR_RANGE .. ".")
238             c=0 -- external range 217 == internal range 0
239          elseif c==31*ltjc.ATTR_RANGE then c=0
240          end
241       -- 負の値は <U+0080 の文字の文字範囲,として出てくる.この時はいつも欧文文字なので 1 を返す
242          return (c<0) and 1 or ltjc.get_range_setting(c)
243       end,
244       prebreakpenalty = function(c, t)
245          return ltjs.get_stack_table(stack_table_index.PRE
246                                           + ltjb.in_unicode(c, true), 0, t)
247       end,
248       postbreakpenalty = function(c, t)
249          return ltjs.get_stack_table(stack_table_index.POST
250                                           + ltjb.in_unicode(c, true), 0, t)
251       end,
252       kcatcode = function(c, t)
253          return ltjs.get_stack_table(stack_table_index.KCAT
254                                           + ltjb.in_unicode(c, false), 0, t)
255       end,
256       chartorange = function(c, t)
257          return ltjc.char_to_range(ltjb.in_unicode(c, false))
258       end,
259       jaxspmode = function(c, t)
260          return ltjs.get_stack_table(stack_table_index.XSP
261                                           + ltjb.in_unicode(c, true), 3, t)
262       end,
263       boxdir = function(c, t)
264          if type(c)~='number' or c<0 or c>65535 then
265             ltjb.package_error('luatexja',
266                                'Bad register code (' .. tostring(c) .. ')',
267                                'A register must be between 0 and 65535.\n'..
268                                   'I changed this one to zero.')
269             c=0
270          end
271          return ltjd.get_register_dir(c)
272       end,
273    }
274    local binary_pars = luatexja.binary_pars
275
276    binary_pars.alxspmode = binary_pars.jaxspmode
277    function luatexja.ext_get_parameter_binary(k,c)
278       if binary_pars[k] then
279          tex.write(tostring(binary_pars[k](c,tex.getcount('ltj@@stack'))))
280       end
281       ltjb.stop_time_measure('get_par')
282    end
283 end
284
285 -- EXT: print \global if necessary
286 function luatexja.ext_print_global()
287    if luatexja.isglobal=='global' then tex.sprint(cat_lp, '\\global') end
288 end
289
290
291 -- main process
292 do
293    local start_time_measure, stop_time_measure
294       = ltjb.start_time_measure, ltjb.stop_time_measure
295    local Dnode = node.direct or node
296    local nullfunc = function (n) return n end
297    local to_node = (Dnode ~= node) and Dnode.tonode or nullfunc
298    local to_direct = (Dnode ~= node) and Dnode.todirect or nullfunc
299    local ensure_tex_attr = ltjb.ensure_tex_attr
300
301    -- mode = true iff main_process is called from pre_linebreak_filter
302    local function main_process(head, mode, dir, gc)
303       ensure_tex_attr(attr_icflag, 0)
304       if gc == 'fin_row' then return head
305       else
306             --luatexja.ext_show_node_list(head, 'T> ', print)
307             start_time_measure('jfmglue')
308             local p = ltjj.main(to_direct(head),mode, dir)
309             stop_time_measure('jfmglue')
310             return to_node(p)
311       end
312    end
313
314    local function adjust_icflag(h)
315       -- kern from luaotfload will have icflag = 1
316       -- (same as italic correction)
317       ensure_tex_attr(attr_icflag, 1)
318       return h
319    end
320
321    -- callbacks
322    ltjb.add_to_callback(
323       'pre_linebreak_filter',
324       function (head,groupcode)
325          return main_process(head, true, tex.textdir, groupcode)
326       end,'ltj.main',
327       luatexbase.priority_in_callback('pre_linebreak_filter', 'luaotfload.node_processor')+1)
328    ltjb.add_to_callback(
329       'hpack_filter',
330       function (head,groupcode,size,packtype, dir)
331          return main_process(head, false, dir, groupcode)
332       end,'ltj.main',
333       luatexbase.priority_in_callback('hpack_filter', 'luaotfload.node_processor')+1)
334    ltjb.add_to_callback('pre_linebreak_filter', adjust_icflag, 'ltj.adjust_icflag', 1)
335    ltjb.add_to_callback('hpack_filter', adjust_icflag, 'ltj.adjust_icflag', 1)
336
337 end
338
339 -- cleanup process
340 function luatexja.ext_cleanup()
341    ltjf.cleanup_size_cache()
342    ltjd.remove_end_whatsit()
343 end
344
345
346 -- debug
347
348 do
349
350 local node_type = node.type
351 local node_next = node.next
352 local has_attr = node.has_attribute
353
354 local id_penalty = node.id('penalty')
355 local id_glyph = node.id('glyph')
356 local id_glue_spec = node.id('glue_spec')
357 local id_glue = node.id('glue')
358 local id_kern = node.id('kern')
359 local id_hlist = node.id('hlist')
360 local id_vlist = node.id('vlist')
361 local id_rule = node.id('rule')
362 local id_math = node.id('math')
363 local id_whatsit = node.id('whatsit')
364 local sid_user = node.subtype('user_defined')
365
366 local function get_attr_icflag(p)
367    return (has_attr(p, attr_icflag) or 0) % icflag_table.PROCESSED_BEGIN_FLAG
368 end
369
370 local prefix, inner_depth
371
372 local function debug_show_node_X(p,print_fn, limit)
373    local k = prefix
374    local s
375    local pt=node_type(p.id)
376    local base = prefix .. string.format('%X', get_attr_icflag(p))
377    .. ' ' .. pt .. ' ' .. tostring(p.subtype) .. ' '
378    if pt == 'glyph' then
379       s = base .. ' ' .. utf.char(p.char) .. ' '
380          .. tostring(p.font)
381          .. ' (' .. print_scaled(p.height) .. '+'
382          .. print_scaled(p.depth) .. ')x' .. print_scaled(p.width)
383       print_fn(s)
384    elseif pt=='hlist' or pt=='vlist' or pt=='unset'or pt=='ins' then
385       if pt=='ins' then
386          s = base .. '(' .. print_scaled(p.height) .. '+'
387             .. print_scaled(p.depth) .. ')'
388             .. ', dir=' .. tostring(node.has_attribute(p, attr_dir))
389       else
390          s = base .. '(' .. print_scaled(p.height) .. '+'
391             .. print_scaled(p.depth) .. ')x' .. print_scaled(p.width)
392             .. ', dir=' .. tostring(node.has_attribute(p, attr_dir))
393       end
394       if (p.shift or 0)~=0 then
395          s = s .. ', shifted ' .. print_scaled(p.shift)
396       end
397       if p.glue_set and p.glue_sign ==2 or ( p.glue_sign==1 and p.glue_set>0) then
398          s = s .. ' glue set '
399          if p.glue_sign == 2 then s = s .. '-' end
400          s = s .. tostring(floor(p.glue_set*10000)/10000)
401          if p.glue_order == 0 then
402             s = s .. 'pt'
403          else
404             s = s .. 'fi'
405             for i = 2,  p.glue_order do s = s .. 'l' end
406          end
407       end
408       if get_attr_icflag(p) == icflag_table.PACKED then
409          s = s .. ' (packed)'
410       end
411       print_fn(s);
412       local bid = inner_depth
413       prefix, inner_depth = prefix.. '.', inner_depth + 1
414       if inner_depth < limit then
415          for q in node.traverse(p.head) do
416             debug_show_node_X(q, print_fn, limit)
417          end
418       end
419       prefix=k
420    elseif pt=='rule' then
421       s = base .. '(' .. print_scaled(p.height) .. '+'
422          .. print_scaled(p.depth) .. ')x' .. print_scaled(p.width)
423          .. ', dir=' .. tostring(node.has_attribute(p, attr_dir))
424       print_fn(s)
425    elseif pt == 'glue' then
426       s = base .. ' ' ..  print_spec(p.spec)
427       if get_attr_icflag(p)>icflag_table.KINSOKU
428          and get_attr_icflag(p)<icflag_table.KANJI_SKIP then
429          s = s .. ' (from JFM: priority ' .. get_attr_icflag(p)-icflag_table.FROM_JFM .. ')'
430       elseif get_attr_icflag(p)==icflag_table.KANJI_SKIP then
431          s = s .. ' (kanjiskip)'
432       elseif get_attr_icflag(p)==icflag_table.KANJI_SKIP_JFM then
433          s = s .. ' (kanjiskip, JFM specified)'
434       elseif get_attr_icflag(p)==icflag_table.XKANJI_SKIP then
435          s = s .. ' (xkanjiskip)'
436       elseif get_attr_icflag(p)==icflag_table.XKANJI_SKIP_JFM then
437          s = s .. ' (xkanjiskip, JFM specified)'
438       end
439       print_fn(s)
440    elseif pt == 'kern' then
441       s = base .. ' ' .. print_scaled(p.kern) .. 'pt'
442       if p.subtype==2 then
443          s = s .. ' (for accent)'
444       elseif get_attr_icflag(p)==icflag_table.IC_PROCESSED then
445          s = s .. ' (italic correction)'
446          -- elseif get_attr_icflag(p)==ITALIC then
447          --    s = s .. ' (italic correction)'
448       elseif get_attr_icflag(p)>icflag_table.KINSOKU
449          and get_attr_icflag(p)<icflag_table.KANJI_SKIP then
450          s = s .. ' (from JFM: priority ' .. get_attr_icflag(p)-icflag_table.FROM_JFM .. ')'
451       end
452       print_fn(s)
453    elseif pt == 'penalty' then
454       s = base .. ' ' .. tostring(p.penalty)
455       if get_attr_icflag(p)==icflag_table.KINSOKU then
456          s = s .. ' (for kinsoku)'
457       end
458       print_fn(s)
459    elseif pt == 'whatsit' then
460       s = base
461       if p.subtype==sid_user then
462          local t = tostring(p.user_id) .. ' (' ..
463             luatexbase.get_user_whatsit_name(p.user_id) .. ') '
464          if p.type ~= 110 then
465             s = s .. ' userid:' .. t .. p.value
466             print_fn(s)
467          else
468             s = s .. ' userid:' .. t .. '(node list)'
469             if p.user_id==userid_table.DIR then
470                s = s .. ' dir: ' .. tostring(node.has_attribute(p, attr_dir))
471             end
472             print_fn(s)
473             local bid = inner_depth
474             prefix, inner_depth =prefix.. '.', inner_depth + 1
475             if inner_depth < limit then
476                for q in node.traverse(p.value) do
477                   debug_show_node_X(q, print_fn, limit)
478                end
479             end
480             prefix, inner_depth = k, bid
481          end
482       else
483          s = s .. (node.subtype(p.subtype) or '')
484          if p.subtype==1 then
485             s = s .. ' stream=' .. p.stream
486             print_fn(s)
487             for i=1,#p.data do
488                print_fn(s .. '  [' .. i .. '] = ' .. tostring(p.data[i].csname))
489             end
490          else
491             print_fn(s)
492          end
493       end
494    -------- math node --------
495    elseif pt=='noad' then
496       s = base ; print_fn(s)
497       if p.nucleus then
498          prefix = k .. 'N'; debug_show_node_X(p.nucleus, print_fn);
499       end
500       if p.sup then
501          prefix = k .. '^'; debug_show_node_X(p.sup, print_fn);
502       end
503       if p.sub then
504          prefix = k .. '_'; debug_show_node_X(p.sub, print_fn);
505       end
506       prefix = k;
507    elseif pt=='math_char' then
508       s = base .. ' fam: ' .. p.fam .. ' , char = ' .. utf.char(p.char)
509       print_fn(s)
510    elseif pt=='sub_box' or pt=='sub_mlist' then
511       print_fn(base)
512       if p.head then
513          prefix = k .. '.';
514          for q in node.traverse(p.head) do
515             debug_show_node_X(q, print_fn)
516          end
517       end
518    else
519       print_fn(base)
520    end
521    p=node_next(p)
522 end
523 function luatexja.ext_show_node_list(head,depth,print_fn, lim)
524    prefix = depth
525    inner_depth = 0
526    if head then
527       while head do
528          debug_show_node_X(head, print_fn, lim or 1/0); head = node_next(head)
529       end
530    else
531       print_fn(prefix .. ' (null list)')
532    end
533 end
534 function luatexja.ext_show_node(head,depth,print_fn, lim)
535    prefix = depth
536    inner_depth = 0
537    if head then
538       debug_show_node_X(head, print_fn, lim or 1/0)
539    else
540       print_fn(prefix .. ' (null list)')
541    end
542 end
543
544 end