frozenmain.c 2.7 KB
Newer Older
1 2 3

/* Python interpreter main program for frozen scripts */

Guido van Rossum's avatar
Guido van Rossum committed
4
#include "Python.h"
5
#include <locale.h>
6

7
#ifdef MS_WINDOWS
8 9 10
extern void PyWinFreeze_ExeInit(void);
extern void PyWinFreeze_ExeTerm(void);
extern int PyInitFrozenExtensions(void);
11 12
#endif

13 14 15
/* Main program */

int
16
Py_FrozenMain(int argc, char **argv)
17
{
18
    char *p;
19
    int i, n, sts = 1;
20 21
    int inspect = 0;
    int unbuffered = 0;
22 23
    char *oldloc = NULL;
    wchar_t **argv_copy = NULL;
24
    /* We need a second copies, as Python might modify the first one. */
25
    wchar_t **argv_copy2 = NULL;
26

27 28 29 30 31 32 33
    if (argc > 0) {
        argv_copy = PyMem_RawMalloc(sizeof(wchar_t*) * argc);
        argv_copy2 = PyMem_RawMalloc(sizeof(wchar_t*) * argc);
        if (!argv_copy || !argv_copy2) {
            fprintf(stderr, "out of memory\n");
            goto error;
        }
34
    }
35 36 37 38 39 40 41 42 43 44 45 46 47 48

    Py_FrozenFlag = 1; /* Suppress errors from getpath.c */

    if ((p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
        inspect = 1;
    if ((p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
        unbuffered = 1;

    if (unbuffered) {
        setbuf(stdin, (char *)NULL);
        setbuf(stdout, (char *)NULL);
        setbuf(stderr, (char *)NULL);
    }

49 50
    oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL));
    if (!oldloc) {
51
        fprintf(stderr, "out of memory\n");
52
        goto error;
53 54 55 56
    }

    setlocale(LC_ALL, "");
    for (i = 0; i < argc; i++) {
57
        argv_copy[i] = Py_DecodeLocale(argv[i], NULL);
58
        argv_copy2[i] = argv_copy[i];
59
        if (!argv_copy[i]) {
60 61
            fprintf(stderr, "Unable to decode the command line argument #%i\n",
                            i + 1);
62 63
            argc = i;
            goto error;
64 65 66
        }
    }
    setlocale(LC_ALL, oldloc);
67 68
    PyMem_RawFree(oldloc);
    oldloc = NULL;
69

70
#ifdef MS_WINDOWS
71
    PyInitFrozenExtensions();
72
#endif /* MS_WINDOWS */
73 74
    if (argc >= 1)
        Py_SetProgramName(argv_copy[0]);
75
    Py_Initialize();
76
#ifdef MS_WINDOWS
77
    PyWinFreeze_ExeInit();
78
#endif
79

80 81 82
    if (Py_VerboseFlag)
        fprintf(stderr, "Python %s\n%s\n",
            Py_GetVersion(), Py_GetCopyright());
83

84
    PySys_SetArgv(argc, argv_copy);
85

86 87 88 89 90 91 92 93 94
    n = PyImport_ImportFrozenModule("__main__");
    if (n == 0)
        Py_FatalError("__main__ not frozen");
    if (n < 0) {
        PyErr_Print();
        sts = 1;
    }
    else
        sts = 0;
95

96 97
    if (inspect && isatty((int)fileno(stdin)))
        sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
98

99
#ifdef MS_WINDOWS
100
    PyWinFreeze_ExeTerm();
101
#endif
102 103 104
    if (Py_FinalizeEx() < 0) {
        sts = 120;
    }
105 106

error:
107
    PyMem_RawFree(argv_copy);
108 109 110 111 112 113
    if (argv_copy2) {
        for (i = 0; i < argc; i++)
            PyMem_RawFree(argv_copy2[i]);
        PyMem_RawFree(argv_copy2);
    }
    PyMem_RawFree(oldloc);
114
    return sts;
115
}