mirror of
https://github.com/python/cpython.git
synced 2025-10-27 19:54:38 +00:00
Replace messy _Py_wstrlist_xxx() functions with a new clean _PyWstrList structure and new _PyWstrList_xxx() functions. Changes: * Add _PyCoreConfig.use_module_search_paths to decide if _PyCoreConfig.module_search_paths should be computed or not, to support empty search path list. * _PyWstrList_Clear() sets length to 0 and items to NULL, whereas _Py_wstrlist_clear() only freed memory. * _PyWstrList_Append() returns an int, whereas _Py_wstrlist_append() returned _PyInitError. * _PyWstrList uses Py_ssize_t for the length, instead of int. * Replace (int, wchar_t**) with _PyWstrList in: * _PyPreConfig * _PyCoreConfig * _PyPreCmdline * _PyCmdline * Replace "int orig_argv; wchar_t **orig_argv;" with "_PyWstrList orig_argv". * _PyCmdline and _PyPreCmdline now also copy wchar_argv. * Rename _PyArgv_Decode() to _PyArgv_AsWstrList(). * PySys_SetArgvEx() now pass the fixed (argc, argv) to _PyPathConfig_ComputeArgv0() (don't pass negative argc or NULL argv). * _PyOS_GetOpt() uses Py_ssize_t
92 lines
3.1 KiB
C
92 lines
3.1 KiB
C
#ifndef Py_INTERNAL_CORECONFIG_H
|
|
#define Py_INTERNAL_CORECONFIG_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if !defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_BUILTIN)
|
|
# error "this header requires Py_BUILD_CORE or Py_BUILD_CORE_BUILTIN defined"
|
|
#endif
|
|
|
|
|
|
/* --- _PyWstrList ------------------------------------------------ */
|
|
|
|
#ifndef NDEBUG
|
|
PyAPI_FUNC(int) _PyWstrList_CheckConsistency(const _PyWstrList *list);
|
|
#endif
|
|
PyAPI_FUNC(void) _PyWstrList_Clear(_PyWstrList *list);
|
|
PyAPI_FUNC(int) _PyWstrList_Copy(_PyWstrList *list,
|
|
const _PyWstrList *list2);
|
|
PyAPI_FUNC(int) _PyWstrList_Append(_PyWstrList *list,
|
|
const wchar_t *item);
|
|
PyAPI_FUNC(PyObject*) _PyWstrList_AsList(const _PyWstrList *list);
|
|
|
|
|
|
/* --- _PyArgv ---------------------------------------------------- */
|
|
|
|
PyAPI_FUNC(_PyInitError) _PyArgv_AsWstrList(const _PyArgv *args,
|
|
_PyWstrList *list);
|
|
|
|
|
|
/* --- Py_GetArgcArgv() helpers ----------------------------------- */
|
|
|
|
PyAPI_FUNC(void) _Py_ClearArgcArgv(void);
|
|
|
|
|
|
/* --- _PyPreConfig ----------------------------------------------- */
|
|
|
|
PyAPI_FUNC(int) _Py_str_to_int(
|
|
const char *str,
|
|
int *result);
|
|
PyAPI_FUNC(const wchar_t*) _Py_get_xoption(
|
|
const _PyWstrList *xoptions,
|
|
const wchar_t *name);
|
|
|
|
PyAPI_FUNC(void) _PyPreConfig_Clear(_PyPreConfig *config);
|
|
PyAPI_FUNC(int) _PyPreConfig_Copy(_PyPreConfig *config,
|
|
const _PyPreConfig *config2);
|
|
PyAPI_FUNC(void) _PyPreConfig_GetGlobalConfig(_PyPreConfig *config);
|
|
PyAPI_FUNC(void) _PyPreConfig_SetGlobalConfig(const _PyPreConfig *config);
|
|
PyAPI_FUNC(const char*) _PyPreConfig_GetEnv(const _PyPreConfig *config,
|
|
const char *name);
|
|
PyAPI_FUNC(void) _Py_get_env_flag(_PyPreConfig *config,
|
|
int *flag,
|
|
const char *name);
|
|
PyAPI_FUNC(_PyInitError) _PyPreConfig_Read(_PyPreConfig *config);
|
|
PyAPI_FUNC(int) _PyPreConfig_AsDict(const _PyPreConfig *config,
|
|
PyObject *dict);
|
|
PyAPI_FUNC(_PyInitError) _PyPreConfig_ReadFromArgv(_PyPreConfig *config,
|
|
const _PyArgv *args);
|
|
PyAPI_FUNC(_PyInitError) _PyPreConfig_Write(_PyPreConfig *config);
|
|
|
|
|
|
/* --- _PyCoreConfig ---------------------------------------------- */
|
|
|
|
PyAPI_FUNC(void) _PyCoreConfig_Clear(_PyCoreConfig *);
|
|
PyAPI_FUNC(int) _PyCoreConfig_Copy(
|
|
_PyCoreConfig *config,
|
|
const _PyCoreConfig *config2);
|
|
PyAPI_FUNC(_PyInitError) _PyCoreConfig_InitPathConfig(_PyCoreConfig *config);
|
|
PyAPI_FUNC(_PyInitError) _PyCoreConfig_SetPathConfig(
|
|
const _PyCoreConfig *config);
|
|
PyAPI_FUNC(void) _PyCoreConfig_GetGlobalConfig(_PyCoreConfig *config);
|
|
PyAPI_FUNC(void) _PyCoreConfig_SetGlobalConfig(const _PyCoreConfig *config);
|
|
PyAPI_FUNC(const char*) _PyCoreConfig_GetEnv(
|
|
const _PyCoreConfig *config,
|
|
const char *name);
|
|
PyAPI_FUNC(int) _PyCoreConfig_GetEnvDup(
|
|
const _PyCoreConfig *config,
|
|
wchar_t **dest,
|
|
wchar_t *wname,
|
|
char *name);
|
|
PyAPI_FUNC(_PyInitError) _PyCoreConfig_Read(_PyCoreConfig *config,
|
|
const _PyPreConfig *preconfig);
|
|
PyAPI_FUNC(_PyInitError) _PyCoreConfig_ReadFromArgv(_PyCoreConfig *config,
|
|
const _PyArgv *args,
|
|
const _PyPreConfig *preconfig);
|
|
PyAPI_FUNC(void) _PyCoreConfig_Write(const _PyCoreConfig *config);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Py_INTERNAL_CORECONFIG_H */
|