2014-05-03 18:27:38 -04:00
|
|
|
/*
|
2017-06-30 03:22:17 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 18:27:38 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
py: Automatically provide weak links from "foo" to "ufoo" module name.
This commit implements automatic module weak links for all built-in
modules, by searching for "ufoo" in the built-in module list if "foo"
cannot be found. This means that all modules named "ufoo" are always
available as "foo". Also, a port can no longer add any other weak links,
which makes strict the definition of a weak link.
It saves some code size (about 100-200 bytes) on ports that previously had
lots of weak links.
Some changes from the previous behaviour:
- It doesn't intern the non-u module names (eg "foo" is not interned),
which saves code size, but will mean that "import foo" creates a new qstr
(namely "foo") in RAM (unless the importing module is frozen).
- help('modules') no longer lists non-u module names, only the u-variants;
this reduces duplication in the help listing.
Weak links are effectively the same as having a set of symbolic links on
the filesystem that is searched last. So an "import foo" will search
built-in modules first, then all paths in sys.path, then weak links last,
importing "ufoo" if it exists. Thus a file called "foo.py" somewhere in
sys.path will still have precedence over the weak link of "foo" to "ufoo".
See issues: #1740, #4449, #5229, #5241.
2019-10-21 10:06:34 -04:00
|
|
|
* Copyright (c) 2013-2019 Damien P. George
|
2019-05-14 08:51:57 -04:00
|
|
|
* Copyright (c) 2014-2015 Paul Sokolovsky
|
2014-05-03 18:27:38 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-01-02 16:30:26 -05:00
|
|
|
#include <stdlib.h>
|
py: Automatically provide weak links from "foo" to "ufoo" module name.
This commit implements automatic module weak links for all built-in
modules, by searching for "ufoo" in the built-in module list if "foo"
cannot be found. This means that all modules named "ufoo" are always
available as "foo". Also, a port can no longer add any other weak links,
which makes strict the definition of a weak link.
It saves some code size (about 100-200 bytes) on ports that previously had
lots of weak links.
Some changes from the previous behaviour:
- It doesn't intern the non-u module names (eg "foo" is not interned),
which saves code size, but will mean that "import foo" creates a new qstr
(namely "foo") in RAM (unless the importing module is frozen).
- help('modules') no longer lists non-u module names, only the u-variants;
this reduces duplication in the help listing.
Weak links are effectively the same as having a set of symbolic links on
the filesystem that is searched last. So an "import foo" will search
built-in modules first, then all paths in sys.path, then weak links last,
importing "ufoo" if it exists. Thus a file called "foo.py" somewhere in
sys.path will still have precedence over the weak link of "foo" to "ufoo".
See issues: #1740, #4449, #5229, #5241.
2019-10-21 10:06:34 -04:00
|
|
|
#include <string.h>
|
2014-01-02 16:30:26 -05:00
|
|
|
#include <assert.h>
|
|
|
|
|
2015-01-01 15:27:54 -05:00
|
|
|
#include "py/objmodule.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/builtin.h"
|
2014-03-25 10:18:18 -04:00
|
|
|
|
2018-12-12 00:50:55 -05:00
|
|
|
#include "genhdr/moduledefs.h"
|
|
|
|
|
2020-02-25 23:24:09 -05:00
|
|
|
#if MICROPY_MODULE_BUILTIN_INIT
|
|
|
|
STATIC void mp_module_call_init(mp_obj_t module_name, mp_obj_t module_obj);
|
|
|
|
#endif
|
|
|
|
|
2015-04-09 18:56:15 -04:00
|
|
|
STATIC void module_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
|
2015-01-20 07:47:20 -05:00
|
|
|
(void)kind;
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_module_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-09-08 05:45:23 -04:00
|
|
|
|
2016-09-20 20:52:53 -04:00
|
|
|
const char *module_name = "";
|
|
|
|
mp_map_elem_t *elem = mp_map_lookup(&self->globals->map, MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_MAP_LOOKUP);
|
|
|
|
if (elem != NULL) {
|
|
|
|
module_name = mp_obj_str_get_str(elem->value);
|
|
|
|
}
|
|
|
|
|
2014-09-08 05:45:23 -04:00
|
|
|
#if MICROPY_PY___FILE__
|
|
|
|
// If we store __file__ to imported modules then try to lookup this
|
|
|
|
// symbol to give more information about the module.
|
2016-09-20 20:52:53 -04:00
|
|
|
elem = mp_map_lookup(&self->globals->map, MP_OBJ_NEW_QSTR(MP_QSTR___file__), MP_MAP_LOOKUP);
|
2014-09-08 05:45:23 -04:00
|
|
|
if (elem != NULL) {
|
2016-09-20 20:52:53 -04:00
|
|
|
mp_printf(print, "<module '%s' from '%s'>", module_name, mp_obj_str_get_str(elem->value));
|
2014-09-08 05:45:23 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-09-20 20:52:53 -04:00
|
|
|
mp_printf(print, "<module '%s'>", module_name);
|
2014-01-02 16:30:26 -05:00
|
|
|
}
|
|
|
|
|
2015-04-01 10:10:50 -04:00
|
|
|
STATIC void module_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_module_t *self = MP_OBJ_TO_PTR(self_in);
|
2015-04-01 10:10:50 -04:00
|
|
|
if (dest[0] == MP_OBJ_NULL) {
|
|
|
|
// load attribute
|
|
|
|
mp_map_elem_t *elem = mp_map_lookup(&self->globals->map, MP_OBJ_NEW_QSTR(attr), MP_MAP_LOOKUP);
|
|
|
|
if (elem != NULL) {
|
|
|
|
dest[0] = elem->value;
|
2018-10-22 12:34:29 -04:00
|
|
|
#if MICROPY_MODULE_GETATTR
|
|
|
|
} else if (attr != MP_QSTR___getattr__) {
|
|
|
|
elem = mp_map_lookup(&self->globals->map, MP_OBJ_NEW_QSTR(MP_QSTR___getattr__), MP_MAP_LOOKUP);
|
|
|
|
if (elem != NULL) {
|
|
|
|
dest[0] = mp_call_function_1(elem->value, MP_OBJ_NEW_QSTR(attr));
|
|
|
|
}
|
|
|
|
#endif
|
2014-12-09 11:19:48 -05:00
|
|
|
}
|
2014-04-08 16:11:49 -04:00
|
|
|
} else {
|
2015-04-01 10:10:50 -04:00
|
|
|
// delete/store attribute
|
|
|
|
mp_obj_dict_t *dict = self->globals;
|
|
|
|
if (dict->map.is_fixed) {
|
|
|
|
#if MICROPY_CAN_OVERRIDE_BUILTINS
|
|
|
|
if (dict == &mp_module_builtins_globals) {
|
|
|
|
if (MP_STATE_VM(mp_module_builtins_override_dict) == NULL) {
|
2015-11-27 12:01:44 -05:00
|
|
|
MP_STATE_VM(mp_module_builtins_override_dict) = MP_OBJ_TO_PTR(mp_obj_new_dict(1));
|
2015-04-01 10:10:50 -04:00
|
|
|
}
|
|
|
|
dict = MP_STATE_VM(mp_module_builtins_override_dict);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
// can't delete or store to fixed map
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dest[1] == MP_OBJ_NULL) {
|
|
|
|
// delete attribute
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_dict_delete(MP_OBJ_FROM_PTR(dict), MP_OBJ_NEW_QSTR(attr));
|
2015-04-01 10:10:50 -04:00
|
|
|
} else {
|
|
|
|
// store attribute
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), MP_OBJ_NEW_QSTR(attr), dest[1]);
|
2015-04-01 10:10:50 -04:00
|
|
|
}
|
|
|
|
dest[0] = MP_OBJ_NULL; // indicate success
|
2014-04-08 16:11:49 -04:00
|
|
|
}
|
2014-01-09 15:57:50 -05:00
|
|
|
}
|
|
|
|
|
2014-03-08 10:24:39 -05:00
|
|
|
const mp_obj_type_t mp_type_module = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_module,
|
2014-01-07 10:58:30 -05:00
|
|
|
.print = module_print,
|
2015-04-01 10:10:50 -04:00
|
|
|
.attr = module_attr,
|
2014-01-02 16:30:26 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_module(qstr module_name) {
|
2015-12-04 17:09:10 -05:00
|
|
|
mp_map_t *mp_loaded_modules_map = &MP_STATE_VM(mp_loaded_modules_dict).map;
|
|
|
|
mp_map_elem_t *el = mp_map_lookup(mp_loaded_modules_map, MP_OBJ_NEW_QSTR(module_name), MP_MAP_LOOKUP_ADD_IF_NOT_FOUND);
|
2014-01-19 17:03:34 -05:00
|
|
|
// We could error out if module already exists, but let C extensions
|
|
|
|
// add new members to existing modules.
|
|
|
|
if (el->value != MP_OBJ_NULL) {
|
|
|
|
return el->value;
|
|
|
|
}
|
|
|
|
|
2014-03-08 10:24:39 -05:00
|
|
|
// create new module object
|
2014-01-02 16:30:26 -05:00
|
|
|
mp_obj_module_t *o = m_new_obj(mp_obj_module_t);
|
2014-03-08 10:24:39 -05:00
|
|
|
o->base.type = &mp_type_module;
|
2015-11-27 12:01:44 -05:00
|
|
|
o->globals = MP_OBJ_TO_PTR(mp_obj_new_dict(MICROPY_MODULE_DICT_SIZE));
|
2014-03-08 10:24:39 -05:00
|
|
|
|
|
|
|
// store __name__ entry in the module
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_dict_store(MP_OBJ_FROM_PTR(o->globals), MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(module_name));
|
2014-03-08 10:24:39 -05:00
|
|
|
|
|
|
|
// store the new module into the slot in the global dict holding all modules
|
2015-11-27 12:01:44 -05:00
|
|
|
el->value = MP_OBJ_FROM_PTR(o);
|
2014-03-08 10:24:39 -05:00
|
|
|
|
|
|
|
// return the new module
|
2015-11-27 12:01:44 -05:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-01-02 16:30:26 -05:00
|
|
|
}
|
|
|
|
|
2014-03-25 10:18:18 -04:00
|
|
|
/******************************************************************************/
|
|
|
|
// Global module table and related functions
|
|
|
|
|
2015-11-27 08:38:15 -05:00
|
|
|
STATIC const mp_rom_map_elem_t mp_builtin_module_table[] = {
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___main__), MP_ROM_PTR(&mp_module___main__) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_builtins), MP_ROM_PTR(&mp_module_builtins) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_micropython), MP_ROM_PTR(&mp_module_micropython) },
|
2014-12-09 11:19:48 -05:00
|
|
|
|
|
|
|
#if MICROPY_PY_IO
|
2016-05-02 06:56:33 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uio), MP_ROM_PTR(&mp_module_io) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
#if MICROPY_PY_COLLECTIONS
|
2016-05-02 06:57:46 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ucollections), MP_ROM_PTR(&mp_module_collections) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
#if MICROPY_PY_STRUCT
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ustruct), MP_ROM_PTR(&mp_module_ustruct) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
|
|
|
#if MICROPY_PY_MATH
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_math), MP_ROM_PTR(&mp_module_math) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
2015-12-06 17:18:44 -05:00
|
|
|
#if MICROPY_PY_BUILTINS_COMPLEX && MICROPY_PY_CMATH
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_cmath), MP_ROM_PTR(&mp_module_cmath) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if MICROPY_PY_SYS
|
2020-06-18 05:19:14 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_usys), MP_ROM_PTR(&mp_module_sys) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
#if MICROPY_PY_GC && MICROPY_ENABLE_GC
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_gc), MP_ROM_PTR(&mp_module_gc) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
2016-04-22 18:52:33 -04:00
|
|
|
#if MICROPY_PY_THREAD
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR__thread), MP_ROM_PTR(&mp_module_thread) },
|
|
|
|
#endif
|
2014-12-09 11:19:48 -05:00
|
|
|
|
|
|
|
// extmod modules
|
|
|
|
|
2020-03-12 01:46:20 -04:00
|
|
|
#if MICROPY_PY_UASYNCIO
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR__uasyncio), MP_ROM_PTR(&mp_module_uasyncio) },
|
|
|
|
#endif
|
2016-05-10 05:54:25 -04:00
|
|
|
#if MICROPY_PY_UERRNO
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uerrno), MP_ROM_PTR(&mp_module_uerrno) },
|
|
|
|
#endif
|
2014-12-09 11:19:48 -05:00
|
|
|
#if MICROPY_PY_UCTYPES
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uctypes), MP_ROM_PTR(&mp_module_uctypes) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
#if MICROPY_PY_UZLIB
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uzlib), MP_ROM_PTR(&mp_module_uzlib) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
#if MICROPY_PY_UJSON
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ujson), MP_ROM_PTR(&mp_module_ujson) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
#if MICROPY_PY_URE
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ure), MP_ROM_PTR(&mp_module_ure) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
|
|
|
#if MICROPY_PY_UHEAPQ
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uheapq), MP_ROM_PTR(&mp_module_uheapq) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
2016-12-21 16:29:32 -05:00
|
|
|
#if MICROPY_PY_UTIMEQ
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_utimeq), MP_ROM_PTR(&mp_module_utimeq) },
|
|
|
|
#endif
|
2014-12-09 11:19:48 -05:00
|
|
|
#if MICROPY_PY_UHASHLIB
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uhashlib), MP_ROM_PTR(&mp_module_uhashlib) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
2018-01-07 08:13:56 -05:00
|
|
|
#if MICROPY_PY_UCRYPTOLIB
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ucryptolib), MP_ROM_PTR(&mp_module_ucryptolib) },
|
|
|
|
#endif
|
2014-12-09 11:19:48 -05:00
|
|
|
#if MICROPY_PY_UBINASCII
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ubinascii), MP_ROM_PTR(&mp_module_ubinascii) },
|
2014-12-09 11:19:48 -05:00
|
|
|
#endif
|
2016-01-17 05:10:28 -05:00
|
|
|
#if MICROPY_PY_URANDOM
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_urandom), MP_ROM_PTR(&mp_module_urandom) },
|
|
|
|
#endif
|
2016-11-20 15:49:45 -05:00
|
|
|
#if MICROPY_PY_USELECT
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uselect), MP_ROM_PTR(&mp_module_uselect) },
|
|
|
|
#endif
|
2015-10-06 11:10:00 -04:00
|
|
|
#if MICROPY_PY_USSL
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ussl), MP_ROM_PTR(&mp_module_ussl) },
|
2015-10-06 11:10:00 -04:00
|
|
|
#endif
|
2015-10-26 17:04:33 -04:00
|
|
|
#if MICROPY_PY_LWIP
|
2015-11-27 08:38:15 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_lwip), MP_ROM_PTR(&mp_module_lwip) },
|
2015-10-26 17:04:33 -04:00
|
|
|
#endif
|
2019-02-10 15:35:18 -05:00
|
|
|
#if MICROPY_PY_UWEBSOCKET
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uwebsocket), MP_ROM_PTR(&mp_module_uwebsocket) },
|
2016-03-24 13:14:12 -04:00
|
|
|
#endif
|
2016-04-28 17:52:52 -04:00
|
|
|
#if MICROPY_PY_WEBREPL
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR__webrepl), MP_ROM_PTR(&mp_module_webrepl) },
|
|
|
|
#endif
|
2016-04-08 06:08:37 -04:00
|
|
|
#if MICROPY_PY_FRAMEBUF
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_framebuf), MP_ROM_PTR(&mp_module_framebuf) },
|
|
|
|
#endif
|
2016-06-14 17:52:45 -04:00
|
|
|
#if MICROPY_PY_BTREE
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_btree), MP_ROM_PTR(&mp_module_btree) },
|
|
|
|
#endif
|
2019-10-22 02:03:59 -04:00
|
|
|
#if MICROPY_PY_BLUETOOTH
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ubluetooth), MP_ROM_PTR(&mp_module_ubluetooth) },
|
|
|
|
#endif
|
2021-08-29 12:58:31 -04:00
|
|
|
#if MICROPY_PY_UPLATFORM
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uplatform), MP_ROM_PTR(&mp_module_uplatform) },
|
|
|
|
#endif
|
2014-12-09 11:19:48 -05:00
|
|
|
|
|
|
|
// extra builtin modules as defined by a port
|
|
|
|
MICROPY_PORT_BUILTIN_MODULES
|
2019-02-17 22:58:44 -05:00
|
|
|
|
|
|
|
#ifdef MICROPY_REGISTERED_MODULES
|
|
|
|
// builtin modules declared with MP_REGISTER_MODULE()
|
|
|
|
MICROPY_REGISTERED_MODULES
|
|
|
|
#endif
|
2014-12-09 11:19:48 -05:00
|
|
|
};
|
|
|
|
|
2017-01-19 18:21:30 -05:00
|
|
|
MP_DEFINE_CONST_MAP(mp_builtin_module_map, mp_builtin_module_table);
|
|
|
|
|
2020-02-25 23:24:09 -05:00
|
|
|
// Tries to find a loaded module, otherwise attempts to load a builtin, otherwise MP_OBJ_NULL.
|
|
|
|
mp_obj_t mp_module_get_loaded_or_builtin(qstr module_name) {
|
|
|
|
// First try loaded modules.
|
|
|
|
mp_map_elem_t *elem = mp_map_lookup(&MP_STATE_VM(mp_loaded_modules_dict).map, MP_OBJ_NEW_QSTR(module_name), MP_MAP_LOOKUP);
|
2014-03-08 10:24:39 -05:00
|
|
|
|
2020-02-25 23:24:09 -05:00
|
|
|
if (!elem) {
|
|
|
|
#if MICROPY_MODULE_WEAK_LINKS
|
|
|
|
return mp_module_get_builtin(module_name);
|
|
|
|
#else
|
|
|
|
// Otherwise try builtin.
|
|
|
|
elem = mp_map_lookup((mp_map_t *)&mp_builtin_module_map, MP_OBJ_NEW_QSTR(module_name), MP_MAP_LOOKUP);
|
|
|
|
if (!elem) {
|
2014-04-05 17:36:42 -04:00
|
|
|
return MP_OBJ_NULL;
|
|
|
|
}
|
2014-03-08 10:24:39 -05:00
|
|
|
|
2020-02-25 23:24:09 -05:00
|
|
|
#if MICROPY_MODULE_BUILTIN_INIT
|
|
|
|
// If found, it's a newly loaded built-in, so init it.
|
|
|
|
mp_module_call_init(MP_OBJ_NEW_QSTR(module_name), elem->value);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
2014-03-24 18:25:27 -04:00
|
|
|
|
2020-02-25 23:24:09 -05:00
|
|
|
return elem->value;
|
2014-01-02 16:30:26 -05:00
|
|
|
}
|
2018-02-20 01:56:58 -05:00
|
|
|
|
py: Automatically provide weak links from "foo" to "ufoo" module name.
This commit implements automatic module weak links for all built-in
modules, by searching for "ufoo" in the built-in module list if "foo"
cannot be found. This means that all modules named "ufoo" are always
available as "foo". Also, a port can no longer add any other weak links,
which makes strict the definition of a weak link.
It saves some code size (about 100-200 bytes) on ports that previously had
lots of weak links.
Some changes from the previous behaviour:
- It doesn't intern the non-u module names (eg "foo" is not interned),
which saves code size, but will mean that "import foo" creates a new qstr
(namely "foo") in RAM (unless the importing module is frozen).
- help('modules') no longer lists non-u module names, only the u-variants;
this reduces duplication in the help listing.
Weak links are effectively the same as having a set of symbolic links on
the filesystem that is searched last. So an "import foo" will search
built-in modules first, then all paths in sys.path, then weak links last,
importing "ufoo" if it exists. Thus a file called "foo.py" somewhere in
sys.path will still have precedence over the weak link of "foo" to "ufoo".
See issues: #1740, #4449, #5229, #5241.
2019-10-21 10:06:34 -04:00
|
|
|
#if MICROPY_MODULE_WEAK_LINKS
|
2020-02-25 23:24:09 -05:00
|
|
|
// Tries to find a loaded module, otherwise attempts to load a builtin, otherwise MP_OBJ_NULL.
|
|
|
|
mp_obj_t mp_module_get_builtin(qstr module_name) {
|
|
|
|
// Try builtin.
|
|
|
|
mp_map_elem_t *elem = mp_map_lookup((mp_map_t *)&mp_builtin_module_map, MP_OBJ_NEW_QSTR(module_name), MP_MAP_LOOKUP);
|
|
|
|
if (!elem) {
|
|
|
|
return MP_OBJ_NULL;
|
py: Automatically provide weak links from "foo" to "ufoo" module name.
This commit implements automatic module weak links for all built-in
modules, by searching for "ufoo" in the built-in module list if "foo"
cannot be found. This means that all modules named "ufoo" are always
available as "foo". Also, a port can no longer add any other weak links,
which makes strict the definition of a weak link.
It saves some code size (about 100-200 bytes) on ports that previously had
lots of weak links.
Some changes from the previous behaviour:
- It doesn't intern the non-u module names (eg "foo" is not interned),
which saves code size, but will mean that "import foo" creates a new qstr
(namely "foo") in RAM (unless the importing module is frozen).
- help('modules') no longer lists non-u module names, only the u-variants;
this reduces duplication in the help listing.
Weak links are effectively the same as having a set of symbolic links on
the filesystem that is searched last. So an "import foo" will search
built-in modules first, then all paths in sys.path, then weak links last,
importing "ufoo" if it exists. Thus a file called "foo.py" somewhere in
sys.path will still have precedence over the weak link of "foo" to "ufoo".
See issues: #1740, #4449, #5229, #5241.
2019-10-21 10:06:34 -04:00
|
|
|
}
|
2020-02-25 23:24:09 -05:00
|
|
|
|
|
|
|
#if MICROPY_MODULE_BUILTIN_INIT
|
|
|
|
// If found, it's a newly loaded built-in, so init it.
|
|
|
|
mp_module_call_init(MP_OBJ_NEW_QSTR(module_name), elem->value);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return elem->value;
|
py: Automatically provide weak links from "foo" to "ufoo" module name.
This commit implements automatic module weak links for all built-in
modules, by searching for "ufoo" in the built-in module list if "foo"
cannot be found. This means that all modules named "ufoo" are always
available as "foo". Also, a port can no longer add any other weak links,
which makes strict the definition of a weak link.
It saves some code size (about 100-200 bytes) on ports that previously had
lots of weak links.
Some changes from the previous behaviour:
- It doesn't intern the non-u module names (eg "foo" is not interned),
which saves code size, but will mean that "import foo" creates a new qstr
(namely "foo") in RAM (unless the importing module is frozen).
- help('modules') no longer lists non-u module names, only the u-variants;
this reduces duplication in the help listing.
Weak links are effectively the same as having a set of symbolic links on
the filesystem that is searched last. So an "import foo" will search
built-in modules first, then all paths in sys.path, then weak links last,
importing "ufoo" if it exists. Thus a file called "foo.py" somewhere in
sys.path will still have precedence over the weak link of "foo" to "ufoo".
See issues: #1740, #4449, #5229, #5241.
2019-10-21 10:06:34 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-02-20 01:56:58 -05:00
|
|
|
#if MICROPY_MODULE_BUILTIN_INIT
|
2020-02-25 23:24:09 -05:00
|
|
|
STATIC void mp_module_register(mp_obj_t module_name, mp_obj_t module) {
|
|
|
|
mp_map_t *mp_loaded_modules_map = &MP_STATE_VM(mp_loaded_modules_dict).map;
|
|
|
|
mp_map_lookup(mp_loaded_modules_map, module_name, MP_MAP_LOOKUP_ADD_IF_NOT_FOUND)->value = module;
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC void mp_module_call_init(mp_obj_t module_name, mp_obj_t module_obj) {
|
2018-02-20 01:56:58 -05:00
|
|
|
// Look for __init__ and call it if it exists
|
|
|
|
mp_obj_t dest[2];
|
|
|
|
mp_load_method_maybe(module_obj, MP_QSTR___init__, dest);
|
|
|
|
if (dest[0] != MP_OBJ_NULL) {
|
|
|
|
mp_call_method_n_kw(0, 0, dest);
|
|
|
|
// Register module so __init__ is not called again.
|
|
|
|
// If a module can be referenced by more than one name (eg due to weak links)
|
|
|
|
// then __init__ will still be called for each distinct import, and it's then
|
|
|
|
// up to the particular module to make sure it's __init__ code only runs once.
|
|
|
|
mp_module_register(module_name, module_obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|