1997-07-19 19:25:33 +00:00
|
|
|
/* Minimal main program -- everything is loaded from the library */
|
|
|
|
|
1998-08-08 20:01:22 +00:00
|
|
|
#include "Python.h"
|
2017-11-15 15:48:08 -08:00
|
|
|
#include "internal/pystate.h"
|
2008-04-05 20:41:37 +00:00
|
|
|
#include <locale.h>
|
1998-08-08 20:01:22 +00:00
|
|
|
|
2002-12-28 21:56:08 +00:00
|
|
|
#ifdef __FreeBSD__
|
2016-01-20 22:27:34 +01:00
|
|
|
#include <fenv.h>
|
2002-12-28 21:56:08 +00:00
|
|
|
#endif
|
|
|
|
|
2008-04-05 20:41:37 +00:00
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
int
|
|
|
|
wmain(int argc, wchar_t **argv)
|
|
|
|
{
|
2010-05-09 15:52:27 +00:00
|
|
|
return Py_Main(argc, argv);
|
2008-04-05 20:41:37 +00:00
|
|
|
}
|
|
|
|
#else
|
2009-05-05 04:43:17 +00:00
|
|
|
|
2017-06-11 13:16:15 +10:00
|
|
|
|
2017-12-13 12:29:09 +01:00
|
|
|
static void _Py_NO_RETURN
|
|
|
|
fatal_error(const char *msg)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Fatal Python error: %s\n", msg);
|
|
|
|
fflush(stderr);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-08-15 02:52:08 +00:00
|
|
|
int
|
2000-07-09 20:35:15 +00:00
|
|
|
main(int argc, char **argv)
|
1997-07-19 19:25:33 +00:00
|
|
|
{
|
2013-07-07 16:25:15 +02:00
|
|
|
wchar_t **argv_copy;
|
2013-07-10 10:57:39 -04:00
|
|
|
/* We need a second copy, as Python might modify the first one. */
|
2013-07-07 16:25:15 +02:00
|
|
|
wchar_t **argv_copy2;
|
2017-11-15 15:48:08 -08:00
|
|
|
int i, status;
|
2010-05-09 15:52:27 +00:00
|
|
|
char *oldloc;
|
2013-07-07 16:25:15 +02:00
|
|
|
|
2017-11-15 15:48:08 -08:00
|
|
|
_PyInitError err = _PyRuntime_Initialize();
|
|
|
|
if (_Py_INIT_FAILED(err)) {
|
2017-12-13 12:29:09 +01:00
|
|
|
fatal_error(err.msg);
|
2017-11-15 15:48:08 -08:00
|
|
|
}
|
|
|
|
|
2017-11-29 17:20:38 +01:00
|
|
|
/* Force default allocator, to be able to release memory above
|
|
|
|
with a known allocator. */
|
|
|
|
_PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, NULL);
|
2016-03-14 12:04:26 +01:00
|
|
|
|
2013-07-07 16:25:15 +02: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) {
|
2017-12-13 12:29:09 +01:00
|
|
|
fatal_error("out of memory");
|
2013-07-07 16:25:15 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-05-09 15:52:27 +00: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 21:56:08 +00:00
|
|
|
#ifdef __FreeBSD__
|
2016-01-20 22:27:34 +01:00
|
|
|
fedisableexcept(FE_OVERFLOW);
|
2002-12-28 21:56:08 +00:00
|
|
|
#endif
|
2013-07-07 16:25:15 +02:00
|
|
|
|
2013-07-07 23:30:24 +02:00
|
|
|
oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL));
|
2013-07-27 02:39:09 +02:00
|
|
|
if (!oldloc) {
|
2017-12-13 12:29:09 +01:00
|
|
|
fatal_error("out of memory");
|
2013-07-27 02:39:09 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-06-11 13:16:15 +10:00
|
|
|
/* Reconfigure the locale to the default for this process */
|
2017-11-12 12:45:59 +01:00
|
|
|
_Py_SetLocaleFromEnv(LC_ALL);
|
2017-06-11 13:16:15 +10:00
|
|
|
|
2017-10-27 11:46:03 +02: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 13:16:15 +10:00
|
|
|
if (_Py_LegacyLocaleDetected()) {
|
2017-12-13 12:29:09 +01:00
|
|
|
Py_UTF8Mode = 1;
|
2017-06-11 13:16:15 +10:00
|
|
|
_Py_CoerceLegacyLocale();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert from char to wchar_t based on the locale settings */
|
2010-05-09 15:52:27 +00:00
|
|
|
for (i = 0; i < argc; i++) {
|
2014-08-01 12:28:48 +02:00
|
|
|
argv_copy[i] = Py_DecodeLocale(argv[i], NULL);
|
2011-12-16 23:48:31 +01:00
|
|
|
if (!argv_copy[i]) {
|
2013-07-07 23:30:24 +02:00
|
|
|
PyMem_RawFree(oldloc);
|
2017-12-13 12:29:09 +01:00
|
|
|
fatal_error("unable to decode the command line arguments");
|
2011-12-16 23:48:31 +01:00
|
|
|
}
|
2010-10-13 23:24:06 +00:00
|
|
|
argv_copy2[i] = argv_copy[i];
|
2010-05-09 15:52:27 +00:00
|
|
|
}
|
2012-03-26 15:05:22 +02:00
|
|
|
argv_copy2[argc] = argv_copy[argc] = NULL;
|
|
|
|
|
2010-05-09 15:52:27 +00:00
|
|
|
setlocale(LC_ALL, oldloc);
|
2013-07-07 23:30:24 +02:00
|
|
|
PyMem_RawFree(oldloc);
|
2016-03-14 12:04:26 +01:00
|
|
|
|
2017-11-15 15:48:08 -08:00
|
|
|
status = Py_Main(argc, argv_copy);
|
2016-03-14 12:04:26 +01:00
|
|
|
|
2017-11-29 17:20:38 +01:00
|
|
|
/* Py_Main() can change PyMem_RawMalloc() allocator, so restore the default
|
|
|
|
to release memory blocks allocated before Py_Main() */
|
|
|
|
_PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, NULL);
|
2016-03-14 12:04:26 +01:00
|
|
|
|
2010-05-09 15:52:27 +00:00
|
|
|
for (i = 0; i < argc; i++) {
|
2013-07-07 16:25:15 +02:00
|
|
|
PyMem_RawFree(argv_copy2[i]);
|
2010-05-09 15:52:27 +00:00
|
|
|
}
|
2013-07-07 16:25:15 +02:00
|
|
|
PyMem_RawFree(argv_copy);
|
|
|
|
PyMem_RawFree(argv_copy2);
|
2017-11-15 15:48:08 -08:00
|
|
|
return status;
|
1997-07-19 19:25:33 +00:00
|
|
|
}
|
2008-04-05 20:41:37 +00:00
|
|
|
#endif
|