2014-05-03 22:27:38 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2015-02-07 17:24:10 +00:00
|
|
|
#include "py/mpstate.h"
|
2015-01-01 20:27:54 +00:00
|
|
|
#include "py/nlr.h"
|
|
|
|
#include "py/builtin.h"
|
|
|
|
#include "py/objlist.h"
|
|
|
|
#include "py/objtuple.h"
|
|
|
|
#include "py/objstr.h"
|
|
|
|
#include "py/objint.h"
|
|
|
|
#include "py/stream.h"
|
2014-04-13 03:43:18 +00:00
|
|
|
|
2014-05-24 22:03:12 +00:00
|
|
|
#if MICROPY_PY_SYS
|
2014-04-13 03:43:18 +00:00
|
|
|
|
2015-04-22 16:38:05 +00:00
|
|
|
#include "genhdr/mpversion.h"
|
2015-04-21 14:45:04 +00:00
|
|
|
|
2014-08-10 16:50:28 +00:00
|
|
|
/// \module sys - system specific functions
|
|
|
|
|
2015-01-12 22:30:49 +00:00
|
|
|
// defined per port; type of these is irrelevant, just need pointer
|
2015-04-09 10:27:15 +00:00
|
|
|
extern struct _mp_dummy_t mp_sys_stdin_obj;
|
|
|
|
extern struct _mp_dummy_t mp_sys_stdout_obj;
|
|
|
|
extern struct _mp_dummy_t mp_sys_stderr_obj;
|
2015-01-12 22:30:49 +00:00
|
|
|
|
2015-04-11 11:01:39 +00:00
|
|
|
#if MICROPY_PY_IO
|
|
|
|
const mp_print_t mp_sys_stdout_print = {&mp_sys_stdout_obj, (mp_print_strn_t)mp_stream_write};
|
|
|
|
#endif
|
|
|
|
|
2014-08-10 16:50:28 +00:00
|
|
|
/// \constant version - Python language version that this implementation conforms to, as a string
|
|
|
|
STATIC const MP_DEFINE_STR_OBJ(version_obj, "3.4.0");
|
|
|
|
|
2014-08-10 16:53:43 +00:00
|
|
|
/// \constant version_info - Python language version that this implementation conforms to, as a tuple of ints
|
2014-04-13 06:46:58 +00:00
|
|
|
#define I(n) MP_OBJ_NEW_SMALL_INT(n)
|
|
|
|
// TODO: CPython is now at 5-element array, but save 2 els so far...
|
2014-04-13 22:46:45 +00:00
|
|
|
STATIC const mp_obj_tuple_t mp_sys_version_info_obj = {{&mp_type_tuple}, 3, {I(3), I(4), I(0)}};
|
2015-04-21 14:45:04 +00:00
|
|
|
|
|
|
|
// sys.implementation object
|
|
|
|
// this holds the MicroPython version
|
|
|
|
STATIC const mp_obj_tuple_t mp_sys_implementation_version_info_obj = {
|
|
|
|
{&mp_type_tuple},
|
|
|
|
3,
|
|
|
|
{ I(MICROPY_VERSION_MAJOR), I(MICROPY_VERSION_MINOR), I(MICROPY_VERSION_MICRO) }
|
|
|
|
};
|
|
|
|
#if MICROPY_PY_ATTRTUPLE
|
|
|
|
STATIC const qstr impl_fields[] = { MP_QSTR_name, MP_QSTR_version };
|
|
|
|
STATIC MP_DEFINE_ATTRTUPLE(
|
|
|
|
mp_sys_implementation_obj,
|
|
|
|
impl_fields,
|
|
|
|
2,
|
|
|
|
MP_OBJ_NEW_QSTR(MP_QSTR_micropython),
|
|
|
|
(mp_obj_t)&mp_sys_implementation_version_info_obj
|
|
|
|
);
|
|
|
|
#else
|
|
|
|
STATIC const mp_obj_tuple_t mp_sys_implementation_obj = {
|
|
|
|
{&mp_type_tuple},
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
MP_OBJ_NEW_QSTR(MP_QSTR_micropython),
|
|
|
|
(mp_obj_t)&mp_sys_implementation_version_info_obj,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2014-04-13 06:46:58 +00:00
|
|
|
#undef I
|
2014-08-10 16:50:28 +00:00
|
|
|
|
2014-06-07 20:40:04 +00:00
|
|
|
#ifdef MICROPY_PY_SYS_PLATFORM
|
2014-08-10 16:50:28 +00:00
|
|
|
/// \constant platform - the platform that Micro Python is running on
|
2014-06-07 20:40:04 +00:00
|
|
|
STATIC const MP_DEFINE_STR_OBJ(platform_obj, MICROPY_PY_SYS_PLATFORM);
|
|
|
|
#endif
|
2014-04-13 03:43:18 +00:00
|
|
|
|
2014-09-15 14:53:09 +00:00
|
|
|
/// \function exit([retval])
|
|
|
|
/// Raise a `SystemExit` exception. If an argument is given, it is the
|
|
|
|
/// value given to `SystemExit`.
|
|
|
|
STATIC mp_obj_t mp_sys_exit(mp_uint_t n_args, const mp_obj_t *args) {
|
|
|
|
mp_obj_t exc;
|
|
|
|
if (n_args == 0) {
|
|
|
|
exc = mp_obj_new_exception(&mp_type_SystemExit);
|
|
|
|
} else {
|
|
|
|
exc = mp_obj_new_exception_arg1(&mp_type_SystemExit, args[0]);
|
|
|
|
}
|
|
|
|
nlr_raise(exc);
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mp_sys_exit_obj, 0, 1, mp_sys_exit);
|
|
|
|
|
2014-12-06 12:29:09 +00:00
|
|
|
STATIC mp_obj_t mp_sys_print_exception(mp_uint_t n_args, const mp_obj_t *args) {
|
|
|
|
#if MICROPY_PY_IO
|
|
|
|
mp_obj_t stream_obj = &mp_sys_stdout_obj;
|
|
|
|
if (n_args > 1) {
|
|
|
|
stream_obj = args[1];
|
|
|
|
}
|
|
|
|
|
2015-04-09 22:56:15 +00:00
|
|
|
mp_print_t print = {stream_obj, (mp_print_strn_t)mp_stream_write};
|
|
|
|
mp_obj_print_exception(&print, args[0]);
|
2014-12-06 12:29:09 +00:00
|
|
|
#else
|
2015-04-09 22:56:15 +00:00
|
|
|
mp_obj_print_exception(&mp_plat_print, args[0]);
|
2014-12-06 12:29:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mp_sys_print_exception_obj, 1, 2, mp_sys_print_exception);
|
|
|
|
|
2015-04-25 00:17:41 +00:00
|
|
|
#if MICROPY_PY_SYS_EXC_INFO
|
|
|
|
STATIC mp_obj_t mp_sys_exc_info(void) {
|
|
|
|
mp_obj_t cur_exc = MP_STATE_VM(cur_exception);
|
|
|
|
mp_obj_tuple_t *t = mp_obj_new_tuple(3, NULL);
|
|
|
|
|
|
|
|
if (cur_exc == MP_OBJ_NULL) {
|
|
|
|
t->items[0] = mp_const_none;
|
|
|
|
t->items[1] = mp_const_none;
|
|
|
|
t->items[2] = mp_const_none;
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
t->items[0] = mp_obj_get_type(cur_exc);
|
|
|
|
t->items[1] = cur_exc;
|
|
|
|
t->items[2] = mp_const_none;
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_0(mp_sys_exc_info_obj, mp_sys_exc_info);
|
|
|
|
#endif
|
|
|
|
|
2014-04-13 03:43:18 +00:00
|
|
|
STATIC const mp_map_elem_t mp_module_sys_globals_table[] = {
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR_sys) },
|
2014-05-10 13:50:45 +00:00
|
|
|
|
2015-02-07 17:24:10 +00:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_path), (mp_obj_t)&MP_STATE_VM(mp_sys_path_obj) },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_argv), (mp_obj_t)&MP_STATE_VM(mp_sys_argv_obj) },
|
2014-04-13 22:46:45 +00:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_version), (mp_obj_t)&version_obj },
|
2014-04-13 06:46:58 +00:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_version_info), (mp_obj_t)&mp_sys_version_info_obj },
|
2015-04-21 14:45:04 +00:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_implementation), (mp_obj_t)&mp_sys_implementation_obj },
|
2014-06-07 20:40:04 +00:00
|
|
|
#ifdef MICROPY_PY_SYS_PLATFORM
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_platform), (mp_obj_t)&platform_obj },
|
|
|
|
#endif
|
2014-08-10 16:50:28 +00:00
|
|
|
/// \constant byteorder - the byte order of the system ("little" or "big")
|
2014-04-13 06:53:52 +00:00
|
|
|
#if MP_ENDIANNESS_LITTLE
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_byteorder), MP_OBJ_NEW_QSTR(MP_QSTR_little) },
|
|
|
|
#else
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_byteorder), MP_OBJ_NEW_QSTR(MP_QSTR_big) },
|
|
|
|
#endif
|
2014-07-03 13:50:11 +00:00
|
|
|
#if MICROPY_PY_SYS_MAXSIZE
|
|
|
|
#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_NONE
|
|
|
|
// INT_MAX is not representable as small int, as we know that small int
|
|
|
|
// takes one bit for tag. So, we have little choice but to provide this
|
|
|
|
// value. Apps also should be careful to not try to compare sys.maxsize
|
|
|
|
// with some number (which may not fit in available int size), but instead
|
|
|
|
// count number of significant bits in sys.maxsize.
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_maxsize), MP_OBJ_NEW_SMALL_INT(INT_MAX >> 1) },
|
|
|
|
#else
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_maxsize), (mp_obj_t)&mp_maxsize_obj },
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-05-24 22:03:12 +00:00
|
|
|
#if MICROPY_PY_SYS_EXIT
|
2014-08-10 16:50:28 +00:00
|
|
|
// documented per-port
|
2014-05-11 16:35:43 +00:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_exit), (mp_obj_t)&mp_sys_exit_obj },
|
|
|
|
#endif
|
|
|
|
|
2014-05-24 22:03:12 +00:00
|
|
|
#if MICROPY_PY_SYS_STDFILES
|
2014-08-10 16:50:28 +00:00
|
|
|
// documented per-port
|
2014-04-13 03:43:18 +00:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_stdin), (mp_obj_t)&mp_sys_stdin_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_stdout), (mp_obj_t)&mp_sys_stdout_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_stderr), (mp_obj_t)&mp_sys_stderr_obj },
|
2014-04-13 04:00:37 +00:00
|
|
|
#endif
|
2014-12-06 12:29:09 +00:00
|
|
|
|
2015-04-25 00:17:41 +00:00
|
|
|
#if MICROPY_PY_SYS_EXC_INFO
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_exc_info), (mp_obj_t)&mp_sys_exc_info_obj },
|
|
|
|
#endif
|
|
|
|
|
2014-12-06 12:29:09 +00:00
|
|
|
/*
|
|
|
|
* Extensions to CPython
|
|
|
|
*/
|
|
|
|
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_print_exception), (mp_obj_t)&mp_sys_print_exception_obj },
|
2014-04-13 03:43:18 +00:00
|
|
|
};
|
|
|
|
|
2014-11-29 14:39:27 +00:00
|
|
|
STATIC MP_DEFINE_CONST_DICT(mp_module_sys_globals, mp_module_sys_globals_table);
|
2014-04-13 03:43:18 +00:00
|
|
|
|
|
|
|
const mp_obj_module_t mp_module_sys = {
|
|
|
|
.base = { &mp_type_module },
|
|
|
|
.name = MP_QSTR_sys,
|
|
|
|
.globals = (mp_obj_dict_t*)&mp_module_sys_globals,
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|