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)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
2019-05-14 08:51:57 -04:00
|
|
|
* Copyright (c) 2014-2017 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.
|
|
|
|
*/
|
|
|
|
|
2013-10-04 14:53:11 -04:00
|
|
|
#include <stdint.h>
|
2014-03-16 02:24:34 -04:00
|
|
|
#include <stdbool.h>
|
2013-10-04 14:53:11 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2014-01-01 18:14:36 -05:00
|
|
|
#include <stdlib.h>
|
2014-02-16 11:11:42 -05:00
|
|
|
#include <stdarg.h>
|
2015-06-04 18:42:45 -04:00
|
|
|
#include <unistd.h>
|
2014-06-02 12:37:55 -04:00
|
|
|
#include <ctype.h>
|
2014-03-16 02:24:34 -04:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2014-04-02 13:19:32 -04:00
|
|
|
#include <errno.h>
|
unix/main: Ignore SIGPIPE signal, instead make EPIPE arrive.
Do not raise SIGPIPE, instead return EPIPE. Otherwise, e.g. writing
to peer-closed socket will lead to sudden termination of MicroPython
process. SIGPIPE is particularly nasty, because unix shell doesn't
print anything for it, so the above looks like completely sudden and
silent termination for unknown reason. Ignoring SIGPIPE is also what
CPython does. Note that this may lead to problems using MicroPython
scripts as pipe filters, but again, that's what CPython does. So,
scripts which want to follow unix shell pipe semantics (where SIGPIPE
means "pipe was requested to terminate, it's not an error"), should
catch EPIPE themselves.
2017-05-01 11:47:26 -04:00
|
|
|
#include <signal.h>
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2015-01-01 15:40:19 -05:00
|
|
|
#include "py/compile.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/builtin.h"
|
|
|
|
#include "py/repl.h"
|
|
|
|
#include "py/gc.h"
|
2022-10-06 11:13:58 -04:00
|
|
|
#include "py/objstr.h"
|
2015-01-01 15:40:19 -05:00
|
|
|
#include "py/stackctrl.h"
|
2015-10-30 19:03:58 -04:00
|
|
|
#include "py/mphal.h"
|
2016-04-22 18:53:51 -04:00
|
|
|
#include "py/mpthread.h"
|
2016-01-01 09:41:26 -05:00
|
|
|
#include "extmod/misc.h"
|
2022-08-18 01:07:24 -04:00
|
|
|
#include "extmod/modplatform.h"
|
2018-06-05 23:15:04 -04:00
|
|
|
#include "extmod/vfs.h"
|
|
|
|
#include "extmod/vfs_posix.h"
|
2015-04-22 12:38:05 -04:00
|
|
|
#include "genhdr/mpversion.h"
|
2014-05-07 10:15:00 -04:00
|
|
|
#include "input.h"
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2014-04-10 06:30:35 -04:00
|
|
|
// Command line options, with their defaults
|
2014-09-23 13:10:17 -04:00
|
|
|
STATIC bool compile_only = false;
|
|
|
|
STATIC uint emit_opt = MP_EMIT_OPT_NONE;
|
2014-04-06 06:48:15 -04:00
|
|
|
|
2014-03-01 05:21:53 -05:00
|
|
|
#if MICROPY_ENABLE_GC
|
2014-02-10 17:44:37 -05:00
|
|
|
// Heap size of GC heap (if enabled)
|
2014-04-04 09:29:00 -04:00
|
|
|
// Make it larger on a 64 bit machine, because pointers are larger.
|
2021-03-15 09:57:36 -04:00
|
|
|
long heap_size = 1024 * 1024 * (sizeof(mp_uint_t) / 4);
|
2014-03-01 05:21:53 -05:00
|
|
|
#endif
|
2014-02-10 17:44:37 -05:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// Number of heaps to assign by default if MICROPY_GC_SPLIT_HEAP=1
|
|
|
|
#ifndef MICROPY_GC_SPLIT_HEAP_N_HEAPS
|
|
|
|
#define MICROPY_GC_SPLIT_HEAP_N_HEAPS (1)
|
|
|
|
#endif
|
2014-02-10 17:44:37 -05:00
|
|
|
|
2023-06-05 02:52:29 -04:00
|
|
|
#if !MICROPY_PY_SYS_PATH
|
|
|
|
#error "The unix port requires MICROPY_PY_SYS_PATH=1"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !MICROPY_PY_SYS_ARGV
|
|
|
|
#error "The unix port requires MICROPY_PY_SYS_ARGV=1"
|
|
|
|
#endif
|
|
|
|
|
2015-11-27 12:01:44 -05:00
|
|
|
STATIC void stderr_print_strn(void *env, const char *str, size_t len) {
|
2015-05-09 17:55:35 -04:00
|
|
|
(void)env;
|
2020-01-23 00:54:38 -05:00
|
|
|
ssize_t ret;
|
|
|
|
MP_HAL_RETRY_SYSCALL(ret, write(STDERR_FILENO, str, len), {});
|
2023-08-13 19:05:09 -04:00
|
|
|
#if MICROPY_PY_OS_DUPTERM
|
2022-08-18 00:47:56 -04:00
|
|
|
mp_os_dupterm_tx_strn(str, len);
|
2023-08-13 19:05:09 -04:00
|
|
|
#endif
|
2015-05-09 17:55:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const mp_print_t mp_stderr_print = {NULL, stderr_print_strn};
|
|
|
|
|
2014-10-01 18:18:39 -04:00
|
|
|
#define FORCED_EXIT (0x100)
|
2014-10-25 14:16:24 -04:00
|
|
|
// If exc is SystemExit, return value where FORCED_EXIT bit set,
|
|
|
|
// and lower 8 bits are SystemExit value. For all other exceptions,
|
|
|
|
// return 1.
|
2015-11-27 12:01:44 -05:00
|
|
|
STATIC int handle_uncaught_exception(mp_obj_base_t *exc) {
|
2014-10-25 14:16:24 -04:00
|
|
|
// check for SystemExit
|
2015-11-27 12:01:44 -05:00
|
|
|
if (mp_obj_is_subclass_fast(MP_OBJ_FROM_PTR(exc->type), MP_OBJ_FROM_PTR(&mp_type_SystemExit))) {
|
2014-10-25 14:16:24 -04:00
|
|
|
// None is an exit value of 0; an int is its value; anything else is 1
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_t exit_val = mp_obj_exception_get_value(MP_OBJ_FROM_PTR(exc));
|
2014-10-25 14:16:24 -04:00
|
|
|
mp_int_t val = 0;
|
|
|
|
if (exit_val != mp_const_none && !mp_obj_get_int_maybe(exit_val, &val)) {
|
|
|
|
val = 1;
|
|
|
|
}
|
|
|
|
return FORCED_EXIT | (val & 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Report all other exceptions
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_print_exception(&mp_stderr_print, MP_OBJ_FROM_PTR(exc));
|
2014-10-25 14:16:24 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-03-13 20:23:54 -04:00
|
|
|
#define LEX_SRC_STR (1)
|
|
|
|
#define LEX_SRC_VSTR (2)
|
|
|
|
#define LEX_SRC_FILENAME (3)
|
|
|
|
#define LEX_SRC_STDIN (4)
|
|
|
|
|
2014-10-25 14:16:24 -04:00
|
|
|
// Returns standard error codes: 0 for success, 1 for all other errors,
|
|
|
|
// except if FORCED_EXIT bit is set then script raised SystemExit and the
|
2014-10-01 18:18:39 -04:00
|
|
|
// value of the exit is in the lower 8 bits of the return value
|
2017-03-13 20:23:54 -04:00
|
|
|
STATIC int execute_from_lexer(int source_kind, const void *source, mp_parse_input_kind_t input_kind, bool is_repl) {
|
2015-05-24 15:00:50 -04:00
|
|
|
mp_hal_set_interrupt_char(CHAR_CTRL_C);
|
2014-10-25 13:19:55 -04:00
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
nlr_buf_t nlr;
|
|
|
|
if (nlr_push(&nlr) == 0) {
|
2017-03-13 20:23:54 -04:00
|
|
|
// create lexer based on source kind
|
|
|
|
mp_lexer_t *lex;
|
|
|
|
if (source_kind == LEX_SRC_STR) {
|
|
|
|
const char *line = source;
|
|
|
|
lex = mp_lexer_new_from_str_len(MP_QSTR__lt_stdin_gt_, line, strlen(line), false);
|
|
|
|
} else if (source_kind == LEX_SRC_VSTR) {
|
|
|
|
const vstr_t *vstr = source;
|
|
|
|
lex = mp_lexer_new_from_str_len(MP_QSTR__lt_stdin_gt_, vstr->buf, vstr->len, false);
|
|
|
|
} else if (source_kind == LEX_SRC_FILENAME) {
|
2021-03-15 09:57:36 -04:00
|
|
|
lex = mp_lexer_new_from_file((const char *)source);
|
2017-03-13 20:23:54 -04:00
|
|
|
} else { // LEX_SRC_STDIN
|
|
|
|
lex = mp_lexer_new_from_fd(MP_QSTR__lt_stdin_gt_, 0, false);
|
|
|
|
}
|
|
|
|
|
2015-02-07 13:33:58 -05:00
|
|
|
qstr source_name = lex->source_name;
|
|
|
|
|
|
|
|
#if MICROPY_PY___FILE__
|
|
|
|
if (input_kind == MP_PARSE_FILE_INPUT) {
|
|
|
|
mp_store_global(MP_QSTR___file__, MP_OBJ_NEW_QSTR(source_name));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-09-23 05:50:43 -04:00
|
|
|
mp_parse_tree_t parse_tree = mp_parse(lex, input_kind);
|
2015-02-07 13:33:58 -05:00
|
|
|
|
2016-12-21 18:56:11 -05:00
|
|
|
#if defined(MICROPY_UNIX_COVERAGE)
|
|
|
|
// allow to print the parse tree in the coverage build
|
|
|
|
if (mp_verbose_flag >= 3) {
|
|
|
|
printf("----------------\n");
|
2020-09-11 09:00:03 -04:00
|
|
|
mp_parse_node_print(&mp_plat_print, parse_tree.root, 0);
|
2016-12-21 18:56:11 -05:00
|
|
|
printf("----------------\n");
|
|
|
|
}
|
|
|
|
#endif
|
2015-02-07 13:33:58 -05:00
|
|
|
|
2021-04-23 15:26:42 -04:00
|
|
|
mp_obj_t module_fun = mp_compile(&parse_tree, source_name, is_repl);
|
2015-02-07 13:33:58 -05:00
|
|
|
|
|
|
|
if (!compile_only) {
|
|
|
|
// execute it
|
|
|
|
mp_call_function_0(module_fun);
|
|
|
|
}
|
|
|
|
|
2015-05-24 15:00:50 -04:00
|
|
|
mp_hal_set_interrupt_char(-1);
|
2020-02-05 09:06:59 -05:00
|
|
|
mp_handle_pending(true);
|
2014-01-07 09:54:15 -05:00
|
|
|
nlr_pop();
|
2014-05-10 13:42:06 -04:00
|
|
|
return 0;
|
2015-02-07 13:33:58 -05:00
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
} else {
|
|
|
|
// uncaught exception
|
2015-05-24 15:00:50 -04:00
|
|
|
mp_hal_set_interrupt_char(-1);
|
2020-02-05 09:06:59 -05:00
|
|
|
mp_handle_pending(false);
|
2015-11-27 12:01:44 -05:00
|
|
|
return handle_uncaught_exception(nlr.ret_val);
|
2014-01-07 09:54:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 05:34:22 -04:00
|
|
|
#if MICROPY_USE_READLINE == 1
|
2021-07-09 00:19:15 -04:00
|
|
|
#include "shared/readline/readline.h"
|
2015-08-20 05:34:22 -04:00
|
|
|
#else
|
2014-04-04 13:25:53 -04:00
|
|
|
STATIC char *strjoin(const char *s1, int sep_char, const char *s2) {
|
2013-10-18 14:58:12 -04:00
|
|
|
int l1 = strlen(s1);
|
|
|
|
int l2 = strlen(s2);
|
2014-04-04 10:47:53 -04:00
|
|
|
char *s = malloc(l1 + l2 + 2);
|
2013-10-18 14:58:12 -04:00
|
|
|
memcpy(s, s1, l1);
|
|
|
|
if (sep_char != 0) {
|
|
|
|
s[l1] = sep_char;
|
|
|
|
l1 += 1;
|
|
|
|
}
|
|
|
|
memcpy(s + l1, s2, l2);
|
2013-10-22 17:32:27 -04:00
|
|
|
s[l1 + l2] = 0;
|
2013-10-18 14:58:12 -04:00
|
|
|
return s;
|
|
|
|
}
|
2015-08-20 05:34:22 -04:00
|
|
|
#endif
|
2013-10-18 14:58:12 -04:00
|
|
|
|
2014-10-01 18:18:39 -04:00
|
|
|
STATIC int do_repl(void) {
|
py/modsys: Append MicroPython git version and build date to sys.version.
This commit adds the git hash and build date to sys.version. This is
allowed according to CPython docs, and is what PyPy does. The docs state:
A string containing the version number of the Python interpreter plus
additional information on the build number and compiler used.
Eg on CPython:
Python 3.10.4 (main, Mar 23 2022, 23:05:40) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.version
'3.10.4 (main, Mar 23 2022, 23:05:40) [GCC 11.2.0]'
and PyPy:
Python 2.7.12 (5.6.0+dfsg-4, Nov 20 2016, 10:43:30)
[PyPy 5.6.0 with GCC 6.2.0 20161109] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>> import sys
>>>> sys.version
'2.7.12 (5.6.0+dfsg-4, Nov 20 2016, 10:43:30)\n[PyPy 5.6.0 with GCC ...
With this commit on MicroPython we now have:
MicroPython v1.18-371-g9d08eb024 on 2022-04-28; linux [GCC 11.2.0] v...
Use Ctrl-D to exit, Ctrl-E for paste mode
>>> import sys
>>> sys.version
'3.4.0; MicroPython v1.18-371-g9d08eb024 on 2022-04-28'
Note that the start of the banner is the same as the end of sys.version.
This helps to keep code size under control because the string can be reused
by the compiler.
Signed-off-by: Damien George <damien@micropython.org>
2022-04-21 02:30:23 -04:00
|
|
|
mp_hal_stdout_tx_str(MICROPY_BANNER_NAME_AND_VERSION);
|
2022-04-26 03:28:39 -04:00
|
|
|
mp_hal_stdout_tx_str("; " MICROPY_BANNER_MACHINE);
|
|
|
|
mp_hal_stdout_tx_str("\nUse Ctrl-D to exit, Ctrl-E for paste mode\n");
|
2014-04-07 08:27:50 -04:00
|
|
|
|
2015-08-20 05:34:22 -04:00
|
|
|
#if MICROPY_USE_READLINE == 1
|
|
|
|
|
|
|
|
// use MicroPython supplied readline
|
|
|
|
|
|
|
|
vstr_t line;
|
|
|
|
vstr_init(&line, 16);
|
|
|
|
for (;;) {
|
2015-10-09 17:41:10 -04:00
|
|
|
mp_hal_stdio_mode_raw();
|
|
|
|
|
2015-08-20 05:34:22 -04:00
|
|
|
input_restart:
|
|
|
|
vstr_reset(&line);
|
2021-07-26 10:43:35 -04:00
|
|
|
int ret = readline(&line, mp_repl_get_ps1());
|
2015-10-09 17:41:10 -04:00
|
|
|
mp_parse_input_kind_t parse_input_kind = MP_PARSE_SINGLE_INPUT;
|
2015-08-20 05:34:22 -04:00
|
|
|
|
2015-12-22 17:06:09 -05:00
|
|
|
if (ret == CHAR_CTRL_C) {
|
|
|
|
// cancel input
|
|
|
|
mp_hal_stdout_tx_str("\r\n");
|
|
|
|
goto input_restart;
|
|
|
|
} else if (ret == CHAR_CTRL_D) {
|
2015-08-20 05:34:22 -04:00
|
|
|
// EOF
|
|
|
|
printf("\n");
|
|
|
|
mp_hal_stdio_mode_orig();
|
|
|
|
vstr_clear(&line);
|
|
|
|
return 0;
|
2015-10-09 17:41:10 -04:00
|
|
|
} else if (ret == CHAR_CTRL_E) {
|
|
|
|
// paste mode
|
2015-10-20 05:30:36 -04:00
|
|
|
mp_hal_stdout_tx_str("\npaste mode; Ctrl-C to cancel, Ctrl-D to finish\n=== ");
|
2015-10-09 17:41:10 -04:00
|
|
|
vstr_reset(&line);
|
|
|
|
for (;;) {
|
|
|
|
char c = mp_hal_stdin_rx_chr();
|
|
|
|
if (c == CHAR_CTRL_C) {
|
|
|
|
// cancel everything
|
|
|
|
mp_hal_stdout_tx_str("\n");
|
|
|
|
goto input_restart;
|
|
|
|
} else if (c == CHAR_CTRL_D) {
|
|
|
|
// end of input
|
|
|
|
mp_hal_stdout_tx_str("\n");
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
// add char to buffer and echo
|
|
|
|
vstr_add_byte(&line, c);
|
|
|
|
if (c == '\r') {
|
|
|
|
mp_hal_stdout_tx_str("\n=== ");
|
|
|
|
} else {
|
|
|
|
mp_hal_stdout_tx_strn(&c, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parse_input_kind = MP_PARSE_FILE_INPUT;
|
2015-08-20 05:34:22 -04:00
|
|
|
} else if (line.len == 0) {
|
|
|
|
if (ret != 0) {
|
|
|
|
printf("\n");
|
|
|
|
}
|
2015-10-09 17:41:10 -04:00
|
|
|
goto input_restart;
|
|
|
|
} else {
|
|
|
|
// got a line with non-zero length, see if it needs continuing
|
|
|
|
while (mp_repl_continue_with_input(vstr_null_terminated_str(&line))) {
|
|
|
|
vstr_add_byte(&line, '\n');
|
2021-07-26 10:43:35 -04:00
|
|
|
ret = readline(&line, mp_repl_get_ps2());
|
2015-10-09 17:41:10 -04:00
|
|
|
if (ret == CHAR_CTRL_C) {
|
|
|
|
// cancel everything
|
|
|
|
printf("\n");
|
|
|
|
goto input_restart;
|
|
|
|
} else if (ret == CHAR_CTRL_D) {
|
|
|
|
// stop entering compound statement
|
|
|
|
break;
|
|
|
|
}
|
2015-08-20 05:34:22 -04:00
|
|
|
}
|
|
|
|
}
|
2015-10-09 17:41:10 -04:00
|
|
|
|
2015-08-20 05:34:22 -04:00
|
|
|
mp_hal_stdio_mode_orig();
|
|
|
|
|
2017-03-13 20:23:54 -04:00
|
|
|
ret = execute_from_lexer(LEX_SRC_VSTR, &line, parse_input_kind, true);
|
2015-08-20 05:34:22 -04:00
|
|
|
if (ret & FORCED_EXIT) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2017-03-03 01:55:40 -05:00
|
|
|
// use simple readline
|
2015-08-20 05:34:22 -04:00
|
|
|
|
2013-10-18 14:58:12 -04:00
|
|
|
for (;;) {
|
2021-07-26 10:43:35 -04:00
|
|
|
char *line = prompt((char *)mp_repl_get_ps1());
|
2013-10-18 14:58:12 -04:00
|
|
|
if (line == NULL) {
|
|
|
|
// EOF
|
2014-10-01 18:18:39 -04:00
|
|
|
return 0;
|
2013-10-18 14:58:12 -04:00
|
|
|
}
|
2014-04-08 07:04:29 -04:00
|
|
|
while (mp_repl_continue_with_input(line)) {
|
2021-07-26 10:43:35 -04:00
|
|
|
char *line2 = prompt((char *)mp_repl_get_ps2());
|
2014-04-08 07:04:29 -04:00
|
|
|
if (line2 == NULL) {
|
|
|
|
break;
|
2013-10-18 14:58:12 -04:00
|
|
|
}
|
2014-04-08 07:04:29 -04:00
|
|
|
char *line3 = strjoin(line, '\n', line2);
|
|
|
|
free(line);
|
|
|
|
free(line2);
|
|
|
|
line = line3;
|
2013-10-18 14:58:12 -04:00
|
|
|
}
|
2013-10-20 12:42:00 -04:00
|
|
|
|
2017-03-13 20:23:54 -04:00
|
|
|
int ret = execute_from_lexer(LEX_SRC_STR, line, MP_PARSE_SINGLE_INPUT, true);
|
2014-10-01 18:18:39 -04:00
|
|
|
if (ret & FORCED_EXIT) {
|
|
|
|
return ret;
|
|
|
|
}
|
2014-01-24 09:21:26 -05:00
|
|
|
free(line);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
2015-08-20 05:34:22 -04:00
|
|
|
|
|
|
|
#endif
|
2013-10-18 14:58:12 -04:00
|
|
|
}
|
|
|
|
|
2014-05-10 13:42:06 -04:00
|
|
|
STATIC int do_file(const char *file) {
|
2017-03-13 20:23:54 -04:00
|
|
|
return execute_from_lexer(LEX_SRC_FILENAME, file, MP_PARSE_FILE_INPUT, false);
|
2014-01-07 09:54:15 -05:00
|
|
|
}
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2014-05-10 13:42:06 -04:00
|
|
|
STATIC int do_str(const char *str) {
|
2017-03-13 20:23:54 -04:00
|
|
|
return execute_from_lexer(LEX_SRC_STR, str, MP_PARSE_FILE_INPUT, false);
|
2013-10-18 14:58:12 -04:00
|
|
|
}
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2020-02-01 12:39:18 -05:00
|
|
|
STATIC void print_help(char **argv) {
|
2014-03-08 14:04:47 -05:00
|
|
|
printf(
|
2020-01-31 11:14:31 -05:00
|
|
|
"usage: %s [<opts>] [-X <implopt>] [-c <command> | -m <module> | <filename>]\n"
|
2021-03-15 09:57:36 -04:00
|
|
|
"Options:\n"
|
2020-02-01 12:39:18 -05:00
|
|
|
"-h : print this help message\n"
|
2020-01-31 11:14:31 -05:00
|
|
|
"-i : enable inspection via REPL after running command/module/file\n"
|
|
|
|
#if MICROPY_DEBUG_PRINTERS
|
2021-03-15 09:57:36 -04:00
|
|
|
"-v : verbose (trace various operations); can be multiple\n"
|
2020-01-31 11:14:31 -05:00
|
|
|
#endif
|
2021-03-15 09:57:36 -04:00
|
|
|
"-O[N] : apply bytecode optimizations of level N\n"
|
|
|
|
"\n"
|
|
|
|
"Implementation specific options (-X):\n", argv[0]
|
|
|
|
);
|
2014-04-02 13:29:18 -04:00
|
|
|
int impl_opts_cnt = 0;
|
2014-04-06 06:48:15 -04:00
|
|
|
printf(
|
2021-03-15 09:57:36 -04:00
|
|
|
" compile-only -- parse and compile only\n"
|
2021-04-23 15:26:42 -04:00
|
|
|
#if MICROPY_EMIT_NATIVE
|
2021-03-15 09:57:36 -04:00
|
|
|
" emit={bytecode,native,viper} -- set the default code emitter\n"
|
2021-04-23 15:26:42 -04:00
|
|
|
#else
|
|
|
|
" emit=bytecode -- set the default code emitter\n"
|
|
|
|
#endif
|
2021-03-15 09:57:36 -04:00
|
|
|
);
|
2014-04-06 06:48:15 -04:00
|
|
|
impl_opts_cnt++;
|
2021-03-15 09:57:36 -04:00
|
|
|
#if MICROPY_ENABLE_GC
|
2014-04-02 13:29:18 -04:00
|
|
|
printf(
|
2021-03-15 09:57:36 -04:00
|
|
|
" heapsize=<n>[w][K|M] -- set the heap size for the GC (default %ld)\n"
|
|
|
|
, heap_size);
|
2014-04-02 13:29:18 -04:00
|
|
|
impl_opts_cnt++;
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2022-05-03 23:26:29 -04:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
printf(" realtime -- set thread priority to realtime\n");
|
|
|
|
impl_opts_cnt++;
|
|
|
|
#endif
|
2014-04-02 13:29:18 -04:00
|
|
|
|
|
|
|
if (impl_opts_cnt == 0) {
|
|
|
|
printf(" (none)\n");
|
|
|
|
}
|
2020-02-01 12:39:18 -05:00
|
|
|
}
|
2014-04-02 13:29:18 -04:00
|
|
|
|
2020-02-01 12:39:18 -05:00
|
|
|
STATIC int invalid_args(void) {
|
|
|
|
fprintf(stderr, "Invalid command line arguments. Use -h option for help.\n");
|
2014-01-07 09:54:15 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-03-01 05:21:53 -05:00
|
|
|
// Process options which set interpreter init options
|
2014-12-10 17:07:04 -05:00
|
|
|
STATIC void pre_process_options(int argc, char **argv) {
|
2014-03-01 05:21:53 -05:00
|
|
|
for (int a = 1; a < argc; a++) {
|
|
|
|
if (argv[a][0] == '-') {
|
2021-04-06 14:40:31 -04:00
|
|
|
if (strcmp(argv[a], "-c") == 0 || strcmp(argv[a], "-m") == 0) {
|
|
|
|
break; // Everything after this is a command/module and arguments for it
|
|
|
|
}
|
2020-02-01 12:39:18 -05:00
|
|
|
if (strcmp(argv[a], "-h") == 0) {
|
|
|
|
print_help(argv);
|
|
|
|
exit(0);
|
|
|
|
}
|
2014-03-01 05:21:53 -05:00
|
|
|
if (strcmp(argv[a], "-X") == 0) {
|
|
|
|
if (a + 1 >= argc) {
|
2020-02-01 12:39:18 -05:00
|
|
|
exit(invalid_args());
|
2014-03-01 05:21:53 -05:00
|
|
|
}
|
2014-03-08 14:04:47 -05:00
|
|
|
if (0) {
|
2014-04-10 06:30:35 -04:00
|
|
|
} else if (strcmp(argv[a + 1], "compile-only") == 0) {
|
|
|
|
compile_only = true;
|
2014-04-06 06:48:15 -04:00
|
|
|
} else if (strcmp(argv[a + 1], "emit=bytecode") == 0) {
|
2014-05-12 17:35:37 -04:00
|
|
|
emit_opt = MP_EMIT_OPT_BYTECODE;
|
2021-04-23 15:26:42 -04:00
|
|
|
#if MICROPY_EMIT_NATIVE
|
2014-04-06 06:48:15 -04:00
|
|
|
} else if (strcmp(argv[a + 1], "emit=native") == 0) {
|
|
|
|
emit_opt = MP_EMIT_OPT_NATIVE_PYTHON;
|
|
|
|
} else if (strcmp(argv[a + 1], "emit=viper") == 0) {
|
|
|
|
emit_opt = MP_EMIT_OPT_VIPER;
|
2021-04-23 15:26:42 -04:00
|
|
|
#endif
|
2021-03-15 09:57:36 -04:00
|
|
|
#if MICROPY_ENABLE_GC
|
2014-03-08 14:04:47 -05:00
|
|
|
} else if (strncmp(argv[a + 1], "heapsize=", sizeof("heapsize=") - 1) == 0) {
|
2014-10-24 21:43:08 -04:00
|
|
|
char *end;
|
|
|
|
heap_size = strtol(argv[a + 1] + sizeof("heapsize=") - 1, &end, 0);
|
|
|
|
// Don't bring unneeded libc dependencies like tolower()
|
2014-11-04 19:08:38 -05:00
|
|
|
// If there's 'w' immediately after number, adjust it for
|
|
|
|
// target word size. Note that it should be *before* size
|
|
|
|
// suffix like K or M, to avoid confusion with kilowords,
|
|
|
|
// etc. the size is still in bytes, just can be adjusted
|
|
|
|
// for word size (taking 32bit as baseline).
|
|
|
|
bool word_adjust = false;
|
|
|
|
if ((*end | 0x20) == 'w') {
|
|
|
|
word_adjust = true;
|
|
|
|
end++;
|
|
|
|
}
|
2014-10-24 21:43:08 -04:00
|
|
|
if ((*end | 0x20) == 'k') {
|
|
|
|
heap_size *= 1024;
|
|
|
|
} else if ((*end | 0x20) == 'm') {
|
|
|
|
heap_size *= 1024 * 1024;
|
2016-07-08 13:45:15 -04:00
|
|
|
} else {
|
|
|
|
// Compensate for ++ below
|
|
|
|
--end;
|
|
|
|
}
|
|
|
|
if (*++end != 0) {
|
|
|
|
goto invalid_arg;
|
2014-10-24 21:43:08 -04:00
|
|
|
}
|
2014-11-04 19:08:38 -05:00
|
|
|
if (word_adjust) {
|
2021-02-04 00:39:09 -05:00
|
|
|
heap_size = heap_size * MP_BYTES_PER_OBJ_WORD / 4;
|
2014-11-04 19:08:38 -05:00
|
|
|
}
|
2017-05-06 04:40:20 -04:00
|
|
|
// If requested size too small, we'll crash anyway
|
|
|
|
if (heap_size < 700) {
|
|
|
|
goto invalid_arg;
|
|
|
|
}
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2022-05-03 23:26:29 -04:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
} else if (strcmp(argv[a + 1], "realtime") == 0) {
|
|
|
|
#if MICROPY_PY_THREAD
|
|
|
|
mp_thread_is_realtime_enabled = true;
|
|
|
|
#endif
|
2023-08-14 00:47:22 -04:00
|
|
|
// main thread was already initialized before the option
|
2022-05-03 23:26:29 -04:00
|
|
|
// was parsed, so we have to enable realtime here.
|
|
|
|
mp_thread_set_realtime();
|
|
|
|
#endif
|
2014-03-08 14:04:47 -05:00
|
|
|
} else {
|
2021-03-15 09:57:36 -04:00
|
|
|
invalid_arg:
|
2020-02-01 12:39:18 -05:00
|
|
|
exit(invalid_args());
|
2014-03-08 14:04:47 -05:00
|
|
|
}
|
2014-03-01 05:21:53 -05:00
|
|
|
a++;
|
|
|
|
}
|
2021-04-06 14:40:31 -04:00
|
|
|
} else {
|
|
|
|
break; // Not an option but a file
|
2014-03-01 05:21:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-10 17:07:04 -05:00
|
|
|
STATIC void set_sys_argv(char *argv[], int argc, int start_arg) {
|
2014-10-25 14:16:24 -04:00
|
|
|
for (int i = start_arg; i < argc; i++) {
|
|
|
|
mp_obj_list_append(mp_sys_argv, MP_OBJ_NEW_QSTR(qstr_from_str(argv[i])));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-06 11:13:58 -04:00
|
|
|
#if MICROPY_PY_SYS_EXECUTABLE
|
|
|
|
extern mp_obj_str_t mp_sys_executable_obj;
|
|
|
|
STATIC char executable_path[MICROPY_ALLOC_PATH_MAX];
|
|
|
|
|
|
|
|
STATIC void sys_set_excecutable(char *argv0) {
|
|
|
|
if (realpath(argv0, executable_path)) {
|
|
|
|
mp_obj_str_set_data(&mp_sys_executable_obj, (byte *)executable_path, strlen(executable_path));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-06-05 06:33:55 -04:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define PATHLIST_SEP_CHAR ';'
|
|
|
|
#else
|
|
|
|
#define PATHLIST_SEP_CHAR ':'
|
|
|
|
#endif
|
|
|
|
|
2016-01-28 18:05:53 -05:00
|
|
|
MP_NOINLINE int main_(int argc, char **argv);
|
|
|
|
|
2013-10-18 14:58:12 -04:00
|
|
|
int main(int argc, char **argv) {
|
2016-04-22 18:53:51 -04:00
|
|
|
#if MICROPY_PY_THREAD
|
|
|
|
mp_thread_init();
|
|
|
|
#endif
|
2016-01-28 18:05:53 -05:00
|
|
|
// We should capture stack top ASAP after start, and it should be
|
|
|
|
// captured guaranteedly before any other stack variables are allocated.
|
|
|
|
// For this, actual main (renamed main_) should not be inlined into
|
|
|
|
// this function. main_() itself may have other functions inlined (with
|
|
|
|
// their own stack variables), that's why we need this main/main_ split.
|
|
|
|
mp_stack_ctrl_init();
|
|
|
|
return main_(argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
MP_NOINLINE int main_(int argc, char **argv) {
|
unix/main: Ignore SIGPIPE signal, instead make EPIPE arrive.
Do not raise SIGPIPE, instead return EPIPE. Otherwise, e.g. writing
to peer-closed socket will lead to sudden termination of MicroPython
process. SIGPIPE is particularly nasty, because unix shell doesn't
print anything for it, so the above looks like completely sudden and
silent termination for unknown reason. Ignoring SIGPIPE is also what
CPython does. Note that this may lead to problems using MicroPython
scripts as pipe filters, but again, that's what CPython does. So,
scripts which want to follow unix shell pipe semantics (where SIGPIPE
means "pipe was requested to terminate, it's not an error"), should
catch EPIPE themselves.
2017-05-01 11:47:26 -04:00
|
|
|
#ifdef SIGPIPE
|
|
|
|
// Do not raise SIGPIPE, instead return EPIPE. Otherwise, e.g. writing
|
|
|
|
// to peer-closed socket will lead to sudden termination of MicroPython
|
|
|
|
// process. SIGPIPE is particularly nasty, because unix shell doesn't
|
|
|
|
// print anything for it, so the above looks like completely sudden and
|
|
|
|
// silent termination for unknown reason. Ignoring SIGPIPE is also what
|
|
|
|
// CPython does. Note that this may lead to problems using MicroPython
|
|
|
|
// scripts as pipe filters, but again, that's what CPython does. So,
|
|
|
|
// scripts which want to follow unix shell pipe semantics (where SIGPIPE
|
|
|
|
// means "pipe was requested to terminate, it's not an error"), should
|
|
|
|
// catch EPIPE themselves.
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
|
2021-06-04 20:36:15 -04:00
|
|
|
// Define a reasonable stack limit to detect stack overflow.
|
|
|
|
mp_uint_t stack_limit = 40000 * (sizeof(void *) / 4);
|
|
|
|
#if defined(__arm__) && !defined(__thumb2__)
|
|
|
|
// ARM (non-Thumb) architectures require more stack.
|
|
|
|
stack_limit *= 2;
|
|
|
|
#endif
|
|
|
|
mp_stack_set_limit(stack_limit);
|
2014-02-10 17:44:37 -05:00
|
|
|
|
2014-03-01 05:21:53 -05:00
|
|
|
pre_process_options(argc, argv);
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if MICROPY_ENABLE_GC
|
2022-04-13 12:52:22 -04:00
|
|
|
#if !MICROPY_GC_SPLIT_HEAP
|
2014-03-01 05:21:53 -05:00
|
|
|
char *heap = malloc(heap_size);
|
|
|
|
gc_init(heap, heap + heap_size);
|
2022-04-13 12:52:22 -04:00
|
|
|
#else
|
|
|
|
assert(MICROPY_GC_SPLIT_HEAP_N_HEAPS > 0);
|
|
|
|
char *heaps[MICROPY_GC_SPLIT_HEAP_N_HEAPS];
|
|
|
|
long multi_heap_size = heap_size / MICROPY_GC_SPLIT_HEAP_N_HEAPS;
|
|
|
|
for (size_t i = 0; i < MICROPY_GC_SPLIT_HEAP_N_HEAPS; i++) {
|
|
|
|
heaps[i] = malloc(multi_heap_size);
|
|
|
|
if (i == 0) {
|
|
|
|
gc_init(heaps[i], heaps[i] + multi_heap_size);
|
|
|
|
} else {
|
|
|
|
gc_add(heaps[i], heaps[i] + multi_heap_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2014-02-10 17:44:37 -05:00
|
|
|
|
2017-11-26 07:40:30 -05:00
|
|
|
#if MICROPY_ENABLE_PYSTACK
|
|
|
|
static mp_obj_t pystack[1024];
|
|
|
|
mp_pystack_init(pystack, &pystack[MP_ARRAY_SIZE(pystack)]);
|
|
|
|
#endif
|
|
|
|
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_init();
|
2013-10-18 14:58:12 -04:00
|
|
|
|
2021-04-23 15:26:42 -04:00
|
|
|
#if MICROPY_EMIT_NATIVE
|
|
|
|
// Set default emitter options
|
|
|
|
MP_STATE_VM(default_emit_opt) = emit_opt;
|
|
|
|
#else
|
|
|
|
(void)emit_opt;
|
|
|
|
#endif
|
|
|
|
|
2018-06-05 23:15:04 -04:00
|
|
|
#if MICROPY_VFS_POSIX
|
|
|
|
{
|
|
|
|
// Mount the host FS at the root of our internal VFS
|
|
|
|
mp_obj_t args[2] = {
|
2022-09-16 10:31:23 -04:00
|
|
|
MP_OBJ_TYPE_GET_SLOT(&mp_type_vfs_posix, make_new)(&mp_type_vfs_posix, 0, 0, NULL),
|
2018-06-05 23:15:04 -04:00
|
|
|
MP_OBJ_NEW_QSTR(MP_QSTR__slash_),
|
|
|
|
};
|
2021-03-15 09:57:36 -04:00
|
|
|
mp_vfs_mount(2, args, (mp_map_t *)&mp_const_empty_map);
|
2018-06-05 23:15:04 -04:00
|
|
|
MP_STATE_VM(vfs_cur) = MP_STATE_VM(vfs_mount_table);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-01-20 06:55:10 -05:00
|
|
|
{
|
2023-06-05 02:52:29 -04:00
|
|
|
// sys.path starts as [""]
|
|
|
|
mp_sys_path = mp_obj_new_list(0, NULL);
|
|
|
|
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_));
|
|
|
|
|
|
|
|
// Add colon-separated entries from MICROPYPATH.
|
|
|
|
char *home = getenv("HOME");
|
|
|
|
char *path = getenv("MICROPYPATH");
|
|
|
|
if (path == NULL) {
|
|
|
|
path = MICROPY_PY_SYS_PATH_DEFAULT;
|
|
|
|
}
|
|
|
|
if (*path == PATHLIST_SEP_CHAR) {
|
|
|
|
// First entry is empty. We've already added an empty entry to sys.path, so skip it.
|
|
|
|
++path;
|
|
|
|
}
|
|
|
|
bool path_remaining = *path;
|
|
|
|
while (path_remaining) {
|
|
|
|
char *path_entry_end = strchr(path, PATHLIST_SEP_CHAR);
|
|
|
|
if (path_entry_end == NULL) {
|
|
|
|
path_entry_end = path + strlen(path);
|
|
|
|
path_remaining = false;
|
2021-03-15 09:57:36 -04:00
|
|
|
}
|
2023-06-05 02:52:29 -04:00
|
|
|
if (path[0] == '~' && path[1] == '/' && home != NULL) {
|
2021-03-15 09:57:36 -04:00
|
|
|
// Expand standalone ~ to $HOME
|
|
|
|
int home_l = strlen(home);
|
|
|
|
vstr_t vstr;
|
2023-06-05 02:52:29 -04:00
|
|
|
vstr_init(&vstr, home_l + (path_entry_end - path - 1) + 1);
|
2021-03-15 09:57:36 -04:00
|
|
|
vstr_add_strn(&vstr, home, home_l);
|
2023-06-05 02:52:29 -04:00
|
|
|
vstr_add_strn(&vstr, path + 1, path_entry_end - path - 1);
|
|
|
|
mp_obj_list_append(mp_sys_path, mp_obj_new_str_from_vstr(&vstr));
|
2021-03-15 09:57:36 -04:00
|
|
|
} else {
|
2023-06-05 02:52:29 -04:00
|
|
|
mp_obj_list_append(mp_sys_path, mp_obj_new_str_via_qstr(path, path_entry_end - path));
|
2021-03-15 09:57:36 -04:00
|
|
|
}
|
2023-06-05 02:52:29 -04:00
|
|
|
path = path_entry_end + 1;
|
2014-02-04 17:59:54 -05:00
|
|
|
}
|
2015-01-20 06:55:10 -05:00
|
|
|
}
|
2014-02-04 17:59:54 -05:00
|
|
|
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_list_init(MP_OBJ_TO_PTR(mp_sys_argv), 0);
|
2014-01-19 17:53:46 -05:00
|
|
|
|
2015-05-08 04:18:38 -04:00
|
|
|
#if defined(MICROPY_UNIX_COVERAGE)
|
|
|
|
{
|
2016-10-17 20:06:20 -04:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ_0(extra_coverage_obj);
|
2020-10-08 10:52:25 -04:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ_0(extra_cpp_coverage_obj);
|
2021-01-16 03:18:31 -05:00
|
|
|
mp_store_global(MP_QSTR_extra_coverage, MP_OBJ_FROM_PTR(&extra_coverage_obj));
|
|
|
|
mp_store_global(MP_QSTR_extra_cpp_coverage, MP_OBJ_FROM_PTR(&extra_cpp_coverage_obj));
|
2023-10-19 17:27:20 -04:00
|
|
|
// CIRCUITPY-CHANGE: test native base classes work as needed by CircuitPython libraries.
|
|
|
|
extern const mp_obj_type_t native_base_class_type;
|
|
|
|
mp_store_global(MP_QSTR_NativeBaseClass, MP_OBJ_FROM_PTR(&native_base_class_type));
|
2015-05-08 04:18:38 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-09 15:57:50 -05:00
|
|
|
// Here is some example code to create a class and instance of that class.
|
|
|
|
// First is the Python, then the C code.
|
|
|
|
//
|
|
|
|
// class TestClass:
|
|
|
|
// pass
|
|
|
|
// test_obj = TestClass()
|
|
|
|
// test_obj.attr = 42
|
2014-05-04 07:24:26 -04:00
|
|
|
//
|
|
|
|
// mp_obj_t test_class_type, test_class_instance;
|
2021-01-16 03:18:31 -05:00
|
|
|
// test_class_type = mp_obj_new_type(qstr_from_str("TestClass"), mp_const_empty_tuple, mp_obj_new_dict(0));
|
|
|
|
// mp_store_name(qstr_from_str("test_obj"), test_class_instance = mp_call_function_0(test_class_type));
|
|
|
|
// mp_store_attr(test_class_instance, qstr_from_str("attr"), mp_obj_new_int(42));
|
2014-01-09 15:57:50 -05:00
|
|
|
|
2014-01-04 10:57:35 -05:00
|
|
|
/*
|
|
|
|
printf("bytes:\n");
|
|
|
|
printf(" total %d\n", m_get_total_bytes_allocated());
|
|
|
|
printf(" cur %d\n", m_get_current_bytes_allocated());
|
|
|
|
printf(" peak %d\n", m_get_peak_bytes_allocated());
|
|
|
|
*/
|
|
|
|
|
2022-10-06 11:13:58 -04:00
|
|
|
#if MICROPY_PY_SYS_EXECUTABLE
|
|
|
|
sys_set_excecutable(argv[0]);
|
|
|
|
#endif
|
|
|
|
|
2014-05-10 13:42:06 -04:00
|
|
|
const int NOTHING_EXECUTED = -2;
|
|
|
|
int ret = NOTHING_EXECUTED;
|
2016-04-01 04:03:34 -04:00
|
|
|
bool inspect = false;
|
2014-03-01 05:21:53 -05:00
|
|
|
for (int a = 1; a < argc; a++) {
|
|
|
|
if (argv[a][0] == '-') {
|
2016-04-01 04:03:34 -04:00
|
|
|
if (strcmp(argv[a], "-i") == 0) {
|
|
|
|
inspect = true;
|
|
|
|
} else if (strcmp(argv[a], "-c") == 0) {
|
2014-03-01 05:21:53 -05:00
|
|
|
if (a + 1 >= argc) {
|
2020-02-01 12:39:18 -05:00
|
|
|
return invalid_args();
|
2014-01-07 09:54:15 -05:00
|
|
|
}
|
2021-04-06 14:40:31 -04:00
|
|
|
set_sys_argv(argv, a + 1, a); // The -c becomes first item of sys.argv, as in CPython
|
|
|
|
set_sys_argv(argv, argc, a + 2); // Then what comes after the command
|
2014-05-10 13:42:06 -04:00
|
|
|
ret = do_str(argv[a + 1]);
|
2021-04-06 14:40:31 -04:00
|
|
|
break;
|
2014-10-25 14:16:24 -04:00
|
|
|
} else if (strcmp(argv[a], "-m") == 0) {
|
|
|
|
if (a + 1 >= argc) {
|
2020-02-01 12:39:18 -05:00
|
|
|
return invalid_args();
|
2014-10-25 14:16:24 -04:00
|
|
|
}
|
|
|
|
mp_obj_t import_args[4];
|
2017-11-15 21:17:51 -05:00
|
|
|
import_args[0] = mp_obj_new_str(argv[a + 1], strlen(argv[a + 1]));
|
2014-10-25 14:16:24 -04:00
|
|
|
import_args[1] = import_args[2] = mp_const_none;
|
|
|
|
// Ask __import__ to handle imported module specially - set its __name__
|
|
|
|
// to __main__, and also return this leaf module, not top-level package
|
|
|
|
// containing it.
|
|
|
|
import_args[3] = mp_const_false;
|
|
|
|
// TODO: https://docs.python.org/3/using/cmdline.html#cmdoption-m :
|
|
|
|
// "the first element of sys.argv will be the full path to
|
|
|
|
// the module file (while the module file is being located,
|
|
|
|
// the first element will be set to "-m")."
|
|
|
|
set_sys_argv(argv, argc, a + 1);
|
|
|
|
|
|
|
|
mp_obj_t mod;
|
|
|
|
nlr_buf_t nlr;
|
2021-03-30 14:08:11 -04:00
|
|
|
|
|
|
|
// Allocating subpkg_tried on the stack can lead to compiler warnings about this
|
|
|
|
// variable being clobbered when nlr is implemented using setjmp/longjmp. Its
|
|
|
|
// value must be preserved across calls to setjmp/longjmp.
|
|
|
|
static bool subpkg_tried;
|
|
|
|
subpkg_tried = false;
|
2017-05-09 07:22:21 -04:00
|
|
|
|
|
|
|
reimport:
|
2014-10-25 14:16:24 -04:00
|
|
|
if (nlr_push(&nlr) == 0) {
|
|
|
|
mod = mp_builtin___import__(MP_ARRAY_SIZE(import_args), import_args);
|
|
|
|
nlr_pop();
|
|
|
|
} else {
|
|
|
|
// uncaught exception
|
2015-11-27 12:01:44 -05:00
|
|
|
return handle_uncaught_exception(nlr.ret_val) & 0xff;
|
2014-10-25 14:16:24 -04:00
|
|
|
}
|
|
|
|
|
2023-05-24 03:06:08 -04:00
|
|
|
// If this module is a package, see if it has a `__main__.py`.
|
2023-05-09 23:02:09 -04:00
|
|
|
mp_obj_t dest[2];
|
2023-05-24 03:06:08 -04:00
|
|
|
mp_load_method_protected(mod, MP_QSTR___path__, dest, true);
|
2023-05-09 23:02:09 -04:00
|
|
|
if (dest[0] != MP_OBJ_NULL && !subpkg_tried) {
|
2017-05-09 07:22:21 -04:00
|
|
|
subpkg_tried = true;
|
|
|
|
vstr_t vstr;
|
|
|
|
int len = strlen(argv[a + 1]);
|
|
|
|
vstr_init(&vstr, len + sizeof(".__main__"));
|
|
|
|
vstr_add_strn(&vstr, argv[a + 1], len);
|
|
|
|
vstr_add_strn(&vstr, ".__main__", sizeof(".__main__") - 1);
|
2022-08-22 03:08:05 -04:00
|
|
|
import_args[0] = mp_obj_new_str_from_vstr(&vstr);
|
2017-05-09 07:22:21 -04:00
|
|
|
goto reimport;
|
2014-10-25 14:16:24 -04:00
|
|
|
}
|
2017-05-09 07:22:21 -04:00
|
|
|
|
2014-10-25 14:16:24 -04:00
|
|
|
ret = 0;
|
|
|
|
break;
|
2014-03-01 05:21:53 -05:00
|
|
|
} else if (strcmp(argv[a], "-X") == 0) {
|
|
|
|
a += 1;
|
2015-12-07 13:09:20 -05:00
|
|
|
#if MICROPY_DEBUG_PRINTERS
|
2014-05-04 17:50:05 -04:00
|
|
|
} else if (strcmp(argv[a], "-v") == 0) {
|
|
|
|
mp_verbose_flag++;
|
2015-12-07 13:09:20 -05:00
|
|
|
#endif
|
2014-06-02 12:37:55 -04:00
|
|
|
} else if (strncmp(argv[a], "-O", 2) == 0) {
|
2015-11-12 18:54:38 -05:00
|
|
|
if (unichar_isdigit(argv[a][2])) {
|
2015-01-01 18:30:53 -05:00
|
|
|
MP_STATE_VM(mp_optimise_value) = argv[a][2] & 0xf;
|
2014-06-02 12:37:55 -04:00
|
|
|
} else {
|
2015-01-01 18:30:53 -05:00
|
|
|
MP_STATE_VM(mp_optimise_value) = 0;
|
2021-03-15 09:57:36 -04:00
|
|
|
for (char *p = argv[a] + 1; *p && *p == 'O'; p++, MP_STATE_VM(mp_optimise_value)++) {;
|
|
|
|
}
|
2014-06-02 12:37:55 -04:00
|
|
|
}
|
2014-01-07 09:54:15 -05:00
|
|
|
} else {
|
2020-02-01 12:39:18 -05:00
|
|
|
return invalid_args();
|
2014-01-07 09:54:15 -05:00
|
|
|
}
|
2014-03-01 05:21:53 -05:00
|
|
|
} else {
|
2014-06-22 12:08:32 -04:00
|
|
|
char *pathbuf = malloc(PATH_MAX);
|
|
|
|
char *basedir = realpath(argv[a], pathbuf);
|
2014-04-02 13:19:32 -04:00
|
|
|
if (basedir == NULL) {
|
2015-11-22 17:10:38 -05:00
|
|
|
mp_printf(&mp_stderr_print, "%s: can't open file '%s': [Errno %d] %s\n", argv[0], argv[a], errno, strerror(errno));
|
2022-10-22 02:05:25 -04:00
|
|
|
free(pathbuf);
|
2014-04-02 13:19:32 -04:00
|
|
|
// CPython exits with 2 in such case
|
2014-05-10 13:42:06 -04:00
|
|
|
ret = 2;
|
|
|
|
break;
|
2014-03-01 05:21:53 -05:00
|
|
|
}
|
2014-04-02 13:19:32 -04:00
|
|
|
|
2021-12-21 07:07:00 -05:00
|
|
|
// Set base dir of the script as first entry in sys.path.
|
2014-04-02 13:19:32 -04:00
|
|
|
char *p = strrchr(basedir, '/');
|
2023-06-05 02:52:29 -04:00
|
|
|
mp_obj_list_store(mp_sys_path, MP_OBJ_NEW_SMALL_INT(0), mp_obj_new_str_via_qstr(basedir, p - basedir));
|
2014-06-22 12:08:32 -04:00
|
|
|
free(pathbuf);
|
2014-04-02 13:19:32 -04:00
|
|
|
|
2014-10-25 14:16:24 -04:00
|
|
|
set_sys_argv(argv, argc, a);
|
2014-05-10 13:42:06 -04:00
|
|
|
ret = do_file(argv[a]);
|
2014-03-01 05:21:53 -05:00
|
|
|
break;
|
2014-01-07 09:54:15 -05:00
|
|
|
}
|
2013-10-18 14:58:12 -04:00
|
|
|
}
|
2014-01-07 09:54:15 -05:00
|
|
|
|
2020-01-15 13:05:06 -05:00
|
|
|
const char *inspect_env = getenv("MICROPYINSPECT");
|
|
|
|
if (inspect_env && inspect_env[0] != '\0') {
|
|
|
|
inspect = true;
|
|
|
|
}
|
2016-04-01 04:03:34 -04:00
|
|
|
if (ret == NOTHING_EXECUTED || inspect) {
|
2020-05-14 04:49:13 -04:00
|
|
|
if (isatty(0) || inspect) {
|
2015-06-04 18:42:45 -04:00
|
|
|
prompt_read_history();
|
|
|
|
ret = do_repl();
|
|
|
|
prompt_write_history();
|
|
|
|
} else {
|
2017-03-13 20:23:54 -04:00
|
|
|
ret = execute_from_lexer(LEX_SRC_STDIN, NULL, MP_PARSE_FILE_INPUT, false);
|
2015-06-04 18:42:45 -04:00
|
|
|
}
|
2014-03-01 05:21:53 -05:00
|
|
|
}
|
|
|
|
|
2021-04-23 15:26:42 -04:00
|
|
|
#if MICROPY_PY_SYS_SETTRACE
|
|
|
|
MP_STATE_THREAD(prof_trace_callback) = MP_OBJ_NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MICROPY_PY_SYS_ATEXIT
|
|
|
|
// Beware, the sys.settrace callback should be disabled before running sys.atexit.
|
|
|
|
if (mp_obj_is_callable(MP_STATE_VM(sys_exitfunc))) {
|
|
|
|
mp_call_function_0(MP_STATE_VM(sys_exitfunc));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-01-11 12:28:27 -05:00
|
|
|
#if MICROPY_PY_MICROPYTHON_MEM_INFO
|
2014-10-26 17:20:22 -04:00
|
|
|
if (mp_verbose_flag) {
|
2014-12-01 13:41:56 -05:00
|
|
|
mp_micropython_mem_info(0, NULL);
|
2014-10-26 17:20:22 -04:00
|
|
|
}
|
2015-01-11 12:28:27 -05:00
|
|
|
#endif
|
2014-10-26 17:20:22 -04:00
|
|
|
|
2020-04-07 01:02:52 -04:00
|
|
|
#if MICROPY_PY_BLUETOOTH
|
|
|
|
void mp_bluetooth_deinit(void);
|
|
|
|
mp_bluetooth_deinit();
|
|
|
|
#endif
|
|
|
|
|
2021-04-22 20:55:39 -04:00
|
|
|
#if MICROPY_PY_THREAD
|
|
|
|
mp_thread_deinit();
|
|
|
|
#endif
|
|
|
|
|
2018-05-31 09:11:08 -04:00
|
|
|
#if defined(MICROPY_UNIX_COVERAGE)
|
|
|
|
gc_sweep_all();
|
|
|
|
#endif
|
|
|
|
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_deinit();
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if MICROPY_ENABLE_GC && !defined(NDEBUG)
|
2014-10-01 18:18:39 -04:00
|
|
|
// We don't really need to free memory since we are about to exit the
|
|
|
|
// process, but doing so helps to find memory leaks.
|
2022-04-13 12:52:22 -04:00
|
|
|
#if !MICROPY_GC_SPLIT_HEAP
|
2014-10-01 18:18:39 -04:00
|
|
|
free(heap);
|
2022-04-13 12:52:22 -04:00
|
|
|
#else
|
|
|
|
for (size_t i = 0; i < MICROPY_GC_SPLIT_HEAP_N_HEAPS; i++) {
|
|
|
|
free(heaps[i]);
|
|
|
|
}
|
|
|
|
#endif
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2014-10-01 18:18:39 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
// printf("total bytes = %d\n", m_get_total_bytes_allocated());
|
2014-12-18 17:01:32 -05:00
|
|
|
return ret & 0xff;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
2013-11-09 15:14:30 -05:00
|
|
|
|
2014-04-08 10:08:14 -04:00
|
|
|
void nlr_jump_fail(void *val) {
|
2022-02-10 14:15:14 -05:00
|
|
|
#if MICROPY_USE_READLINE == 1
|
|
|
|
mp_hal_stdio_mode_orig();
|
|
|
|
#endif
|
2020-01-29 12:23:59 -05:00
|
|
|
fprintf(stderr, "FATAL: uncaught NLR %p\n", val);
|
2014-04-08 10:08:14 -04:00
|
|
|
exit(1);
|
|
|
|
}
|