python.c 1.7 KB
Newer Older
1 2
/* Minimal main program -- everything is loaded from the library */

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

6 7 8 9
#ifdef __FreeBSD__
#include <floatingpoint.h>
#endif

10 11 12 13
#ifdef MS_WINDOWS
int
wmain(int argc, wchar_t **argv)
{
14
    return Py_Main(argc, argv);
15 16
}
#else
17

18 19 20 21
#ifdef __APPLE__
extern wchar_t* _Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size);
#endif

Guido van Rossum's avatar
Guido van Rossum committed
22
int
Fredrik Lundh's avatar
Fredrik Lundh committed
23
main(int argc, char **argv)
24
{
25 26 27 28 29 30 31 32 33 34
    wchar_t **argv_copy = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*argc);
    /* We need a second copies, as Python might modify the first one. */
    wchar_t **argv_copy2 = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*argc);
    int i, res;
    char *oldloc;
    /* 754 requires that FP exceptions run in "no stop" mode by default,
     * and until C vendors implement C99's ways to control FP exceptions,
     * Python requires non-stop mode.  Alas, some platforms enable FP
     * exceptions by default.  Here we disable them.
     */
35
#ifdef __FreeBSD__
36
    fp_except_t m;
37

38 39
    m = fpgetmask();
    fpsetmask(m & ~FP_X_OFL);
40
#endif
41 42 43 44 45 46 47
    if (!argv_copy || !argv_copy2) {
        fprintf(stderr, "out of memory\n");
        return 1;
    }
    oldloc = strdup(setlocale(LC_ALL, NULL));
    setlocale(LC_ALL, "");
    for (i = 0; i < argc; i++) {
48 49 50
#ifdef __APPLE__
        argv_copy[i] = _Py_DecodeUTF8_surrogateescape(argv[i], strlen(argv[i]));
#else
51
        argv_copy[i] = _Py_char2wchar(argv[i], NULL);
52
#endif
53 54
        if (!argv_copy[i])
            return 1;
55
        argv_copy2[i] = argv_copy[i];
56 57 58 59 60 61 62 63 64 65
    }
    setlocale(LC_ALL, oldloc);
    free(oldloc);
    res = Py_Main(argc, argv_copy);
    for (i = 0; i < argc; i++) {
        PyMem_Free(argv_copy2[i]);
    }
    PyMem_Free(argv_copy);
    PyMem_Free(argv_copy2);
    return res;
66
}
67
#endif