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
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
|
if not modules then modules = { } end modules ['trac-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.
local next, type, select, print = next, type, select, print
local write_nl, write = texio and texio.write_nl or print, texio and texio.write or io.write
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 setmetatableindex = table.setmetatableindex
local formatters = string.formatters
local texgetcount = tex and tex.getcount
-- variant is set now
local variant = "default"
-- local variant = "ansi"
-- todo: less categories, more subcategories (e.g. nodes)
-- todo: split into basics and ctx specific
--[[ldx--
<p>This is a prelude to a more extensive logging module. We no longer
provide <l n='xml'/> based logging as parsing is relatively easy anyway.</p>
--ldx]]--
logs = logs or { }
local logs = logs
local moreinfo = [[
More information about ConTeXt and the tools that come with it can be found at:
]] .. "\n" .. [[
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
wiki : http://contextgarden.net
]]
-- -- we extend the formatters:
--
-- function utilities.strings.unichr(s) return "U+" .. format("%05X",s) .. " (" .. utfchar(s) .. ")" end
-- function utilities.strings.chruni(s) return utfchar(s) .. " (U+" .. format("%05X",s) .. ")" end
--
-- utilities.strings.formatters.add (
-- string.formatters, "unichr",
-- [[unichr(%s)]],
-- [[local unichr = utilities.strings.unichr]]
-- )
--
-- utilities.strings.formatters.add (
-- string.formatters, "chruni",
-- [[chruni(%s)]],
-- [[local chruni = utilities.strings.chruni]]
-- )
formatters.add (
formatters, "unichr",
[["U+" .. format("%%05X",%s) .. " (" .. utfchar(%s) .. ")"]]
)
formatters.add (
formatters, "chruni",
[[utfchar(%s) .. " (U+" .. format("%%05X",%s) .. ")"]]
)
-- function utilities.strings.unichk(s) return s <= 0xFFFF and ("U+" .. format("%05X",s) .. " (" .. utfchar(s) .. ")") or ("U+" .. format("%05X",s)) end
-- function utilities.strings.chkuni(s) return s <= 0xFFFF and (utfchar(s) .. " (U+" .. format("%05X",s) .. ")") or ("U+" .. format("%05X",s)) end
--
-- utilities.strings.formatters.add (
-- string.formatters, "unichk",
-- [[unichk(%s)]],
-- [[local unichk = utilities.strings.unichk]]
-- )
--
-- utilities.strings.formatters.add (
-- string.formatters, "chkuni",
-- [[chkuni(%s)]],
-- [[local chkuni = utilities.strings.chkuni]]
-- )
--
-- print(formatters["Missing character %!chruni! in font."](234))
-- print(formatters["Missing character %!unichr! in font."](234))
-- print(formatters["Missing character %!chkuni! in font."](234))
-- print(formatters["Missing character %!unichk! in font."](234))
-- 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)
if tex and (tex.jobname or tex.formatname) then
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 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 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",
},
}
}
logs.flush = io.flush
writer = function(...)
write_nl(target,...)
end
newline = function()
write_nl(target,"\n")
end
report = function(a,b,c,...)
if c 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 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 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 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 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
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" then
useluawrites() -- because tex escapes ^^
end
settarget(whereto)
end
setformatters(variant)
setlogfile = ignore
settimedlog = ignore
else
local report_yes, subreport_yes, status_yes
local report_nop, subreport_nop, status_nop
local variants = {
default = {
formats = {
report_yes = formatters["%-15s | %s"],
report_nop = formatters["%-15s |"],
subreport_yes = formatters["%-15s | %s | %s"],
subreport_nop = formatters["%-15s | %s |"],
status_yes = formatters["%-15s : %s\n"],
status_nop = formatters["%-15s :\n"],
},
},
ansi = {
formats = {
report_yes = formatters["[0;32m%-15s [0;1m|[0m %s"],
report_nop = formatters["[0;32m%-15s [0;1m|[0m"],
subreport_yes = formatters["[0;32m%-15s [0;1m|[0;31m %s [0;1m|[0m %s"],
subreport_nop = formatters["[0;32m%-15s [0;1m|[0;31m %s [0;1m|[0m"],
status_yes = formatters["[0;32m%-15s [0;1m:[0m %s\n"],
status_nop = formatters["[0;32m%-15s [0;1m:[0m\n"],
},
},
}
logs.flush = ignore
writer = function(s)
write_nl(s)
end
newline = function()
write_nl("\n")
end
report = function(a,b,c,...)
if c then
write_nl(report_yes(a,formatters[b](c,...)))
elseif b then
write_nl(report_yes(a,b))
elseif a then
write_nl(report_nop(a))
else
write_nl("")
end
end
subreport = function(a,sub,b,c,...)
if c then
write_nl(subreport_yes(a,sub,formatters[b](c,...)))
elseif b then
write_nl(subreport_yes(a,sub,b))
elseif a then
write_nl(subreport_nop(a,sub))
else
write_nl("")
end
end
status = function(a,b,c,...) -- not to be used in lua anyway
if c then
write_nl(status_yes(a,formatters[b](c,...)))
elseif b then
write_nl(status_yes(a,b)) -- b can have %'s
elseif a then
write_nl(status_nop(a))
else
write_nl("\n")
end
end
direct = ignore
subdirect = ignore
settarget = ignore
pushtarget = ignore
poptarget = ignore
setformats = ignore
settranslations = ignore
setprocessor = function(f)
local writeline = write_nl
write_nl = function(s)
writeline(f(s))
end
end
setformatters = function(specification)
local f = nil
local d = variants.default
if specification then
if type(specification) == "table" then
f = specification.formats or specification
else
local v = variants[specification]
if v then
f = v.formats
end
end
end
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
status_yes = f.status_yes
status_nop = f.status_nop
end
setformatters(variant)
setlogfile = function(name,keepopen)
if name and name ~= "" then
local localtime = os.localtime
local writeline = write_nl
if keepopen then
local f = io.open(name,"ab")
write_nl = function(s)
writeline(s)
f:write(localtime()," | ",s,"\n")
end
else
write_nl = function(s)
writeline(s)
local f = io.open(name,"ab")
f:write(localtime()," | ",s,"\n")
f:close()
end
end
end
setlogfile = ignore
end
settimedlog = function()
local localtime = os.localtime
local writeline = write_nl
write_nl = function(s)
writeline(localtime() .. " | " .. s)
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
-- installer
-- todo: renew (un) locks when a new one is added and wildcard
local data, states = { }, nil
function logs.reporter(category,subcategory)
local logger = data[category]
if not logger then
local state = false
if states == true then
state = true
elseif 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 not logger.state then
subreport(category,subcategory,...)
end
end
logger.reporters[subcategory] = reporter
else
local tag = category
reporter = function(...)
if 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)
if category == true 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
states = utilities.parsers.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 table.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(table.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)
-- tex specific loggers (might move elsewhere)
local report_pages = logs.reporter("pages") -- not needed but saves checking when we grep for it
local real, user, sub
function logs.start_page_number()
real = texgetcount("realpageno")
user = texgetcount("userpageno")
sub = texgetcount("subpageno")
end
local timing = false
local starttime = nil
local lasttime = nil
trackers.register("pages.timing", function(v) -- only for myself (diagnostics)
starttime = os.clock()
timing = true
end)
function logs.stop_page_number() -- the first page can includes the initialization so we omit this in average
if timing then
local elapsed, average
local stoptime = os.clock()
if not lasttime or real < 2 then
elapsed = stoptime
average = stoptime
starttime = stoptime
else
elapsed = stoptime - lasttime
average = (stoptime - starttime) / (real - 1)
end
lasttime = stoptime
if real <= 0 then
report_pages("flushing page, time %0.04f / %0.04f",elapsed,average)
elseif user <= 0 then
report_pages("flushing realpage %s, time %0.04f / %0.04f",real,elapsed,average)
elseif sub <= 0 then
report_pages("flushing realpage %s, userpage %s, time %0.04f / %0.04f",real,user,elapsed,average)
else
report_pages("flushing realpage %s, userpage %s, subpage %s, time %0.04f / %0.04f",real,user,sub,elapsed,average)
end
else
if real <= 0 then
report_pages("flushing page")
elseif user <= 0 then
report_pages("flushing realpage %s",real)
elseif sub <= 0 then
report_pages("flushing realpage %s, userpage %s",real,user)
else
report_pages("flushing realpage %s, userpage %s, subpage %s",real,user,sub)
end
end
logs.flush()
end
-- we don't have show_open and show_close callbacks yet
local report_files = logs.reporter("files")
local nesting = 0
local verbose = false
local hasscheme = url.hasscheme
function logs.show_open(name)
-- if hasscheme(name) ~= "virtual" then
-- if verbose then
-- nesting = nesting + 1
-- report_files("level %s, opening %s",nesting,name)
-- else
-- write(formatters["(%s"](name)) -- tex adds a space
-- end
-- end
end
function logs.show_close(name)
-- if hasscheme(name) ~= "virtual" then
-- if verbose then
-- report_files("level %s, closing %s",nesting,name)
-- nesting = nesting - 1
-- else
-- write(")") -- tex adds a space
-- end
-- end
end
function logs.show_load(name)
-- if hasscheme(name) ~= "virtual" then
-- if verbose then
-- report_files("level %s, loading %s",nesting+1,name)
-- else
-- write(formatters["(%s)"](name))
-- end
-- end
end
-- there may be scripts out there using this:
local simple = logs.reporter("comment")
logs.simple = simple
logs.simpleline = simple
-- obsolete
logs.setprogram = ignore -- obsolete
logs.extendbanner = ignore -- obsolete
logs.reportlines = ignore -- obsolete
logs.reportbanner = ignore -- obsolete
logs.reportline = ignore -- obsolete
logs.simplelines = ignore -- obsolete
logs.help = ignore -- obsolete
-- applications
-- local function reportlines(t,str)
-- if str then
-- for line in gmatch(str,"([^\n\r]*)[\n\r]") do
-- t.report(line)
-- end
-- end
-- end
local Carg, C, lpegmatch = lpeg.Carg, lpeg.C, lpeg.match
local p_newline = lpeg.patterns.newline
local linewise = (
Carg(1) * C((1-p_newline)^1) / function(t,s) t.report(s) end
+ Carg(1) * p_newline^2 / function(t) t.report() end
+ p_newline
)^1
local function reportlines(t,str)
if str then
lpegmatch(linewise,str,1,t)
end
end
local function reportbanner(t)
local banner = t.banner
if banner then
t.report(banner)
t.report()
end
end
local function reportversion(t)
local banner = t.banner
if banner then
t.report(banner)
end
end
local function reporthelp(t,...)
local helpinfo = t.helpinfo
if type(helpinfo) == "string" then
reportlines(t,helpinfo)
elseif type(helpinfo) == "table" then
for i=1,select("#",...) do
reportlines(t,t.helpinfo[select(i,...)])
if i < n then
t.report()
end
end
end
end
local function reportinfo(t)
t.report()
reportlines(t,t.moreinfo)
end
local function reportexport(t,method)
report(t.helpinfo)
end
local reporters = {
lines = reportlines, -- not to be overloaded
banner = reportbanner,
version = reportversion,
help = reporthelp,
info = reportinfo,
export = reportexport,
}
local exporters = {
-- empty
}
logs.reporters = reporters
logs.exporters = exporters
function logs.application(t)
t.name = t.name or "unknown"
t.banner = t.banner
t.moreinfo = moreinfo
t.report = logs.reporter(t.name)
t.help = function(...)
reporters.banner(t)
reporters.help(t,...)
reporters.info(t)
end
t.export = function(...)
reporters.export(t,...)
end
t.identify = function()
reporters.banner(t)
end
t.version = function()
reporters.version(t)
end
return t
end
-- somewhat special .. will be redone (already a better solution in place in lmx)
-- logging to a file
-- local syslogname = "oeps.xxx"
--
-- for i=1,10 do
-- logs.system(syslogname,"context","test","fonts","font %s recached due to newer version (%s)","blabla","123")
-- end
local f_syslog = formatters["%s %s => %s => %s => %s\r"]
function logs.system(whereto,process,jobname,category,fmt,arg,...)
local message = f_syslog(datetime("%d/%m/%y %H:%m:%S"),process,jobname,category,arg == nil and fmt or format(fmt,arg,...))
for i=1,10 do
local f = openfile(whereto,"a") -- we can consider keeping the file open
if f then
f:write(message)
f:close()
break
else
sleep(0.1)
end
end
end
local report_system = logs.reporter("system","logs")
function logs.obsolete(old,new)
local o = loadstring("return " .. new)()
if type(o) == "function" then
return function(...)
report_system("function %a is obsolete, use %a",old,new)
loadstring(old .. "=" .. new .. " return ".. old)()(...)
end
elseif type(o) == "table" then
local t, m = { }, { }
m.__index = function(t,k)
report_system("table %a is obsolete, use %a",old,new)
m.__index, m.__newindex = o, o
return o[k]
end
m.__newindex = function(t,k,v)
report_system("table %a is obsolete, use %a",old,new)
m.__index, m.__newindex = o, o
o[k] = v
end
if libraries then
libraries.obsolete[old] = t -- true
end
setmetatable(t,m)
return t
end
end
if utilities then
utilities.report = report_system
end
if tex and tex.error then
function logs.texerrormessage(...) -- for the moment we put this function here
tex.error(format(...), { })
end
else
function logs.texerrormessage(...)
print(format(...))
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
|