1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
|
if not modules then modules = { } end modules ['luat-log'] = {
version = 1.001,
comment = "companion to trac-log.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- In fact all writes could go through lua and we could write the console and
-- terminal handler in lua then. Ok, maybe it's slower then, so a no-go.
-- This used to be combined in trac-log but as we also split between mkiv and lmtx
-- we now have dedicated files. A side effect is a smaller format and a smaller
-- mtxrun.
local next, type, select, print = next, type, select, print
local format, gmatch, find = string.format, string.gmatch, string.find
local concat, insert, remove = table.concat, table.insert, table.remove
local topattern = string.topattern
local utfchar = utf.char
local datetime = os.date
local openfile = io.open
local write_nl = texio and texio.write_nl
local write = texio and texio.write
local setmetatableindex = table.setmetatableindex
local formatters = string.formatters
local settings_to_hash = utilities.parsers.settings_to_hash
local sortedkeys = table.sortedkeys
-- variant is set now
local variant = "default"
----- variant = "ansi"
logs = logs or { }
local logs = logs
-- we extend the formatters:
formatters.add (
formatters, "unichr",
[["U+" .. format("%%05X",%s) .. " (" .. utfchar(%s) .. ")"]]
)
formatters.add (
formatters, "chruni",
[[utfchar(%s) .. " (U+" .. format("%%05X",%s) .. ")"]]
)
-- basic loggers
local function ignore() end
setmetatableindex(logs, function(t,k) t[k] = ignore ; return ignore end)
local report, subreport, status, settarget, setformats, settranslations
local direct, subdirect, writer, pushtarget, poptarget, setlogfile, settimedlog, setprocessor, setformatters, newline
-- we use formatters but best check for % then because for simple messages but
-- we don't want this overhead for single messages (not that there are that
-- many; we could have a special weak table)
local function ansisupported(specification)
if specification ~= "ansi" and specification ~= "ansilog" then
return false
elseif os and os.enableansi then
return os.enableansi()
else
return false
end
end
do
if texio.setescape then
texio.setescape(0) -- or (false)
end
if arg and ansisupported then
-- we're don't have environment.arguments yet
for k, v in next, arg do -- k can be negative !
if v == "--ansi" or v == "--c:ansi" then
if ansisupported("ansi") then
variant = "ansi"
end
break
elseif v == "--ansilog" or v == "--c:ansilog" then
if ansisupported("ansilog") then
variant = "ansilog"
end
break
end
end
end
local function useluawrites()
-- quick hack, awaiting speedup in engine (8 -> 6.4 sec for --make with console2)
-- still needed for luajittex .. luatex should not have that ^^ mess
local texio_write_nl = texio.write_nl
local texio_write = texio.write
local io_write = io.write
write_nl = function(target,...)
if not io_write then
io_write = io.write
end
if target == "term and log" then
texio_write_nl("log",...)
texio_write_nl("term","")
io_write(...)
elseif target == "log" then
texio_write_nl("log",...)
elseif target == "term" then
texio_write_nl("term","")
io_write(...)
elseif type(target) == "number" then
texio_write_nl(target,...) -- a tex output channel
elseif target ~= "none" then
texio_write_nl("log",target,...)
texio_write_nl("term","")
io_write(target,...)
end
end
write = function(target,...)
if not io_write then
io_write = io.write
end
if target == "term and log" then
texio_write("log",...)
io_write(...)
elseif target == "log" then
texio_write("log",...)
elseif target == "term" then
io_write(...)
elseif type(target) == "number" then
texio_write(target,...) -- a tex output channel
elseif target ~= "none" then
texio_write("log",target,...)
io_write(target,...)
end
end
texio.write = write
texio.write_nl = write_nl
useluawrites = ignore
end
-- local format = string.formatter
local whereto = "both"
local target = nil
local targets = nil
local formats = table.setmetatableindex("self")
local translations = table.setmetatableindex("self")
local report_yes, subreport_yes, direct_yes, subdirect_yes, status_yes
local report_nop, subreport_nop, direct_nop, subdirect_nop, status_nop
local variants = {
default = {
formats = {
report_yes = formatters["%-15s > %s\n"],
report_nop = formatters["%-15s >\n"],
direct_yes = formatters["%-15s > %s"],
direct_nop = formatters["%-15s >"],
subreport_yes = formatters["%-15s > %s > %s\n"],
subreport_nop = formatters["%-15s > %s >\n"],
subdirect_yes = formatters["%-15s > %s > %s"],
subdirect_nop = formatters["%-15s > %s >"],
status_yes = formatters["%-15s : %s\n"],
status_nop = formatters["%-15s :\n"],
},
targets = {
logfile = "log",
log = "log",
file = "log",
console = "term",
terminal = "term",
both = "term and log",
},
},
ansi = {
formats = {
report_yes = formatters["[0;33m%-15s [0;1m>[0m %s\n"],
report_nop = formatters["[0;33m%-15s [0;1m>[0m\n"],
direct_yes = formatters["[0;33m%-15s [0;1m>[0m %s"],
direct_nop = formatters["[0;33m%-15s [0;1m>[0m"],
subreport_yes = formatters["[0;33m%-15s [0;1m>[0;35m %s [0;1m>[0m %s\n"],
subreport_nop = formatters["[0;33m%-15s [0;1m>[0;35m %s [0;1m>[0m\n"],
subdirect_yes = formatters["[0;33m%-15s [0;1m>[0;35m %s [0;1m>[0m %s"],
subdirect_nop = formatters["[0;33m%-15s [0;1m>[0;35m %s [0;1m>[0m"],
status_yes = formatters["[0;33m%-15s [0;1m:[0m %s\n"],
status_nop = formatters["[0;33m%-15s [0;1m:[0m\n"],
},
targets = {
logfile = "none",
log = "none",
file = "none",
console = "term",
terminal = "term",
both = "term",
},
}
}
variants.ansilog = {
formats = variants.ansi.formats,
targets = variants.default.targets,
}
logs.flush = io.flush
writer = function(...)
write_nl(target,...)
end
newline = function()
write_nl(target,"\n")
end
report = function(a,b,c,...)
if c ~= nil then
write_nl(target,report_yes(translations[a],formatters[formats[b]](c,...)))
elseif b then
write_nl(target,report_yes(translations[a],formats[b]))
elseif a then
write_nl(target,report_nop(translations[a]))
else
write_nl(target,"\n")
end
end
direct = function(a,b,c,...)
if c ~= nil then
return direct_yes(translations[a],formatters[formats[b]](c,...))
elseif b then
return direct_yes(translations[a],formats[b])
elseif a then
return direct_nop(translations[a])
else
return ""
end
end
subreport = function(a,s,b,c,...)
if c ~= nil then
write_nl(target,subreport_yes(translations[a],translations[s],formatters[formats[b]](c,...)))
elseif b then
write_nl(target,subreport_yes(translations[a],translations[s],formats[b]))
elseif a then
write_nl(target,subreport_nop(translations[a],translations[s]))
else
write_nl(target,"\n")
end
end
subdirect = function(a,s,b,c,...)
if c ~= nil then
return subdirect_yes(translations[a],translations[s],formatters[formats[b]](c,...))
elseif b then
return subdirect_yes(translations[a],translations[s],formats[b])
elseif a then
return subdirect_nop(translations[a],translations[s])
else
return ""
end
end
status = function(a,b,c,...)
if c ~= nil then
write_nl(target,status_yes(translations[a],formatters[formats[b]](c,...)))
elseif b then
write_nl(target,status_yes(translations[a],formats[b]))
elseif a then
write_nl(target,status_nop(translations[a]))
else
write_nl(target,"\n")
end
end
settarget = function(askedwhereto)
whereto = askedwhereto or whereto or "both"
target = targets[whereto]
if not target then
whereto = "both"
target = targets[whereto]
end
if target == "term" or target == "term and log" then
logs.flush = io.flush
else
logs.flush = ignore
end
end
local stack = { }
pushtarget = function(newtarget)
insert(stack,target)
settarget(newtarget)
end
poptarget = function()
if #stack > 0 then
settarget(remove(stack))
end
end
setformats = function(f)
formats = f
end
settranslations = function(t)
translations = t
end
setprocessor = function(f)
local writeline = write_nl
write_nl = function(target,...)
writeline(target,f(...))
end
end
setformatters = function(specification)
local t = nil
local f = nil
local d = variants.default
if not specification then
--
elseif type(specification) == "table" then
t = specification.targets
f = specification.formats or specification
else
if not ansisupported(specification) then
specification = "default"
end
local v = variants[specification]
if v then
t = v.targets
f = v.formats
variant = specification
end
end
targets = t or d.targets
target = targets[whereto] or target
if f then
d = d.formats
else
f = d.formats
d = f
end
setmetatableindex(f,d)
report_yes = f.report_yes
report_nop = f.report_nop
subreport_yes = f.subreport_yes
subreport_nop = f.subreport_nop
direct_yes = f.direct_yes
direct_nop = f.direct_nop
subdirect_yes = f.subdirect_yes
subdirect_nop = f.subdirect_nop
status_yes = f.status_yes
status_nop = f.status_nop
if variant == "ansi" or variant == "ansilog" then
useluawrites() -- because tex escapes ^^, not needed in lmtx
end
settarget(whereto)
end
setformatters(variant)
setlogfile = ignore
settimedlog = ignore
-- settimedlog = function()
-- local localtime = os.localtime
-- local writeline = write_nl
-- write_nl = function(f,...)
-- writeline(f,localtime() .. " | " .. concat { ... })
-- end
-- settimedlog = ignore
-- end
end
logs.report = report
logs.subreport = subreport
logs.status = status
logs.settarget = settarget
logs.pushtarget = pushtarget
logs.poptarget = poptarget
logs.setformats = setformats
logs.settranslations = settranslations
logs.setlogfile = setlogfile
logs.settimedlog = settimedlog
logs.setprocessor = setprocessor
logs.setformatters = setformatters
logs.direct = direct
logs.subdirect = subdirect
logs.writer = writer
logs.newline = newline
local data = { }
local states = nil
local force = false
function logs.reporter(category,subcategory)
local logger = data[category]
if not logger then
local state = states == true
if not state and type(states) == "table" then
for c, _ in next, states do
if find(category,c) then
state = true
break
end
end
end
logger = {
reporters = { },
state = state,
}
data[category] = logger
end
local reporter = logger.reporters[subcategory or "default"]
if not reporter then
if subcategory then
reporter = function(...)
if force or not logger.state then
subreport(category,subcategory,...)
end
end
logger.reporters[subcategory] = reporter
else
local tag = category
reporter = function(...)
if force or not logger.state then
report(category,...)
end
end
logger.reporters.default = reporter
end
end
return reporter
end
logs.new = logs.reporter -- for old times sake
-- context specicific: this ends up in the macro stream
local ctxreport = logs.writer
function logs.setmessenger(m)
ctxreport = m
end
function logs.messenger(category,subcategory)
-- we need to avoid catcode mess (todo: fast context)
if subcategory then
return function(...)
ctxreport(subdirect(category,subcategory,...))
end
else
return function(...)
ctxreport(direct(category,...))
end
end
end
-- so far
local function setblocked(category,value) -- v.state == value == true : disable
if category == true or category == "all" then
-- lock all
category, value = "*", true
elseif category == false then
-- unlock all
category, value = "*", false
elseif value == nil then
-- lock selective
value = true
end
if category == "*" then
states = value
for k, v in next, data do
v.state = value
end
else
alllocked = false
states = settings_to_hash(category,type(states)=="table" and states or nil)
for c in next, states do
local v = data[c]
if v then
v.state = value
else
c = topattern(c,true,true)
for k, v in next, data do
if find(k,c) then
v.state = value
end
end
end
end
end
end
function logs.disable(category,value)
setblocked(category,value == nil and true or value)
end
function logs.enable(category)
setblocked(category,false)
end
function logs.categories()
return sortedkeys(data)
end
function logs.show()
local n, c, s, max = 0, 0, 0, 0
for category, v in table.sortedpairs(data) do
n = n + 1
local state = v.state
local reporters = v.reporters
local nc = #category
if nc > c then
c = nc
end
for subcategory, _ in next, reporters do
local ns = #subcategory
if ns > c then
s = ns
end
local m = nc + ns
if m > max then
max = m
end
end
local subcategories = concat(sortedkeys(reporters),", ")
if state == true then
state = "disabled"
elseif state == false then
state = "enabled"
else
state = "unknown"
end
-- no new here
report("logging","category %a, subcategories %a, state %a",category,subcategories,state)
end
report("logging","categories: %s, max category: %s, max subcategory: %s, max combined: %s",n,c,s,max)
end
local delayed_reporters = { }
setmetatableindex(delayed_reporters,function(t,k)
local v = logs.reporter(k.name)
t[k] = v
return v
end)
function utilities.setters.report(setter,...)
delayed_reporters[setter](...)
end
directives.register("logs.blocked", function(v)
setblocked(v,true)
end)
directives.register("logs.target", function(v)
settarget(v)
end)
do
local report = logs.reporter("pages") -- not needed but saves checking when we grep for it
local texgetcount = tex and tex.getcount
local real, user, sub = 0, 0, 0
function logs.start_page_number()
real = texgetcount("realpageno")
user = texgetcount("userpageno")
sub = texgetcount("subpageno")
end
local timing = false
local usage = false
local lasttime = nil
logs.private = {
enablepagetiming = function()
usage = true
end,
getpagetiming = function()
return type(usage) == "table" and usage
end,
}
trackers.register("pages.timing", function() timing = "" end)
function logs.stop_page_number() -- the first page can includes the initialization so we omit this in average
if timing or usage then
local elapsed = statistics.currenttime(statistics)
local average, page
if not lasttime or real < 2 then
average = elapsed
page = elapsed
else
average = elapsed / (real - 1)
page = elapsed - lasttime
end
lasttime = elapsed
if timing then
timing = formatters[", total %0.03f, page %0.03f, average %0.03f"](elapsed,page,average)
end
if usage then
usage = {
page = {
real = real,
user = user,
sub = sub,
},
time = {
elapsed = elapsed,
page = page,
average = average,
}
}
end
end
if real <= 0 then
report("flushing page%s",timing)
elseif user <= 0 then
report("flushing realpage %s%s",real,timing)
elseif sub <= 0 then
report("flushing realpage %s, userpage %s%s",real,user,timing)
else
report("flushing realpage %s, userpage %s, subpage %s%s",real,user,sub,timing)
end
logs.flush()
end
end
-- we don't have show_open and show_close callbacks yet
do
local texerror = tex and tex.error or print
local formatters = string.formatters
function logs.texerrormessage(fmt,first,...) -- for the moment we put this function here
texerror(first and formatters[fmt](first,...) or fmt)
end
end
-- this is somewhat slower but prevents out-of-order messages when print is mixed
-- with texio.write
-- io.stdout:setvbuf('no')
-- io.stderr:setvbuf('no')
-- windows: > nul 2>&1
-- unix : > null 2>&1
if package.helpers.report then
package.helpers.report = logs.reporter("package loader") -- when used outside mtxrun
end
do
local finalactions = { }
local fatalerrors = { }
local possiblefatal = { }
local loggingerrors = false
function logs.loggingerrors()
return loggingerrors
end
directives.register("logs.errors",function(v)
loggingerrors = v
if type(v) == "string" then
fatalerrors = settings_to_hash(v)
else
fatalerrors = { }
end
end)
function logs.registerfinalactions(...)
insert(finalactions,...) -- so we can force an order if needed
end
local what = nil
local report = nil
local state = nil
local target = nil
local function startlogging(t,r,w,s)
target = t
state = force
force = true
report = type(r) == "function" and r or logs.reporter(r)
what = w
pushtarget(target)
newline()
if s then
report("start %s: %s",what,s)
else
report("start %s",what or "")
end
if target == "logfile" then
newline()
end
return report
end
local function stoplogging()
if target == "logfile" then
newline()
end
report("stop %s",what or "")
if target == "logfile" then
newline()
end
poptarget()
state = oldstate
end
function logs.startfilelogging(...)
return startlogging("logfile", ...)
end
logs.stopfilelogging = stoplogging
local done = false
function logs.starterrorlogging(r,w,...)
if not done then
pushtarget("terminal")
newline()
logs.report("error logging","start possible issues")
poptarget()
done = true
end
if fatalerrors[w] then
possiblefatal[w] = true
end
return startlogging("terminal",r,w,...)
end
logs.stoperrorlogging = stoplogging
function logs.finalactions()
if #finalactions > 0 then
for i=1,#finalactions do
finalactions[i]()
end
if done then
pushtarget("terminal")
newline()
logs.report("error logging","stop possible issues")
poptarget()
end
return next(possiblefatal) and sortedkeys(possiblefatal) or false
end
end
end
-- just in case we load from context
local dummy = function() end
function logs.application(t)
return {
name = t.name or tex.jobname,
banner = t.banner,
report = logs.reporter(t.name),
moreinfo = dummy,
export = dummy,
help = dummy,
identify = dummy,
version = dummy,
}
end
|