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
// src/driver.rs -- utilities for running and rerunning the tex engine
// Copyright 2018 the Tectonic Project
// Licensed under the MIT License.
#![deny(missing_docs)]
//! This module contains the high-level interface that ties together the various engines. The main
//! struct is [`ProcessingSession`], which knows how to run (and re-run if
//! necessary) the various engines in the right order.
//!
//! For an example of how to use this module, see `src/bin/tectonic.rs`, which contains tectonic's main
//! CLI program.
use byte_unit::Byte;
use std::collections::{HashMap, HashSet};
use std::ffi::{OsStr, OsString};
use std::fs::File;
use std::io::Write;
use std::path::{Path, PathBuf};
use std::rc::Rc;
use std::result::Result as StdResult;
use std::str::FromStr;
use std::time::SystemTime;
use crate::{
ctry,
digest::DigestData,
engines::IoEventBackend,
errmsg,
errors::{ErrorKind, Result, ResultExt},
io::{
memory::MemoryFileCollection, Bundle, InputOrigin, IoProvider, IoSetup, IoSetupBuilder,
OpenResult,
},
status::StatusBackend,
tt_error, tt_note, tt_warning,
unstable_opts::UnstableOptions,
BibtexEngine, Spx2HtmlEngine, TexEngine, TexResult, XdvipdfmxEngine,
};
/// Different patterns with which files may have been accessed by the
/// underlying engines. Once a file is marked as ReadThenWritten or
/// WrittenThenRead, its pattern does not evolve further.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum AccessPattern {
/// This file is only ever read.
Read,
/// This file is only ever written. This suggests that it is
/// a final output of the processing session.
Written,
/// This file is read, then written. We call this a "circular" access
/// pattern. Multiple passes of an engine will result in outputs that
/// change if this file's contents change, or if the file did not exist at
/// the time of the first pass.
ReadThenWritten,
/// This file is written, then read. We call this a "temporary" access
/// pattern. This file is likely a temporary buffer that is not of
/// interest to the user.
WrittenThenRead,
}
/// A summary of the I/O that happened on a file. We record its access
/// pattern; where it came from, if it was used as an input; the cryptographic
/// digest of the file when it was last read; and the cryptographic digest of
/// the file as it was last written.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct FileSummary {
access_pattern: AccessPattern,
/// If this file was read, where did it come from?
pub input_origin: InputOrigin,
/// If this file was read, this is the digest of its contents at the time it was *first* read.
/// The "first" is significant for files that were read and then written (for example, `.aux`
/// files).
///
/// There's some chance that this will be `None` even if the file was read. Tectonic makes an
/// effort to compute the digest as the data is being read from the file, but this can fail if
/// tex decides to seek in the file as it is being written.
pub read_digest: Option<DigestData>,
/// If this file was written, this is the digest of its contents at the time it was last
/// written.
pub write_digest: Option<DigestData>,
got_written_to_disk: bool,
}
impl FileSummary {
fn new(access_pattern: AccessPattern, input_origin: InputOrigin) -> FileSummary {
FileSummary {
access_pattern,
input_origin,
read_digest: None,
write_digest: None,
got_written_to_disk: false,
}
}
}
/// The IoEvents type implements the IoEventBackend. It is used to figure out when to rerun the TeX
/// engine, to figure out which files should be written to disk, and to emit Makefile rules.
pub struct IoEvents(pub HashMap<OsString, FileSummary>);
impl IoEvents {
fn new() -> IoEvents {
IoEvents(HashMap::new())
}
}
impl IoEventBackend for IoEvents {
fn output_opened(&mut self, name: &OsStr) {
if let Some(summ) = self.0.get_mut(name) {
summ.access_pattern = match summ.access_pattern {
AccessPattern::Read => AccessPattern::ReadThenWritten,
c => c, // identity mapping makes sense for remaining options
};
return;
}
self.0.insert(
name.to_os_string(),
FileSummary::new(AccessPattern::Written, InputOrigin::NotInput),
);
}
fn stdout_opened(&mut self) {
// Life is easier if we track stdout in the same way that we do other
// output files.
if let Some(summ) = self.0.get_mut(OsStr::new("")) {
summ.access_pattern = match summ.access_pattern {
AccessPattern::Read => AccessPattern::ReadThenWritten,
c => c, // identity mapping makes sense for remaining options
};
return;
}
self.0.insert(
OsString::from(""),
FileSummary::new(AccessPattern::Written, InputOrigin::NotInput),
);
}
fn output_closed(&mut self, name: OsString, digest: DigestData) {
let summ = self
.0
.get_mut(&name)
.expect("closing file that wasn't opened?");
summ.write_digest = Some(digest);
}
fn input_not_available(&mut self, name: &OsStr) {
// For the purposes of file access pattern tracking, an attempt to
// open a nonexistent file counts as a read of a zero-size file. I
// don't see how such a file could have previously been written, but
// let's use the full update logic just in case.
if let Some(summ) = self.0.get_mut(name) {
summ.access_pattern = match summ.access_pattern {
AccessPattern::Written => AccessPattern::WrittenThenRead,
c => c, // identity mapping makes sense for remaining options
};
return;
}
// Unlike other cases, here we need to fill in the read_digest. `None`
// is not an appropriate value since, if the file is written and then
// read again later, the `None` will be overwritten; but what matters
// is the contents of the file the very first time it was read.
let mut fs = FileSummary::new(AccessPattern::Read, InputOrigin::NotInput);
fs.read_digest = Some(DigestData::of_nothing());
self.0.insert(name.to_os_string(), fs);
}
fn input_opened(&mut self, name: &OsStr, origin: InputOrigin) {
if let Some(summ) = self.0.get_mut(name) {
summ.access_pattern = match summ.access_pattern {
AccessPattern::Written => AccessPattern::WrittenThenRead,
c => c, // identity mapping makes sense for remaining options
};
return;
}
self.0.insert(
name.to_os_string(),
FileSummary::new(AccessPattern::Read, origin),
);
}
//fn primary_input_opened(&mut self, _origin: InputOrigin) {}
fn input_closed(&mut self, name: OsString, digest: Option<DigestData>) {
let summ = self
.0
.get_mut(&name)
.expect("closing file that wasn't opened?");
// It's what was in the file the *first* time that it was read that
// matters, so don't replace the read digest if it's already got one.
if summ.read_digest.is_none() {
summ.read_digest = digest;
}
}
}
/// The different types of output files that tectonic knows how to produce.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum OutputFormat {
/// A '.aux' file.
Aux,
/// A '.html' file.
Html,
/// An extended DVI file.
Xdv,
/// A '.pdf' file.
Pdf,
/// A '.fmt' file, for initializing the TeX engine.
Format,
}
impl FromStr for OutputFormat {
type Err = &'static str;
fn from_str(a_str: &str) -> StdResult<Self, Self::Err> {
match a_str {
"aux" => Ok(OutputFormat::Aux),
"html" => Ok(OutputFormat::Html),
"xdv" => Ok(OutputFormat::Xdv),
"pdf" => Ok(OutputFormat::Pdf),
"fmt" => Ok(OutputFormat::Format),
_ => Err("unsupported or unknown format"),
}
}
}
impl Default for OutputFormat {
fn default() -> OutputFormat {
OutputFormat::Pdf
}
}
/// The different types of "passes" that [`ProcessingSession`] knows how to run. See
/// [`ProcessingSession::run`] for more details.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum PassSetting {
/// The default pass, which repeatedly runs TeX and BibTeX until it doesn't need to any more.
Default,
/// Just run the TeX engine once.
Tex,
/// Like the default pass, but runs BibTeX once first, before doing anything else.
BibtexFirst,
}
impl Default for PassSetting {
fn default() -> PassSetting {
PassSetting::Default
}
}
impl FromStr for PassSetting {
type Err = &'static str;
fn from_str(a_str: &str) -> StdResult<Self, Self::Err> {
match a_str {
"default" => Ok(PassSetting::Default),
"bibtex_first" => Ok(PassSetting::BibtexFirst),
"tex" => Ok(PassSetting::Tex),
_ => Err("unsupported or unknown pass setting"),
}
}
}
/// Different places from which the "primary input" might originate.
#[derive(Clone, Debug, Eq, PartialEq)]
enum PrimaryInputMode {
/// This process's standard input.
Stdin,
/// A path on the filesystem.
Path(PathBuf),
/// An in-memory buffer.
Buffer(Vec<u8>),
}
impl Default for PrimaryInputMode {
fn default() -> PrimaryInputMode {
PrimaryInputMode::Stdin
}
}
/// Different places where the output files might land.
#[derive(Clone, Debug, Eq, PartialEq)]
enum OutputDestination {
/// The "sensible" default. Files will land in the same directory as the
/// input file, or the current working directory if the input is something
/// without a path (such as standard input).
Default,
/// Files should land in this particular directory.
Path(PathBuf),
/// Files will not be written to disk. The code running the engine should
/// examine the memory layer of the I/O stack to obtain the output files.
Nowhere,
}
impl Default for OutputDestination {
fn default() -> OutputDestination {
OutputDestination::Default
}
}
/// A builder-style interface for creating a [`ProcessingSession`].
#[derive(Default)]
pub struct ProcessingSessionBuilder {
primary_input: PrimaryInputMode,
tex_input_name: Option<String>,
output_dest: OutputDestination,
filesystem_root: Option<PathBuf>,
format_name: Option<String>,
format_cache_path: Option<PathBuf>,
output_format: OutputFormat,
makefile_output_path: Option<PathBuf>,
hidden_input_paths: HashSet<PathBuf>,
pass: PassSetting,
reruns: Option<usize>,
print_stdout: bool,
bundle: Option<Box<dyn Bundle>>,
keep_intermediates: bool,
keep_logs: bool,
synctex: bool,
build_date: Option<SystemTime>,
unstables: UnstableOptions,
}
impl ProcessingSessionBuilder {
/// Sets the path to the primary input file.
///
/// If a primary input path is not specified, we will default to reading it from stdin.
pub fn primary_input_path<P: AsRef<Path>>(&mut self, p: P) -> &mut Self {
self.primary_input = PrimaryInputMode::Path(p.as_ref().to_owned());
self
}
/// Sets the primary input to be a caller-specified buffer.
///
/// If neither this nor a primary input path is specified, we will default
/// to reading the primary input from stdin.
pub fn primary_input_buffer(&mut self, buf: &[u8]) -> &mut Self {
self.primary_input = PrimaryInputMode::Buffer(buf.to_owned());
self
}
/// Sets the name of the main input file.
///
/// This value will be used to infer the names of the output files; for example, if
/// `tex_input_name` is set to `"texput.tex"` then the pdf output file will be `"texput.pdf"`.
/// As such, this parameter is mandatory, even if the real input is coming from stdin (if it is
/// not provided, [`ProcessingSessionBuilder::create`] will panic).
pub fn tex_input_name(&mut self, s: &str) -> &mut Self {
self.tex_input_name = Some(s.to_owned());
self
}
/// Set the directory that serves as the root for finding files on disk.
///
/// If unspecified, and there is a primary input file, the directory
/// containing that file will serve as the filesystem root. Otherwise, it is
/// set to the current directory.
pub fn filesystem_root<P: AsRef<Path>>(&mut self, p: P) -> &mut Self {
self.filesystem_root = Some(p.as_ref().to_owned());
self
}
/// A path to the directory where output files should be created.
///
/// This will default to the directory containing `primary_input_path`, or
/// the current working directory if the primary input is coming from
/// stdin.
pub fn output_dir<P: AsRef<Path>>(&mut self, p: P) -> &mut Self {
self.output_dest = OutputDestination::Path(p.as_ref().to_owned());
self
}
/// Indicate that output files should not be written to disk.
///
/// By default, output files will be written to the directory containing
/// `primary_input_path`, or the current working directory if the primary
/// input is coming from stdin.
pub fn do_not_write_output_files(&mut self) -> &mut Self {
self.output_dest = OutputDestination::Nowhere;
self
}
/// The name of the `.fmt` file used to initialize the TeX engine.
///
/// This file does not necessarily have to exist already; it will be created
/// if it doesn't. This parameter is mandatory (if it is not provided,
/// [`ProcessingSessionBuilder::create`] will panic).
pub fn format_name(&mut self, p: &str) -> &mut Self {
self.format_name = Some(p.to_owned());
self
}
/// Sets the path to the format file cache.
///
/// This is used to, well, cache format files, which are generated as
/// needed from the backing bundle. Defaults to the same directory as the
/// input file, or PWD if the input is a non-file (such as standard
/// input).
pub fn format_cache_path<P: AsRef<Path>>(&mut self, p: P) -> &mut Self {
self.format_cache_path = Some(p.as_ref().to_owned());
self
}
/// The type of output to create.
pub fn output_format(&mut self, f: OutputFormat) -> &mut Self {
self.output_format = f;
self
}
/// If set, a makefile will be written out at the given path.
pub fn makefile_output_path<P: AsRef<Path>>(&mut self, p: P) -> &mut Self {
self.makefile_output_path = Some(p.as_ref().to_owned());
self
}
/// Which kind of pass should the `ProcessingSession` run? Defaults to `PassSetting::Default`
/// (duh).
pub fn pass(&mut self, p: PassSetting) -> &mut Self {
self.pass = p;
self
}
/// If set, and if the pass is set to `PassSetting::Default`, the TeX engine will be re-run
/// *exactly* this many times.
///
/// If `reruns` is unset, we will auto-detect how many times the TeX engine needs to be re-run.
pub fn reruns(&mut self, r: usize) -> &mut Self {
self.reruns = Some(r);
self
}
/// If set to `true`, stdout from the TeX engine will be forwarded to actual stdout. (By
/// default, it will be suppressed.)
pub fn print_stdout(&mut self, p: bool) -> &mut Self {
self.print_stdout = p;
self
}
/// Marks a path as hidden, meaning that the TeX engine will pretend that it doesn't exist in
/// the filesystem.
pub fn hide<P: AsRef<Path>>(&mut self, p: P) -> &mut Self {
self.hidden_input_paths.insert(p.as_ref().to_owned());
self
}
/// Sets the bundle, which the various engines will use for finding style files, font files,
/// etc.
pub fn bundle(&mut self, b: Box<dyn Bundle>) -> &mut Self {
self.bundle = Some(b);
self
}
/// If set to `true`, various intermediate files will be written out to the filesystem.
pub fn keep_intermediates(&mut self, k: bool) -> &mut Self {
self.keep_intermediates = k;
self
}
/// If set to `true`, '.log' and '.blg' files will be written out to the filesystem.
pub fn keep_logs(&mut self, k: bool) -> &mut Self {
self.keep_logs = k;
self
}
/// If set to `true`, tex files will be compiled using synctex information.
pub fn synctex(&mut self, s: bool) -> &mut Self {
self.synctex = s;
self
}
/// Sets the date and time of the processing session.
/// See `TexEngine::build_date` for mor information.
pub fn build_date(&mut self, date: SystemTime) -> &mut Self {
self.build_date = Some(date);
self
}
/// Loads unstable options into the processing session
pub fn unstables(&mut self, opts: UnstableOptions) -> &mut Self {
self.unstables = opts;
self
}
/// Creates a `ProcessingSession`.
pub fn create(self, status: &mut dyn StatusBackend) -> Result<ProcessingSession> {
let mut io = IoSetupBuilder::default();
io.bundle(self.bundle.expect("a bundle must be specified"))
.use_genuine_stdout(self.print_stdout);
for p in &self.hidden_input_paths {
io.hide_path(p);
}
let (primary_input_path, default_output_path) = match self.primary_input {
PrimaryInputMode::Path(p) => {
io.primary_input_path(&p);
// Set the filesystem root (that's the directory we'll search
// for files in) to be the same directory as the main input
// file.
let parent = match p.parent() {
Some(parent) => parent.to_owned(),
None => {
return Err(errmsg!(
"can't figure out a parent directory for input path \"{}\"",
p.to_string_lossy()
));
}
};
io.filesystem_root(&parent);
(Some(p), parent)
}
PrimaryInputMode::Stdin => {
// If the main input file is stdin, we don't set a filesystem
// root, which means we'll default to the current working
// directory.
io.primary_input_stdin();
(None, "".into())
}
PrimaryInputMode::Buffer(buf) => {
// Same behavior as with stdin.
io.primary_input_buffer(buf);
(None, "".into())
}
};
if let Some(fsr) = self.filesystem_root {
io.filesystem_root(fsr);
}
let output_path = match self.output_dest {
OutputDestination::Default => Some(default_output_path),
OutputDestination::Path(p) => Some(p),
OutputDestination::Nowhere => None,
};
if let Some(ref p) = self.format_cache_path {
io.format_cache_path(p);
}
let tex_input_name = self
.tex_input_name
.expect("tex_input_name must be specified");
let mut aux_path = PathBuf::from(tex_input_name.clone());
aux_path.set_extension("aux");
let mut xdv_path = aux_path.clone();
xdv_path.set_extension(if self.output_format == OutputFormat::Html {
"spx"
} else {
"xdv"
});
let mut pdf_path = aux_path.clone();
pdf_path.set_extension("pdf");
Ok(ProcessingSession {
io: io.create(status)?,
events: IoEvents::new(),
pass: self.pass,
primary_input_path,
primary_input_tex_path: tex_input_name,
format_name: self.format_name.unwrap(),
tex_aux_path: aux_path.into_os_string(),
tex_xdv_path: xdv_path.into_os_string(),
tex_pdf_path: pdf_path.into_os_string(),
output_format: self.output_format,
makefile_output_path: self.makefile_output_path,
output_path,
tex_rerun_specification: self.reruns,
keep_intermediates: self.keep_intermediates,
keep_logs: self.keep_logs,
synctex_enabled: self.synctex,
build_date: self.build_date.unwrap_or(SystemTime::UNIX_EPOCH),
unstables: self.unstables,
})
}
}
#[derive(Debug, Clone)]
enum RerunReason {
Bibtex,
FileChange(String),
}
/// The ProcessingSession struct runs the whole show when we're actually
/// processing a file. It understands, for example, the need to re-run the TeX
/// engine if the `.aux` file changed.
pub struct ProcessingSession {
/// This contains the full I/O setup of the processing session. After
/// running the session, you can inspect this to see what I/O was
/// produced. (For example, the memory layer might contain some files that
/// were produced by the TeX engine but not actually written to disk.)
pub io: IoSetup,
/// This contains all the I/O events that occurred while processing.
pub events: IoEvents,
/// If our primary input is an actual file on disk, this is its path.
primary_input_path: Option<PathBuf>,
/// This is the name of the input that we tell TeX. It is the basename of
/// the UTF8-ified version of `primary_input_path`; or something anodyne
/// if the latter is None. (Name, "texput.tex").
primary_input_tex_path: String,
/// This is the name of the format file to use. TeX has to open it by name
/// internally, so it has to be String compatible.
format_name: String,
/// These are the paths of the various output files as TeX knows them --
/// just `primary_input_tex_path` with the extension changed. We store
/// them as OsStrings since that's what the main crate currently uses for
/// TeX paths, even though I've since realized that it should really just
/// use String.
tex_aux_path: OsString,
tex_xdv_path: OsString,
tex_pdf_path: OsString,
/// If we're writing out Makefile rules, this is where they go. The TeX
/// engine doesn't know about this path at all.
makefile_output_path: Option<PathBuf>,
/// This is the path that the processed file will be saved at. It defaults
/// to the path of `primary_input_path` or `.` if STDIN is used. If set to
/// None, the output files will not be saved to disk — in which case, the
/// caller should access the memory layer of the `io` field to gain access
/// to the output files.
output_path: Option<PathBuf>,
pass: PassSetting,
output_format: OutputFormat,
tex_rerun_specification: Option<usize>,
keep_intermediates: bool,
keep_logs: bool,
synctex_enabled: bool,
/// See `TexEngine::with_date` and `XdvipdfmxEngine::with_date`.
build_date: SystemTime,
unstables: UnstableOptions,
}
const DEFAULT_MAX_TEX_PASSES: usize = 6;
const ALWAYS_INTERMEDIATE_EXTENSIONS: &[&str] = &[
".snm", ".toc", // generated by Beamer
];
impl ProcessingSession {
/// Assess whether we need to rerun an engine. This is the case if there
/// was a file that the engine read and then rewrote, and the rewritten
/// version is different than the version that it read in.
fn is_rerun_needed(&self, status: &mut dyn StatusBackend) -> Option<RerunReason> {
// TODO: we should probably wire up diagnostics since I expect this
// stuff could get finicky and we're going to want to be able to
// figure out why rerun detection is breaking.
for (name, info) in &self.events.0 {
if info.access_pattern == AccessPattern::ReadThenWritten {
let file_changed = match (&info.read_digest, &info.write_digest) {
(&Some(ref d1), &Some(ref d2)) => d1 != d2,
(&None, &Some(_)) => true,
(_, _) => {
// Other cases shouldn't happen.
tt_warning!(
status,
"internal consistency problem when checking if {} changed",
name.to_string_lossy()
);
true
}
};
if file_changed {
return Some(RerunReason::FileChange(name.to_string_lossy().into_owned()));
}
}
}
None
}
#[allow(dead_code)]
fn _dump_access_info(&self, status: &mut dyn StatusBackend) {
for (name, info) in &self.events.0 {
if info.access_pattern != AccessPattern::Read {
let r = match info.read_digest {
Some(ref d) => d.to_string(),
None => "-".into(),
};
let w = match info.write_digest {
Some(ref d) => d.to_string(),
None => "-".into(),
};
tt_note!(
status,
"ACCESS: {} {:?} {:?} {:?}",
name.to_string_lossy(),
info.access_pattern,
r,
w
);
}
}
}
/// Runs the session, generating the desired outputs.
///
/// What this does depends on which [`PassSetting`] you asked for. The most common choice is
/// `PassSetting::Default`, in which case this method does the following:
///
/// - if a `.fmt` file does not yet exist, generate one and cache it
/// - run the TeX engine once
/// - run BibTeX, if it seems to be required
/// - repeat the last two steps as often as needed
/// - write the output files to disk, including a Makefile if it was requested.
pub fn run(&mut self, status: &mut dyn StatusBackend) -> Result<()> {
// Do we need to generate the format file?
let generate_format = if self.output_format == OutputFormat::Format {
false
} else {
let fmt_result = {
let mut stack = self.io.as_stack();
stack.input_open_format(OsStr::new(&self.format_name), status)
};
match fmt_result {
OpenResult::Ok(_) => false,
OpenResult::NotAvailable => true,
OpenResult::Err(e) => {
return Err(e)
.chain_err(|| format!("could not open format file {}", self.format_name));
}
}
};
if generate_format {
tt_note!(status, "generating format \"{}\"", self.format_name);
self.make_format_pass(status)?;
}
// Do the meat of the work.
let result = match self.pass {
PassSetting::Tex => match self.tex_pass(None, status) {
Ok(Some(warnings)) => {
tt_warning!(status, "{}", warnings);
Ok(0)
}
Ok(None) => Ok(0),
Err(e) => Err(e),
},
PassSetting::Default => self.default_pass(false, status),
PassSetting::BibtexFirst => self.default_pass(true, status),
};
if let Err(e) = result {
self.write_files(None, status, true)?;
return Err(e);
};
// Write output files and the first line of our Makefile output.
let mut mf_dest_maybe = match self.makefile_output_path {
Some(ref p) => {
if self.output_path.is_none() {
tt_warning!(
status,
"requested to generate Makefile rules, but no files written to disk!"
);
None
} else {
Some(File::create(p)?)
}
}
None => None,
};
let n_skipped_intermediates = self.write_files(mf_dest_maybe.as_mut(), status, false)?;
if n_skipped_intermediates > 0 {
status.note_highlighted(
"Skipped writing ",
&format!("{}", n_skipped_intermediates),
" intermediate files (use --keep-intermediates to keep them)",
);
}
// Finish Makefile rules, maybe.
if let Some(ref mut mf_dest) = mf_dest_maybe {
ctry!(write!(mf_dest, ": "); "couldn't write to Makefile-rules file");
if let Some(ref pip) = self.primary_input_path {
ctry!(mf_dest.write_all(pip.to_string_lossy().as_ref().as_bytes()); "couldn't write to Makefile-rules file");
}
// The check above ensures that this is never None.
let root = self.output_path.as_ref().unwrap();
for (name, info) in &self.events.0 {
if info.input_origin != InputOrigin::Filesystem {
continue;
}
if info.got_written_to_disk {
// If the file originally came from the filesystem, and it
// was written as well as read, and we actually wrote it
// to disk, there's a circular dependency that's
// inappropriate to express in a Makefile. If it was
// "written" by the engine but we didn't actually write
// those modifications to disk, we're OK. If there's a
// two-stage compilation involving the .aux file, the
// latter case is what arises unless --keep-intermediates
// is specified.
tt_warning!(
status,
"omitting circular Makefile dependency for {}",
name.to_string_lossy()
);
continue;
}
ctry!(write!(mf_dest, " \\\n {}", root.join(name).display()); "couldn't write to Makefile-rules file");
}
ctry!(writeln!(mf_dest, ""); "couldn't write to Makefile-rules file");
}
// All done.
Ok(())
}
fn write_files(
&mut self,
mut mf_dest_maybe: Option<&mut File>,
status: &mut dyn StatusBackend,
only_logs: bool,
) -> Result<u32> {
let root = match self.output_path {
Some(ref p) => p,
None => {
// We were told not to write anything!
return Ok(0);
}
};
let mut n_skipped_intermediates = 0;
for (name, file) in &*self.io.mem.files.borrow() {
if name == self.io.mem.stdout_key() {
continue;
}
let sname = name.to_string_lossy();
let summ = self.events.0.get_mut(name).unwrap();
if !only_logs && (self.output_format == OutputFormat::Aux) {
// In this mode we're only writing the .aux file. I initially
// wanted to be clever-ish and output all auxiliary-type
// files, but doing so ended up causing non-obvious problems
// for my use case, which involves using Ninja to manage
// dependencies.
if !sname.ends_with(".aux") {
continue;
}
} else if !self.keep_intermediates
&& (summ.access_pattern != AccessPattern::Written
|| ALWAYS_INTERMEDIATE_EXTENSIONS
.iter()
.any(|ext| sname.ends_with(ext)))
{
n_skipped_intermediates += 1;
continue;
}
let is_logfile = sname.ends_with(".log") || sname.ends_with(".blg");
if is_logfile && !self.keep_logs {
continue;
}
if !is_logfile && only_logs {
continue;
}
if file.data.is_empty() {
status.note_highlighted(
"Not writing ",
&format!("`{}`", sname),
": it would be empty.",
);
continue;
}
let real_path = root.join(name);
let byte_len = Byte::from_bytes(file.data.len() as u128);
status.note_highlighted(
"Writing ",
&format!("`{}`", real_path.to_string_lossy()),
&format!(" ({})", byte_len.get_appropriate_unit(true).to_string()),
);
let mut f = File::create(&real_path)?;
f.write_all(&file.data)?;
summ.got_written_to_disk = true;
if let Some(ref mut mf_dest) = mf_dest_maybe {
// Maybe it'd be better to have this just be a warning? But if
// the program is supposed to write the file, you don't want
// it exiting with error code zero if it couldn't do that
// successfully.
//
// Not quite sure why, but I can't pull out the target path
// here. I think 'self' is borrow inside the loop?
ctry!(write!(mf_dest, "{} ", real_path.to_string_lossy()); "couldn't write to Makefile-rules file");
}
}
Ok(n_skipped_intermediates)
}
/// The "default" pass really runs a bunch of sub-passes. It is a "Do What
/// I Mean" operation.
fn default_pass(&mut self, bibtex_first: bool, status: &mut dyn StatusBackend) -> Result<i32> {
// If `bibtex_first` is true, we start by running bibtex, and run
// proceed with the standard rerun logic. Otherwise, we run TeX,
// auto-detect whether we need to run bibtex, possibly run it, and
// then go ahead.
let mut warnings = None;
let mut rerun_result = if bibtex_first {
self.bibtex_pass(status)?;
Some(RerunReason::Bibtex)
} else {
warnings = self.tex_pass(None, status)?;
if self.is_bibtex_needed() {
self.bibtex_pass(status)?;
Some(RerunReason::Bibtex)
} else {
self.is_rerun_needed(status)
}
};
// Now we enter the main rerun loop.
let (pass_count, reruns_fixed) = match self.tex_rerun_specification {
Some(n) => (n, true),
None => (DEFAULT_MAX_TEX_PASSES, false),
};
for i in 0..pass_count {
let rerun_explanation = if reruns_fixed {
"I was told to".to_owned()
} else {
match rerun_result {
Some(RerunReason::Bibtex) => "bibtex was run".to_owned(),
Some(RerunReason::FileChange(ref s)) => format!("\"{}\" changed", s),
None => break,
}
};
// We're restarting the engine afresh, so clear the read inputs.
// We do *not* clear the entire HashMap since we want to remember,
// e.g., that bibtex wrote out the .bbl file, since that way we
// can later know that it's OK to delete. I am not super confident
// that the access_pattern data can just be left as-is when we do
// this, but, uh, so far it seems to work.
for summ in self.events.0.values_mut() {
summ.read_digest = None;
}
warnings = self.tex_pass(Some(&rerun_explanation), status)?;
if !reruns_fixed {
rerun_result = self.is_rerun_needed(status);
if rerun_result.is_some() && i == DEFAULT_MAX_TEX_PASSES - 1 {
tt_warning!(
status,
"TeX rerun seems needed, but stopping at {} passes",
DEFAULT_MAX_TEX_PASSES
);
break;
}
}
}
// The last tex pass generated warnings.
if let Some(warnings) = warnings {
tt_warning!(status, "{}", warnings);
}
// And finally, xdvipdfmx or spx2html. Maybe.
if let OutputFormat::Pdf = self.output_format {
self.xdvipdfmx_pass(status)?;
} else if let OutputFormat::Html = self.output_format {
self.spx2html_pass(status)?;
}
Ok(0)
}
fn is_bibtex_needed(&self) -> bool {
const BIBDATA: &[u8] = b"\\bibdata";
self.io
.mem
.files
.borrow()
.get(&self.tex_aux_path)
.map(|file| {
// We used to use aho-corasick crate here, but it was removed to reduce the code
// size.
file.data.windows(BIBDATA.len()).any(|s| s == BIBDATA)
})
.unwrap_or(false)
}
/// Use the TeX engine to generate a format file.
fn make_format_pass(&mut self, status: &mut dyn StatusBackend) -> Result<i32> {
if self.io.bundle.is_none() {
return Err(
ErrorKind::Msg("cannot create formats without using a bundle".to_owned()).into(),
);
}
if self.io.format_cache.is_none() {
return Err(ErrorKind::Msg(
"cannot create formats without having a place to save them".to_owned(),
)
.into());
}
// PathBuf.file_stem() doesn't do what we want since it only strips
// one extension. As of 1.17, the compiler needs a type annotation for
// some reason, which is why we use the `r` variable.
let r: Result<&str> = self.format_name.splitn(2, '.').next().ok_or_else(|| {
ErrorKind::Msg(format!(
"incomprehensible format file name \"{}\"",
self.format_name
))
.into()
});
let stem = r?;
let result = {
let mut stack = self
.io
.as_stack_for_format(&format!("tectonic-format-{}.tex", stem));
TexEngine::new()
.halt_on_error_mode(true)
.initex_mode(true)
.process(
&mut stack,
&mut self.events,
status,
"UNUSED.fmt",
"texput",
&self.unstables,
)
};
match result {
Ok(TexResult::Spotless) => {}
Ok(TexResult::Warnings) => {
tt_warning!(status, "warnings were issued by the TeX engine; use --print and/or --keep-logs for details.");
}
Ok(TexResult::Errors) => {
tt_error!(status, "errors were issued by the TeX engine; use --print and/or --keep-logs for details.");
return Err(ErrorKind::Msg("unhandled TeX engine error".to_owned()).into());
}
Err(e) => {
return Err(e.chain_err(|| ErrorKind::EngineError("TeX")));
}
}
// Now we can write the format file to its special location. In
// principle we could stream the format file directly to the staging
// area as we ran the TeX engine, but we don't bother.
let format_cache = &mut *self.io.format_cache.as_mut().unwrap();
for (name, file) in &*self.io.mem.files.borrow() {
if name == self.io.mem.stdout_key() {
continue;
}
let sname = name.to_string_lossy();
if !sname.ends_with(".fmt") {
continue;
}
// Note that we intentionally pass 'stem', not 'name'.
ctry!(format_cache.write_format(stem, &file.data, status); "cannot write format file {}", sname);
}
// All done. Clear the memory layer since this was a special preparatory step.
self.io.mem.files.borrow_mut().clear();
Ok(0)
}
/// Run one pass of the TeX engine.
fn tex_pass(
&mut self,
rerun_explanation: Option<&str>,
status: &mut dyn StatusBackend,
) -> Result<Option<&'static str>> {
let result = {
let mut stack = self.io.as_stack();
if let Some(s) = rerun_explanation {
status.note_highlighted("Rerunning ", "TeX", &format!(" because {} ...", s));
} else {
status.note_highlighted("Running ", "TeX", " ...");
}
TexEngine::new()
.halt_on_error_mode(true)
.initex_mode(self.output_format == OutputFormat::Format)
.synctex(self.synctex_enabled)
.semantic_pagination(self.output_format == OutputFormat::Html)
.build_date(self.build_date)
.process(
&mut stack,
&mut self.events,
status,
&self.format_name,
&self.primary_input_tex_path,
&self.unstables,
)
};
let warnings = match result {
Ok(TexResult::Spotless) => None,
Ok(TexResult::Warnings) =>
Some("warnings were issued by the TeX engine; use --print and/or --keep-logs for details."),
Ok(TexResult::Errors) =>
Some("errors were issued by the TeX engine, but were ignored; \
use --print and/or --keep-logs for details."),
Err(e) =>
return Err(e.chain_err(|| ErrorKind::EngineError("TeX"))),
};
Ok(warnings)
}
fn bibtex_pass(&mut self, status: &mut dyn StatusBackend) -> Result<i32> {
let result = {
let mut stack = self.io.as_stack();
let mut engine = BibtexEngine::new();
status.note_highlighted("Running ", "BibTeX", " ...");
engine.process(
&mut stack,
&mut self.events,
status,
&self.tex_aux_path.to_str().unwrap(),
&self.unstables,
)
};
match result {
Ok(TexResult::Spotless) => {}
Ok(TexResult::Warnings) => {
tt_note!(
status,
"warnings were issued by BibTeX; use --print and/or --keep-logs for details."
);
}
Ok(TexResult::Errors) => {
tt_warning!(
status,
"errors were issued by BibTeX, but were ignored; \
use --print and/or --keep-logs for details."
);
}
Err(e) => {
return Err(e.chain_err(|| ErrorKind::EngineError("BibTeX")));
}
}
Ok(0)
}
fn xdvipdfmx_pass(&mut self, status: &mut dyn StatusBackend) -> Result<i32> {
{
let mut stack = self.io.as_stack();
let mut engine = XdvipdfmxEngine::new().with_date(self.build_date);
status.note_highlighted("Running ", "xdvipdfmx", " ...");
engine.process(
&mut stack,
&mut self.events,
status,
&self.tex_xdv_path.to_str().unwrap(),
&self.tex_pdf_path.to_str().unwrap(),
&self.unstables,
)?;
}
self.io.mem.files.borrow_mut().remove(&self.tex_xdv_path);
Ok(0)
}
fn spx2html_pass(&mut self, status: &mut dyn StatusBackend) -> Result<i32> {
{
let mut stack = self.io.as_stack();
let mut engine = Spx2HtmlEngine::new();
status.note_highlighted("Running ", "spx2html", " ...");
engine.process(
&mut stack,
&mut self.events,
status,
&self.tex_xdv_path.to_str().unwrap(),
)?;
}
self.io.mem.files.borrow_mut().remove(&self.tex_xdv_path);
Ok(0)
}
/// Consume this session and return the current set of files in memory.
///
/// This convenience function tries to help with the annoyances of getting
/// access to the in-memory file data after the engine has been run.
///
/// ### Panics
///
/// This will panic if you there are multiple strong references to the
/// `files` map. This should only happen if you create and keep a clone of
/// the `Rc<>` wrapping it before calling this function.
pub fn into_file_data(self) -> MemoryFileCollection {
Rc::try_unwrap(self.io.mem.files)
.expect("multiple strong refs to MemoryIo files")
.into_inner()
}
}