summaryrefslogtreecommitdiffstatshomepage
path: root/unix/main.c
blob: 2a1103c45f6d996042d08cea73b06366308c3cf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <stdint.h>
#include <stdio.h>
#include <string.h>

#include "misc.h"
#include "mpyconfig.h"
#include "lexer.h"
#include "parse.h"
#include "compile.h"
#include "runtime.h"

int main(int argc, char **argv) {
    qstr_init();
    rt_init();

    if (argc != 2) {
        printf("usage: py <file>\n");
        return 1;
    }
    py_lexer_t *lex = py_lexer_from_file(argv[1]);
    //const char *pysrc = "def f():\n  x=x+1\n  print(42)\n";
    //py_lexer_t *lex = py_lexer_from_str_len("<>", pysrc, strlen(pysrc), false);
    if (lex == NULL) {
        return 1;
    }

    if (0) {
        while (!py_lexer_is_kind(lex, PY_TOKEN_END)) {
            py_token_show(py_lexer_cur(lex));
            py_lexer_to_next(lex);
        }
    } else {
        py_parse_node_t pn = py_parse(lex, 0);
        if (pn != PY_PARSE_NODE_NULL) {
            //printf("----------------\n");
            //parse_node_show(pn, 0);
            //printf("----------------\n");
            py_compile(pn);
            //printf("----------------\n");
        }
    }

    py_lexer_free(lex);

#if !defined(MICROPY_EMIT_ENABLE_CPYTHON)
    if (1) {
        // execute it
        py_obj_t module_fun = rt_make_function_from_id(1);
        if (module_fun != py_const_none) {
            py_obj_t ret = rt_call_function_0(module_fun);
            printf("done! got: ");
            py_obj_print(ret);
            printf("\n");
        }
    }
#endif

    rt_deinit();

    //printf("total bytes = %d\n", m_get_total_bytes_allocated());
    return 0;
}