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
use failure::{Error, Fail, ResultExt};
use regex::Regex;
use serde_json;
use std::fmt;
use std::io;
use std::path::Path;
use std::path::PathBuf;
use std::process::Command;
use std::process::Stdio;
use std::str;
use Target;
const GET_INTERPRETER_METADATA: &str = r##"
import sysconfig
import sys
import json
print(json.dumps({
"major": sys.version_info.major,
"minor": sys.version_info.minor,
"abiflags": sysconfig.get_config_var("ABIFLAGS"),
"m": sysconfig.get_config_var("WITH_PYMALLOC") == 1,
"u": sysconfig.get_config_var("Py_UNICODE_SIZE") == 4,
"d": sysconfig.get_config_var("Py_DEBUG") == 1,
# This one isn't technically necessary, but still very useful for sanity checks
"platform": sys.platform,
}))
"##;
fn find_all_windows(target: &Target) -> Result<Vec<String>, Error> {
let execution = Command::new("py").arg("-0").output();
let output = execution
.context("Couldn't run 'py' command. Do you have python installed and in PATH?")?;
let expr = Regex::new(r" -(\d).(\d)-(\d+)(?: .*)?").unwrap();
let lines = str::from_utf8(&output.stdout).unwrap().lines();
let mut interpreter = vec![];
for line in lines {
if let Some(capture) = expr.captures(line) {
let code = "import sys; print(sys.executable or '')";
let context = "Expected a digit";
let major = capture
.get(1)
.unwrap()
.as_str()
.parse::<usize>()
.context(context)?;
let minor = capture
.get(2)
.unwrap()
.as_str()
.parse::<usize>()
.context(context)?;
let pointer_width = capture
.get(3)
.unwrap()
.as_str()
.parse::<usize>()
.context(context)?;
if major == 2 && minor != 7 {
continue;
}
if major == 3 && minor < 5 {
continue;
}
if pointer_width != target.pointer_width() {
println!(
"{}.{} is installed as {}-bit, while the target is {}-bit. Skipping.",
major,
minor,
pointer_width,
target.pointer_width()
);
continue;
}
let version = format!("-{}.{}-{}", major, minor, pointer_width);
let output = Command::new("py")
.args(&[&version, "-c", code])
.output()
.unwrap();
let path = str::from_utf8(&output.stdout).unwrap().trim();
if !output.status.success() || path.trim().is_empty() {
bail!("Couldn't determine the path to python for `py {}`", version);
}
interpreter.push(path.to_string());
}
}
Ok(interpreter)
}
fn find_all_unix() -> Vec<String> {
let interpreter = &[
"python2.7",
"python3.5",
"python3.6",
"python3.7",
"python3.8",
"python3.9",
];
interpreter.iter().map(ToString::to_string).collect()
}
#[derive(Serialize, Deserialize)]
struct IntepreterMetadataMessage {
major: usize,
minor: usize,
abiflags: Option<String>,
m: bool,
u: bool,
d: bool,
platform: String,
}
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct PythonInterpreter {
pub major: usize,
pub minor: usize,
pub abiflags: String,
pub target: Target,
pub executable: PathBuf,
}
fn fun_with_abiflags(
message: &IntepreterMetadataMessage,
target: &Target,
) -> Result<String, Error> {
let sane_platform = match message.platform.as_ref() {
"win32" | "win_amd64" => target.is_windows(),
"linux" | "linux2" | "linux3" => target.is_linux(),
"darwin" => target.is_macos(),
_ => false,
};
if !sane_platform {
bail!(
"sys.platform in python, {}, and the rust target, {:?}, don't match ಠ_ಠ",
message.platform,
target,
)
}
if message.major == 2 {
let mut abiflags = String::new();
if message.m {
abiflags += "m";
}
if message.u {
abiflags += "u";
}
if message.d {
abiflags += "d";
}
if message.abiflags.is_some() {
bail!("A python 2 interpreter does not define abiflags in its sysconfig ಠ_ಠ")
}
if abiflags != "" && target.is_windows() {
bail!("A python 2 interpreter on windows does not define abiflags in its sysconfig ಠ_ಠ")
}
Ok(abiflags)
} else if message.major == 3 && message.minor >= 5 {
if target.is_windows() {
if message.abiflags.is_some() {
bail!("A python 3 interpreter on windows does not define abiflags in its sysconfig ಠ_ಠ")
} else {
Ok("".to_string())
}
} else if let Some(ref abiflags) = message.abiflags {
if abiflags != "m" {
bail!("A python 3 interpreter on linux or mac os must have 'm' as abiflags ಠ_ಠ")
}
Ok(abiflags.clone())
} else {
bail!("A python 3 interpreter on linux or mac os must define abiflags in its sysconfig ಠ_ಠ")
}
} else {
bail!("Only python 2.7 and python 3.x are supported");
}
}
impl PythonInterpreter {
pub fn get_tag(&self) -> String {
let platform = self.target.get_platform_tag();
if self.target.is_unix() {
format!(
"cp{major}{minor}-cp{major}{minor}{abiflags}-{platform}",
major = self.major,
minor = self.minor,
abiflags = self.abiflags,
platform = platform
)
} else {
format!(
"cp{major}{minor}-none-{platform}",
major = self.major,
minor = self.minor,
platform = platform
)
}
}
pub fn get_library_extension(&self) -> String {
if self.major == 2 {
if self.target.is_unix() {
return ".so".to_string();
} else {
return ".pyd".to_string();
}
}
let platform = self.target.get_shared_platform_tag();
if self.target.is_unix() {
format!(
".cpython-{major}{minor}{abiflags}-{platform}.so",
major = self.major,
minor = self.minor,
abiflags = self.abiflags,
platform = platform,
)
} else {
format!(
".cp{major}{minor}-{platform}.pyd",
major = self.major,
minor = self.minor,
platform = platform
)
}
}
pub fn check_executable(
executable: impl AsRef<Path>,
target: &Target,
) -> Result<Option<PythonInterpreter>, Error> {
let output = Command::new(&executable.as_ref())
.args(&["-c", GET_INTERPRETER_METADATA])
.stderr(Stdio::inherit())
.output();
let err_msg = format!(
"Trying to get metadata from the python interpreter {} failed",
executable.as_ref().display()
);
let output = match output {
Ok(output) => {
if output.status.success() {
output
} else {
bail!(err_msg);
}
}
Err(err) => {
if err.kind() == io::ErrorKind::NotFound {
return Ok(None);
} else {
bail!(err.context(err_msg));
}
}
};
let message: IntepreterMetadataMessage =
serde_json::from_slice(&output.stdout).context(err_msg)?;
if (message.major == 2 && message.minor != 7) || (message.major == 3 && message.minor < 5) {
return Ok(None);
}
let abiflags = fun_with_abiflags(&message, &target)
.context("Failed to get information from the python interpreter")?;
Ok(Some(PythonInterpreter {
major: message.major,
minor: message.minor,
abiflags,
target: target.clone(),
executable: executable.as_ref().to_path_buf(),
}))
}
pub fn find_all(target: &Target) -> Result<Vec<PythonInterpreter>, Error> {
let executables = if target.is_windows() {
find_all_windows(&target)?
} else {
find_all_unix()
};
let mut available_versions = Vec::new();
for executable in executables {
if let Some(version) = PythonInterpreter::check_executable(&executable, &target)? {
available_versions.push(version);
}
}
Ok(available_versions)
}
pub fn check_executables(
executables: &[String],
target: &Target,
) -> Result<Vec<PythonInterpreter>, Error> {
let mut available_versions = Vec::new();
for executable in executables {
if let Some(version) = PythonInterpreter::check_executable(executable, &target)
.context(format!("{} is not a valid python interpreter", executable))?
{
available_versions.push(version);
} else {
bail!("{} doesn't exist");
}
}
Ok(available_versions)
}
}
impl fmt::Display for PythonInterpreter {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"Python {}.{}{} at {}",
self.major,
self.minor,
self.abiflags,
self.executable.display()
)
}
}