1997-07-19 16:25:33 -03:00
|
|
|
/* Minimal main program -- everything is loaded from the library */
|
|
|
|
|
1998-08-08 17:01:22 -03:00
|
|
|
#include "Python.h"
|
2017-11-15 19:48:08 -04:00
|
|
|
#include "internal/pystate.h"
|
2008-04-05 17:41:37 -03:00
|
|
|
#include <locale.h>
|
1998-08-08 17:01:22 -03:00
|
|
|
|
2002-12-28 17:56:08 -04:00
|
|
|
#ifdef __FreeBSD__
|
2016-01-20 17:27:34 -04:00
|
|
|
#include <fenv.h>
|
2002-12-28 17:56:08 -04:00
|
|
|
#endif
|
|
|
|
|
2008-04-05 17:41:37 -03:00
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
int
|
|
|
|
wmain(int argc, wchar_t **argv)
|
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
return Py_Main(argc, argv);
|
2008-04-05 17:41:37 -03:00
|
|
|
}
|
|
|
|
#else
|
2009-05-05 01:43:17 -03:00
|
|
|
|
2017-06-11 00:16:15 -03:00
|
|
|
|
1997-08-14 23:52:08 -03:00
|
|
|
int
|
2000-07-09 17:35:15 -03:00
|
|
|
main(int argc, char **argv)
|
1997-07-19 16:25:33 -03:00
|
|
|
{
|
2013-07-07 11:25:15 -03:00
|
|
|
wchar_t **argv_copy;
|
2013-07-10 11:57:39 -03:00
|
|
|
/* We need a second copy, as Python might modify the first one. */
|
2013-07-07 11:25:15 -03:00
|
|
|
wchar_t **argv_copy2;
|
2017-11-15 19:48:08 -04:00
|
|
|
int i, status;
|
2010-05-09 12:52:27 -03:00
|
|
|
char *oldloc;
|
2013-07-07 11:25:15 -03:00
|
|
|
|
2017-11-15 19:48:08 -04:00
|
|
|
_PyInitError err = _PyRuntime_Initialize();
|
|
|
|
if (_Py_INIT_FAILED(err)) {
|
|
|
|
fprintf(stderr, "Fatal Python error: %s\n", err.msg);
|
|
|
|
fflush(stderr);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2016-03-14 08:04:26 -03:00
|
|
|
/* Force malloc() allocator to bootstrap Python */
|
2017-06-11 00:16:15 -03:00
|
|
|
#ifdef Py_DEBUG
|
|
|
|
(void)_PyMem_SetupAllocators("malloc_debug");
|
|
|
|
# else
|
2016-03-14 08:04:26 -03:00
|
|
|
(void)_PyMem_SetupAllocators("malloc");
|
2017-06-11 00:16:15 -03:00
|
|
|
# endif
|
2016-03-14 08:04:26 -03:00
|
|
|
|
2013-07-07 11:25:15 -03:00
|
|
|
argv_copy = (wchar_t **)PyMem_RawMalloc(sizeof(wchar_t*) * (argc+1));
|
|
|
|
argv_copy2 = (wchar_t **)PyMem_RawMalloc(sizeof(wchar_t*) * (argc+1));
|
|
|
|
if (!argv_copy || !argv_copy2) {
|
|
|
|
fprintf(stderr, "out of memory\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
/* 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.
|
|
|
|
*/
|
2002-12-28 17:56:08 -04:00
|
|
|
#ifdef __FreeBSD__
|
2016-01-20 17:27:34 -04:00
|
|
|
fedisableexcept(FE_OVERFLOW);
|
2002-12-28 17:56:08 -04:00
|
|
|
#endif
|
2013-07-07 11:25:15 -03:00
|
|
|
|
2013-07-07 18:30:24 -03:00
|
|
|
oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL));
|
2013-07-26 21:39:09 -03:00
|
|
|
if (!oldloc) {
|
|
|
|
fprintf(stderr, "out of memory\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-06-11 00:16:15 -03:00
|
|
|
/* Reconfigure the locale to the default for this process */
|
2017-11-12 07:45:59 -04:00
|
|
|
_Py_SetLocaleFromEnv(LC_ALL);
|
2017-06-11 00:16:15 -03:00
|
|
|
|
2017-10-27 06:46:03 -03:00
|
|
|
/* The legacy C locale assumes ASCII as the default text encoding, which
|
|
|
|
* causes problems not only for the CPython runtime, but also other
|
|
|
|
* components like GNU readline.
|
|
|
|
*
|
|
|
|
* Accordingly, when the CLI detects it, it attempts to coerce it to a
|
|
|
|
* more capable UTF-8 based alternative.
|
|
|
|
*
|
|
|
|
* See the documentation of the PYTHONCOERCECLOCALE setting for more
|
|
|
|
* details.
|
|
|
|
*/
|
2017-06-11 00:16:15 -03:00
|
|
|
if (_Py_LegacyLocaleDetected()) {
|
|
|
|
_Py_CoerceLegacyLocale();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert from char to wchar_t based on the locale settings */
|
2010-05-09 12:52:27 -03:00
|
|
|
for (i = 0; i < argc; i++) {
|
2014-08-01 07:28:48 -03:00
|
|
|
argv_copy[i] = Py_DecodeLocale(argv[i], NULL);
|
2011-12-16 18:48:31 -04:00
|
|
|
if (!argv_copy[i]) {
|
2013-07-07 18:30:24 -03:00
|
|
|
PyMem_RawFree(oldloc);
|
2011-12-16 18:48:31 -04:00
|
|
|
fprintf(stderr, "Fatal Python error: "
|
|
|
|
"unable to decode the command line argument #%i\n",
|
|
|
|
i + 1);
|
2010-05-09 12:52:27 -03:00
|
|
|
return 1;
|
2011-12-16 18:48:31 -04:00
|
|
|
}
|
2010-10-13 20:24:06 -03:00
|
|
|
argv_copy2[i] = argv_copy[i];
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2012-03-26 10:05:22 -03:00
|
|
|
argv_copy2[argc] = argv_copy[argc] = NULL;
|
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
setlocale(LC_ALL, oldloc);
|
2013-07-07 18:30:24 -03:00
|
|
|
PyMem_RawFree(oldloc);
|
2016-03-14 08:04:26 -03:00
|
|
|
|
2017-11-15 19:48:08 -04:00
|
|
|
status = Py_Main(argc, argv_copy);
|
2016-03-14 08:04:26 -03:00
|
|
|
|
|
|
|
/* Force again malloc() allocator to release memory blocks allocated
|
|
|
|
before Py_Main() */
|
2017-06-11 00:16:15 -03:00
|
|
|
#ifdef Py_DEBUG
|
|
|
|
(void)_PyMem_SetupAllocators("malloc_debug");
|
|
|
|
# else
|
2016-03-14 08:04:26 -03:00
|
|
|
(void)_PyMem_SetupAllocators("malloc");
|
2017-06-11 00:16:15 -03:00
|
|
|
# endif
|
2016-03-14 08:04:26 -03:00
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
for (i = 0; i < argc; i++) {
|
2013-07-07 11:25:15 -03:00
|
|
|
PyMem_RawFree(argv_copy2[i]);
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2013-07-07 11:25:15 -03:00
|
|
|
PyMem_RawFree(argv_copy);
|
|
|
|
PyMem_RawFree(argv_copy2);
|
2017-11-15 19:48:08 -04:00
|
|
|
return status;
|
1997-07-19 16:25:33 -03:00
|
|
|
}
|
2008-04-05 17:41:37 -03:00
|
|
|
#endif
|