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
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
|
# module : base/tex
# copyright : PRAGMA Advanced Document Engineering
# version : 2005
# author : Hans Hagen
#
# project : ConTeXt / eXaMpLe
# concept : Hans Hagen
# info : j.hagen@xs4all.nl
# www : www.pragma-ade.com
# todo:
#
# - write systemcall for mpost to file so that it can be run faster
# - use -8bit and -progname
#
# report ?
require 'base/variables'
require 'base/kpse'
require 'base/system'
require 'base/state'
require 'base/pdf'
require 'base/file'
require 'base/ctx'
require 'base/mp'
class String
def standard?
begin
self == 'standard'
rescue
false
end
end
end
# class String
# def utf_bom?
# self.match(/^\357\273\277/o).length>0 rescue false
# end
# end
class Array
def standard?
begin
self.include?('standard')
rescue
false
end
end
def join_path
self.join(File::PATH_SEPARATOR)
end
end
class TEX
# The make-part of this class was made on a rainy day while listening
# to "10.000 clowns on a rainy day" by Jan Akkerman. Unfortunately the
# make method is not as swinging as this live cd.
include Variables
@@texengines = Hash.new
@@mpsengines = Hash.new
@@backends = Hash.new
@@mappaths = Hash.new
@@runoptions = Hash.new
@@draftoptions = Hash.new
@@texformats = Hash.new
@@mpsformats = Hash.new
@@prognames = Hash.new
@@texmakestr = Hash.new
@@texprocstr = Hash.new
@@mpsmakestr = Hash.new
@@mpsprocstr = Hash.new
@@texmethods = Hash.new
@@mpsmethods = Hash.new
@@pdftex = 'pdftex' # new default, pdfetex is gone
@@luafiles = "luafiles.tmp"
@@luatarget = "lua/context"
# we now drop pdfetex definitely
# ENV['PATH'].split(File::PATH_SEPARATOR).each do |p|
# if System.unix? then
# pp, pe = "#{p}/pdftex" , "#{p}/pdfetex"
# else
# pp, pe = "#{p}/pdftex.exe", "#{p}/pdfetex.exe"
# end
# if FileTest.file?(pe) then # we assume no update
# @@pdftex = 'pdfetex'
# break
# elsif FileTest.file?(pp) then # we assume an update
# @@pdftex = 'pdftex'
# break
# end
# end
# ['etex','pdfetex','standard'] .each do |e| @@texengines[e] = @@pdftex end
# ['tex','pdftex'] .each do |e| @@texengines[e] = 'pdftex' end
['tex','etex','pdftex','pdfetex','standard'] .each do |e| @@texengines[e] = 'pdftex' end
['aleph','omega'] .each do |e| @@texengines[e] = 'aleph' end
['xetex'] .each do |e| @@texengines[e] = 'xetex' end
['luatex'] .each do |e| @@texengines[e] = 'luatex' end
['metapost','mpost', 'standard'] .each do |e| @@mpsengines[e] = 'mpost' end
['pdfetex','pdftex','pdf','pdftex','standard'] .each do |b| @@backends[b] = 'pdftex' end
['dvipdfmx','dvipdfm','dpx','dpm'] .each do |b| @@backends[b] = 'dvipdfmx' end
['xetex','xtx'] .each do |b| @@backends[b] = 'xetex' end
['dvips','ps','dvi'] .each do |b| @@backends[b] = 'dvips' end
['dvipsone'] .each do |b| @@backends[b] = 'dvipsone' end
['acrobat','adobe','distiller'] .each do |b| @@backends[b] = 'acrobat' end
['xdv','xdv2pdf'] .each do |b| @@backends[b] = 'xdv2pdf' end
['tex','standard'] .each do |b| @@mappaths[b] = 'dvips' end
['pdftex','pdfetex'] .each do |b| @@mappaths[b] = 'pdftex' end
['aleph','omega','xetex'] .each do |b| @@mappaths[b] = 'dvipdfm' end
['dvipdfm', 'dvipdfmx', 'xdvipdfmx'] .each do |b| @@mappaths[b] = 'dvipdfm' end
['xdv','xdv2pdf'] .each do |b| @@mappaths[b] = 'dvips' end
# todo norwegian (no)
['plain'] .each do |f| @@texformats[f] = 'plain' end
['cont-en','en','english','context','standard'].each do |f| @@texformats[f] = 'cont-en' end
['cont-nl','nl','dutch'] .each do |f| @@texformats[f] = 'cont-nl' end
['cont-de','de','german'] .each do |f| @@texformats[f] = 'cont-de' end
['cont-it','it','italian'] .each do |f| @@texformats[f] = 'cont-it' end
['cont-fr','fr','french'] .each do |f| @@texformats[f] = 'cont-fr' end
['cont-cz','cz','czech'] .each do |f| @@texformats[f] = 'cont-cz' end
['cont-ro','ro','romanian'] .each do |f| @@texformats[f] = 'cont-ro' end
['cont-uk','uk','british'] .each do |f| @@texformats[f] = 'cont-uk' end
['mptopdf'] .each do |f| @@texformats[f] = 'mptopdf' end
['latex'] .each do |f| @@texformats[f] = 'latex.ltx' end
['plain','mpost'] .each do |f| @@mpsformats[f] = 'plain' end
['metafun','context','standard'] .each do |f| @@mpsformats[f] = 'metafun' end
# no 'standard' progname ! / beware, when using texexec we always use the context/metafun values
['pdftex','pdfetex','aleph','omega',
'xetex','luatex'] .each do |p| @@prognames[p] = 'context' end
['mpost'] .each do |p| @@prognames[p] = 'metafun' end
['plain','default','standard','mptopdf'] .each do |f| @@texmethods[f] = 'plain' end
['cont-en','cont-nl','cont-de','cont-it',
'cont-fr','cont-cz','cont-ro','cont-uk'] .each do |f| @@texmethods[f] = 'context' end
['latex'] .each do |f| @@texmethods[f] = 'latex' end
['plain','default','standard'] .each do |f| @@mpsmethods[f] = 'plain' end
['metafun'] .each do |f| @@mpsmethods[f] = 'metafun' end
@@texmakestr['plain'] = "\\dump"
@@mpsmakestr['plain'] = "\\dump"
['cont-en','cont-nl','cont-de','cont-it',
'cont-fr','cont-cz','cont-ro','cont-uk'] .each do |f| @@texprocstr[f] = "\\emergencyend" end
# @@runoptions['xetex'] = ['--output-driver \\\"-d 4 -V 5\\\"'] # we need the pos pass
# @@runoptions['xetex'] = ['--8bit','-no-pdf'] # from now on we assume (x)dvipdfmx to be used
@@runoptions['xetex'] = ['--8bit','-output-driver="xdvipdfmx -E -d 4 -V 5"']
@@runoptions['pdfetex'] = ['--8bit'] # obsolete
@@runoptions['pdftex'] = ['--8bit'] # pdftex is now pdfetex
@@runoptions['luatex'] = ['--file-line-error']
@@runoptions['aleph'] = ['--8bit']
@@runoptions['mpost'] = ['--8bit']
@@draftoptions['pdftex'] = ['--draftmode']
@@booleanvars = [
'batchmode', 'nonstopmode', 'fast', 'fastdisabled', 'silentmode', 'final',
'paranoid', 'notparanoid', 'nobanner', 'once', 'allpatterns', 'draft',
'nompmode', 'nomprun', 'automprun', 'combine',
'nomapfiles', 'local',
'arrange', 'noarrange',
'forcexml', 'foxet',
'alpha', 'beta', 'luatex',
'mpyforce', 'forcempy',
'forcetexutil', 'texutil',
'globalfile', 'autopath',
'purge', 'purgeall', 'keep', 'autopdf', 'xpdf', 'simplerun', 'verbose',
'nooptionfile', 'nobackend', 'noctx', 'utfbom',
'mkii',
]
@@stringvars = [
'modefile', 'result', 'suffix', 'response', 'path',
'filters', 'usemodules', 'environments', 'separation', 'setuppath',
'arguments', 'input', 'output', 'randomseed', 'modes', 'mode', 'filename',
'ctxfile', 'printformat', 'paperformat', 'paperoffset',
'timeout', 'passon'
]
@@standardvars = [
'mainlanguage', 'bodyfont', 'language'
]
@@knownvars = [
'engine', 'distribution', 'texformats', 'mpsformats', 'progname', 'interface',
'runs', 'backend'
]
@@extrabooleanvars = []
@@extrastringvars = []
def booleanvars
[@@booleanvars,@@extrabooleanvars].flatten.uniq
end
def stringvars
[@@stringvars,@@extrastringvars].flatten.uniq
end
def standardvars
[@@standardvars].flatten.uniq
end
def knownvars
[@@knownvars].flatten.uniq
end
def allbooleanvars
[@@booleanvars,@@extrabooleanvars].flatten.uniq
end
def allstringvars
[@@stringvars,@@extrastringvars,@@standardvars,@@knownvars].flatten.uniq
end
def setextrastringvars(vars)
@@extrastringvars << vars
end
def setextrabooleanvars(vars)
@@extrabooleanvars << vars
end
# def jobvariables(names=nil)
# if [names ||[]].flatten.size == 0 then
# names = [allbooleanvars,allstringvars].flatten
# end
# data = Hash.new
# names.each do |name|
# if allbooleanvars.include?(name) then
# data[name] = if getvariable(name) then "yes" else "no" end
# else
# data[name] = getvariable(name)
# end
# end
# data
# end
# def setjobvariables(names=nil)
# assignments = Array.new
# jobvariables(names).each do |k,v|
# assignments << "#{k}=\{#{v}\}"
# end
# "\setvariables[exe][#{assignments.join(", ")}]"
# end
@@temprunfile = 'texexec'
@@temptexfile = 'texexec.tex'
def initialize(logger=nil)
if @logger = logger then
def report(str='')
@logger.report(str)
end
else
def report(str='')
puts(str)
end
end
@cleanups = Array.new
@variables = Hash.new
@startuptime = Time.now
# options
booleanvars.each do |k|
setvariable(k,false)
end
stringvars.each do |k|
setvariable(k,'')
end
standardvars.each do |k|
setvariable(k,'standard')
end
setvariable('distribution', Kpse.distribution)
setvariable('texformats', defaulttexformats)
setvariable('mpsformats', defaultmpsformats)
setvariable('progname', 'standard') # or ''
setvariable('interface', 'standard')
setvariable('engine', 'standard') # replaced by tex/mpsengine
setvariable('backend', 'pdftex')
setvariable('runs', '8')
setvariable('randomseed', rand(1440).to_s) # we want the same seed for one run
# files
setvariable('files', [])
# defaults
setvariable('texengine', 'standard')
setvariable('mpsengine', 'standard')
setvariable('backend', 'standard')
setvariable('error', '')
end
def error?
not getvariable('error').empty?
end
def runtime
Time.now - @startuptime
end
def reportruntime
report("runtime: #{runtime}")
end
def runcommand(something)
command = [something].flatten.join(' ')
report("running: #{command}") if getvariable('verbose')
system(command)
end
def inspect(name=nil)
if ! name || name.empty? then
name = [booleanvars,stringvars,standardvars,knownvars]
end
str = '' # allocate
[name].flatten.each do |n|
if str = getvariable(n) then
str = str.join(" ") if str.class == Array
unless (str.class == String) && str.empty? then
report("option '#{n}' is set to '#{str}'")
end
end
end
end
def tempfilename(suffix='')
@@temprunfile + if suffix.empty? then '' else ".#{suffix}" end
end
def cleanup
@cleanups.each do |name|
begin
File.delete(name) if FileTest.file?(name)
rescue
report("unable to delete #{name}")
end
end
end
def cleanuptemprunfiles
begin
Dir.glob("#{@@temprunfile}*").each do |name|
if File.file?(name) && (File.splitname(name)[1] !~ /(pdf|dvi)/o) then
File.delete(name) rescue false
end
end
rescue
end
['mpgraph.mp'].each do |file|
(File.delete(file) if (FileTest.size?(file) rescue 10) < 10) rescue false
end
end
def backends() @@backends.keys.sort end
def texengines() @@texengines.keys.sort end
def mpsengines() @@mpsengines.keys.sort end
def texformats() @@texformats.keys.sort end
def mpsformats() @@mpsformats.keys.sort end
def defaulttexformats() ['en','nl','mptopdf'] end
def defaultmpsformats() ['metafun'] end
def texmakeextras(format) @@texmakestr[format] || '' end
def mpsmakeextras(format) @@mpsmakestr[format] || '' end
def texprocextras(format) @@texprocstr[format] || '' end
def mpsprocextras(format) @@mpsprocstr[format] || '' end
def texmethod(format) @@texmethods[str] || @@texmethods['standard'] end
def mpsmethod(format) @@mpsmethods[str] || @@mpsmethods['standard'] end
def runoptions(engine)
options = if getvariable('draft') then @@draftoptions[engine] else [] end
begin
if str = getvariable('passon') then
options = [options,str.split(' ')].flatten
end
rescue
end
if @@runoptions.key?(engine) then
[options,@@runoptions[engine]].flatten.join(' ')
else
options.join(' ')
end
end
# private
def cleanuplater(name)
begin
@cleanups.push(File.expand_path(name))
rescue
@cleanups.push(name)
end
end
def openedfile(name)
begin
f = File.open(name,'w')
rescue
report("file '#{File.expand_path(name)}' cannot be opened for writing")
return nil
else
cleanuplater(name) if f
return f
end
end
def prefixed(format,engine)
# format
case engine
when /etex|pdftex|pdfetex|aleph|xetex|luatex/io then
"*#{format}"
else
format
end
end
def quoted(str)
if str =~ /^[^\"].* / then "\"#{str}\"" else str end
end
def getarrayvariable(str='')
str = getvariable(str)
if str.class == String then str.split(',') else str.flatten end
end
def validtexformat(str) validsomething(str,@@texformats,'tex') end
def validmpsformat(str) validsomething(str,@@mpsformats,'mp' ) end
def validtexengine(str) validsomething(str,@@texengines,'pdftex') end
def validmpsengine(str) validsomething(str,@@mpsengines,'mpost' ) end
def validtexmethod(str) [validsomething(str,@@texmethods)].flatten.first end
def validmpsmethod(str) [validsomething(str,@@mpsmethods)].flatten.first end
def validsomething(str,something,type=nil)
if str then
list = [str].flatten.collect do |s|
if something[s] then
something[s]
elsif type && s =~ /\.#{type}$/ then
s
else
nil
end
end .compact.uniq
if list.length>0 then
if str.class == String then list.first else list end
else
false
end
else
false
end
end
def validbackend(str)
if str && @@backends.key?(str) then
@@backends[str]
else
@@backends['standard']
end
end
def validprogname(str)
if str then
[str].flatten.each do |s|
return @@prognames[s] if @@prognames.key?(s)
end
else
return nil
end
end
# we no longer support the & syntax
def formatflag(engine=nil,format=nil)
case getvariable('distribution')
when 'standard' then prefix = "--fmt"
when /web2c/io then prefix = web2cformatflag(engine)
when /miktex/io then prefix = "--undump"
else return ""
end
if format then
# if engine then
# "#{prefix}=#{engine}/#{format}"
# else
"#{prefix}=#{format}"
# end
else
prefix
end
end
def web2cformatflag(engine=nil)
# funny that we've standardized on the fmt suffix (at the cost of
# upward compatibility problems) but stuck to the bas/mem/fmt flags
if engine then
case validmpsengine(engine)
when /mpost/ then "-mem"
when /mfont/ then "-bas"
else "-fmt"
end
else
"-fmt"
end
end
def prognameflag(progname=nil)
case getvariable('distribution')
when 'standard' then prefix = "-progname"
when /web2c/io then prefix = "-progname"
when /miktex/io then prefix = "-alias"
else return ""
end
if progname and not progname.empty? then
"#{prefix}=#{progname}"
else
prefix
end
end
def iniflag() # should go to kpse and kpse should become texenv
if Kpse.miktex? then
"-initialize"
else
"--ini"
end
end
def tcxflag(file="natural.tcx")
if Kpse.miktex? then
"-tcx=#{file}"
else
"-translate-file=#{file}"
end
end
def filestate(file)
File.mtime(file).strftime("%d/%m/%Y %H:%M:%S")
end
# will go to context/process context/listing etc
def contextversion # ook elders gebruiken
filename = Kpse.found('context.tex')
version = 'unknown'
begin
if FileTest.file?(filename) && IO.read(filename).match(/\\contextversion\{(\d+\.\d+\.\d+.*?)\}/) then
version = $1
end
rescue
end
return version
end
def cleanupluafiles
File.delete(@@luafiles) rescue false
end
def compileluafiles
begin
Dir.glob("lua/context/*.luc").each do |luc|
File.delete(luc) rescue false
end
rescue
end
if data = (IO.readlines(@@luafiles) rescue nil) then
report("compiling lua files (using #{File.expand_path(@@luafiles)})")
begin
Dir.makedirs(@@luatarget) rescue false
data.each do |line|
luafile = line.chomp
lucfile = File.basename(luafile).gsub(/\..*?$/,'') + ".luc"
if runcommand(["luac","-s","-o",quoted(File.join(Dir.getwd,@@luatarget,lucfile)),quoted(luafile)]) then
report("#{File.basename(luafile)} converted to #{File.basename(lucfile)}")
else
report("#{File.basename(luafile)} not converted to #{File.basename(lucfile)}")
end
end
rescue
report("fatal error in compilation")
end
else
report("no lua compilations needed")
end
File.delete(@@luafiles) rescue false
end
# we need engine methods
def makeformats
checktestversion
report("using search method '#{Kpse.searchmethod}'")
if getvariable('fast') then
report('using existing database')
else
report('updating file database')
Kpse.update
if getvariable('luatex') then
begin
luatools = `texmfstart luatools --format=texmfscripts luatools.lua`.chomp.strip
unless luatools.empty? then
runcommand(["luatex","--luaonly #{luatools}","--generate","--verbose"])
end
rescue
report("run 'luatex --luaonly pathto/luatools.lua --generate' manually")
exit
end
end
end
# goody
if getvariable('texformats') == 'standard' then
setvariable('texformats',[getvariable('interface')]) unless getvariable('interface').empty?
end
# prepare
texformats = validtexformat(getarrayvariable('texformats'))
mpsformats = validmpsformat(getarrayvariable('mpsformats'))
texengine = validtexengine(getvariable('texengine'))
mpsengine = validmpsengine(getvariable('mpsengine'))
# save current path
savedpath = Dir.getwd
# generate tex formats
unless texformats || mpsformats then
report('provide valid format (name.tex, name.mp, ...) or format id (metafun, en, nl, ...)')
setvariable('error','no format specified')
end
if texformats && texengine then
report("using tex engine #{texengine}")
texformatpath = if getvariable('local') then '.' else Kpse.formatpath(texengine,true) end
# can be empty, to do
report("using tex format path #{texformatpath}")
Dir.chdir(texformatpath) rescue false
if FileTest.writable?(texformatpath) then
if texformats.length > 0 then
makeuserfile
makeresponsefile
end
if texengine == 'luatex' then
cleanupluafiles
texformats.each do |texformat|
report("generating tex format #{texformat}")
flags = ['--ini','--compile']
flags << '--verbose' if getvariable('verbose')
flags << '--mkii' if getvariable('mkii')
run_luatools("#{flags.join(" ")} #{texformat}")
end
compileluafiles
else
texformats.each do |texformat|
report("generating tex format #{texformat}")
progname = validprogname([getvariable('progname'),texformat,texengine])
runcommand([quoted(texengine),prognameflag(progname),iniflag,tcxflag,prefixed(texformat,texengine),texmakeextras(texformat)])
end
end
else
report("unable to make format due to lack of permissions")
texformatpath = ''
end
else
texformatpath = ''
end
# generate mps formats
if mpsformats && mpsengine then
report("using mp engine #{mpsengine}")
mpsformatpath = if getvariable('local') then '.' else Kpse.formatpath(mpsengine,false) end
report("using mps format path #{mpsformatpath}")
Dir.chdir(mpsformatpath) rescue false
if FileTest.writable?(mpsformatpath) then
mpsformats.each do |mpsformat|
report("generating mps format #{mpsformat}")
progname = validprogname([getvariable('progname'),mpsformat,mpsengine])
if not runcommand([quoted(mpsengine),prognameflag(progname),iniflag,tcxflag,runoptions(mpsengine),mpsformat,mpsmakeextras(mpsformat)]) then
setvariable('error','no format made')
end
end
else
report("unable to make format due to lack of permissions")
mpsformatpath = ''
setvariable('error','file permission problem')
end
else
mpsformatpath = ''
end
# check for problems
report("")
report("tex engine path: #{texformatpath}") unless texformatpath.empty?
report("mps engine path: #{mpsformatpath}") unless mpsformatpath.empty?
report("")
[['fmt','tex'],['mem','mps']].each do |f|
[[texformatpath,'global'],[mpsformatpath,'global'],[savedpath,'current']].each do |p|
begin
Dir.chdir(p[0])
rescue
else
Dir.glob("*.#{f[0]}").each do |file|
report("#{f[1]}: #{filestate(file)} > #{File.expand_path(file)} (#{File.size(file)})")
end
end
end
end
begin
lucdir = File.join(texformatpath,@@luatarget)
Dir.chdir(lucdir)
rescue
else
Dir.glob("*.luc").each do |file|
report("luc: #{filestate(file)} > #{File.expand_path(file)} (#{File.size(file)})")
end
end
# to be sure, go back to current path
begin
Dir.chdir(savedpath)
rescue
end
# finalize
cleanup
report("")
reportruntime
end
def checkcontext
# todo : report texmf.cnf en problems
# basics
report("current distribution: #{Kpse.distribution}")
report("context source date: #{contextversion}")
formatpaths = Kpse.formatpaths
globpattern = "**/{#{formatpaths.join(',')}}/*/*.{fmt,efmt,ofmt,xfmt,mem}"
report("format path: #{formatpaths.join(' ')}")
# utilities
report('start of analysis')
results = Array.new
['texexec','texutil','ctxtools'].each do |program|
result = `texmfstart #{program} --help`
result.sub!(/.*?(#{program}[^\n]+)\n.*/mi) do $1 end
results.push("#{result}")
end
# formats
cleanuptemprunfiles
if formats = Dir.glob(globpattern) then
formats.sort.each do |name|
cleanuptemprunfiles
if f = open(tempfilename('tex'),'w') then
# kind of aleph-run-out-of-par safe
f << "\\starttext\n"
f << " \\relax test \\relax\n"
f << "\\stoptext\n"
f << "\\endinput\n"
f.close
if FileTest.file?(tempfilename('tex')) then
format = File.basename(name)
engine = if name =~ /(pdftex|pdfetex|aleph|xetex|luatex)[\/\\]#{format}/ then $1 else '' end
if engine.empty? then
engineflag = ""
else
engineflag = "--engine=#{$1}"
end
case format
when /cont\-([a-z]+)/ then
interface = $1.sub(/cont\-/,'')
results.push('')
results.push("testing interface #{interface}")
flags = ['--noctx','--process','--batch','--once',"--interface=#{interface}",engineflag]
# result = Kpse.pipescript('texexec',tempfilename,flags)
result = runtexexec([tempfilename], flags, 1)
if FileTest.file?("#{@@temprunfile}.log") then
logdata = IO.read("#{@@temprunfile}.log")
if logdata =~ /^\s*This is (.*?)[\s\,]+(.*?)$/mois then
if validtexengine($1.downcase) then
results.push("#{$1} #{$2.gsub(/\(format.*$/,'')}".strip)
end
end
if logdata =~ /^\s*(ConTeXt)\s+(.*int:\s+[a-z]+.*?)\s*$/mois then
results.push("#{$1} #{$2}".gsub(/\s+/,' ').strip)
end
else
results.push("format #{format} does not work")
end
when /metafun/ then
# todo
when /mptopdf/ then
# todo
end
else
results.push("error in creating #{tempfilename('tex')}")
end
end
cleanuptemprunfiles
end
end
report('end of analysis')
report
results.each do |line|
report(line)
end
cleanuptemprunfiles
end
private
def makeuserfile
language = getvariable('language')
mainlanguage = getvariable('mainlanguage')
bodyfont = getvariable('bodyfont')
if f = openedfile("cont-fmt.tex") then
f << "\\unprotect"
case language
when 'all' then
f << "\\preloadallpatterns\n"
when '' then
f << "% no language presets\n"
when 'standard'
f << "% using defaults\n"
else
languages = language.split(',')
languages.each do |l|
f << "\\installlanguage[\\s!#{l}][\\c!state=\\v!start]\n"
end
mainlanguage = languages.first
end
unless mainlanguage == 'standard' then
f << "\\setupcurrentlanguage[\\s!#{mainlanguage}]\n";
end
unless bodyfont == 'standard' then
# ~ will become obsolete when lmr is used
f << "\\definetypescriptsynonym[cmr][#{bodyfont}]"
# ~ is already obsolete for some years now
f << "\\definefilesynonym[font-cmr][font-#{bodyfont}]\n"
end
f << "\\protect\n"
f << "\\endinput\n"
f.close
end
end
def makeresponsefile
interface = getvariable('interface')
if f = openedfile("mult-def.tex") then
case interface
when 'standard' then
f << "% using default response interface"
else
f << "\\def\\currentresponses\{#{interface}\}\n"
end
f << "\\endinput\n"
f.close
end
end
private # will become baee/context
@@preamblekeys = [
['tex','texengine'],
['engine','texengine'],
['program','texengine'],
['translate','tcxfilter'],
['tcx','tcxfilter'],
['output','backend'],
['mode','mode'],
['ctx','ctxfile'],
['version','contextversion'],
['format','texformats'],
['interface','texformats'],
]
@@re_utf_bom = /^\357\273\277/o
def scantexpreamble(filename)
begin
if FileTest.file?(filename) and tex = File.open(filename) then
bomdone = false
while str = tex.gets and str.chomp! do
unless bomdone then
if str.sub!(@@re_utf_bom, '')
report("utf mode forced (bom found)")
setvariable('utfbom',true)
end
bomdone = true
end
if str =~ /^\%\s*(.*)/o then
# we only accept lines with key=value pairs
vars, ok = Hash.new, true
$1.split(/\s+/o).each do |s|
k, v = s.split('=')
if k && v then
vars[k] = v
else
ok = false
break
end
end
if ok then
# we have a valid line
@@preamblekeys.each do |v|
setvariable(v[1],vars[v[0]]) if vars.key?(v[0]) && vars[v[0]]
end
break
end
else
break
end
end
tex.close
end
rescue
# well, let's not worry too much
end
end
def scantexcontent(filename)
if FileTest.file?(filename) and tex = File.open(filename) then
while str = tex.gets do
case str.chomp
when /^\%/o then
# next
when /\\(starttekst|stoptekst|startonderdeel|startdocument|startoverzicht)/o then
setvariable('texformats','nl') ; break
when /\\(stelle|verwende|umgebung|benutze)/o then
setvariable('texformats','de') ; break
when /\\(stel|gebruik|omgeving)/o then
setvariable('texformats','nl') ; break
when /\\(use|setup|environment)/o then
setvariable('texformats','en') ; break
when /\\(usa|imposta|ambiente)/o then
setvariable('texformats','it') ; break
when /(height|width|style)=/o then
setvariable('texformats','en') ; break
when /(hoehe|breite|schrift)=/o then
setvariable('texformats','de') ; break
when /(hoogte|breedte|letter)=/o then
setvariable('texformats','nl') ; break
when /(altezza|ampiezza|stile)=/o then
setvariable('texformats','it') ; break
when /externfiguur/o then
setvariable('texformats','nl') ; break
when /externalfigure/o then
setvariable('texformats','en') ; break
when /externeabbildung/o then
setvariable('texformats','de') ; break
when /figuraesterna/o then
setvariable('texformats','it') ; break
end
end
tex.close
end
end
private # will become base/context
def pushresult(filename,resultname)
fname = File.unsuffixed(filename)
rname = File.unsuffixed(resultname)
if ! rname.empty? && (rname != fname) then
report("outputfile #{rname}")
['tuo','tuc','log','dvi','pdf'].each do |s|
File.silentrename(File.suffixed(fname,s),File.suffixed('texexec',s))
end
['tuo','tuc'].each do |s|
File.silentrename(File.suffixed(rname,s),File.suffixed(fname,s)) if FileTest.file?(File.suffixed(rname,s))
end
end
end
def popresult(filename,resultname)
fname = File.unsuffixed(filename)
rname = File.unsuffixed(resultname)
if ! rname.empty? && (rname != fname) then
report("renaming #{fname} to #{rname}")
['tuo','tuc','log','dvi','pdf'].each do |s|
File.silentrename(File.suffixed(fname,s),File.suffixed(rname,s))
end
report("restoring #{fname}")
unless $fname == 'texexec' then
['tuo','tuc','log','dvi','pdf'].each do |s|
File.silentrename(File.suffixed('texexec',s),File.suffixed(fname,s))
end
end
end
end
def makestubfile(rawname,rawbase,forcexml=false)
if tmp = openedfile(File.suffixed(rawbase,'run')) then
tmp << "\\starttext\n"
if forcexml then
# tmp << checkxmlfile(rawname)
tmp << "\\processXMLfilegrouped{#{rawname}}\n"
else
tmp << "\\processfile{#{rawname}}\n"
end
tmp << "\\stoptext\n"
tmp.close
return "run"
else
return File.splitname(rawname)[1]
end
end
# def checkxmlfile(rawname)
# tmp = ''
# if FileTest.file?(rawname) && (xml = File.open(rawname)) then
# xml.each do |line|
# case line
# when /<\?context\-directive\s+(\S+)\s+(\S+)\s+(\S+)\s*(.*?)\s*\?>/o then
# category, key, value, rest = $1, $2, $3, $4
# case category
# when 'job' then
# case key
# when 'control' then
# setvariable(value,if rest.empty? then true else rest end)
# when 'mode', 'modes' then
# tmp << "\\enablemode[#{value}]\n"
# when 'stylefile', 'environment' then
# tmp << "\\environment #{value}\n"
# when 'module' then
# tmp << "\\usemodule[#{value}]\n"
# when 'interface' then
# contextinterface = value
# when 'ctxfile' then
# setvariable('ctxfile', value)
# report("using source driven ctxfile #{value}")
# end
# end
# when /<[a-z]+/io then # beware of order, first pi test
# break
# end
# end
# xml.close
# end
# return tmp
# end
def extendvariable(name,value)
set = getvariable(name).split(',')
set << value
str = set.uniq.join(',')
setvariable(name,str)
end
def checkxmlfile(rawname)
if FileTest.file?(rawname) && (xml = File.open(rawname)) then
xml.each do |line|
case line
when /<\?context\-directive\s+(\S+)\s+(\S+)\s+(\S+)\s*(.*?)\s*\?>/o then
category, key, value, rest = $1, $2, $3, $4
case category
when 'job' then
case key
when 'control' then
setvariable(value,if rest.empty? then true else rest end)
when /^(mode)(s|)$/ then
extendvariable('modes',value)
when /^(stylefile|environment)(s|)$/ then
extendvariable('environments',value)
when /^(use|)(module)(s|)$/ then
extendvariable('usemodules',value)
when /^(filter)(s|)$/ then
extendvariable('filters',value)
when 'interface' then
contextinterface = value
when 'ctxfile' then
setvariable('ctxfile', value)
report("using source driven ctxfile #{value}")
end
end
when /<[a-z]+/io then # beware of order, first pi test
break
end
end
xml.close
end
end
end
class TEX
def timedrun(delay, &block)
delay = delay.to_i rescue 0
if delay > 0 then
begin
report("job started with timeout '#{delay}'")
timeout(delay) do
yield block
end
rescue TimeoutError
report("job aborted due to timeout '#{delay}'")
rescue
report("job aborted due to error")
else
report("job finished within timeout '#{delay}'")
end
else
yield block
end
end
def processtex # much to do: mp, xml, runs etc
setvariable('texformats',[getvariable('interface')]) unless getvariable('interface').empty?
getarrayvariable('files').each do |filename|
setvariable('filename',filename)
report("processing document '#{filename}'")
timedrun(getvariable('timeout')) do
processfile
end
end
reportruntime
end
def processmptex
getarrayvariable('files').each do |filename|
setvariable('filename',filename)
report("processing graphic '#{filename}'")
runtexmp(filename)
end
reportruntime
end
private
def load_map_files(filename) # tui basename
# c \usedmapfile{=}{lm-texnansi}
begin
str = ""
IO.read(filename).scan(/^c\s+\\usedmapfile\{(.*?)\}\{(.*?)\}\s*$/o) do
str << "\\loadmapfile[#{$2}.map]\n"
end
rescue
return ""
else
return str
end
end
public
def run_luatools(args)
# dirty trick: we know that the lua path is relative to the ruby path; of course this
# will not work well when stubs are used
[(ENV["_CTX_K_S_texexec_"] or ENV["_CTX_K_S_THREAD_"] or ENV["TEXMFSTART.THREAD"]), File.dirname($0)].each do |path|
if path then
script = "#{path}/../lua/luatools.lua"
if FileTest.file?(script) then
return runcommand("luatex --luaonly #{script} #{args}")
end
end
end
return runcommand("texmfstart luatools #{args}")
end
def processmpgraphic
getarrayvariable('files').each do |filename|
setvariable('filename',filename)
report("processing graphic '#{filename}'")
runtexmp(filename,'',false) # no purge
mapspecs = load_map_files(File.suffixed(filename,'temp','tui'))
unless getvariable('keep') then
# not enough: purge_mpx_files(filename)
Dir.glob(File.suffixed(filename,'temp*','*')).each do |fname|
File.delete(fname) unless File.basename(filename) == File.basename(fname)
end
end
begin
data = IO.read(File.suffixed(filename,'log'))
basename = filename.sub(/\.mp$/, '')
if data =~ /output files* written\:\s*(.*)$/mois then
files, number, range, list = $1.split(/\s+/), 0, false, []
files.each do |fname|
if fname =~ /^.*\.(\d+)$/ then
if range then
(number+1 .. $1.to_i).each do |i|
list << i
end
range = false
else
number = $1.to_i
list << number
end
elsif fname =~ /\.\./ then
range = true
else
range = false
next
end
end
begin
if getvariable('combine') then
fullname = "#{basename}.#{number}"
File.open("texexec.tex",'w') do |f|
f << "\\setupoutput[pdftex]\n"
f << "\\setupcolors[state=start]\n"
f << mapspecs
f << "\\starttext\n"
list.each do |number|
f << "\\startTEXpage\n"
f << "\\convertMPtoPDF{#{fullname}}{1}{1}"
f << "\\stopTEXpage\n"
end
f << "\\stoptext\n"
end
report("converting graphic '#{fullname}'")
runtex("texexec.tex")
pdffile = File.suffixed(basename,'pdf')
File.silentrename("texexec.pdf",pdffile)
report ("#{basename}.* converted to #{pdffile}")
else
list.each do |number|
begin
fullname = "#{basename}.#{number}"
File.open("texexec.tex",'w') do |f|
f << "\\setupoutput[pdftex]\n"
f << "\\setupcolors[state=start]\n"
f << mapspecs
f << "\\starttext\n"
f << "\\startTEXpage\n"
f << "\\convertMPtoPDF{#{fullname}}{1}{1}"
f << "\\stopTEXpage\n"
f << "\\stoptext\n"
end
report("converting graphic '#{fullname}'")
runtex("texexec.tex")
if files.length>1 then
pdffile = File.suffixed(basename,number.to_s,'pdf')
else
pdffile = File.suffixed(basename,'pdf')
end
File.silentrename("texexec.pdf",pdffile)
report ("#{fullname} converted to #{pdffile}")
end
end
end
rescue
report ("error when converting #{fullname} (#{$!})")
end
end
rescue
report("error in converting #{filename}")
end
end
reportruntime
end
def processmpstatic
if filename = getvariable('filename') then
filename += ".mp" unless filename =~ /\..+?$/
if FileTest.file?(filename) then
begin
data = IO.read(filename)
File.open("texexec.tex",'w') do |f|
f << "\\setupoutput[pdftex]\n"
f << "\\setupcolors[state=start]\n"
data.sub!(/^%mpenvironment\:\s*(.*?)$/mois) do
f << $1
"\n"
end
f << "\\starttext\n"
f << "\\startMPpage\n"
f << data.gsub(/end\.*\s*$/m, '') # a bit of a hack
f << "\\stopMPpage\n"
f << "\\stoptext\n"
end
report("converting static '#{filename}'")
runtex("texexec.tex")
pdffile = File.suffixed(filename,'pdf')
File.silentrename("texexec.pdf",pdffile)
report ("#{filename} converted to #{pdffile}")
rescue
report("error in converting #{filename} (#{$!}")
end
end
end
reportruntime
end
def processmpxtex
getarrayvariable('files').each do |filename|
setvariable('filename',filename)
report("processing text of graphic '#{filename}'")
processmpx(filename,false,true,true)
end
reportruntime
end
def deleteoptionfile(rawname)
['top','top.keep'].each do |suffix|
begin
File.delete(File.suffixed(rawname,suffix))
rescue
end
end
end
def makeoptionfile(rawname, jobname, jobsuffix, finalrun, fastdisabled, kindofrun, currentrun=1)
begin
# jobsuffix = orisuffix
if topname = File.suffixed(rawname,'top') and opt = File.open(topname,'w') then
report("writing option file #{topname}")
# local handies
opt << "\% #{topname}\n"
opt << "\\unprotect\n"
if getvariable('utfbom') then
opt << "\\enableregime[utf]"
end
opt << "\\setupsystem[\\c!n=#{kindofrun},\\c!m=#{currentrun}]\n"
progname = validprogname(['metafun']) # [getvariable('progname'),mpsformat,mpsengine]
opt << "\\def\\MPOSTformatswitch\{#{prognameflag(progname)} #{formatflag('mpost')}=\}\n"
if getvariable('batchmode') then
opt << "\\batchmode\n"
end
if getvariable('nonstopmode') then
opt << "\\nonstopmode\n"
end
if getvariable('paranoid') then
opt << "\\def\\maxreadlevel{1}\n"
end
if (str = File.unixfied(getvariable('modefile'))) && ! str.empty? then
opt << "\\readlocfile{#{str}}{}{}\n"
end
if (str = File.unixfied(getvariable('result'))) && ! str.empty? then
opt << "\\setupsystem[file=#{str}]\n"
elsif (str = getvariable('suffix')) && ! str.empty? then
opt << "\\setupsystem[file=#{jobname}.#{str}]\n"
end
opt << "\\setupsystem[\\c!method=2]\n" # 1=oldtexexec 2=newtexexec (obsolete)
opt << "\\setupsystem[\\c!type=#{Tool.ruby_platform()}]\n"
if (str = File.unixfied(getvariable('path'))) && ! str.empty? then
opt << "\\usepath[#{str}]\n" unless str.empty?
end
if (str = getvariable('mainlanguage').downcase) && ! str.empty? && ! str.standard? then
opt << "\\setuplanguage[#{str}]\n"
end
if str = validbackend(getvariable('backend')) then
opt << "\\setupoutput[#{str}]\n"
elsif str = validbackend(getvariable('output')) then
opt << "\\setupoutput[#{str}]\n"
end
if getvariable('color') then
opt << "\\setupcolors[\\c!state=\\v!start]\n"
end
if getvariable('nompmode') || getvariable('nomprun') || getvariable('automprun') then
opt << "\\runMPgraphicsfalse\n"
end
if getvariable('fast') && ! getvariable('fastdisabled') then
opt << "\\fastmode\n"
end
if getvariable('silentmode') then
opt << "\\silentmode\n"
end
if (str = getvariable('separation')) && ! str.empty? then
opt << "\\setupcolors[\\c!split=#{str}]\n"
end
if (str = getvariable('setuppath')) && ! str.empty? then
opt << "\\setupsystem[\\c!directory=\{#{str}\}]\n"
end
if (str = getvariable('paperformat')) && ! str.empty? && ! str.standard? then
if str =~ /^([a-z]+\d+)([a-z]+\d+)$/io then # A5A4 A4A3 A2A1 ...
opt << "\\setuppapersize[#{$1.upcase}][#{$2.upcase}]\n"
else # ...*...
pf = str.upcase.split(/[x\*]/o)
pf << pf[0] if pf.size == 1
opt << "\\setuppapersize[#{pf[0]}][#{pf[1]}]\n"
end
end
if (str = getvariable('background')) && ! str.empty? then
opt << "\\defineoverlay[whatever][{\\externalfigure[#{str}][\\c!factor=\\v!max]}]\n"
opt << "\\setupbackgrounds[\\v!page][\\c!background=whatever]\n"
end
if getvariable('centerpage') then
opt << "\\setuplayout[\\c!location=\\v!middle,\\c!marking=\\v!on]\n"
end
if getvariable('nomapfiles') then
opt << "\\disablemapfiles\n"
end
if getvariable('noarrange') then
opt << "\\setuparranging[\\v!disable]\n"
elsif getvariable('arrange') then
arrangement = Array.new
if finalrun then
arrangement << "\\v!doublesided" unless getvariable('noduplex')
case getvariable('printformat')
when '' then arrangement << "\\v!normal"
when /.*up/oi then arrangement << ["2UP","\\v!rotated"]
when /.*down/oi then arrangement << ["2DOWN","\\v!rotated"]
when /.*side/oi then arrangement << ["2SIDE","\\v!rotated"]
end
else
arrangement << "\\v!disable"
end
opt << "\\setuparranging[#{arrangement.flatten.join(',')}]\n" if arrangement.size > 0
end
# we handle both "--mode" and "--modes", else "--mode" is
# mapped onto "--modefile"
if (str = getvariable('modes')) && ! str.empty? then
opt << "\\enablemode[#{str}]\n"
end
if (str = getvariable('mode')) && ! str.empty? then
opt << "\\enablemode[#{str}]\n"
end
if (str = getvariable('arguments')) && ! str.empty? then
opt << "\\setupenv[#{str}]\n"
end
if (str = getvariable('randomseed')) && ! str.empty? then
report("using randomseed #{str}")
opt << "\\setupsystem[\\c!random=#{str}]\n"
end
if (str = getvariable('input')) && ! str.empty? then
opt << "\\setupsystem[inputfile=#{str}]\n"
else
opt << "\\setupsystem[inputfile=#{rawname}]\n"
end
if (str = getvariable('pages')) && ! str.empty? then
if str.downcase == 'odd' then
opt << "\\chardef\\whichpagetoshipout=1\n"
elsif str.downcase == 'even' then
opt << "\\chardef\\whichpagetoshipout=2\n"
else
pagelist = Array.new
str.split(/\,/).each do |page|
pagerange = page.split(/\D+/o)
if pagerange.size > 1 then
pagerange.first.to_i.upto(pagerange.last.to_i) do |p|
pagelist << p.to_s
end
else
pagelist << page
end
end
opt << "\\def\\pagestoshipout\{#{pagelist.join(',')}\}\n";
end
end
opt << "\\protect\n";
begin getvariable('filters' ).split(',').uniq.each do |f| opt << "\\useXMLfilter[#{f}]\n" end ; rescue ; end
begin getvariable('usemodules' ).split(',').uniq.each do |m| opt << "\\usemodule[#{m}]\n" end ; rescue ; end
begin getvariable('environments').split(',').uniq.each do |e| opt << "\\environment #{e}\n" end ; rescue ; end
# this will become:
# begin getvariable('environments').split(',').uniq.each do |e| opt << "\\useenvironment[#{e}]\n" end ; rescue ; end
opt << "\\endinput\n"
opt.close
else
report("unable to write option file #{topname}")
end
rescue
report("fatal error in writing option file #{topname} (#{$!})")
end
end
def takeprecautions
ENV['MPXCOMAND'] = '0' # else loop
if getvariable('paranoid') then
ENV['SHELL_ESCAPE'] = ENV['SHELL_ESCAPE'] || 'f'
ENV['OPENOUT_ANY'] = ENV['OPENOUT_ANY'] || 'p'
ENV['OPENIN_ANY'] = ENV['OPENIN_ANY'] || 'p'
elsif getvariable('notparanoid') then
ENV['SHELL_ESCAPE'] = ENV['SHELL_ESCAPE'] || 't'
ENV['OPENOUT_ANY'] = ENV['OPENOUT_ANY'] || 'a'
ENV['OPENIN_ANY'] = ENV['OPENIN_ANY'] || 'a'
end
if ENV['OPENIN_ANY'] && (ENV['OPENIN_ANY'] == 'p') then # first test redundant
setvariable('paranoid', true)
end
if ENV.key?('SHELL_ESCAPE') && (ENV['SHELL_ESCAPE'] == 'f') then
setvariable('automprun',true)
end
done = false
['TXRESOURCES','MPRESOURCES','MFRESOURCES'].each do |res|
[getvariable('runpath'),getvariable('path')].each do |pat|
unless pat.empty? then
if ENV.key?(res) then
ENV[res] = if ENV[res].empty? then pat else pat + ":" + ENV[res] end
else
ENV[res] = pat
end
report("setting #{res} to #{ENV[res]}") unless done
end
end
done = true
end
end
def checktestversion
#
# one can set TEXMFALPHA and TEXMFBETA for test versions
# but keep in mind that the format as well as the test files
# then need the --alpha or --beta flag
#
done, tree = false, ''
['alpha', 'beta'].each do |what|
if getvariable(what) then
if ENV["TEXMF#{what.upcase}"] then
done, tree = true, ENV["TEXMF#{what.upcase}"]
elsif ENV["TEXMFLOCAL"] then
done, tree = true, File.join(File.dirname(ENV['TEXMFLOCAL']), "texmf-#{what}")
end
end
break if done
end
if done then
tree = tree.strip
ENV['TEXMFPROJECT'] = tree
report("using test tree '#{tree}'")
['MP', 'MF', 'TX'].each do |ctx|
ENV['CTXDEV#{ctx}PATH'] = ''
end
unless (FileTest.file?(File.join(tree,'ls-r')) || FileTest.file?(File.join(tree,'ls-R'))) then
report("no ls-r/ls-R file for tree '#{tree}' (run: mktexlsr #{tree})")
end
end
# puts `kpsewhich --expand-path=$TEXMF`
# exit
end
def runtex(filename)
checktestversion
texengine = validtexengine(getvariable('texengine'))
texformat = validtexformat(getarrayvariable('texformats').first)
report("tex engine: #{texengine}")
report("tex format: #{texformat}")
if texengine && texformat then
fixbackendvars(@@mappaths[texengine])
if texengine == "luatex" then
# currently we use luatools to start luatex but some day we should
# find a clever way to directly call luatex (problem is that we need
# to feed the explicit location of the format and lua initialization
# file)
run_luatools("--fmt=#{texformat} #{filename}")
else
progname = validprogname([getvariable('progname'),texformat,texengine])
runcommand([quoted(texengine),prognameflag(progname),formatflag(texengine,texformat),tcxflag,runoptions(texengine),filename,texprocextras(texformat)])
end
# true
else
false
end
end
def runmp(mpname,mpx=false)
checktestversion
mpsengine = validmpsengine(getvariable('mpsengine'))
mpsformat = validmpsformat(getarrayvariable('mpsformats').first)
if mpsengine && mpsformat then
ENV["MPXCOMMAND"] = "0" unless mpx
progname = validprogname([getvariable('progname'),mpsformat,mpsengine])
runcommand([quoted(mpsengine),prognameflag(progname),formatflag(mpsengine,mpsformat),tcxflag,runoptions(mpsengine),mpname,mpsprocextras(mpsformat)])
# runcommand([quoted(mpsengine),formatflag(mpsengine,mpsformat),tcxflag,runoptions(mpsengine),mpname,mpsprocextras(mpsformat)])
true
else
false
end
end
def runtexmp(filename,filetype='',purge=true)
checktestversion
mpname = File.suffixed(filename,filetype,'mp')
if File.atleast?(mpname,25) then
# first run needed
File.silentdelete(File.suffixed(mpname,'mpt'))
doruntexmp(mpname,nil,true,purge)
mpgraphics = checkmpgraphics(mpname)
mplabels = checkmplabels(mpname)
if mpgraphics || mplabels then
# second run needed
doruntexmp(mpname,mplabels,true,purge)
else
# no labels
end
end
end
def runtexmpjob(filename,filetype='')
checktestversion
mpname = File.suffixed(filename,filetype,'mp')
if File.atleast?(mpname,25) && (data = File.silentread(mpname)) then
textranslation = if data =~ /^\%\s+translate.*?\=([\w\d\-]+)/io then $1 else '' end
mpjobname = if data =~ /collected graphics of job \"(.+?)\"/io then $1 else '' end
if ! mpjobname.empty? and File.unsuffixed(filename) =~ /#{mpjobname}/ then # don't optimize
options = Array.new
options.push("--mptex")
options.push("--nomp")
options.push("--mpyforce") if getvariable('forcempy') || getvariable('mpyforce')
options.push("--translate=#{textranslation}") unless textranslation.empty?
options.push("--batch") if getvariable('batchmode')
options.push("--nonstop") if getvariable('nonstopmode')
options.push("--output=ps") # options.push("--dvi")
options.push("--nobackend")
return runtexexec(mpname,options,2)
end
end
return false
end
def runtexutil(filename=[], options=['--ref','--ij','--high'], old=false)
filename.each do |fname|
if old then
Kpse.runscript('texutil',fname,options)
else
begin
logger = Logger.new('TeXUtil')
if tu = TeXUtil::Converter.new(logger) and tu.loaded(fname) then
ok = tu.processed && tu.saved && tu.finalized
end
rescue
Kpse.runscript('texutil',fname,options)
end
end
end
end
def runluacheck(jobname)
if false then
# test-pos.tex / 6 meg tua file: 18.6 runtime
old, new = File.suffixed(jobname,'tua'), File.suffixed(jobname,'tuc')
if FileTest.file?(old) then
report("converting #{old} into #{new}")
system("luac -s -o #{new} #{old}")
end
else
# test-pos.tex / 6 meg tua file: 17.5 runtime
old, new = File.suffixed(jobname,'tua'), File.suffixed(jobname,'tuc')
if FileTest.file?(old) then
report("renaming #{old} into #{new}")
File.rename(old,new) rescue false
end
end
end
# 1=tex 2=mptex 3=mpxtex 4=mpgraphic 5=mpstatic
def runtexexec(filename=[], options=[], mode=nil)
begin
if mode and job = TEX.new(@logger) then
options.each do |option|
case option
when /^\-*(.*?)\=(.*)$/o then
job.setvariable($1,$2)
when /^\-*(.*?)$/o then
job.setvariable($1,true)
end
end
job.setvariable("files",filename)
case mode
when 1 then job.processtex
when 2 then job.processmptex
when 3 then job.processmpxtex
when 4 then job.processmpgraphic
when 5 then job.processmpstatic
end
job.inspect && Kpse.inspect if getvariable('verbose')
return true
else
Kpse.runscript('texexec',filename,options)
end
rescue
Kpse.runscript('texexec',filename,options)
end
end
def fixbackendvars(backend)
if backend then
report("fixing backend map path for #{backend}") if getvariable('verbose')
ENV['backend'] = backend ;
ENV['progname'] = backend unless validtexengine(backend)
ENV['TEXFONTMAPS'] = ['.',"\$TEXMF/fonts/map/{#{backend},pdftex,dvips,}//",'./fonts//'].join_path
else
report("unable to fix backend map path") if getvariable('verbose')
end
end
def runbackend(rawname)
unless getvariable('nobackend') then
case validbackend(getvariable('backend'))
when 'dvipdfmx' then
fixbackendvars('dvipdfm')
runcommand("dvipdfmx -d 4 -V 5 #{File.unsuffixed(rawname)}")
when 'xetex' then
# xetex now runs its own backend
xdvfile = File.suffixed(rawname,'xdv')
if FileTest.file?(xdvfile) then
fixbackendvars('dvipdfm')
runcommand("xdvipdfmx -q -d 4 -V 5 -E #{xdvfile}")
end
when 'xdv2pdf' then
xdvfile = File.suffixed(rawname,'xdv')
if FileTest.file?(xdvfile) then
fixbackendvars('xdv2pdf')
runcommand("xdv2pdf #{xdvfile}")
end
when 'dvips' then
fixbackendvars('dvips')
mapfiles = ''
begin
if tuifile = File.suffixed(rawname,'tui') and FileTest.file?(tuifile) then
IO.read(tuifile).scan(/^c \\usedmapfile\{.\}\{(.*?)\}\s*$/o) do
mapfiles += "-u +#{$1} " ;
end
end
rescue
mapfiles = ''
end
runcommand("dvips #{mapfiles} #{File.unsuffixed(rawname)}")
when 'pdftex' then
# no need for postprocessing
else
report("no postprocessing needed")
end
end
end
def processfile
takeprecautions
report("using search method '#{Kpse.searchmethod}'") if getvariable('verbose')
rawname = getvariable('filename')
jobname = getvariable('filename')
suffix = getvariable('suffix')
result = getvariable('result')
forcexml = getvariable('forcexml')
runonce = getvariable('once')
finalrun = getvariable('final') || (getvariable('arrange') && ! getvariable('noarrange'))
globalfile = getvariable('globalfile')
if getvariable('autopath') then
jobname = File.basename(jobname)
inppath = File.dirname(jobname)
else
inppath = ''
end
jobname, jobsuffix = File.splitname(jobname,'tex')
jobname = File.unixfied(jobname)
inppath = File.unixfied(inppath)
result = File.unixfied(result)
orisuffix = jobsuffix # still needed ?
setvariable('nomprun',true) if orisuffix == 'mpx' # else cylic run
PDFview.setmethod('xpdf') if getvariable('xpdf')
PDFview.closeall if getvariable('autopdf')
if jobsuffix =~ /^(htm|html|xhtml|xml|fo|fox|rlg|exa)$/io then
forcexml = true
end
dummyfile = false
# fuzzy code snippet: (we kunnen kpse: prefix gebruiken)
unless FileTest.file?(File.suffixed(jobname,jobsuffix)) then
if FileTest.file?(rawname + '.tex') then
jobname = rawname.dup
jobsuffix = 'tex'
end
end
# we can have funny names, like 2005.10.10 (given without suffix)
rawname = jobname + '.' + jobsuffix
rawpath = File.dirname(rawname)
rawbase = File.basename(rawname)
unless FileTest.file?(rawname) then
inppath.split(',').each do |ip|
break if dummyfile = FileTest.file?(File.join(ip,rawname))
end
end
if dummyfile || forcexml then
jobsuffix = makestubfile(rawname,rawbase,forcexml)
checkxmlfile(rawname)
end
# preprocess files
unless getvariable('noctx') then
ctx = CtxRunner.new(rawname,@logger)
if getvariable('ctxfile').empty? then
if rawname == rawbase then
ctx.manipulate(File.suffixed(rawname,'ctx'),'jobname.ctx')
else
ctx.manipulate(File.suffixed(rawname,'ctx'),File.join(rawpath,'jobname.ctx'))
end
else
ctx.manipulate(File.suffixed(getvariable('ctxfile'),'ctx'))
end
ctx.savelog(File.suffixed(rawbase,'ctl'))
envs = ctx.environments
mods = ctx.modules
flags = ctx.flags
flags.each do |f|
f.sub!(/^\-+/,'')
if f =~ /^(.*?)=(.*)$/ then
setvariable($1,$2)
else
setvariable(f,true)
end
end
report("using flags #{flags.join(' ')}") if flags.size > 0
# merge environment and module specs
envs << getvariable('environments') unless getvariable('environments').empty?
mods << getvariable('modules') unless getvariable('modules') .empty?
envs = envs.uniq.join(',')
mods = mods.uniq.join(',')
report("using search method '#{Kpse.searchmethod}'") if getvariable('verbose')
report("using environments #{envs}") if envs.length > 0
report("using modules #{mods}") if mods.length > 0
setvariable('environments', envs)
setvariable('modules', mods)
end
# end of preprocessing and merging
if globalfile || FileTest.file?(rawname) then
if not dummyfile and not globalfile then
scantexpreamble(rawname)
scantexcontent(rawname) if getvariable('texformats').standard?
end
result = File.suffixed(rawname,suffix) unless suffix.empty?
pushresult(rawbase,result)
method = validtexmethod(validtexformat(getvariable('texformats')))
report("tex processing method: #{method}")
case method
when 'context' then
if getvariable('simplerun') || runonce then
makeoptionfile(rawbase,jobname,orisuffix,true,true,3,1) unless getvariable('nooptionfile')
ok = runtex(if dummyfile || forcexml then rawbase else rawname end)
if ok then
ok = runtexutil(rawbase) if getvariable('texutil') || getvariable('forcetexutil')
runluacheck(rawbase)
runbackend(rawbase)
popresult(rawbase,result)
end
if getvariable('keep') then
['top','log','run'].each do |suffix|
File.silentrename(File.suffixed(rawbase,suffix),File.suffixed(rawbase,suffix+'.keep'))
end
end
else
# goto tmp/jobname when present
mprundone, ok, stoprunning = false, true, false
texruns, nofruns = 0, getvariable('runs').to_i
state = FileState.new
['tub','tuo','tuc'].each do |s|
state.register(File.suffixed(rawbase,s))
end
if getvariable('automprun') then # check this
['mprun','mpgraph'].each do |s|
state.register(File.suffixed(rawbase,s,'mp'),'randomseed')
end
end
while ! stoprunning && (texruns < nofruns) && ok do
texruns += 1
report("TeX run #{texruns}")
unless getvariable('nooptionfile') then
if texruns == nofruns then
makeoptionfile(rawbase,jobname,orisuffix,false,false,4,texruns) # last
elsif texruns == 1 then
makeoptionfile(rawbase,jobname,orisuffix,false,false,1,texruns) # first
else
makeoptionfile(rawbase,jobname,orisuffix,false,false,2,texruns) # unknown
end
end
# goto .
ok = runtex(File.suffixed(if dummyfile || forcexml then rawbase else rawname end,jobsuffix))
# goto tmp/jobname when present
if ok && (nofruns > 1) then
unless getvariable('nompmode') then
mprundone = runtexmpjob(rawbase, "mpgraph")
mprundone = runtexmpjob(rawbase, "mprun")
end
ok = runtexutil(rawbase)
runluacheck(rawbase)
state.update
stoprunning = state.stable?
end
end
if not ok then
setvariable('error','error in tex file')
end
if (nofruns == 1) && getvariable('texutil') then
ok = runtexutil(rawbase)
runluacheck(rawbase)
end
if ok && finalrun && (nofruns > 1) then
makeoptionfile(rawbase,jobname,orisuffix,true,finalrun,4,texruns) unless getvariable('nooptionfile')
report("final TeX run #{texruns}")
# goto .
ok = runtex(File.suffixed(if dummyfile || forcexml then rawbase else rawname end,jobsuffix))
# goto tmp/jobname when present
end
if getvariable('keep') then
['top','log','run'].each do |suffix|
File.silentrename(File.suffixed(rawbase,suffix),File.suffixed(rawbase,suffix+'.keep'))
end
else
File.silentrename(File.suffixed(rawbase,'top'),File.suffixed(rawbase,'tmp'))
end
# ['tmp','top','log'].each do |s| # previous tuo file / runtime option file / log file
# File.silentdelete(File.suffixed(rawbase,s))
# end
if ok then
# goto .
runbackend(rawbase)
popresult(rawbase,result)
# goto tmp/jobname when present
# skip next
end
if true then # autopurge
begin
File.open(File.suffixed(rawbase, 'tuo')) do |f|
ok = 0
f.each do |line|
case ok
when 1 then
# next line is empty
ok = 2
when 2 then
if line =~ /^\%\s+\>\s+(.*?)\s+(\d+)/mois then
filename, n = $1, $2
done = File.delete(filename) rescue false
if done && getvariable('verbose') then
report("deleting #{filename} (#{n} times used)")
end
else
break
end
else
if line =~ /^\%\s+temporary files\:\s+(\d+)/mois then
if $1.to_i == 0 then
break
else
ok = 1
end
end
end
end
end
rescue
# report("fatal error #{$!}")
end
end
end
Kpse.runscript('ctxtools',rawbase,'--purge') if getvariable('purge')
Kpse.runscript('ctxtools',rawbase,'--purge --all') if getvariable('purgeall')
# till here
when 'latex' then
ok = runtex(rawname)
else
ok = runtex(rawname)
end
if (dummyfile or forcexml) and FileTest.file?(rawbase) then
begin
File.delete(File.suffixed(rawbase,'run'))
rescue
report("unable to delete stub file")
end
end
if ok and getvariable('autopdf') then
PDFview.open(File.suffixed(if result.empty? then rawbase else result end,'pdf'))
end
else
report("nothing to process")
end
end
# The labels are collected in the mergebe hash. Here we merge the relevant labels
# into beginfig/endfig. We could as well do this in metafun itself. Maybe some
# day ... (it may cost a bit of string space but that is cheap nowadays).
def doruntexmp(mpname,mergebe=nil,context=true,purge=true)
texfound = false
mpname = File.suffixed(mpname,'mp')
mpcopy = File.suffixed(mpname,'mp.copy')
mpkeep = File.suffixed(mpname,'mp.keep')
setvariable('mp.file',mpname)
setvariable('mp.line','')
setvariable('mp.error','')
if mpdata = File.silentread(mpname) then
mpdata.gsub!(/^\#.*\n/o,'')
File.silentrename(mpname,mpcopy)
texfound = mergebe || (mpdata =~ /btex .*? etex/mo)
if mp = openedfile(mpname) then
if mergebe then
mpdata.gsub!(/beginfig\s*\((\d+)\)\s*\;(.+?)endfig\s*\;/mo) do
n, str = $1, $2
if str =~ /^(.*?)(verbatimtex.*?etex)\s*\;(.*)$/mo then
"beginfig(#{n})\;\n#{$1}#{$2}\;\n#{mergebe[n]}\n#{$3}\;endfig\;\n"
else
"beginfig(#{n})\;\n#{mergebe[n]}\n#{str}\;endfig\;\n"
end
end
unless mpdata =~ /beginfig\s*\(\s*0\s*\)/o then
mp << mergebe['0'] if mergebe.key?('0')
end
end
mp << MPTools::splitmplines(mpdata)
mp << "\n"
mp << "end"
mp << "\n"
mp.close
end
processmpx(mpname,true,true,purge) if texfound
if getvariable('batchmode') then
options = ' --interaction=batch'
elsif getvariable('nonstopmode') then
options = ' --interaction=nonstop'
else
options = ''
end
# todo plain|mpost|metafun
ok = runmp(mpname)
if f = File.silentopen(File.suffixed(mpname,'log')) then
while str = f.gets do
if str =~ /^l\.(\d+)\s(.*?)\n/o then
setvariable('mp.line',$1)
setvariable('mp.error',$2)
break
end
end
f.close
end
File.silentrename(mpname, mpkeep)
File.silentrename(mpcopy, mpname)
end
end
# todo: use internal mptotext function and/or turn all btex/etex into textexts
def processmpx(mpname,force=false,context=true,purge=true)
unless force then
mpname = File.suffixed(mpname,'mp')
if File.atleast?(mpname,10) && (data = File.silentread(mpname)) then
if data =~ /(btex|etex|verbatimtex|textext)/o then
force = true
end
end
end
if force then
begin
mptex = File.suffixed(mpname,'temp','tex')
mpdvi = File.suffixed(mpname,'temp','dvi')
mplog = File.suffixed(mpname,'temp','log')
mpmpx = File.suffixed(mpname,'mpx')
File.silentdelete(mptex)
if true then
report("using internal mptotex converter")
ok = MPTools::mptotex(mpname,mptex,'context')
else
command = "mpto #{mpname} > #{mptex}"
report(command) if getvariable('verbose')
ok = system(command)
end
# not "ok && ..." because of potential problem with return code and redirect (>)
if FileTest.file?(mptex) && File.appended(mptex, "\\end\n") then
# to be replaced by runtexexec([filenames],options,1)
if localjob = TEX.new(@logger) then
localjob.setvariable('files',mptex)
localjob.setvariable('backend','dvips')
localjob.setvariable('engine',getvariable('engine')) unless getvariable('engine').empty?
localjob.setvariable('once',true)
localjob.setvariable('nobackend',true)
if context then
localjob.setvariable('texformats',[getvariable('interface')]) unless getvariable('interface').empty?
elsif getvariable('interface').empty? then
localjob.setvariable('texformats',['plain'])
else
localjob.setvariable('texformats',[getvariable('interface')])
end
localjob.processtex
ok = true # todo
else
ok = false
end
# so far
command = "dvitomp #{mpdvi} #{mpmpx}"
report(command) if getvariable('verbose')
ok = ok && FileTest.file?(mpdvi) && system(command)
purge_mpx_files(mpname) if purge
end
rescue
# error in processing mpx file
end
end
end
def purge_mpx_files(mpname)
unless getvariable('keep') then
['tex', 'log', 'tui', 'tuo', 'tuc', 'top'].each do |suffix|
File.silentdelete(File.suffixed(mpname,'temp',suffix))
end
end
end
def checkmpgraphics(mpname)
mpoptions = ''
if getvariable('makempy') then
mpoptions += " --makempy "
end
if getvariable('mpyforce') || getvariable('forcempy') then
mpoptions += " --force "
else
mponame = File.suffixed(mpname,'mpo')
mpyname = File.suffixed(mpname,'mpy')
return false unless File.atleast?(mponame,32)
mpochecksum = FileState.new.checksum(mponame)
return false if mpochecksum.empty?
# where does the checksum get into the file?
# maybe let texexec do it?
# solution: add one if not present or update when different
if f = File.silentopen(mpyname) then
str = f.gets.chomp
f.close
if str =~ /^\%\s*mpochecksum\s*\:\s*(\d+)/o then
return false if mpochecksum == $1
end
end
end
return Kpse.runscript('makempy',mpname)
end
def checkmplabels(mpname)
mpname = File.suffixed(mpname,'mpt')
if File.atleast?(mpname,10) && (mp = File.silentopen(mpname)) then
labels = Hash.new
while str = mp.gets do
t = if str =~ /^%\s*setup\s*:\s*(.*)$/o then $1 else '' end
if str =~ /^%\s*figure\s*(\d+)\s*:\s*(.*)$/o then
labels[$1] = labels[$1] || ''
unless t.empty? then
labels[$1] += "#{t}\n"
t = ''
end
labels[$1] += "#{$2}\n"
end
end
mp.close
if labels.size>0 then
return labels
else
return nil
end
end
return nil
end
end
|