mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
50 lines
1.4 KiB
C
50 lines
1.4 KiB
C
#include "pocketpy/pocketpy.h"
|
|
|
|
#include "pocketpy/common/utils.h"
|
|
#include "pocketpy/objects/object.h"
|
|
#include "pocketpy/common/sstream.h"
|
|
#include "pocketpy/interpreter/vm.h"
|
|
|
|
#if PY_SYS_PLATFORM == 0
|
|
#include <direct.h>
|
|
|
|
int platform_chdir(const char* path) { return _chdir(path); }
|
|
|
|
bool platform_getcwd(char* buf, size_t size) { return _getcwd(buf, size) != NULL; }
|
|
|
|
#elif PY_SYS_PLATFORM == 3 || PY_SYS_PLATFORM == 5
|
|
#include <unistd.h>
|
|
|
|
int platform_chdir(const char* path) { return chdir(path); }
|
|
|
|
bool platform_getcwd(char* buf, size_t size) { return getcwd(buf, size) != NULL; }
|
|
#else
|
|
|
|
int platform_chdir(const char* path) { return -1; }
|
|
|
|
bool platform_getcwd(char* buf, size_t size) { return false; }
|
|
|
|
#endif
|
|
|
|
static bool os_chdir(int argc, py_Ref argv) {
|
|
PY_CHECK_ARGC(1);
|
|
PY_CHECK_ARG_TYPE(0, tp_str);
|
|
const char* path = py_tostr(py_arg(0));
|
|
int code = platform_chdir(path);
|
|
if(code != 0) return py_exception(tp_OSError, "chdir() failed: %d", code);
|
|
py_newnone(py_retval());
|
|
return true;
|
|
}
|
|
|
|
static bool os_getcwd(int argc, py_Ref argv) {
|
|
char buf[1024];
|
|
if(!platform_getcwd(buf, sizeof(buf))) return py_exception(tp_OSError, "getcwd() failed");
|
|
py_newstr(py_retval(), buf);
|
|
return true;
|
|
}
|
|
|
|
void pk__add_module_os() {
|
|
py_Ref mod = py_newmodule("os");
|
|
py_bindfunc(mod, "chdir", os_chdir);
|
|
py_bindfunc(mod, "getcwd", os_getcwd);
|
|
} |