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
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
|
if not modules then modules = { } end modules ['mtx-context'] = {
version = 1.001,
comment = "companion to mtxrun.lua",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- todo: more local functions
-- todo: pass jobticket/ctxdata table around
local type, next, tostring, tonumber = type, next, tostring, tonumber
local format, gmatch, match, gsub, find = string.format, string.gmatch, string.match, string.gsub, string.find
local quote, validstring = string.quote, string.valid
local concat = table.concat
local settings_to_array = utilities.parsers.settings_to_array
local appendtable = table.append
local lpegpatterns, lpegmatch, Cs, P = lpeg.patterns, lpeg.match, lpeg.Cs, lpeg.P
local getargument = environment.getargument or environment.argument
local setargument = environment.setargument
local filejoinname = file.join
local filebasename = file.basename
local filepathpart = file.pathpart
local filesuffix = file.suffix
local fileaddsuffix = file.addsuffix
local filenewsuffix = file.replacesuffix
local removesuffix = file.removesuffix
local validfile = lfs.isfile
local application = logs.application {
name = "mtx-context",
banner = "ConTeXt Process Management 0.60",
-- helpinfo = helpinfo, -- table with { category_a = text_1, category_b = text_2 } or helpstring or xml_blob
helpinfo = "mtx-context.xml",
}
-- local luatexflags = {
-- ["8bit"] = true, -- ignored, input is assumed to be in UTF-8 encoding
-- ["default-translate-file"] = true, -- ignored, input is assumed to be in UTF-8 encoding
-- ["translate-file"] = true, -- ignored, input is assumed to be in UTF-8 encoding
-- ["etex"] = true, -- ignored, the etex extensions are always active
--
-- ["credits"] = true, -- display credits and exit
-- ["debug-format"] = true, -- enable format debugging
-- ["disable-write18"] = true, -- disable \write18{SHELL COMMAND}
-- ["draftmode"] = true, -- switch on draft mode (generates no output PDF)
-- ["enable-write18"] = true, -- enable \write18{SHELL COMMAND}
-- ["file-line-error"] = true, -- enable file:line:error style messages
-- ["file-line-error-style"] = true, -- aliases of --file-line-error
-- ["no-file-line-error"] = true, -- disable file:line:error style messages
-- ["no-file-line-error-style"] = true, -- aliases of --no-file-line-error
-- ["fmt"] = true, -- load the format file FORMAT
-- ["halt-on-error"] = true, -- stop processing at the first error
-- ["help"] = true, -- display help and exit
-- ["ini"] = true, -- be iniluatex, for dumping formats
-- ["interaction"] = true, -- set interaction mode (STRING=batchmode/nonstopmode/scrollmode/errorstopmode)
-- ["jobname"] = true, -- set the job name to STRING
-- ["kpathsea-debug"] = true, -- set path searching debugging flags according to the bits of NUMBER
-- ["lua"] = true, -- load and execute a lua initialization script
-- ["mktex"] = true, -- enable mktexFMT generation (FMT=tex/tfm)
-- ["no-mktex"] = true, -- disable mktexFMT generation (FMT=tex/tfm)
-- ["nosocket"] = true, -- disable the lua socket library
-- ["output-comment"] = true, -- use STRING for DVI file comment instead of date (no effect for PDF)
-- ["output-directory"] = true, -- use existing DIR as the directory to write files in
-- ["output-format"] = true, -- use FORMAT for job output; FORMAT is 'dvi' or 'pdf'
-- ["parse-first-line"] = true, -- enable parsing of the first line of the input file
-- ["no-parse-first-line"] = true, -- disable parsing of the first line of the input file
-- ["progname"] = true, -- set the program name to STRING
-- ["recorder"] = true, -- enable filename recorder
-- ["safer"] = true, -- disable easily exploitable lua commands
-- ["shell-escape"] = true, -- enable \write18{SHELL COMMAND}
-- ["no-shell-escape"] = true, -- disable \write18{SHELL COMMAND}
-- ["shell-restricted"] = true, -- restrict \write18 to a list of commands given in texmf.cnf
-- ["synctex"] = true, -- enable synctex
-- ["version"] = true, -- display version and exit
-- ["luaonly"] = true, -- run a lua file, then exit
-- ["luaconly"] = true, -- byte-compile a lua file, then exit
-- ["jiton"] = false,
-- }
local report = application.report
scripts = scripts or { }
scripts.context = scripts.context or { }
-- for the moment here
if jit then -- already luajittex
setargument("engine","luajittex")
setargument("jit",nil)
elseif getargument("jit") or getargument("jiton") then -- relaunch luajittex
-- bonus shortcut, we assume than --jit also indicates the engine
-- although --jit and --engine=luajittex are independent
setargument("engine","luajittex")
end
local engine_new = file.nameonly(getargument("engine") or directives.value("system.engine"))
local engine_old = file.nameonly(environment.ownbin)
local function restart(engine_old,engine_new)
local command = format("%s --luaonly %q %s --redirected",engine_new,environment.ownname,environment.reconstructcommandline())
report(format("redirect %s -> %s: %s",engine_old,engine_new,command))
local result = os.execute(command)
os.exit(result)
end
if getargument("redirected") then
setargument("engine",engine_old) -- later on we need this
elseif engine_new == engine_old then
setargument("engine",engine_new) -- later on we need this
elseif environment.validengines[engine_new] and engine_new ~= environment.basicengines[engine_old] then
restart(engine_old,engine_new)
else
setargument("engine",engine_new) -- later on we need this
end
-- so far
-- constants
local usedfiles = {
nop = "cont-nop.mkiv",
yes = "cont-yes.mkiv",
}
local usedsuffixes = {
before = {
"tuc"
},
after = {
"pdf", "tuc", "log"
},
keep = {
"log"
},
}
local formatofinterface = {
en = "cont-en",
uk = "cont-uk",
de = "cont-de",
fr = "cont-fr",
nl = "cont-nl",
cs = "cont-cs",
it = "cont-it",
ro = "cont-ro",
pe = "cont-pe",
}
local defaultformats = {
"cont-en",
"cont-nl",
}
-- process information
local ctxrunner = { } -- namespace will go
local ctx_locations = { '..', '../..' }
function ctxrunner.new()
return {
ctxname = "",
jobname = "",
flags = { },
}
end
function ctxrunner.checkfile(ctxdata,ctxname,defaultname)
if not ctxdata.jobname or ctxdata.jobname == "" then
return
end
ctxdata.ctxname = ctxname or removesuffix(ctxdata.jobname) or ""
if ctxdata.ctxname == "" then
return
end
ctxdata.jobname = fileaddsuffix(ctxdata.jobname,'tex')
ctxdata.ctxname = fileaddsuffix(ctxdata.ctxname,'ctx')
report("jobname: %s",ctxdata.jobname)
report("ctxname: %s",ctxdata.ctxname)
-- mtxrun should resolve kpse: and file:
local usedname = ctxdata.ctxname
local found = validfile(usedname)
-- no further test if qualified path
if not found then
for _, path in next, ctx_locations do
local fullname = filejoinname(path,ctxdata.ctxname)
if validfile(fullname) then
usedname = fullname
found = true
break
end
end
end
if not found then
usedname = resolvers.findfile(ctxdata.ctxname,"tex")
found = usedname ~= ""
end
if not found and defaultname and defaultname ~= "" and validfile(defaultname) then
usedname = defaultname
found = true
end
if not found then
return
end
local xmldata = xml.load(usedname)
if not xmldata then
return
else
-- test for valid, can be text file
end
local ctxpaths = table.append({'.', filepathpart(ctxdata.ctxname)}, ctx_locations)
xml.include(xmldata,'ctx:include','name', ctxpaths)
local flags = ctxdata.flags
for e in xml.collected(xmldata,"/ctx:job/ctx:flags/ctx:flag") do
local flag = xml.text(e) or ""
local key, value = match(flag,"^(.-)=(.+)$")
if key and value then
flags[key] = value
else
flags[flag] = true
end
end
end
function ctxrunner.checkflags(ctxdata)
if ctxdata then
for k,v in next, ctxdata.flags do
if getargument(k) == nil then
setargument(k,v)
end
end
end
end
-- multipass control
local multipass_suffixes = { ".tuc" }
local multipass_nofruns = 8 -- or 7 to test oscillation
local multipass_forcedruns = false
local function multipass_hashfiles(jobname)
local hash = { }
for i=1,#multipass_suffixes do
local suffix = multipass_suffixes[i]
local full = jobname .. suffix
hash[full] = md5.hex(io.loaddata(full) or "unknown")
end
return hash
end
local function multipass_changed(oldhash, newhash)
for k,v in next, oldhash do
if v ~= newhash[k] then
return true
end
end
return false
end
local function multipass_copyluafile(jobname)
local tuaname, tucname = jobname..".tua", jobname..".tuc"
if validfile(tuaname) then
os.remove(tucname)
os.rename(tuaname,tucname)
end
end
--
local pattern = lpegpatterns.utfbom^-1 * (P("%% ") + P("% ")) * Cs((1-lpegpatterns.newline)^1)
local prefile = nil
local predata = nil
local function preamble_analyze(filename) -- only files on current path
filename = fileaddsuffix(filename,"tex") -- to be sure
if predata and prefile == filename then
return predata
end
prefile = filename
predata = { }
local line = io.loadlines(prefile)
if line then
local preamble = lpegmatch(pattern,line)
if preamble then
utilities.parsers.options_to_hash(preamble,predata)
predata.type = "tex"
elseif find(line,"^<?xml ") then
predata.type = "xml"
end
if predata.nofruns then
multipass_nofruns = predata.nofruns
end
if not predata.engine then
predata.engine = environment.basicengines[engine_old] --'luatex'
end
if predata.engine ~= engine_old then -- hack
if environment.validengines[predata.engine] and predata.engine ~= environment.basicengines[engine_old] then
restart(engine_old,predata.engine)
end
end
end
return predata
end
-- automatically opening and closing pdf files
local pdfview -- delayed
local function pdf_open(name,method)
pdfview = pdfview or dofile(resolvers.findfile("l-pdfview.lua","tex"))
pdfview.setmethod(method)
report(pdfview.status())
pdfview.open(filenewsuffix(name,"pdf"))
end
local function pdf_close(name,method)
pdfview = pdfview or dofile(resolvers.findfile("l-pdfview.lua","tex"))
pdfview.setmethod(method)
pdfview.close(filenewsuffix(name,"pdf"))
end
-- result file handling
local function result_push_purge(oldbase,newbase)
for _, suffix in next, usedsuffixes.after do
local oldname = fileaddsuffix(oldbase,suffix)
local newname = fileaddsuffix(newbase,suffix)
os.remove(newname)
os.remove(oldname)
end
end
local function result_push_keep(oldbase,newbase)
for _, suffix in next, usedsuffixes.before do
local oldname = fileaddsuffix(oldbase,suffix)
local newname = fileaddsuffix(newbase,suffix)
local tmpname = "keep-"..oldname
os.remove(tmpname)
os.rename(oldname,tmpname)
os.remove(oldname)
os.rename(newname,oldname)
end
end
local function result_save_error(oldbase,newbase)
for _, suffix in next, usedsuffixes.keep do
local oldname = fileaddsuffix(oldbase,suffix)
local newname = fileaddsuffix(newbase,suffix)
os.remove(newname) -- to be sure
os.rename(oldname,newname)
end
end
local function result_save_purge(oldbase,newbase)
for _, suffix in next, usedsuffixes.after do
local oldname = fileaddsuffix(oldbase,suffix)
local newname = fileaddsuffix(newbase,suffix)
os.remove(newname) -- to be sure
os.rename(oldname,newname)
end
end
local function result_save_keep(oldbase,newbase)
for _, suffix in next, usedsuffixes.after do
local oldname = fileaddsuffix(oldbase,suffix)
local newname = fileaddsuffix(newbase,suffix)
local tmpname = "keep-"..oldname
os.remove(newname)
os.rename(oldname,newname)
os.rename(tmpname,oldname)
end
end
-- executing luatex
local function flags_to_string(flags,prefix) -- context flags get prepended by c:
local t = { }
for k, v in table.sortedhash(flags) do
if prefix then
k = format("c:%s",k)
end
if not v or v == "" or v == '""' then
-- no need to flag false
elseif v == true then
t[#t+1] = format('--%s',k)
elseif type(v) == "string" then
t[#t+1] = format('--%s=%s',k,quote(v))
else
t[#t+1] = format('--%s=%s',k,tostring(v))
end
end
return concat(t," ")
end
local function luatex_command(l_flags,c_flags,filename,engine)
return format('%s %s %s "%s"',
engine or "luatex",
flags_to_string(l_flags),
flags_to_string(c_flags,true),
filename
)
end
local plain_formats = {
["plain"] = "plain",
["luatex-plain"] = "luatex-plain",
}
local function plain_format(plainformat)
return plainformat and plain_formats[plainformat]
end
local function run_plain(plainformat,filename)
local plainformat = plain_formats[plainformat]
if plainformat then
local command = format("mtxrun --script --texformat=%s plain %s",plainformat,filename)
report("running command: %s\n\n",command)
-- todo: load and run
local resultname = filenewsuffix(filename,"pdf")
local pdfview = getargument("autopdf") or getargument("closepdf")
if pdfview then
pdf_close(resultname,pdfview)
os.execute(command)
pdf_open(resultname,pdfview)
else
os.execute(command)
end
end
end
local function run_texexec(filename,a_purge,a_purgeall)
if false then
-- we need to write a top etc too and run mp etc so it's not worth the
-- trouble, so it will take a while before the next is finished
--
-- context --extra=texutil --convert myfile
else
local texexec = resolvers.findfile("texexec.rb") or ""
if texexec ~= "" then
os.setenv("RUBYOPT","")
local options = environment.reconstructcommandline(environment.arguments_after)
options = gsub(options,"--purge","")
options = gsub(options,"--purgeall","")
local command = format("ruby %s %s",texexec,options)
report("running command: %s\n\n",command)
if a_purge then
os.execute(command)
scripts.context.purge_job(filename,false,true)
elseif a_purgeall then
os.execute(command)
scripts.context.purge_job(filename,true,true)
else
os.execute(command) -- we can use os.exec but that doesn't give back timing
end
end
end
end
--
local function check_synctex(a_synctex)
return a_synctex and (tonumber(a_synctex) or (toboolean(a_synctex,true) and 1) or (a_synctex == "zipped" and 1) or (a_synctex == "unzipped" and -1)) or nil
end
function scripts.context.run(ctxdata,filename)
--
local a_nofile = getargument("nofile")
local a_engine = getargument("engine")
--
local files = environment.files or { }
--
local filelist, mainfile
--
if filename then
-- the given forced name is processed, the filelist is passed to context
mainfile = filename
filelist = { filename }
-- files = files
elseif a_nofile then
-- the list of given files is processed using the dummy file
mainfile = usedfiles.nop
filelist = { usedfiles.nop }
-- files = { }
elseif #files > 0 then
-- the list of given files is processed using the stub file
mainfile = usedfiles.yes
filelist = files
files = { }
else
return
end
--
local interface = validstring(getargument("interface")) or "en"
local formatname = formatofinterface[interface] or "cont-en"
local formatfile, scriptfile = resolvers.locateformat(formatname) -- regular engine !
if not formatfile or not scriptfile then
report("warning: no format found, forcing remake (commandline driven)")
scripts.context.make(formatname)
formatfile, scriptfile = resolvers.locateformat(formatname) -- variant
end
if formatfile and scriptfile then
-- okay
elseif formatname then
report("error, no format found with name: %s, aborting",formatname)
return
else
report("error, no format found (provide formatname or interface)")
return
end
--
local a_mkii = getargument("mkii") or getargument("pdftex") or getargument("xetex")
local a_purge = getargument("purge")
local a_purgeall = getargument("purgeall")
local a_purgeresult = getargument("purgeresult")
local a_global = getargument("global")
local a_timing = getargument("timing")
local a_profile = getargument("profile")
local a_batchmode = getargument("batchmode")
local a_nonstopmode = getargument("nonstopmode")
local a_scollmode = getargument("scrollmode")
local a_once = getargument("once")
local a_synctex = getargument("synctex")
local a_backend = getargument("backend")
local a_arrange = getargument("arrange")
local a_noarrange = getargument("noarrange")
local a_jiton = getargument("jiton")
local a_jithash = getargument("jithash")
local a_texformat = getargument("texformat")
--
a_batchmode = (a_batchmode and "batchmode") or (a_nonstopmode and "nonstopmode") or (a_scrollmode and "scrollmode") or nil
a_synctex = check_synctex(a_synctex)
--
for i=1,#filelist do
--
local filename = filelist[i]
local basename = filebasename(filename) -- use splitter
local pathname = filepathpart(filename)
--
if pathname == "" and not a_global and filename ~= usedfiles.nop then
filename = "./" .. filename
if not validfile(filename) then
report("warning: no (local) file %a, proceeding",filename)
end
end
--
local jobname = removesuffix(basename)
-- local jobname = removesuffix(filename)
local ctxname = ctxdata and ctxdata.ctxname
--
local analysis = preamble_analyze(filename)
--
a_synctex = a_synctex or check_synctex(analysis.synctex)
--
if a_mkii or analysis.engine == 'pdftex' or analysis.engine == 'xetex' then
run_texexec(filename,a_purge,a_purgeall)
elseif plain_format(a_texformat or analysis.texformat) then
run_plain(a_texformat or analysis.texformat,filename)
else
if analysis.interface and analysis.interface ~= interface then
formatname = formatofinterface[analysis.interface] or formatname
formatfile, scriptfile = resolvers.locateformat(formatname)
end
--
a_jiton = (a_jiton or toboolean(analysis.jiton,true)) and true or nil
a_jithash = validstring(a_jithash or analysis.jithash) or nil
--
if not formatfile or not scriptfile then
report("warning: no format found, forcing remake (source driven)")
scripts.context.make(formatname,a_engine)
formatfile, scriptfile = resolvers.locateformat(formatname)
end
if formatfile and scriptfile then
local suffix = validstring(getargument("suffix"))
local resultname = validstring(getargument("result"))
if suffix then
resultname = removesuffix(jobname) .. suffix
end
local oldbase = ""
local newbase = ""
if resultname then
oldbase = removesuffix(jobname)
newbase = removesuffix(resultname)
if oldbase ~= newbase then
if a_purgeresult then
result_push_purge(oldbase,newbase)
else
result_push_keep(oldbase,newbase)
end
else
resultname = nil
end
end
--
local pdfview = getargument("autopdf") or getargument("closepdf")
if pdfview then
pdf_close(filename,pdfview)
if resultname then
pdf_close(resultname,pdfview)
end
end
--
-- we could do this when locating the format and exit from luatex when
-- there is a version mismatch .. that way we can use stock luatex
-- plus mtxrun to run luajittex instead .. this saves a restart but is
-- also cleaner as then mtxrun only has to check for a special return
-- code (signaling a make + rerun) .. maybe some day
--
local okay = statistics.checkfmtstatus(formatfile,a_engine)
if okay ~= true then
report("warning: %s, forcing remake",tostring(okay))
scripts.context.make(formatname)
end
--
local oldhash = multipass_hashfiles(jobname)
local newhash = { }
local maxnofruns = once and 1 or multipass_nofruns
--
local c_flags = {
directives = validstring(environment.directives), -- gets passed via mtxrun
trackers = validstring(environment.trackers), -- gets passed via mtxrun
experiments = validstring(environment.experiments), -- gets passed via mtxrun
--
result = validstring(resultname),
input = validstring(getargument("input") or filename), -- alternative input
fulljobname = validstring(filename),
files = concat(files,","),
ctx = validstring(ctxname),
}
--
for k, v in next, environment.arguments do
-- the raw arguments
if c_flags[k] == nil then
c_flags[k] = v
end
end
--
--
local l_flags = {
["interaction"] = a_batchmode,
["synctex"] = a_synctex,
["no-parse-first-line"] = true,
-- ["no-mktex"] = true,
-- ["file-line-error-style"] = true,
["fmt"] = formatfile,
["lua"] = scriptfile,
["jobname"] = jobname,
["jiton"] = a_jiton,
["jithash"] = a_jithash,
}
--
if a_synctex then
report("warning: synctex is enabled") -- can add upto 5% runtime
end
--
if not a_timing then
-- okay
elseif c_flags.usemodule then
c_flags.usemodule = format("timing,%s",c_flags.usemodule)
else
c_flags.usemodule = "timing"
end
--
if not a_profile then
-- okay
elseif c_flags.directives then
c_flags.directives = format("system.profile,%s",c_flags.directives)
else
c_flags.directives = "system.profile"
end
--
-- kindofrun: 1:first run, 2:successive run, 3:once, 4:last of maxruns
--
for currentrun=1,maxnofruns do
--
c_flags.final = false
c_flags.kindofrun = (a_once and 3) or (currentrun==1 and 1) or (currentrun==maxnofruns and 4) or 2
c_flags.maxnofruns = maxnofruns
c_flags.forcedruns = multipass_forcedruns and multipass_forcedruns > 0 and multipass_forcedruns or nil
c_flags.currentrun = currentrun
c_flags.noarrange = a_noarrange or a_arrange or nil
--
local command = luatex_command(l_flags,c_flags,mainfile,a_engine)
--
report("run %s: %s",i,command)
print("") -- cleaner, else continuation on same line
local returncode, errorstring = os.spawn(command)
if not returncode then
report("fatal error: no return code, message: %s",errorstring or "?")
if resultname then
result_save_error(oldbase,newbase)
end
os.exit(1)
break
elseif returncode == 0 then
multipass_copyluafile(jobname)
if not multipass_forcedruns then
newhash = multipass_hashfiles(jobname)
if multipass_changed(oldhash,newhash) then
oldhash = newhash
else
break
end
elseif currentrun == multipass_forcedruns then
report("quitting after force %i runs",multipass_forcedruns)
break
end
else
report("fatal error: return code: %s",returncode or "?")
if resultname then
result_save_error(oldbase,newbase)
end
os.exit(1) -- (returncode)
break
end
--
end
--
if a_arrange then
--
c_flags.final = true
c_flags.kindofrun = 3
c_flags.currentrun = c_flags.currentrun + 1
c_flags.noarrange = nil
--
local command = luatex_command(l_flags,c_flags,mainfile,a_engine)
--
report("arrange run: %s",command)
local returncode, errorstring = os.spawn(command)
if not returncode then
report("fatal error: no return code, message: %s",errorstring or "?")
os.exit(1)
elseif returncode > 0 then
report("fatal error: return code: %s",returncode or "?")
os.exit(returncode)
end
--
end
--
if a_purge then
scripts.context.purge_job(jobname)
elseif a_purgeall then
scripts.context.purge_job(jobname,true)
end
--
if resultname then
if a_purgeresult then
-- so, if there is no result then we don't get the old one, but
-- related files (log etc) are still there for tracing purposes
result_save_purge(oldbase,newbase)
else
result_save_keep(oldbase,newbase)
end
report("result renamed to: %s",newbase)
end
--
if purge then
scripts.context.purge_job(resultname)
elseif purgeall then
scripts.context.purge_job(resultname,true)
end
--
local pdfview = getargument("autopdf")
if pdfview then
pdf_open(resultname or jobname,pdfview)
end
--
if a_timing then
report()
report("you can process (timing) statistics with:",jobname)
report()
report("context --extra=timing '%s'",jobname)
report("mtxrun --script timing --xhtml [--launch --remove] '%s'",jobname)
report()
end
else
if formatname then
report("error, no format found with name: %s, skipping",formatname)
else
report("error, no format found (provide formatname or interface)")
end
break
end
end
end
--
end
function scripts.context.pipe() -- still used?
-- context --pipe
-- context --pipe --purge --dummyfile=whatever.tmp
local interface = getargument("interface")
interface = (type(interface) == "string" and interface) or "en"
local formatname = formatofinterface[interface] or "cont-en"
local formatfile, scriptfile = resolvers.locateformat(formatname)
if not formatfile or not scriptfile then
report("warning: no format found, forcing remake (commandline driven)")
scripts.context.make(formatname)
formatfile, scriptfile = resolvers.locateformat(formatname)
end
if formatfile and scriptfile then
local okay = statistics.checkfmtstatus(formatfile)
if okay ~= true then
report("warning: %s, forcing remake",tostring(okay))
scripts.context.make(formatname)
end
local l_flags = {
interaction = "scrollmode",
fmt = formatfile,
lua = scriptfile,
}
local c_flags = {
backend = "pdf",
final = false,
kindofrun = 3,
currentrun = 1,
}
local filename = getargument("dummyfile") or ""
if filename == "" then
filename = "\\relax"
report("entering scrollmode, end job with \\end")
else
filename = fileaddsuffix(filename,"tmp")
io.savedata(filename,"\\relax")
report("entering scrollmode using '%s' with optionfile, end job with \\end",filename)
end
local command = luatex_command(l_flags,c_flags,filename)
os.spawn(command)
if getargument("purge") then
scripts.context.purge_job(filename)
elseif getargument("purgeall") then
scripts.context.purge_job(filename,true)
os.remove(filename)
end
else
if formatname then
report("error, no format found with name: %s, aborting",formatname)
else
report("error, no format found (provide formatname or interface)")
end
end
end
local function make_mkiv_format(name,engine)
environment.make_format(name) -- jit is picked up later
end
local function make_mkii_format(name,engine)
local command = format("mtxrun texexec.rb --make %s --%s",name,engine)
report("running command: %s",command)
os.spawn(command)
end
function scripts.context.generate()
resolvers.instance.renewcache = true
trackers.enable("resolvers.locating")
resolvers.load()
end
function scripts.context.make(name)
if not getargument("fast") then -- as in texexec
scripts.context.generate()
end
local list = (name and { name }) or (environment.files[1] and environment.files) or defaultformats
local engine = getargument("engine") or "luatex"
if getargument("jit") or getargument("jiton") then
engine = "luajittex"
end
for i=1,#list do
local name = list[i]
name = formatofinterface[name] or name or ""
if name == "" then
-- nothing
elseif engine == "luatex" or engine == "luajittex" then
make_mkiv_format(name,engine)
elseif engine == "pdftex" or engine == "xetex" then
make_mkii_format(name,engine)
end
end
end
function scripts.context.ctx()
local ctxdata = ctxrunner.new()
ctxdata.jobname = environment.files[1]
ctxrunner.checkfile(ctxdata,getargument("ctx"))
ctxrunner.checkflags(ctxdata)
scripts.context.run(ctxdata)
end
function scripts.context.autoctx()
local ctxdata = nil
local files = environment.files
local firstfile = #files > 0 and files[1]
if firstfile then
local suffix = filesuffix(firstfile)
local ctxname = nil
if suffix == "xml" then
local chunk = io.loadchunk(firstfile) -- 1024
if chunk then
ctxname = match(chunk,"<%?context%-directive%s+job%s+ctxfile%s+([^ ]-)%s*?>")
end
elseif suffix == "tex" or suffix == "mkiv" then
local analysis = preamble_analyze(firstfile)
ctxname = analysis.ctxfile or analysis.ctx
end
if ctxname then
ctxdata = ctxrunner.new()
ctxdata.jobname = firstfile
ctxrunner.checkfile(ctxdata,ctxname)
ctxrunner.checkflags(ctxdata)
end
end
scripts.context.run(ctxdata)
end
-- no longer ok as mlib-run misses something:
-- local template = [[
-- \starttext
-- \directMPgraphic{%s}{input "%s"}
-- \stoptext
-- ]]
--
-- local loaded = false
--
-- function scripts.context.metapost()
-- local filename = environment.files[1] or ""
-- if not loaded then
-- dofile(resolvers.findfile("mlib-run.lua"))
-- loaded = true
-- commands = commands or { }
-- commands.writestatus = report -- no longer needed
-- end
-- local formatname = getargument("format") or "metafun"
-- if formatname == "" or type(formatname) == "boolean" then
-- formatname = "metafun"
-- end
-- if getargument("pdf") then
-- local basename = removesuffix(filename)
-- local resultname = getargument("result") or basename
-- local jobname = "mtx-context-metapost"
-- local tempname = fileaddsuffix(jobname,"tex")
-- io.savedata(tempname,format(template,"metafun",filename))
-- environment.files[1] = tempname
-- setargument("result",resultname)
-- setargument("once",true)
-- scripts.context.run()
-- scripts.context.purge_job(jobname,true)
-- scripts.context.purge_job(resultname,true)
-- elseif getargument("svg") then
-- metapost.directrun(formatname,filename,"svg")
-- else
-- metapost.directrun(formatname,filename,"mps")
-- end
-- end
-- --
function scripts.context.version()
local name = resolvers.findfile("context.mkiv")
if name ~= "" then
report("main context file: %s",name)
local data = io.loaddata(name)
if data then
local version = match(data,"\\edef\\contextversion{(.-)}")
if version then
report("current version: %s",version)
else
report("context version: unknown, no timestamp found")
end
else
report("context version: unknown, load error")
end
else
report("main context file: unknown, 'context.mkiv' not found")
end
end
-- purging files (we should have an mkii and mkiv variants)
local generic_files = {
"texexec.tex", "texexec.tui", "texexec.tuo",
"texexec.tuc", "texexec.tua",
"texexec.ps", "texexec.pdf", "texexec.dvi",
"cont-opt.tex", "cont-opt.bak"
}
local obsolete_results = {
"dvi",
}
local temporary_runfiles = {
"tui", -- mkii two pass file
"tua", -- mkiv obsolete
"tup", "ted", "tes", -- texexec
"top", -- mkii options file
"log", -- tex log file
"tmp", -- mkii buffer file
"run", -- mkii stub
"bck", -- backup (obsolete)
"rlg", -- resource log
"ctl", --
"mpt", "mpx", "mpd", "mpo", "mpb", -- metafun
"prep", -- context preprocessed
"pgf", -- tikz
"aux", "blg", -- bibtex
}
local synctex_runfiles = {
"synctex", "synctex.gz", -- synctex
}
local persistent_runfiles = {
"tuo", -- mkii two pass file
"tub", -- mkii buffer file
"top", -- mkii options file
"tuc", -- mkiv two pass file
"bbl", -- bibtex
}
local special_runfiles = {
"-mpgraph", "-mprun", "-temp-"
}
local function purge_file(dfile,cfile)
if cfile and validfile(cfile) then
if os.remove(dfile) then
return filebasename(dfile)
end
elseif dfile then
if os.remove(dfile) then
return filebasename(dfile)
end
end
end
function scripts.context.purge_job(jobname,all,mkiitoo)
if jobname and jobname ~= "" then
jobname = filebasename(jobname)
local filebase = removesuffix(jobname)
if mkiitoo then
scripts.context.purge(all,filebase,true) -- leading "./"
else
local deleted = { }
for i=1,#obsolete_results do
deleted[#deleted+1] = purge_file(fileaddsuffix(filebase,obsolete_results[i]),fileaddsuffix(filebase,"pdf"))
end
for i=1,#temporary_runfiles do
deleted[#deleted+1] = purge_file(fileaddsuffix(filebase,temporary_runfiles[i]))
end
if not environment.argument("synctex") then
-- special case: not deleted when --synctex is given, but what if given in preamble
for i=1,#synctex_runfiles do
deleted[#deleted+1] = purge_file(fileaddsuffix(filebase,synctex_runfiles[i]))
end
end
if all then
for i=1,#persistent_runfiles do
deleted[#deleted+1] = purge_file(fileaddsuffix(filebase,persistent_runfiles[i]))
end
end
if #deleted > 0 then
report("purged files: %s", concat(deleted,", "))
end
end
end
end
function scripts.context.purge(all,pattern,mkiitoo)
local all = all or getargument("all")
local pattern = getargument("pattern") or (pattern and (pattern.."*")) or "*.*"
local files = dir.glob(pattern)
local obsolete = table.tohash(obsolete_results)
local temporary = table.tohash(temporary_runfiles)
local synctex = table.tohash(synctex_runfiles)
local persistent = table.tohash(persistent_runfiles)
local generic = table.tohash(generic_files)
local deleted = { }
for i=1,#files do
local name = files[i]
local suffix = filesuffix(name)
local basename = filebasename(name)
if obsolete[suffix] or temporary[suffix] or synctex[suffix] or persistent[suffix] or generic[basename] then
deleted[#deleted+1] = purge_file(name)
elseif mkiitoo then
for i=1,#special_runfiles do
if find(name,special_runfiles[i]) then
deleted[#deleted+1] = purge_file(name)
end
end
end
end
if #deleted > 0 then
report("purged files: %s", concat(deleted,", "))
end
end
-- touching files (signals regeneration of formats)
local function touch(path,name,versionpattern,kind,kindpattern)
if path and path ~= "" then
name = filejoinname(path,name)
else
name = resolvers.findfile(name)
end
local olddata = io.loaddata(name)
if olddata then
local oldkind, newkind = "", kind or ""
local oldversion, newversion = "", os.date("%Y.%m.%d %H:%M")
local newdata
if versionpattern then
newdata = gsub(olddata,versionpattern,function(pre,mid,post)
oldversion = mid
return pre .. newversion .. post
end) or olddata
end
if kind and kindpattern then
newdata = gsub(newdata,kindpattern,function(pre,mid,post)
oldkind = mid
return pre .. newkind .. post
end) or newdata
end
if newdata ~= "" and (oldversion ~= newversion or oldkind ~= newkind or newdata ~= olddata) then
local backup = filenewsuffix(name,"tmp")
os.remove(backup)
os.rename(name,backup)
io.savedata(name,newdata)
return name, oldversion, newversion, oldkind, newkind
end
end
end
local p_contextkind = "(\\edef\\contextkind%s*{)(.-)(})"
local p_contextversion = "(\\edef\\contextversion%s*{)(.-)(})"
local p_newcontextversion = "(\\newcontextversion%s*{)(.-)(})"
local function touchfiles(suffix,kind,path)
local foundname, oldversion, newversion, oldkind, newkind = touch(path,fileaddsuffix("context",suffix),p_contextversion,kind,p_contextkind)
if foundname then
report("old version : %s (%s)",oldversion,oldkind)
report("new version : %s (%s)",newversion,newkind)
report("touched file : %s",foundname)
local foundname = touch(path,fileaddsuffix("cont-new",suffix),p_newcontextversion)
if foundname then
report("touched file : %s", foundname)
end
else
report("nothing touched")
end
end
function scripts.context.touch()
if getargument("expert") then
local touch = getargument("touch")
local kind = getargument("kind")
local path = getargument("basepath")
if touch == "mkii" or touch == "mkiv" or touch == "mkvi" then -- mkix mkxi
touchfiles(touch,kind,path)
else
touchfiles("mkii",kind,path)
touchfiles("mkiv",kind,path)
touchfiles("mkvi",kind,path)
end
else
report("touching needs --expert")
end
end
-- modules
local labels = { "title", "comment", "status" }
local cards = { "*.mkvi", "*.mkiv", "*.mkxi", "*.mkix", "*.tex" }
function scripts.context.modules(pattern)
local list = { }
local found = resolvers.findfile("context.mkiv")
if not pattern or pattern == "" then
-- official files in the tree
for i=1,#cards do
resolvers.findwildcardfiles(cards[i],list)
end
-- my dev path
for i=1,#cards do
dir.glob(filejoinname(filepathpart(found),cards[i]),list)
end
else
resolvers.findwildcardfiles(pattern,list)
dir.glob(filejoinname(filepathpart(found,pattern)),list)
end
local done = { } -- todo : sort
for i=1,#list do
local v = list[i]
local base = filebasename(v)
if not done[base] then
done[base] = true
local suffix = filesuffix(base)
if suffix == "tex" or suffix == "mkiv" or suffix == "mkvi" or suffix == "mkix" or suffix == "mkxi" then
local prefix = match(base,"^([xmst])%-")
if prefix then
v = resolvers.findfile(base) -- so that files on my dev path are seen
local data = io.loaddata(v) or ""
data = match(data,"%% begin info(.-)%% end info")
if data then
local info = { }
for label, text in gmatch(data,"%% +([^ ]+) *: *(.-)[\n\r]") do
info[label] = text
end
report()
report("%-7s : %s","module",base)
report()
for i=1,#labels do
local l = labels[i]
if info[l] then
report("%-7s : %s",l,info[l])
end
end
report()
end
end
end
end
end
end
-- extras
function scripts.context.extras(pattern)
-- only in base path, i.e. only official ones
if type(pattern) ~= "string" then
pattern = "*"
end
local found = resolvers.findfile("context.mkiv")
if found ~= "" then
pattern = filejoinname(dir.expandname(filepathpart(found)),format("mtx-context-%s.tex",pattern or "*"))
local list = dir.glob(pattern)
for i=1,#list do
local v = list[i]
local data = io.loaddata(v) or ""
data = match(data,"%% begin help(.-)%% end help")
if data then
report()
report("extra: %s (%s)",(gsub(v,"^.*mtx%-context%-(.-)%.tex$","%1")),v)
for s in gmatch(data,"%% *(.-)[\n\r]") do
report(s)
end
report()
end
end
end
end
function scripts.context.extra()
local extra = getargument("extra")
if type(extra) ~= "string" then
scripts.context.extras()
elseif getargument("help") then
scripts.context.extras(extra)
else
local fullextra = extra
if not find(fullextra,"mtx%-context%-") then
fullextra = "mtx-context-" .. extra
end
local foundextra = resolvers.findfile(fullextra)
if foundextra == "" then
scripts.context.extras()
return
else
report("processing extra: %s", foundextra)
end
setargument("purgeall",true)
local result = getargument("result") or ""
if result == "" then
setargument("result","context-extra")
end
scripts.context.run(nil,foundextra)
end
end
-- todo: we need to do a dummy run
function scripts.context.trackers()
environment.files = { resolvers.findfile("m-trackers.mkiv") }
multipass_nofruns = 1
setargument("purgeall",true)
scripts.context.run()
end
function scripts.context.directives()
environment.files = { resolvers.findfile("m-directives.mkiv") }
multipass_nofruns = 1
setargument("purgeall",true)
scripts.context.run()
end
function scripts.context.logcategories()
environment.files = { resolvers.findfile("m-logcategories.mkiv") }
multipass_nofruns = 1
setargument("purgeall",true)
scripts.context.run()
end
-- updating (often one will use mtx-update instead)
function scripts.context.timed(action)
statistics.timed(action)
end
local zipname = "cont-tmf.zip"
local mainzip = "http://www.pragma-ade.com/context/latest/" .. zipname
local validtrees = { "texmf-local", "texmf-context" }
local selfscripts = { "mtxrun.lua" } -- was: { "luatools.lua", "mtxrun.lua" }
function zip.loaddata(zipfile,filename) -- should be in zip lib
local f = zipfile:open(filename)
if f then
local data = f:read("*a")
f:close()
return data
end
return nil
end
function scripts.context.update()
local force = getargument("force")
local socket = require("socket")
local http = require("socket.http")
local basepath = resolvers.findfile("context.mkiv") or ""
if basepath == "" then
report("quiting, no 'context.mkiv' found")
return
end
local basetree = basepath.match(basepath,"^(.-)tex/context/base/context.mkiv$") or ""
if basetree == "" then
report("quiting, no proper tds structure (%s)",basepath)
return
end
local function is_okay(basetree)
for _, tree in next, validtrees do
local pattern = gsub(tree,"%-","%%-")
if find(basetree,pattern) then
return tree
end
end
return false
end
local okay = is_okay(basetree)
if not okay then
report("quiting, tree '%s' is protected",okay)
return
else
report("updating tree '%s'",okay)
end
if not lfs.chdir(basetree) then
report("quiting, unable to change to '%s'",okay)
return
end
report("fetching '%s'",mainzip)
local latest = http.request(mainzip)
if not latest then
report("context tree '%s' can be updated, use --force",okay)
return
end
io.savedata("cont-tmf.zip",latest)
if false then
-- variant 1
os.execute("mtxrun --script unzip cont-tmf.zip")
else
-- variant 2
local zipfile = zip.open(zipname)
if not zipfile then
report("quiting, unable to open '%s'",zipname)
return
end
local newfile = zip.loaddata(zipfile,"tex/context/base/context.mkiv")
if not newfile then
report("quiting, unable to open '%s'","context.mkiv")
return
end
local oldfile = io.loaddata(resolvers.findfile("context.mkiv")) or ""
local function versiontonumber(what,str)
local version = match(str,"\\edef\\contextversion{(.-)}") or ""
local year, month, day, hour, minute = match(str,"\\edef\\contextversion{(%d+)%.(%d+)%.(%d+) *(%d+)%:(%d+)}")
if year and minute then
local time = os.time { year=year,month=month,day=day,hour=hour,minute=minute}
report("%s version: %s (%s)",what,version,time)
return time
else
report("%s version: %s (unknown)",what,version)
return nil
end
end
local oldversion = versiontonumber("old",oldfile)
local newversion = versiontonumber("new",newfile)
if not oldversion or not newversion then
report("quiting, version cannot be determined")
return
elseif oldversion == newversion then
report("quiting, your current version is up-to-date")
return
elseif oldversion > newversion then
report("quiting, your current version is newer")
return
end
for k in zipfile:files() do
local filename = k.filename
if find(filename,"/$") then
lfs.mkdir(filename)
else
local data = zip.loaddata(zipfile,filename)
if data then
if force then
io.savedata(filename,data)
end
report(filename)
end
end
end
for _, scriptname in next, selfscripts do
local oldscript = resolvers.findfile(scriptname) or ""
if oldscript ~= "" and is_okay(oldscript) then
local newscript = "./scripts/context/lua/" .. scriptname
local data = io.loaddata(newscript) or ""
if data ~= "" then
report("replacing script '%s' by '%s'",oldscript,newscript)
if force then
io.savedata(oldscript,data)
end
end
else
report("keeping script '%s'",oldscript)
end
end
if force then
scripts.context.make()
end
end
if force then
report("context tree '%s' has been updated",okay)
else
report("context tree '%s' can been updated (use --force)",okay)
end
end
-- getting it done
if getargument("nostats") then
setargument("nostatistics",true)
setargument("nostat",nil)
end
if getargument("batch") then
setargument("batchmode",true)
setargument("batch",nil)
end
if getargument("nonstop") then
setargument("nonstopmode",true)
setargument("nonstop",nil)
end
do
local silent = getargument("silent")
if type(silent) == "string" then
directives.enable(format("logs.blocked={%s}",silent))
elseif silent then
directives.enable("logs.blocked")
end
end
if getargument("once") then
multipass_nofruns = 1
else
if getargument("runs") then
multipass_nofruns = tonumber(getargument("runs")) or nil
end
multipass_forcedruns = tonumber(getargument("forcedruns")) or nil
end
if getargument("run") then
scripts.context.timed(scripts.context.autoctx)
elseif getargument("make") then
scripts.context.timed(function() scripts.context.make() end)
elseif getargument("generate") then
scripts.context.timed(function() scripts.context.generate() end)
elseif getargument("ctx") then
scripts.context.timed(scripts.context.ctx)
-- elseif getargument("mp") or getargument("metapost") then
-- scripts.context.timed(scripts.context.metapost)
elseif getargument("version") then
application.identify()
scripts.context.version()
elseif getargument("touch") then
scripts.context.touch()
elseif getargument("update") then
scripts.context.update()
elseif getargument("expert") then
application.help("expert", "special")
elseif getargument("modules") then
scripts.context.modules()
elseif getargument("extras") then
scripts.context.extras(environment.files[1] or getargument("extras"))
elseif getargument("extra") then
scripts.context.extra()
elseif getargument("exporthelp") then
-- application.export(getargument("exporthelp"),environment.files[1])
application.export()
elseif getargument("help") then
if environment.files[1] == "extras" then
scripts.context.extras()
else
application.help("basic")
end
elseif getargument("showtrackers") or getargument("trackers") == true then
scripts.context.trackers()
elseif getargument("showdirectives") or getargument("directives") == true then
scripts.context.directives()
elseif getargument("showlogcategories") then
scripts.context.logcategories()
elseif environment.files[1] or getargument("nofile") then
scripts.context.timed(scripts.context.autoctx)
elseif getargument("pipe") then
scripts.context.timed(scripts.context.pipe)
elseif getargument("purge") then
-- only when no filename given, supports --pattern
scripts.context.purge()
elseif getargument("purgeall") then
-- only when no filename given, supports --pattern
scripts.context.purge(true,nil,true)
else
application.help("basic")
end
|