quickpython 0.1.3

A lightweight Python bytecode VM written in Rust
Documentation
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
use crate::value::{DictKey, ExceptionType, Module, Value};
use std::cell::RefCell;
use std::collections::HashMap;
use std::env;
use std::fs;
use std::path::Path;
use std::rc::Rc;

pub fn create_module() -> Module {
    let mut module = Module::new("os");

    // 文件和目录操作
    module.add_function("listdir", os_listdir);
    module.add_function("mkdir", os_mkdir);
    module.add_function("makedirs", os_makedirs);
    module.add_function("remove", os_remove);
    module.add_function("rmdir", os_rmdir);
    module.add_function("rename", os_rename);
    module.add_function("getcwd", os_getcwd);
    module.add_function("chdir", os_chdir);

    // 环境变量
    module.add_function("getenv", os_getenv);

    // 添加 os.environ 字典
    let environ = create_environ_dict();
    module.attributes.insert("environ".to_string(), environ);

    // 添加 os.name
    #[cfg(unix)]
    let os_name = "posix";
    #[cfg(windows)]
    let os_name = "nt";
    module
        .attributes
        .insert("name".to_string(), Value::String(os_name.to_string()));

    // 添加 os.path 子模块
    let path_module = create_path_module();
    module.attributes.insert(
        "path".to_string(),
        Value::Module(Rc::new(RefCell::new(path_module))),
    );

    module
}

fn create_path_module() -> Module {
    let mut module = Module::new("os.path");

    module.add_function("exists", path_exists);
    module.add_function("isfile", path_isfile);
    module.add_function("isdir", path_isdir);
    module.add_function("join", path_join);
    module.add_function("basename", path_basename);
    module.add_function("dirname", path_dirname);
    module.add_function("abspath", path_abspath);

    module
}

fn create_environ_dict() -> Value {
    let mut map = HashMap::new();

    for (key, value) in env::vars() {
        map.insert(DictKey::String(key), Value::String(value));
    }

    Value::Dict(Rc::new(RefCell::new(map)))
}

// 文件和目录操作函数

fn os_listdir(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "listdir() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    let entries = fs::read_dir(path).map_err(|e| {
        Value::error(
            ExceptionType::OSError,
            format!("Failed to read directory '{}': {}", path, e),
        )
    })?;

    let mut items = Vec::new();
    for entry in entries {
        let entry = entry.map_err(|e| {
            Value::error(
                ExceptionType::OSError,
                format!("Failed to read entry: {}", e),
            )
        })?;

        let name = entry.file_name().to_string_lossy().to_string();
        items.push(Value::String(name));
    }

    Ok(Value::List(Rc::new(RefCell::new(
        crate::value::ListValue::with_items(items),
    ))))
}

fn os_mkdir(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "mkdir() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    fs::create_dir(path).map_err(|e| {
        Value::error(
            ExceptionType::OSError,
            format!("Failed to create directory '{}': {}", path, e),
        )
    })?;

    Ok(Value::None)
}

fn os_makedirs(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "makedirs() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    fs::create_dir_all(path).map_err(|e| {
        Value::error(
            ExceptionType::OSError,
            format!("Failed to create directories '{}': {}", path, e),
        )
    })?;

    Ok(Value::None)
}

fn os_remove(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "remove() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    fs::remove_file(path).map_err(|e| {
        Value::error(
            ExceptionType::OSError,
            format!("Failed to remove file '{}': {}", path, e),
        )
    })?;

    Ok(Value::None)
}

fn os_rmdir(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "rmdir() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    fs::remove_dir(path).map_err(|e| {
        Value::error(
            ExceptionType::OSError,
            format!("Failed to remove directory '{}': {}", path, e),
        )
    })?;

    Ok(Value::None)
}

fn os_rename(args: Vec<Value>) -> Result<Value, Value> {
    if args.len() < 2 {
        return Err(Value::error(
            ExceptionType::TypeError,
            "rename() requires 2 arguments: old and new",
        ));
    }

    let old = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "old path must be a string"))?;

    let new = args[1]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "new path must be a string"))?;

    fs::rename(old, new).map_err(|e| {
        Value::error(
            ExceptionType::OSError,
            format!("Failed to rename '{}' to '{}': {}", old, new, e),
        )
    })?;

    Ok(Value::None)
}

fn os_getcwd(_args: Vec<Value>) -> Result<Value, Value> {
    let cwd = env::current_dir().map_err(|e| {
        Value::error(
            ExceptionType::OSError,
            format!("Failed to get current directory: {}", e),
        )
    })?;

    Ok(Value::String(cwd.to_string_lossy().to_string()))
}

fn os_chdir(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "chdir() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    env::set_current_dir(path).map_err(|e| {
        Value::error(
            ExceptionType::OSError,
            format!("Failed to change directory to '{}': {}", path, e),
        )
    })?;

    Ok(Value::None)
}

// 环境变量操作

fn os_getenv(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "getenv() missing required argument: 'key'",
        ));
    }

    let key = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "key must be a string"))?;

    let default = if args.len() > 1 {
        args[1].clone()
    } else {
        Value::None
    };

    match env::var(key) {
        Ok(value) => Ok(Value::String(value)),
        Err(_) => Ok(default),
    }
}

// os.path 子模块函数

fn path_exists(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "exists() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    Ok(Value::Bool(Path::new(&path).exists()))
}

fn path_isfile(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "isfile() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    Ok(Value::Bool(Path::new(&path).is_file()))
}

fn path_isdir(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "isdir() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    Ok(Value::Bool(Path::new(&path).is_dir()))
}

fn path_join(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Ok(Value::String(String::new()));
    }

    let mut path = std::path::PathBuf::new();

    for arg in args {
        let part = arg.as_string().ok_or_else(|| {
            Value::error(ExceptionType::TypeError, "all arguments must be strings")
        })?;
        path.push(part);
    }

    Ok(Value::String(path.to_string_lossy().to_string()))
}

fn path_basename(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "basename() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    let basename = Path::new(&path)
        .file_name()
        .and_then(|s| s.to_str())
        .unwrap_or("");

    Ok(Value::String(basename.to_string()))
}

fn path_dirname(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "dirname() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    let dirname = Path::new(&path)
        .parent()
        .and_then(|p| p.to_str())
        .unwrap_or("");

    Ok(Value::String(dirname.to_string()))
}

fn path_abspath(args: Vec<Value>) -> Result<Value, Value> {
    if args.is_empty() {
        return Err(Value::error(
            ExceptionType::TypeError,
            "abspath() missing required argument: 'path'",
        ));
    }

    let path = args[0]
        .as_string()
        .ok_or_else(|| Value::error(ExceptionType::TypeError, "path must be a string"))?;

    let abs_path = if Path::new(&path).is_absolute() {
        std::path::PathBuf::from(path)
    } else {
        env::current_dir()
            .map_err(|e| {
                Value::error(
                    ExceptionType::OSError,
                    format!("Failed to get current directory: {}", e),
                )
            })?
            .join(path)
    };

    Ok(Value::String(abs_path.to_string_lossy().to_string()))
}