forked from RustPython/RustPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimport.rs
More file actions
104 lines (90 loc) · 3.12 KB
/
import.rs
File metadata and controls
104 lines (90 loc) · 3.12 KB
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
/*
* Import mechanics
*/
extern crate rustpython_parser;
use std::path::PathBuf;
use self::rustpython_parser::parser;
use super::compile;
use super::pyobject::{DictProtocol, PyResult};
use super::vm::VirtualMachine;
use obj::{objsequence, objstr};
fn import_uncached_module(
vm: &mut VirtualMachine,
current_path: PathBuf,
module: &str,
) -> PyResult {
// Check for Rust-native modules
if let Some(module) = vm.stdlib_inits.get(module) {
return Ok(module(&vm.ctx).clone());
}
let notfound_error = vm.context().exceptions.module_not_found_error.clone();
let import_error = vm.context().exceptions.import_error.clone();
// Time to search for module in any place:
let filepath = find_source(vm, current_path, module)
.map_err(|e| vm.new_exception(notfound_error.clone(), e))?;
let source = parser::read_file(filepath.as_path())
.map_err(|e| vm.new_exception(import_error.clone(), e))?;
let code_obj = compile::compile(
vm,
&source,
compile::Mode::Exec,
Some(filepath.to_str().unwrap().to_string()),
)?;
// trace!("Code object: {:?}", code_obj);
let builtins = vm.get_builtin_scope();
let scope = vm.ctx.new_scope(Some(builtins));
vm.ctx
.set_item(&scope, "__name__", vm.new_str(module.to_string()));
vm.run_code_obj(code_obj, scope.clone())?;
Ok(vm.ctx.new_module(module, scope))
}
pub fn import_module(
vm: &mut VirtualMachine,
current_path: PathBuf,
module_name: &str,
) -> PyResult {
// First, see if we already loaded the module:
let sys_modules = vm.sys_module.get_item("modules").unwrap();
if let Some(module) = sys_modules.get_item(module_name) {
return Ok(module);
}
let module = import_uncached_module(vm, current_path, module_name)?;
vm.ctx.set_item(&sys_modules, module_name, module.clone());
Ok(module)
}
pub fn import(
vm: &mut VirtualMachine,
current_path: PathBuf,
module_name: &str,
symbol: &Option<String>,
) -> PyResult {
let module = import_module(vm, current_path, module_name)?;
// If we're importing a symbol, look it up and use it, otherwise construct a module and return
// that
let obj = match symbol {
Some(symbol) => module.get_item(symbol).unwrap(),
None => module,
};
Ok(obj)
}
fn find_source(vm: &VirtualMachine, current_path: PathBuf, name: &str) -> Result<PathBuf, String> {
let sys_path = vm.sys_module.get_item("path").unwrap();
let mut paths: Vec<PathBuf> = objsequence::get_elements(&sys_path)
.iter()
.map(|item| PathBuf::from(objstr::get_value(item)))
.collect();
paths.insert(0, current_path);
let suffixes = [".py", "/__init__.py"];
let mut filepaths = vec![];
for path in paths {
for suffix in suffixes.iter() {
let mut filepath = path.clone();
filepath.push(format!("{}{}", name, suffix));
filepaths.push(filepath);
}
}
match filepaths.iter().filter(|p| p.exists()).next() {
Some(path) => Ok(path.to_path_buf()),
None => Err(format!("No module named '{}'", name)),
}
}