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
#[macro_use]
use corollary_support::*;
use data::input_stream::*;
pub trait Preprocessor {
fn parseCPPArgs(&self, Vec<String>, Either<String, String>) -> (CppArgs, Vec<String>);
fn runCPP(&self, CppArgs) -> ExitCode;
}
pub fn preprocessedExt() -> String {
".i".to_string()
}
#[derive(Clone)]
pub enum CppOption {
IncludeDir(FilePath),
Define(String, String),
Undefine(String),
IncludeFile(FilePath),
}
pub use self::CppOption::*;
#[derive(Clone)]
pub struct CppArgs {
pub cppOptions: Vec<CppOption>,
pub extraOptions: Vec<String>,
pub cppTmpDir: Option<FilePath>,
pub inputFile: FilePath,
pub outputFile: Option<FilePath>,
}
fn cppOptions(a: CppArgs) -> Vec<CppOption> {
a.cppOptions
}
fn extraOptions(a: CppArgs) -> Vec<String> {
a.extraOptions
}
fn cppTmpDir(a: CppArgs) -> Option<FilePath> {
a.cppTmpDir
}
fn inputFile(a: CppArgs) -> FilePath {
a.inputFile
}
fn outputFile(a: CppArgs) -> Option<FilePath> {
a.outputFile
}
pub fn cppFile(input_file: FilePath) -> CppArgs {
CppArgs {
cppOptions: vec![],
extraOptions: vec![],
cppTmpDir: None,
inputFile: input_file,
outputFile: None,
}
}
pub fn rawCppArgs(opts: Vec<String>, input_file: FilePath) -> CppArgs {
CppArgs {
inputFile: input_file,
cppOptions: vec![],
extraOptions: opts,
outputFile: None,
cppTmpDir: None,
}
}
pub fn addCppOption(cpp_args: CppArgs, opt: CppOption) -> CppArgs {
__assign!(cpp_args.clone(), {
cppOptions: __op_concat(opt, cppOptions(cpp_args))
})
}
pub fn addExtraOption(cpp_args: CppArgs, extra: String) -> CppArgs {
__assign!(cpp_args.clone(), {
extraOptions: __op_concat(extra, extraOptions(cpp_args))
})
}
pub fn runPreprocessor<P: Preprocessor>(cpp: P,
cpp_args: CppArgs)
-> Either<ExitCode, InputStream> {
pub fn getActualOutFile(cpp_args: CppArgs) -> FilePath {
outputFile(cpp_args.clone())
.unwrap_or_else(|| {
mkOutputFile((cppTmpDir(cpp_args.clone())), (inputFile(cpp_args.clone())))
})
}
let cpp_args2 = cpp_args.clone();
let invokeCpp = |actual_out_file: FilePath| {
{
let exit_code = cpp.runCPP(__assign!(cpp_args2, {
outputFile: Some(actual_out_file.clone())
}));
match exit_code {
ExitSuccess => Right(readInputStream(actual_out_file)),
ExitFailure(_) => Left(exit_code),
}
}
};
let cpp_args2 = cpp_args.clone();
let removeTmpOutFile =
|out_file| maybe((removeFile(out_file)), (|_| ()), (outputFile(cpp_args2)));
let path = getActualOutFile(cpp_args);
let ret = invokeCpp(path.clone());
removeTmpOutFile(path.clone());
ret
}
pub fn mkOutputFile(tmp_dir_opt: Option<FilePath>, input_file: FilePath) -> FilePath {
let getTempDir = |_0| match (_0) {
Some(tmpdir) => tmpdir,
None => getTemporaryDirectory(),
};
{
let tmpDir = getTempDir(tmp_dir_opt);
mkTmpFile(tmpDir, (getOutputFileName(input_file)))
}
}
pub fn getOutputFileName(fp: FilePath) -> FilePath {
let filename = takeFileName(fp.clone());
if hasExtension(fp) {
replaceExtension(filename, preprocessedExt())
} else {
addExtension(filename, preprocessedExt())
}
}
pub fn mkTmpFile(tmp_dir: FilePath, file_templ: FilePath) -> FilePath {
{
let (path, file_handle) = openTempFile(tmp_dir, file_templ);
hClose(file_handle);
path
}
}
pub fn isPreprocessed(x: String) -> bool {
isSuffixOf(".i".to_string(), x)
}