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.
|
|
|
|
*/
|
|
|
|
|
2013-10-04 18:53:11 +00:00
|
|
|
#include <stdint.h>
|
2014-03-16 06:24:34 +00:00
|
|
|
#include <stdbool.h>
|
2013-10-04 18:53:11 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2014-01-01 23:14:36 +00:00
|
|
|
#include <stdlib.h>
|
2014-02-16 16:11:42 +00:00
|
|
|
#include <stdarg.h>
|
2015-06-04 22:42:45 +00:00
|
|
|
#include <unistd.h>
|
2014-06-02 16:37:55 +00:00
|
|
|
#include <ctype.h>
|
2014-03-16 06:24:34 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2014-04-02 17:19:32 +00:00
|
|
|
#include <errno.h>
|
2013-10-04 18:53:11 +00:00
|
|
|
|
2015-01-01 23:30:53 +00:00
|
|
|
#include "py/mpstate.h"
|
2015-01-01 20:40:19 +00:00
|
|
|
#include "py/nlr.h"
|
|
|
|
#include "py/compile.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/builtin.h"
|
|
|
|
#include "py/repl.h"
|
|
|
|
#include "py/gc.h"
|
|
|
|
#include "py/stackctrl.h"
|
2015-10-30 23:03:58 +00:00
|
|
|
#include "py/mphal.h"
|
2015-04-22 16:38:05 +00:00
|
|
|
#include "genhdr/mpversion.h"
|
2014-05-07 14:15:00 +00:00
|
|
|
#include "input.h"
|
2013-10-04 18:53:11 +00:00
|
|
|
|
2014-04-10 10:30:35 +00:00
|
|
|
// Command line options, with their defaults
|
2014-09-23 17:10:17 +00:00
|
|
|
STATIC bool compile_only = false;
|
|
|
|
STATIC uint emit_opt = MP_EMIT_OPT_NONE;
|
2014-04-06 10:48:15 +00:00
|
|
|
|
2014-03-01 10:21:53 +00:00
|
|
|
#if MICROPY_ENABLE_GC
|
2014-02-10 22:44:37 +00:00
|
|
|
// Heap size of GC heap (if enabled)
|
2014-04-04 13:29:00 +00:00
|
|
|
// Make it larger on a 64 bit machine, because pointers are larger.
|
2015-08-22 20:54:25 +00:00
|
|
|
long heap_size = 1024*1024 * (sizeof(mp_uint_t) / 4);
|
2014-03-01 10:21:53 +00:00
|
|
|
#endif
|
2014-02-10 22:44:37 +00:00
|
|
|
|
2015-11-27 17:01:44 +00:00
|
|
|
STATIC void stderr_print_strn(void *env, const char *str, size_t len) {
|
2015-05-09 21:55:35 +00:00
|
|
|
(void)env;
|
2015-11-13 13:28:57 +00:00
|
|
|
ssize_t dummy = write(STDERR_FILENO, str, len);
|
|
|
|
(void)dummy;
|
2015-05-09 21:55:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const mp_print_t mp_stderr_print = {NULL, stderr_print_strn};
|
|
|
|
|
2014-10-01 22:18:39 +00:00
|
|
|
#define FORCED_EXIT (0x100)
|
2014-10-25 18:16:24 +00: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 17:01:44 +00:00
|
|
|
STATIC int handle_uncaught_exception(mp_obj_base_t *exc) {
|
2014-10-25 18:16:24 +00:00
|
|
|
// check for SystemExit
|
2015-11-27 17:01:44 +00:00
|
|
|
if (mp_obj_is_subclass_fast(MP_OBJ_FROM_PTR(exc->type), MP_OBJ_FROM_PTR(&mp_type_SystemExit))) {
|
2014-10-25 18:16:24 +00:00
|
|
|
// None is an exit value of 0; an int is its value; anything else is 1
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_t exit_val = mp_obj_exception_get_value(MP_OBJ_FROM_PTR(exc));
|
2014-10-25 18:16:24 +00: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 17:01:44 +00:00
|
|
|
mp_obj_print_exception(&mp_stderr_print, MP_OBJ_FROM_PTR(exc));
|
2014-10-25 18:16:24 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 22:18:39 +00:00
|
|
|
// value of the exit is in the lower 8 bits of the return value
|
2014-05-10 17:42:06 +00:00
|
|
|
STATIC int execute_from_lexer(mp_lexer_t *lex, mp_parse_input_kind_t input_kind, bool is_repl) {
|
2014-01-07 14:54:15 +00:00
|
|
|
if (lex == NULL) {
|
2015-02-07 18:33:58 +00:00
|
|
|
printf("MemoryError: lexer could not allocate memory\n");
|
2014-05-10 17:42:06 +00:00
|
|
|
return 1;
|
2014-01-07 14:54:15 +00:00
|
|
|
}
|
|
|
|
|
2015-05-24 19:00:50 +00:00
|
|
|
mp_hal_set_interrupt_char(CHAR_CTRL_C);
|
2014-10-25 17:19:55 +00:00
|
|
|
|
2014-01-07 14:54:15 +00:00
|
|
|
nlr_buf_t nlr;
|
|
|
|
if (nlr_push(&nlr) == 0) {
|
2015-02-07 18:33:58 +00: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 09:50:43 +00:00
|
|
|
mp_parse_tree_t parse_tree = mp_parse(lex, input_kind);
|
2015-02-07 18:33:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
printf("----------------\n");
|
2015-09-23 09:50:43 +00:00
|
|
|
mp_parse_node_print(parse_tree.root, 0);
|
2015-02-07 18:33:58 +00:00
|
|
|
printf("----------------\n");
|
|
|
|
*/
|
|
|
|
|
2015-09-23 09:50:43 +00:00
|
|
|
mp_obj_t module_fun = mp_compile(&parse_tree, source_name, emit_opt, is_repl);
|
2015-02-07 18:33:58 +00:00
|
|
|
|
|
|
|
if (!compile_only) {
|
|
|
|
// execute it
|
|
|
|
mp_call_function_0(module_fun);
|
2015-12-01 22:38:06 +00:00
|
|
|
// check for pending exception
|
|
|
|
if (MP_STATE_VM(mp_pending_exception) != MP_OBJ_NULL) {
|
|
|
|
mp_obj_t obj = MP_STATE_VM(mp_pending_exception);
|
|
|
|
MP_STATE_VM(mp_pending_exception) = MP_OBJ_NULL;
|
|
|
|
nlr_raise(obj);
|
|
|
|
}
|
2015-02-07 18:33:58 +00:00
|
|
|
}
|
|
|
|
|
2015-05-24 19:00:50 +00:00
|
|
|
mp_hal_set_interrupt_char(-1);
|
2014-01-07 14:54:15 +00:00
|
|
|
nlr_pop();
|
2014-05-10 17:42:06 +00:00
|
|
|
return 0;
|
2015-02-07 18:33:58 +00:00
|
|
|
|
2014-01-07 14:54:15 +00:00
|
|
|
} else {
|
|
|
|
// uncaught exception
|
2015-05-24 19:00:50 +00:00
|
|
|
mp_hal_set_interrupt_char(-1);
|
2015-11-27 17:01:44 +00:00
|
|
|
return handle_uncaught_exception(nlr.ret_val);
|
2014-01-07 14:54:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 09:34:22 +00:00
|
|
|
#if MICROPY_USE_READLINE == 1
|
|
|
|
#include "lib/mp-readline/readline.h"
|
|
|
|
#else
|
2014-04-04 17:25:53 +00:00
|
|
|
STATIC char *strjoin(const char *s1, int sep_char, const char *s2) {
|
2013-10-18 18:58:12 +00:00
|
|
|
int l1 = strlen(s1);
|
|
|
|
int l2 = strlen(s2);
|
2014-04-04 14:47:53 +00:00
|
|
|
char *s = malloc(l1 + l2 + 2);
|
2013-10-18 18:58:12 +00:00
|
|
|
memcpy(s, s1, l1);
|
|
|
|
if (sep_char != 0) {
|
|
|
|
s[l1] = sep_char;
|
|
|
|
l1 += 1;
|
|
|
|
}
|
|
|
|
memcpy(s + l1, s2, l2);
|
2013-10-22 21:32:27 +00:00
|
|
|
s[l1 + l2] = 0;
|
2013-10-18 18:58:12 +00:00
|
|
|
return s;
|
|
|
|
}
|
2015-08-20 09:34:22 +00:00
|
|
|
#endif
|
2013-10-18 18:58:12 +00:00
|
|
|
|
2014-10-01 22:18:39 +00:00
|
|
|
STATIC int do_repl(void) {
|
2015-10-11 23:19:00 +00:00
|
|
|
mp_hal_stdout_tx_str("MicroPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; "
|
2015-10-20 09:30:36 +00:00
|
|
|
MICROPY_PY_SYS_PLATFORM " version\nUse Ctrl-D to exit, Ctrl-E for paste mode\n");
|
2014-04-07 12:27:50 +00:00
|
|
|
|
2015-08-20 09:34:22 +00:00
|
|
|
#if MICROPY_USE_READLINE == 1
|
|
|
|
|
|
|
|
// use MicroPython supplied readline
|
|
|
|
|
|
|
|
vstr_t line;
|
|
|
|
vstr_init(&line, 16);
|
|
|
|
for (;;) {
|
2015-10-09 21:41:10 +00:00
|
|
|
mp_hal_stdio_mode_raw();
|
|
|
|
|
2015-08-20 09:34:22 +00:00
|
|
|
input_restart:
|
|
|
|
vstr_reset(&line);
|
|
|
|
int ret = readline(&line, ">>> ");
|
2015-10-09 21:41:10 +00:00
|
|
|
mp_parse_input_kind_t parse_input_kind = MP_PARSE_SINGLE_INPUT;
|
2015-08-20 09:34:22 +00:00
|
|
|
|
|
|
|
if (ret == CHAR_CTRL_D) {
|
|
|
|
// EOF
|
|
|
|
printf("\n");
|
|
|
|
mp_hal_stdio_mode_orig();
|
|
|
|
vstr_clear(&line);
|
|
|
|
return 0;
|
2015-10-09 21:41:10 +00:00
|
|
|
} else if (ret == CHAR_CTRL_E) {
|
|
|
|
// paste mode
|
2015-10-20 09:30:36 +00:00
|
|
|
mp_hal_stdout_tx_str("\npaste mode; Ctrl-C to cancel, Ctrl-D to finish\n=== ");
|
2015-10-09 21:41:10 +00: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 09:34:22 +00:00
|
|
|
} else if (line.len == 0) {
|
|
|
|
if (ret != 0) {
|
|
|
|
printf("\n");
|
|
|
|
}
|
2015-10-09 21:41:10 +00: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');
|
|
|
|
ret = readline(&line, "... ");
|
|
|
|
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 09:34:22 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-09 21:41:10 +00:00
|
|
|
|
2015-08-20 09:34:22 +00:00
|
|
|
mp_hal_stdio_mode_orig();
|
|
|
|
|
|
|
|
mp_lexer_t *lex = mp_lexer_new_from_str_len(MP_QSTR__lt_stdin_gt_, line.buf, line.len, false);
|
2015-10-09 21:41:10 +00:00
|
|
|
ret = execute_from_lexer(lex, parse_input_kind, true);
|
2015-08-20 09:34:22 +00:00
|
|
|
if (ret & FORCED_EXIT) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
// use GNU or simple readline
|
|
|
|
|
2013-10-18 18:58:12 +00:00
|
|
|
for (;;) {
|
2014-01-01 16:28:01 +00:00
|
|
|
char *line = prompt(">>> ");
|
2013-10-18 18:58:12 +00:00
|
|
|
if (line == NULL) {
|
|
|
|
// EOF
|
2014-10-01 22:18:39 +00:00
|
|
|
return 0;
|
2013-10-18 18:58:12 +00:00
|
|
|
}
|
2014-04-08 11:04:29 +00:00
|
|
|
while (mp_repl_continue_with_input(line)) {
|
|
|
|
char *line2 = prompt("... ");
|
|
|
|
if (line2 == NULL) {
|
|
|
|
break;
|
2013-10-18 18:58:12 +00:00
|
|
|
}
|
2014-04-08 11:04:29 +00:00
|
|
|
char *line3 = strjoin(line, '\n', line2);
|
|
|
|
free(line);
|
|
|
|
free(line2);
|
|
|
|
line = line3;
|
2013-10-18 18:58:12 +00:00
|
|
|
}
|
2013-10-20 16:42:00 +00:00
|
|
|
|
2014-01-25 13:51:19 +00:00
|
|
|
mp_lexer_t *lex = mp_lexer_new_from_str_len(MP_QSTR__lt_stdin_gt_, line, strlen(line), false);
|
2014-10-01 22:18:39 +00:00
|
|
|
int ret = execute_from_lexer(lex, MP_PARSE_SINGLE_INPUT, true);
|
|
|
|
if (ret & FORCED_EXIT) {
|
|
|
|
return ret;
|
|
|
|
}
|
2014-01-24 14:21:26 +00:00
|
|
|
free(line);
|
2013-10-04 18:53:11 +00:00
|
|
|
}
|
2015-08-20 09:34:22 +00:00
|
|
|
|
|
|
|
#endif
|
2013-10-18 18:58:12 +00:00
|
|
|
}
|
|
|
|
|
2014-05-10 17:42:06 +00:00
|
|
|
STATIC int do_file(const char *file) {
|
2013-12-21 18:17:45 +00:00
|
|
|
mp_lexer_t *lex = mp_lexer_new_from_file(file);
|
2014-05-10 17:42:06 +00:00
|
|
|
return execute_from_lexer(lex, MP_PARSE_FILE_INPUT, false);
|
2014-01-07 14:54:15 +00:00
|
|
|
}
|
2013-10-04 18:53:11 +00:00
|
|
|
|
2014-05-10 17:42:06 +00:00
|
|
|
STATIC int do_str(const char *str) {
|
2014-01-25 13:51:19 +00:00
|
|
|
mp_lexer_t *lex = mp_lexer_new_from_str_len(MP_QSTR__lt_stdin_gt_, str, strlen(str), false);
|
2014-10-17 22:51:39 +00:00
|
|
|
return execute_from_lexer(lex, MP_PARSE_FILE_INPUT, false);
|
2013-10-18 18:58:12 +00:00
|
|
|
}
|
2013-10-04 18:53:11 +00:00
|
|
|
|
2014-12-10 22:07:04 +00:00
|
|
|
STATIC int usage(char **argv) {
|
2014-03-08 19:04:47 +00:00
|
|
|
printf(
|
2014-05-04 21:50:05 +00:00
|
|
|
"usage: %s [<opts>] [-X <implopt>] [-c <command>] [<filename>]\n"
|
|
|
|
"Options:\n"
|
|
|
|
"-v : verbose (trace various operations); can be multiple\n"
|
2014-06-02 16:37:55 +00:00
|
|
|
"-O[N] : apply bytecode optimizations of level N\n"
|
2014-03-08 19:04:47 +00:00
|
|
|
"\n"
|
2014-04-02 17:31:18 +00:00
|
|
|
"Implementation specific options:\n", argv[0]
|
2014-04-02 17:29:18 +00:00
|
|
|
);
|
|
|
|
int impl_opts_cnt = 0;
|
2014-04-06 10:48:15 +00:00
|
|
|
printf(
|
2014-04-10 10:30:35 +00:00
|
|
|
" compile-only -- parse and compile only\n"
|
2014-04-06 10:48:15 +00:00
|
|
|
" emit={bytecode,native,viper} -- set the default code emitter\n"
|
|
|
|
);
|
|
|
|
impl_opts_cnt++;
|
2014-04-02 17:29:18 +00:00
|
|
|
#if MICROPY_ENABLE_GC
|
|
|
|
printf(
|
2014-06-24 13:58:00 +00:00
|
|
|
" heapsize=<n> -- set the heap size for the GC (default %ld)\n"
|
|
|
|
, heap_size);
|
2014-04-02 17:29:18 +00:00
|
|
|
impl_opts_cnt++;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (impl_opts_cnt == 0) {
|
|
|
|
printf(" (none)\n");
|
|
|
|
}
|
|
|
|
|
2014-01-07 14:54:15 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-03-01 10:21:53 +00:00
|
|
|
// Process options which set interpreter init options
|
2014-12-10 22:07:04 +00:00
|
|
|
STATIC void pre_process_options(int argc, char **argv) {
|
2014-03-01 10:21:53 +00:00
|
|
|
for (int a = 1; a < argc; a++) {
|
|
|
|
if (argv[a][0] == '-') {
|
|
|
|
if (strcmp(argv[a], "-X") == 0) {
|
|
|
|
if (a + 1 >= argc) {
|
2014-04-02 17:31:18 +00:00
|
|
|
exit(usage(argv));
|
2014-03-01 10:21:53 +00:00
|
|
|
}
|
2014-03-08 19:04:47 +00:00
|
|
|
if (0) {
|
2014-04-10 10:30:35 +00:00
|
|
|
} else if (strcmp(argv[a + 1], "compile-only") == 0) {
|
|
|
|
compile_only = true;
|
2014-04-06 10:48:15 +00:00
|
|
|
} else if (strcmp(argv[a + 1], "emit=bytecode") == 0) {
|
2014-05-12 21:35:37 +00:00
|
|
|
emit_opt = MP_EMIT_OPT_BYTECODE;
|
2014-04-06 10:48:15 +00: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;
|
2014-03-01 10:21:53 +00:00
|
|
|
#if MICROPY_ENABLE_GC
|
2014-03-08 19:04:47 +00:00
|
|
|
} else if (strncmp(argv[a + 1], "heapsize=", sizeof("heapsize=") - 1) == 0) {
|
2014-10-25 01:43:08 +00:00
|
|
|
char *end;
|
|
|
|
heap_size = strtol(argv[a + 1] + sizeof("heapsize=") - 1, &end, 0);
|
|
|
|
// Don't bring unneeded libc dependencies like tolower()
|
2014-11-05 00:08:38 +00: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-25 01:43:08 +00:00
|
|
|
if ((*end | 0x20) == 'k') {
|
|
|
|
heap_size *= 1024;
|
|
|
|
} else if ((*end | 0x20) == 'm') {
|
|
|
|
heap_size *= 1024 * 1024;
|
|
|
|
}
|
2014-11-05 00:08:38 +00:00
|
|
|
if (word_adjust) {
|
|
|
|
heap_size = heap_size * BYTES_PER_WORD / 4;
|
|
|
|
}
|
2014-03-01 10:21:53 +00:00
|
|
|
#endif
|
2014-03-08 19:04:47 +00:00
|
|
|
} else {
|
2014-04-02 17:31:18 +00:00
|
|
|
exit(usage(argv));
|
2014-03-08 19:04:47 +00:00
|
|
|
}
|
2014-03-01 10:21:53 +00:00
|
|
|
a++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-10 22:07:04 +00:00
|
|
|
STATIC void set_sys_argv(char *argv[], int argc, int start_arg) {
|
2014-10-25 18:16:24 +00: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])));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-05 10:33:55 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define PATHLIST_SEP_CHAR ';'
|
|
|
|
#else
|
|
|
|
#define PATHLIST_SEP_CHAR ':'
|
|
|
|
#endif
|
|
|
|
|
2015-11-27 17:01:44 +00:00
|
|
|
/*
|
|
|
|
typedef union _a_t { uint32_t u32; uint64_t u64; } a_t;
|
|
|
|
STATIC const uint64_t table[4] = {
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
//(a_t){(uint32_t)&set_sys_argv}.u64,
|
|
|
|
((a_t){(uint32_t)123}).u64,
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2013-10-18 18:58:12 +00:00
|
|
|
int main(int argc, char **argv) {
|
2015-11-27 17:01:44 +00:00
|
|
|
/*
|
|
|
|
printf("sizeof(void*)=%u\n", (uint)sizeof(void*));
|
|
|
|
for (int i = 0; i < sizeof(table); ++i) {
|
|
|
|
byte *ptr = (void*)&table[0];
|
|
|
|
printf(" %02x", ptr[i]);
|
|
|
|
if ((i + 1)%8 == 0) printf("\n");
|
|
|
|
}
|
|
|
|
*/
|
2015-03-21 00:13:13 +00:00
|
|
|
mp_stack_set_limit(40000 * (BYTES_PER_WORD / 4));
|
2014-02-10 22:44:37 +00:00
|
|
|
|
2014-03-01 10:21:53 +00:00
|
|
|
pre_process_options(argc, argv);
|
|
|
|
|
2014-02-10 22:44:37 +00:00
|
|
|
#if MICROPY_ENABLE_GC
|
2014-03-01 10:21:53 +00:00
|
|
|
char *heap = malloc(heap_size);
|
|
|
|
gc_init(heap, heap + heap_size);
|
2014-02-10 22:44:37 +00:00
|
|
|
#endif
|
|
|
|
|
2014-03-30 12:35:08 +00:00
|
|
|
mp_init();
|
2013-10-18 18:58:12 +00:00
|
|
|
|
2014-10-25 23:42:41 +00:00
|
|
|
#ifndef _WIN32
|
2014-10-25 17:19:55 +00:00
|
|
|
// create keyboard interrupt object
|
2015-01-01 23:30:53 +00:00
|
|
|
MP_STATE_VM(keyboard_interrupt_obj) = mp_obj_new_exception(&mp_type_KeyboardInterrupt);
|
2014-10-25 23:42:41 +00:00
|
|
|
#endif
|
2014-10-25 17:19:55 +00:00
|
|
|
|
2014-02-04 22:59:54 +00:00
|
|
|
char *home = getenv("HOME");
|
|
|
|
char *path = getenv("MICROPYPATH");
|
|
|
|
if (path == NULL) {
|
2015-05-29 22:07:18 +00:00
|
|
|
#ifdef MICROPY_PY_SYS_PATH_DEFAULT
|
|
|
|
path = MICROPY_PY_SYS_PATH_DEFAULT;
|
|
|
|
#else
|
2014-02-04 22:59:54 +00:00
|
|
|
path = "~/.micropython/lib:/usr/lib/micropython";
|
2015-05-29 22:07:18 +00:00
|
|
|
#endif
|
2014-02-04 22:59:54 +00:00
|
|
|
}
|
2014-08-30 13:04:14 +00:00
|
|
|
mp_uint_t path_num = 1; // [0] is for current dir (or base dir of the script)
|
2014-06-05 10:33:55 +00:00
|
|
|
for (char *p = path; p != NULL; p = strchr(p, PATHLIST_SEP_CHAR)) {
|
2014-02-04 22:59:54 +00:00
|
|
|
path_num++;
|
|
|
|
if (p != NULL) {
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_list_init(MP_OBJ_TO_PTR(mp_sys_path), path_num);
|
2014-02-04 23:53:44 +00:00
|
|
|
mp_obj_t *path_items;
|
2014-03-30 12:35:08 +00:00
|
|
|
mp_obj_list_get(mp_sys_path, &path_num, &path_items);
|
2014-02-04 23:53:44 +00:00
|
|
|
path_items[0] = MP_OBJ_NEW_QSTR(MP_QSTR_);
|
2015-01-20 11:55:10 +00:00
|
|
|
{
|
2014-02-04 22:59:54 +00:00
|
|
|
char *p = path;
|
2015-01-16 17:47:07 +00:00
|
|
|
for (mp_uint_t i = 1; i < path_num; i++) {
|
2014-06-05 10:33:55 +00:00
|
|
|
char *p1 = strchr(p, PATHLIST_SEP_CHAR);
|
2014-02-04 22:59:54 +00:00
|
|
|
if (p1 == NULL) {
|
|
|
|
p1 = p + strlen(p);
|
|
|
|
}
|
|
|
|
if (p[0] == '~' && p[1] == '/' && home != NULL) {
|
|
|
|
// Expand standalone ~ to $HOME
|
|
|
|
CHECKBUF(buf, PATH_MAX);
|
|
|
|
CHECKBUF_APPEND(buf, home, strlen(home));
|
2015-01-16 17:47:07 +00:00
|
|
|
CHECKBUF_APPEND(buf, p + 1, (size_t)(p1 - p - 1));
|
2014-02-04 23:53:44 +00:00
|
|
|
path_items[i] = MP_OBJ_NEW_QSTR(qstr_from_strn(buf, CHECKBUF_LEN(buf)));
|
2014-02-04 22:59:54 +00:00
|
|
|
} else {
|
2014-02-04 23:53:44 +00:00
|
|
|
path_items[i] = MP_OBJ_NEW_QSTR(qstr_from_strn(p, p1 - p));
|
2014-02-04 22:59:54 +00:00
|
|
|
}
|
|
|
|
p = p1 + 1;
|
|
|
|
}
|
2015-01-20 11:55:10 +00:00
|
|
|
}
|
2014-02-04 22:59:54 +00:00
|
|
|
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_list_init(MP_OBJ_TO_PTR(mp_sys_argv), 0);
|
2014-01-19 22:53:46 +00:00
|
|
|
|
2015-05-08 08:18:38 +00:00
|
|
|
#if defined(MICROPY_UNIX_COVERAGE)
|
|
|
|
{
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ(extra_coverage_obj);
|
|
|
|
mp_store_global(QSTR_FROM_STR_STATIC("extra_coverage"), (mp_obj_t)&extra_coverage_obj);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-09 20:57:50 +00: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 11:24:26 +00:00
|
|
|
//
|
|
|
|
// mp_obj_t test_class_type, test_class_instance;
|
|
|
|
// test_class_type = mp_obj_new_type(QSTR_FROM_STR_STATIC("TestClass"), mp_const_empty_tuple, mp_obj_new_dict(0));
|
|
|
|
// mp_store_name(QSTR_FROM_STR_STATIC("test_obj"), test_class_instance = mp_call_function_0(test_class_type));
|
|
|
|
// mp_store_attr(test_class_instance, QSTR_FROM_STR_STATIC("attr"), mp_obj_new_int(42));
|
2014-01-09 20:57:50 +00:00
|
|
|
|
2014-01-04 15:57:35 +00: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());
|
|
|
|
*/
|
|
|
|
|
2014-05-10 17:42:06 +00:00
|
|
|
const int NOTHING_EXECUTED = -2;
|
|
|
|
int ret = NOTHING_EXECUTED;
|
2014-03-01 10:21:53 +00:00
|
|
|
for (int a = 1; a < argc; a++) {
|
|
|
|
if (argv[a][0] == '-') {
|
|
|
|
if (strcmp(argv[a], "-c") == 0) {
|
|
|
|
if (a + 1 >= argc) {
|
2014-04-02 17:31:18 +00:00
|
|
|
return usage(argv);
|
2014-01-07 14:54:15 +00:00
|
|
|
}
|
2014-05-10 17:42:06 +00:00
|
|
|
ret = do_str(argv[a + 1]);
|
2014-10-01 22:18:39 +00:00
|
|
|
if (ret & FORCED_EXIT) {
|
|
|
|
break;
|
|
|
|
}
|
2014-03-01 10:21:53 +00:00
|
|
|
a += 1;
|
2014-10-25 18:16:24 +00:00
|
|
|
} else if (strcmp(argv[a], "-m") == 0) {
|
|
|
|
if (a + 1 >= argc) {
|
|
|
|
return usage(argv);
|
|
|
|
}
|
|
|
|
mp_obj_t import_args[4];
|
|
|
|
import_args[0] = mp_obj_new_str(argv[a + 1], strlen(argv[a + 1]), false);
|
|
|
|
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;
|
|
|
|
if (nlr_push(&nlr) == 0) {
|
|
|
|
mod = mp_builtin___import__(MP_ARRAY_SIZE(import_args), import_args);
|
|
|
|
nlr_pop();
|
|
|
|
} else {
|
|
|
|
// uncaught exception
|
2015-11-27 17:01:44 +00:00
|
|
|
return handle_uncaught_exception(nlr.ret_val) & 0xff;
|
2014-10-25 18:16:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mp_obj_is_package(mod)) {
|
|
|
|
// TODO
|
2015-11-13 13:28:57 +00:00
|
|
|
mp_printf(&mp_stderr_print, "%s: -m for packages not yet implemented\n", argv[0]);
|
2014-10-25 18:16:24 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
break;
|
2014-03-01 10:21:53 +00:00
|
|
|
} else if (strcmp(argv[a], "-X") == 0) {
|
|
|
|
a += 1;
|
2014-05-04 21:50:05 +00:00
|
|
|
} else if (strcmp(argv[a], "-v") == 0) {
|
|
|
|
mp_verbose_flag++;
|
2014-06-02 16:37:55 +00:00
|
|
|
} else if (strncmp(argv[a], "-O", 2) == 0) {
|
2015-11-12 23:54:38 +00:00
|
|
|
if (unichar_isdigit(argv[a][2])) {
|
2015-01-01 23:30:53 +00:00
|
|
|
MP_STATE_VM(mp_optimise_value) = argv[a][2] & 0xf;
|
2014-06-02 16:37:55 +00:00
|
|
|
} else {
|
2015-01-01 23:30:53 +00:00
|
|
|
MP_STATE_VM(mp_optimise_value) = 0;
|
|
|
|
for (char *p = argv[a] + 1; *p && *p == 'O'; p++, MP_STATE_VM(mp_optimise_value)++);
|
2014-06-02 16:37:55 +00:00
|
|
|
}
|
2014-01-07 14:54:15 +00:00
|
|
|
} else {
|
2014-04-02 17:31:18 +00:00
|
|
|
return usage(argv);
|
2014-01-07 14:54:15 +00:00
|
|
|
}
|
2014-03-01 10:21:53 +00:00
|
|
|
} else {
|
2014-06-22 16:08:32 +00:00
|
|
|
char *pathbuf = malloc(PATH_MAX);
|
|
|
|
char *basedir = realpath(argv[a], pathbuf);
|
2014-04-02 17:19:32 +00:00
|
|
|
if (basedir == NULL) {
|
2015-11-22 22:10:38 +00:00
|
|
|
mp_printf(&mp_stderr_print, "%s: can't open file '%s': [Errno %d] %s\n", argv[0], argv[a], errno, strerror(errno));
|
2014-04-02 17:19:32 +00:00
|
|
|
// CPython exits with 2 in such case
|
2014-05-10 17:42:06 +00:00
|
|
|
ret = 2;
|
|
|
|
break;
|
2014-03-01 10:21:53 +00:00
|
|
|
}
|
2014-04-02 17:19:32 +00:00
|
|
|
|
|
|
|
// Set base dir of the script as first entry in sys.path
|
|
|
|
char *p = strrchr(basedir, '/');
|
|
|
|
path_items[0] = MP_OBJ_NEW_QSTR(qstr_from_strn(basedir, p - basedir));
|
2014-06-22 16:08:32 +00:00
|
|
|
free(pathbuf);
|
2014-04-02 17:19:32 +00:00
|
|
|
|
2014-10-25 18:16:24 +00:00
|
|
|
set_sys_argv(argv, argc, a);
|
2014-05-10 17:42:06 +00:00
|
|
|
ret = do_file(argv[a]);
|
2014-03-01 10:21:53 +00:00
|
|
|
break;
|
2014-01-07 14:54:15 +00:00
|
|
|
}
|
2013-10-18 18:58:12 +00:00
|
|
|
}
|
2014-01-07 14:54:15 +00:00
|
|
|
|
2014-05-10 17:42:06 +00:00
|
|
|
if (ret == NOTHING_EXECUTED) {
|
2015-06-04 22:42:45 +00:00
|
|
|
if (isatty(0)) {
|
|
|
|
prompt_read_history();
|
|
|
|
ret = do_repl();
|
|
|
|
prompt_write_history();
|
|
|
|
} else {
|
|
|
|
mp_lexer_t *lex = mp_lexer_new_from_fd(MP_QSTR__lt_stdin_gt_, 0, false);
|
|
|
|
ret = execute_from_lexer(lex, MP_PARSE_FILE_INPUT, false);
|
|
|
|
}
|
2014-03-01 10:21:53 +00:00
|
|
|
}
|
|
|
|
|
2015-01-11 17:28:27 +00:00
|
|
|
#if MICROPY_PY_MICROPYTHON_MEM_INFO
|
2014-10-26 21:20:22 +00:00
|
|
|
if (mp_verbose_flag) {
|
2014-12-01 18:41:56 +00:00
|
|
|
mp_micropython_mem_info(0, NULL);
|
2014-10-26 21:20:22 +00:00
|
|
|
}
|
2015-01-11 17:28:27 +00:00
|
|
|
#endif
|
2014-10-26 21:20:22 +00:00
|
|
|
|
2014-03-30 12:35:08 +00:00
|
|
|
mp_deinit();
|
2013-10-04 18:53:11 +00:00
|
|
|
|
2014-10-01 22:18:39 +00:00
|
|
|
#if MICROPY_ENABLE_GC && !defined(NDEBUG)
|
|
|
|
// We don't really need to free memory since we are about to exit the
|
|
|
|
// process, but doing so helps to find memory leaks.
|
|
|
|
free(heap);
|
|
|
|
#endif
|
|
|
|
|
2013-10-04 18:53:11 +00:00
|
|
|
//printf("total bytes = %d\n", m_get_total_bytes_allocated());
|
2014-12-18 22:01:32 +00:00
|
|
|
return ret & 0xff;
|
2013-10-04 18:53:11 +00:00
|
|
|
}
|
2013-11-09 20:14:30 +00:00
|
|
|
|
2014-02-05 23:57:48 +00:00
|
|
|
uint mp_import_stat(const char *path) {
|
|
|
|
struct stat st;
|
|
|
|
if (stat(path, &st) == 0) {
|
|
|
|
if (S_ISDIR(st.st_mode)) {
|
|
|
|
return MP_IMPORT_STAT_DIR;
|
|
|
|
} else if (S_ISREG(st.st_mode)) {
|
|
|
|
return MP_IMPORT_STAT_FILE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return MP_IMPORT_STAT_NO_EXIST;
|
|
|
|
}
|
2014-02-16 16:11:42 +00:00
|
|
|
|
2014-04-08 14:08:14 +00:00
|
|
|
void nlr_jump_fail(void *val) {
|
|
|
|
printf("FATAL: uncaught NLR %p\n", val);
|
|
|
|
exit(1);
|
|
|
|
}
|