OSDN Git Service

Add {start,stop}_time_measure()
[luatex-ja/luatexja.git] / src / ltj-debug.lua
1 --
2 -- luatexja/debug.lua
3 --
4 local ltjdbg = {}
5 luatexja.debug = ltjdbg
6 local table, string = table, string
7
8 -------------------- pretty-print
9
10 local function get_serialize_param()
11   return table.serialize_functions,
12          table.serialize_compact,
13          table.serialize_inline
14 end
15 local function set_serialize_param(s_f, s_c, s_i)
16   table.serialize_functions = s_f
17   table.serialize_compact = s_c
18   table.serialize_inline = s_i
19 end
20
21 local function normal_serialize(t)
22   local s_f, s_c, s_i = get_serialize_param()
23   set_serialize_param(true, true, true)
24   local ret = table.serialize(t, false, false, true)
25   set_serialize_param(s_f, s_c, s_i)
26   return ret
27 end
28
29 local function table_tosource(t)
30   if not next(t) then return "{}" end
31   local res_n = "\127"..normal_serialize({t}).."\127"
32   local s, e, cap = res_n:find("\127{\n ({ .* }),\n}\127")
33   if s == 1 and e == res_n:len() then return cap
34   else return normal_serialize(t)
35   end
36 end
37 ltjdbg.table_tosource = table_tosource
38
39 local function function_tosource(f)
40   local res = normal_serialize({f})
41   return res:sub(4, res:len() - 3)
42 end
43 ltjdbg.function_tosource = function_tosource
44
45 --! 値 v をそれを表すソース文字列に変換する.
46 --! lualibs の table.serialize() の処理を利用している.
47 local function tosource(v)
48   local tv = type(v)
49   if tv == "function" then return function_tosource(v)
50   elseif tv == "table" then return table_tosource(v)
51   elseif tv == "string" then return string.format('%q', v)
52   else return tostring(v)
53   end
54 end
55 ltjdbg.tosource = tosource
56
57 local function coerce(f, v)
58   if f == "q" then return "s", tosource(v)
59   elseif f == "s" then return f, tostring(v)
60   else return f, tonumber(v) or 0
61   end
62 end
63
64 local function do_pformat(fmt, ...)
65   fmt = fmt:gsub("``", "\127"):gsub("`", "%%"):gsub("\127", "`")
66   local i, na, a = 0, {}, {...}
67   local function proc(p, f)
68     i = i + 1; f, na[i] = coerce(f, a[i])
69     return p..f
70   end
71   fmt = fmt:gsub("(%%[-+#]?[%d%.]*)([a-zA-Z])", proc)
72   return fmt:format(unpack(na))
73 end
74
75 --! string.format() の拡張版. 以下の点が異なる.
76 --!  - %q は全ての型について tosource() に変換
77 --!  - <%> の代わりに <`> も使える (TeX での使用のため)
78 --!  - %d, %s 等でキャストを行う
79 local function pformat(fmt, ...)
80   if type(fmt) == "string" then
81     return do_pformat(fmt, ...)
82   else 
83     return tosource(fmt)
84   end
85 end
86 ltjdbg.pformat = pformat
87
88 -------------------- 所要時間合計
89 require("socket")
90 do
91    local gettime = socket.gettime
92    local time_stat = {}
93    local function start_time_measure(n)
94       if not time_stat[n] then
95          time_stat[n] = {1, -gettime()}
96       else
97          local t = time_stat[n]
98          t[1], t[2] = t[1]+1, t[2]-gettime()
99       end
100    end
101    local function stop_time_measure(n)
102       local t = time_stat[n]
103       t[2] = t[2] + gettime()
104    end
105
106    local function print_measure()
107       for i,v in pairs(time_stat) do
108          print (i, tostring(v[1]) .. ' times', tostring(v[2]) .. ' sec.')
109       end
110    end
111    if luatexja.base then
112       luatexja.base.start_time_measure = start_time_measure
113       luatexja.base.stop_time_measure = stop_time_measure
114       luatexbase.add_to_callback('stop_run', print_measure, 'luatexja.time_measure', 1)
115       luatexbase.add_to_callback('pre_linebreak_filter', 
116                                  function(p) 
117                                     start_time_measure('tex_linebreak'); return p 
118                                  end, 
119                                  'measure_tex_linebreak', 20000)
120    end
121 end
122
123 -------------------- debug logging
124 do
125 local debug_show_term = true
126 local debug_show_log = true
127 --! デバッグログを端末に出力するか
128 local function show_term(v)
129   debug_show_term = v
130 end
131 ltjdbg.show_term = show_term
132 --! デバッグログをログファイルに出力するか
133 function show_log(v)
134   debug_show_log = v
135 end
136 ltjdbg.show_log = show_log
137
138 local function write_debug_log(s)
139   local target
140   if debug_show_term and debug_show_log then
141     texio.write_nl("term and log", s)
142   elseif debug_show_term and not debug_show_log then
143     texio.write_nl("term", s)
144   elseif not debug_show_term and debug_show_log then
145     texio.write_nl("log", s)
146   end
147 end
148
149 --! デバッグログ出力. 引数は pformat() と同じ.
150 local function out_debug(...)
151   if debug_show_term or debug_show_log then
152     write_debug_log("%DEBUG:"..pformat(...))
153   end
154 end
155
156 --! デバッグログ出力, パッケージ名付き.
157 local function package_debug(pkg, ...)
158   if debug_show_term or debug_show_log then
159     write_debug_log("%DEBUG("..pkg.."):"..pformat(...))
160   end
161 end
162
163 --! パッケージ名付きデバッグログ出力器を得る.
164 local function debug_logger(pkg)
165   return function(...) package_debug(pkg, ...) end
166 end
167
168 if luatexja.base then
169   luatexja.base.out_debug = out_debug
170   luatexja.base.package_debug = package_debug
171   luatexja.base.debug_logger = debug_logger
172   luatexja.base.show_term = show_term
173   luatexja.base.show_log = show_log
174 end
175 end
176
177 -------------------- all done
178 -- EOF