|
| 1 | +/* |
| 2 | + * This file is part of the MicroPython project, http://micropython.org/ |
| 3 | + * |
| 4 | + * The MIT License (MIT) |
| 5 | + * |
| 6 | + * Copyright (c) 2016 Damien P. George on behalf of Pycom Ltd |
| 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 | + |
| 27 | +#include <stdio.h> |
| 28 | +#include <string.h> |
| 29 | + |
| 30 | +#include "py/runtime.h" |
| 31 | +#include "py/stackctrl.h" |
| 32 | + |
| 33 | +#if MICROPY_PY_THREAD |
| 34 | + |
| 35 | +#include "py/mpthread.h" |
| 36 | + |
| 37 | +#if 0 // print debugging info |
| 38 | +#define DEBUG_PRINT (1) |
| 39 | +#define DEBUG_printf DEBUG_printf |
| 40 | +#else // don't print debugging info |
| 41 | +#define DEBUG_PRINT (0) |
| 42 | +#define DEBUG_printf(...) (void)0 |
| 43 | +#endif |
| 44 | + |
| 45 | +/****************************************************************/ |
| 46 | +// _thread module |
| 47 | + |
| 48 | +STATIC mp_obj_t mod_thread_get_ident(void) { |
| 49 | + return mp_obj_new_int_from_uint((uintptr_t)mp_thread_get_state()); |
| 50 | +} |
| 51 | +STATIC MP_DEFINE_CONST_FUN_OBJ_0(mod_thread_get_ident_obj, mod_thread_get_ident); |
| 52 | + |
| 53 | +typedef struct _thread_entry_args_t { |
| 54 | + mp_obj_t fun; |
| 55 | + size_t n_args; |
| 56 | + size_t n_kw; |
| 57 | + const mp_obj_t *args; |
| 58 | +} thread_entry_args_t; |
| 59 | + |
| 60 | +STATIC void *thread_entry(void *args_in) { |
| 61 | + thread_entry_args_t *args = (thread_entry_args_t*)args_in; |
| 62 | + |
| 63 | + mp_state_thread_t ts; |
| 64 | + mp_thread_set_state(&ts); |
| 65 | + |
| 66 | + mp_stack_set_top(&ts + 1); // need to include ts in root-pointer scan |
| 67 | + mp_stack_set_limit(16 * 1024); // fixed stack limit for now |
| 68 | + |
| 69 | + // TODO set more thread-specific state here: |
| 70 | + // mp_pending_exception? (root pointer) |
| 71 | + // cur_exception (root pointer) |
| 72 | + // dict_locals? (root pointer) uPy doesn't make a new locals dict for functions, just for classes, so it's different to CPy |
| 73 | + |
| 74 | + DEBUG_printf("[thread] start ts=%p args=%p stack=%p\n", &ts, &args, MP_STATE_THREAD(stack_top)); |
| 75 | + |
| 76 | + nlr_buf_t nlr; |
| 77 | + if (nlr_push(&nlr) == 0) { |
| 78 | + mp_call_function_n_kw(args->fun, args->n_args, args->n_kw, args->args); |
| 79 | + nlr_pop(); |
| 80 | + } else { |
| 81 | + // uncaught exception |
| 82 | + // check for SystemExit |
| 83 | + if (mp_obj_is_subclass_fast(mp_obj_get_type((mp_obj_t)nlr.ret_val), &mp_type_SystemExit)) { |
| 84 | + // swallow exception silently |
| 85 | + } else { |
| 86 | + // print exception out |
| 87 | + mp_printf(&mp_plat_print, "Unhandled exception in thread started by "); |
| 88 | + mp_obj_print_helper(&mp_plat_print, args->fun, PRINT_REPR); |
| 89 | + mp_printf(&mp_plat_print, "\n"); |
| 90 | + mp_obj_print_exception(&mp_plat_print, (mp_obj_t)nlr.ret_val); |
| 91 | + } |
| 92 | + } |
| 93 | + |
| 94 | + DEBUG_printf("[thread] finish ts=%p\n", &ts); |
| 95 | + |
| 96 | + return NULL; |
| 97 | +} |
| 98 | + |
| 99 | +STATIC mp_obj_t mod_thread_start_new_thread(size_t n_args, const mp_obj_t *args) { |
| 100 | + mp_uint_t pos_args_len; |
| 101 | + mp_obj_t *pos_args_items; |
| 102 | + mp_obj_get_array(args[1], &pos_args_len, &pos_args_items); |
| 103 | + thread_entry_args_t *th_args = m_new_obj(thread_entry_args_t); |
| 104 | + th_args->fun = args[0]; |
| 105 | + if (n_args == 2) { |
| 106 | + // just position arguments |
| 107 | + th_args->n_args = pos_args_len; |
| 108 | + th_args->n_kw = 0; |
| 109 | + th_args->args = pos_args_items; |
| 110 | + } else { |
| 111 | + // positional and keyword arguments |
| 112 | + if (mp_obj_get_type(args[2]) != &mp_type_dict) { |
| 113 | + nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "expecting a dict for keyword args")); |
| 114 | + } |
| 115 | + mp_map_t *map = &((mp_obj_dict_t*)MP_OBJ_TO_PTR(args[2]))->map; |
| 116 | + th_args->n_args = pos_args_len; |
| 117 | + th_args->n_kw = map->used; |
| 118 | + mp_obj_t *all_args = m_new(mp_obj_t, th_args->n_args + 2 * th_args->n_kw); |
| 119 | + memcpy(all_args, pos_args_items, pos_args_len * sizeof(mp_obj_t)); |
| 120 | + for (size_t i = 0, n = pos_args_len; i < map->alloc; ++i) { |
| 121 | + if (MP_MAP_SLOT_IS_FILLED(map, i)) { |
| 122 | + all_args[n++] = map->table[i].key; |
| 123 | + all_args[n++] = map->table[i].value; |
| 124 | + } |
| 125 | + } |
| 126 | + th_args->args = all_args; |
| 127 | + } |
| 128 | + // TODO implement setting thread stack size |
| 129 | + mp_thread_create(thread_entry, th_args); |
| 130 | + return mp_const_none; |
| 131 | +} |
| 132 | +STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mod_thread_start_new_thread_obj, 2, 3, mod_thread_start_new_thread); |
| 133 | + |
| 134 | +STATIC const mp_rom_map_elem_t mp_module_thread_globals_table[] = { |
| 135 | + { MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR__thread) }, |
| 136 | + { MP_ROM_QSTR(MP_QSTR_get_ident), MP_ROM_PTR(&mod_thread_get_ident_obj) }, |
| 137 | + { MP_ROM_QSTR(MP_QSTR_start_new_thread), MP_ROM_PTR(&mod_thread_start_new_thread_obj) }, |
| 138 | +}; |
| 139 | + |
| 140 | +STATIC MP_DEFINE_CONST_DICT(mp_module_thread_globals, mp_module_thread_globals_table); |
| 141 | + |
| 142 | +const mp_obj_module_t mp_module_thread = { |
| 143 | + .base = { &mp_type_module }, |
| 144 | + .name = MP_QSTR__thread, |
| 145 | + .globals = (mp_obj_dict_t*)&mp_module_thread_globals, |
| 146 | +}; |
| 147 | + |
| 148 | +#endif // MICROPY_PY_THREAD |
0 commit comments