Damien George | 04b9147 | 2014-05-03 23:27:38 +0100 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the Micro Python project, http://micropython.org/ |
| 3 | * |
| 4 | * The MIT License (MIT) |
| 5 | * |
| 6 | * Copyright (c) 2013, 2014 Damien P. George |
| 7 | * |
| 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 9 | * of this software and associated documentation files (the "Software"), to deal |
| 10 | * in the Software without restriction, including without limitation the rights |
| 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 12 | * copies of the Software, and to permit persons to whom the Software is |
| 13 | * furnished to do so, subject to the following conditions: |
| 14 | * |
| 15 | * The above copyright notice and this permission notice shall be included in |
| 16 | * all copies or substantial portions of the Software. |
| 17 | * |
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 24 | * THE SOFTWARE. |
| 25 | */ |
| 26 | |
Damien George | d02c6d8 | 2014-01-15 22:14:03 +0000 | [diff] [blame] | 27 | #include <stdint.h> |
Damien George | d02c6d8 | 2014-01-15 22:14:03 +0000 | [diff] [blame] | 28 | |
Damien George | 51dfcb4 | 2015-01-01 20:27:54 +0000 | [diff] [blame] | 29 | #include "py/nlr.h" |
| 30 | #include "py/objfun.h" |
| 31 | #include "py/compile.h" |
| 32 | #include "py/runtime.h" |
| 33 | #include "py/builtin.h" |
Damien George | d02c6d8 | 2014-01-15 22:14:03 +0000 | [diff] [blame] | 34 | |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 35 | #if MICROPY_PY_BUILTINS_COMPILE |
| 36 | |
| 37 | typedef struct _mp_obj_code_t { |
| 38 | mp_obj_base_t base; |
| 39 | mp_obj_t module_fun; |
| 40 | } mp_obj_code_t; |
| 41 | |
| 42 | STATIC const mp_obj_type_t mp_type_code = { |
| 43 | { &mp_type_type }, |
| 44 | .name = MP_QSTR_code, |
| 45 | }; |
| 46 | |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 47 | STATIC mp_obj_t code_execute(mp_obj_code_t *self, mp_obj_dict_t *globals, mp_obj_dict_t *locals) { |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 48 | // save context and set new context |
| 49 | mp_obj_dict_t *old_globals = mp_globals_get(); |
| 50 | mp_obj_dict_t *old_locals = mp_locals_get(); |
| 51 | mp_globals_set(globals); |
| 52 | mp_locals_set(locals); |
| 53 | |
| 54 | // a bit of a hack: fun_bc will re-set globals, so need to make sure it's |
| 55 | // the correct one |
| 56 | if (MP_OBJ_IS_TYPE(self->module_fun, &mp_type_fun_bc)) { |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 57 | mp_obj_fun_bc_t *fun_bc = MP_OBJ_TO_PTR(self->module_fun); |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 58 | fun_bc->globals = globals; |
| 59 | } |
| 60 | |
| 61 | // execute code |
| 62 | nlr_buf_t nlr; |
| 63 | if (nlr_push(&nlr) == 0) { |
| 64 | mp_obj_t ret = mp_call_function_0(self->module_fun); |
| 65 | nlr_pop(); |
| 66 | mp_globals_set(old_globals); |
| 67 | mp_locals_set(old_locals); |
| 68 | return ret; |
| 69 | } else { |
| 70 | // exception; restore context and re-raise same exception |
| 71 | mp_globals_set(old_globals); |
| 72 | mp_locals_set(old_locals); |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 73 | nlr_jump(nlr.ret_val); |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 74 | } |
| 75 | } |
| 76 | |
Damien George | 4b72b3a | 2016-01-03 14:21:40 +0000 | [diff] [blame] | 77 | STATIC mp_obj_t mp_builtin_compile(size_t n_args, const mp_obj_t *args) { |
Damien George | ff8dd3f | 2015-01-20 12:47:20 +0000 | [diff] [blame] | 78 | (void)n_args; |
| 79 | |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 80 | // get the source |
Damien George | d182b98 | 2014-08-30 14:19:41 +0100 | [diff] [blame] | 81 | mp_uint_t str_len; |
Damien George | c4d0868 | 2014-10-05 20:13:34 +0100 | [diff] [blame] | 82 | const char *str = mp_obj_str_get_data(args[0], &str_len); |
Damien George | d02c6d8 | 2014-01-15 22:14:03 +0000 | [diff] [blame] | 83 | |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 84 | // get the filename |
| 85 | qstr filename = mp_obj_str_get_qstr(args[1]); |
Damien George | d02c6d8 | 2014-01-15 22:14:03 +0000 | [diff] [blame] | 86 | |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 87 | // create the lexer |
| 88 | mp_lexer_t *lex = mp_lexer_new_from_str_len(filename, str, str_len, 0); |
| 89 | |
| 90 | // get the compile mode |
| 91 | qstr mode = mp_obj_str_get_qstr(args[2]); |
| 92 | mp_parse_input_kind_t parse_input_kind; |
| 93 | switch (mode) { |
| 94 | case MP_QSTR_single: parse_input_kind = MP_PARSE_SINGLE_INPUT; break; |
| 95 | case MP_QSTR_exec: parse_input_kind = MP_PARSE_FILE_INPUT; break; |
| 96 | case MP_QSTR_eval: parse_input_kind = MP_PARSE_EVAL_INPUT; break; |
| 97 | default: |
Damien George | 94c41bb | 2017-03-28 22:37:26 +1100 | [diff] [blame^] | 98 | mp_raise_ValueError("bad compile mode"); |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | mp_obj_code_t *code = m_new_obj(mp_obj_code_t); |
| 102 | code->base.type = &mp_type_code; |
| 103 | code->module_fun = mp_parse_compile_execute(lex, parse_input_kind, NULL, NULL); |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 104 | return MP_OBJ_FROM_PTR(code); |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 105 | } |
| 106 | MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_compile_obj, 3, 6, mp_builtin_compile); |
| 107 | |
| 108 | #endif // MICROPY_PY_BUILTINS_COMPILE |
| 109 | |
Damien George | dd5353a | 2015-12-18 12:35:44 +0000 | [diff] [blame] | 110 | #if MICROPY_PY_BUILTINS_EVAL_EXEC |
| 111 | |
Damien George | 4b72b3a | 2016-01-03 14:21:40 +0000 | [diff] [blame] | 112 | STATIC mp_obj_t eval_exec_helper(size_t n_args, const mp_obj_t *args, mp_parse_input_kind_t parse_input_kind) { |
Damien George | c4d0868 | 2014-10-05 20:13:34 +0100 | [diff] [blame] | 113 | // work out the context |
| 114 | mp_obj_dict_t *globals = mp_globals_get(); |
| 115 | mp_obj_dict_t *locals = mp_locals_get(); |
Paul Sokolovsky | 2aa217b | 2014-02-13 00:36:54 +0200 | [diff] [blame] | 116 | if (n_args > 1) { |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 117 | globals = MP_OBJ_TO_PTR(args[1]); |
Paul Sokolovsky | 2aa217b | 2014-02-13 00:36:54 +0200 | [diff] [blame] | 118 | if (n_args > 2) { |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 119 | locals = MP_OBJ_TO_PTR(args[2]); |
Paul Sokolovsky | 2aa217b | 2014-02-13 00:36:54 +0200 | [diff] [blame] | 120 | } else { |
| 121 | locals = globals; |
| 122 | } |
Paul Sokolovsky | 2aa217b | 2014-02-13 00:36:54 +0200 | [diff] [blame] | 123 | } |
Damien George | c4d0868 | 2014-10-05 20:13:34 +0100 | [diff] [blame] | 124 | |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 125 | #if MICROPY_PY_BUILTINS_COMPILE |
| 126 | if (MP_OBJ_IS_TYPE(args[0], &mp_type_code)) { |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 127 | return code_execute(MP_OBJ_TO_PTR(args[0]), globals, locals); |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 128 | } |
| 129 | #endif |
| 130 | |
| 131 | mp_uint_t str_len; |
| 132 | const char *str = mp_obj_str_get_data(args[0], &str_len); |
| 133 | |
| 134 | // create the lexer |
Damien George | 2a3e2b9 | 2014-12-19 13:36:17 +0000 | [diff] [blame] | 135 | // MP_PARSE_SINGLE_INPUT is used to indicate a file input |
| 136 | mp_lexer_t *lex; |
| 137 | if (MICROPY_PY_BUILTINS_EXECFILE && parse_input_kind == MP_PARSE_SINGLE_INPUT) { |
| 138 | lex = mp_lexer_new_from_file(str); |
| 139 | parse_input_kind = MP_PARSE_FILE_INPUT; |
| 140 | } else { |
| 141 | lex = mp_lexer_new_from_str_len(MP_QSTR__lt_string_gt_, str, str_len, 0); |
| 142 | } |
Damien George | c9fc620 | 2014-10-25 21:59:14 +0100 | [diff] [blame] | 143 | |
Damien George | c4d0868 | 2014-10-05 20:13:34 +0100 | [diff] [blame] | 144 | return mp_parse_compile_execute(lex, parse_input_kind, globals, locals); |
Damien George | ca47679 | 2014-02-03 22:44:10 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Damien George | 4b72b3a | 2016-01-03 14:21:40 +0000 | [diff] [blame] | 147 | STATIC mp_obj_t mp_builtin_eval(size_t n_args, const mp_obj_t *args) { |
Damien George | c4d0868 | 2014-10-05 20:13:34 +0100 | [diff] [blame] | 148 | return eval_exec_helper(n_args, args, MP_PARSE_EVAL_INPUT); |
| 149 | } |
| 150 | MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_eval_obj, 1, 3, mp_builtin_eval); |
| 151 | |
Damien George | 4b72b3a | 2016-01-03 14:21:40 +0000 | [diff] [blame] | 152 | STATIC mp_obj_t mp_builtin_exec(size_t n_args, const mp_obj_t *args) { |
Damien George | c4d0868 | 2014-10-05 20:13:34 +0100 | [diff] [blame] | 153 | return eval_exec_helper(n_args, args, MP_PARSE_FILE_INPUT); |
| 154 | } |
Paul Sokolovsky | 2aa217b | 2014-02-13 00:36:54 +0200 | [diff] [blame] | 155 | MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_exec_obj, 1, 3, mp_builtin_exec); |
Damien George | 2a3e2b9 | 2014-12-19 13:36:17 +0000 | [diff] [blame] | 156 | |
Damien George | dd5353a | 2015-12-18 12:35:44 +0000 | [diff] [blame] | 157 | #endif // MICROPY_PY_BUILTINS_EVAL_EXEC |
| 158 | |
Damien George | 2a3e2b9 | 2014-12-19 13:36:17 +0000 | [diff] [blame] | 159 | #if MICROPY_PY_BUILTINS_EXECFILE |
Damien George | 4b72b3a | 2016-01-03 14:21:40 +0000 | [diff] [blame] | 160 | STATIC mp_obj_t mp_builtin_execfile(size_t n_args, const mp_obj_t *args) { |
Damien George | 2a3e2b9 | 2014-12-19 13:36:17 +0000 | [diff] [blame] | 161 | // MP_PARSE_SINGLE_INPUT is used to indicate a file input |
| 162 | return eval_exec_helper(n_args, args, MP_PARSE_SINGLE_INPUT); |
| 163 | } |
| 164 | MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_execfile_obj, 1, 3, mp_builtin_execfile); |
| 165 | #endif |