gh-85283: Build winsound extension with limited C API (#110978)

Replace type->tp_name with PyType_GetQualName().
This commit is contained in:
Victor Stinner 2023-10-17 15:57:10 +02:00 committed by GitHub
parent 198aa67d4c
commit 6db6b30ac2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 30 additions and 151 deletions

View file

@ -932,7 +932,7 @@ Build Changes
* Building CPython now requires a compiler with support for the C11 atomic * Building CPython now requires a compiler with support for the C11 atomic
library, GCC built-in atomic functions, or MSVC interlocked intrinsics. library, GCC built-in atomic functions, or MSVC interlocked intrinsics.
* The ``errno``, ``md5``, ``_ctypes_test``, ``_stat`` and * The ``errno``, ``md5``, ``winsound``, ``_ctypes_test``, ``_stat`` and
``_testimportmultiple`` C extensions are now built with the :ref:`limited C ``_testimportmultiple`` C extensions are now built with the :ref:`limited C
API <limited-c-api>`. API <limited-c-api>`.
(Contributed by Victor Stinner in :gh:`85283`.) (Contributed by Victor Stinner in :gh:`85283`.)

View file

@ -896,7 +896,6 @@ _PyStaticObjects_CheckRefcnt(PyInterpreterState *interp) {
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(dont_inherit)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(dont_inherit));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(dst)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(dst));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(dst_dir_fd)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(dst_dir_fd));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(duration));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(e)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(e));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(eager_start)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(eager_start));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(effective_ids)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(effective_ids));
@ -942,7 +941,6 @@ _PyStaticObjects_CheckRefcnt(PyInterpreterState *interp) {
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(flush)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(flush));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(follow_symlinks)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(follow_symlinks));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(format)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(format));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(frequency));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(from_param)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(from_param));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(fromlist)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(fromlist));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(fromtimestamp)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(fromtimestamp));
@ -1186,7 +1184,6 @@ _PyStaticObjects_CheckRefcnt(PyInterpreterState *interp) {
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(sleep)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(sleep));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(sock)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(sock));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(sort)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(sort));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(sound));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(source)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(source));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(source_traceback)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(source_traceback));
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(src)); _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(src));

View file

@ -385,7 +385,6 @@ struct _Py_global_strings {
STRUCT_FOR_ID(dont_inherit) STRUCT_FOR_ID(dont_inherit)
STRUCT_FOR_ID(dst) STRUCT_FOR_ID(dst)
STRUCT_FOR_ID(dst_dir_fd) STRUCT_FOR_ID(dst_dir_fd)
STRUCT_FOR_ID(duration)
STRUCT_FOR_ID(e) STRUCT_FOR_ID(e)
STRUCT_FOR_ID(eager_start) STRUCT_FOR_ID(eager_start)
STRUCT_FOR_ID(effective_ids) STRUCT_FOR_ID(effective_ids)
@ -431,7 +430,6 @@ struct _Py_global_strings {
STRUCT_FOR_ID(flush) STRUCT_FOR_ID(flush)
STRUCT_FOR_ID(follow_symlinks) STRUCT_FOR_ID(follow_symlinks)
STRUCT_FOR_ID(format) STRUCT_FOR_ID(format)
STRUCT_FOR_ID(frequency)
STRUCT_FOR_ID(from_param) STRUCT_FOR_ID(from_param)
STRUCT_FOR_ID(fromlist) STRUCT_FOR_ID(fromlist)
STRUCT_FOR_ID(fromtimestamp) STRUCT_FOR_ID(fromtimestamp)
@ -675,7 +673,6 @@ struct _Py_global_strings {
STRUCT_FOR_ID(sleep) STRUCT_FOR_ID(sleep)
STRUCT_FOR_ID(sock) STRUCT_FOR_ID(sock)
STRUCT_FOR_ID(sort) STRUCT_FOR_ID(sort)
STRUCT_FOR_ID(sound)
STRUCT_FOR_ID(source) STRUCT_FOR_ID(source)
STRUCT_FOR_ID(source_traceback) STRUCT_FOR_ID(source_traceback)
STRUCT_FOR_ID(src) STRUCT_FOR_ID(src)

View file

@ -894,7 +894,6 @@ extern "C" {
INIT_ID(dont_inherit), \ INIT_ID(dont_inherit), \
INIT_ID(dst), \ INIT_ID(dst), \
INIT_ID(dst_dir_fd), \ INIT_ID(dst_dir_fd), \
INIT_ID(duration), \
INIT_ID(e), \ INIT_ID(e), \
INIT_ID(eager_start), \ INIT_ID(eager_start), \
INIT_ID(effective_ids), \ INIT_ID(effective_ids), \
@ -940,7 +939,6 @@ extern "C" {
INIT_ID(flush), \ INIT_ID(flush), \
INIT_ID(follow_symlinks), \ INIT_ID(follow_symlinks), \
INIT_ID(format), \ INIT_ID(format), \
INIT_ID(frequency), \
INIT_ID(from_param), \ INIT_ID(from_param), \
INIT_ID(fromlist), \ INIT_ID(fromlist), \
INIT_ID(fromtimestamp), \ INIT_ID(fromtimestamp), \
@ -1184,7 +1182,6 @@ extern "C" {
INIT_ID(sleep), \ INIT_ID(sleep), \
INIT_ID(sock), \ INIT_ID(sock), \
INIT_ID(sort), \ INIT_ID(sort), \
INIT_ID(sound), \
INIT_ID(source), \ INIT_ID(source), \
INIT_ID(source_traceback), \ INIT_ID(source_traceback), \
INIT_ID(src), \ INIT_ID(src), \

View file

@ -996,9 +996,6 @@ _PyUnicode_InitStaticStrings(PyInterpreterState *interp) {
string = &_Py_ID(dst_dir_fd); string = &_Py_ID(dst_dir_fd);
assert(_PyUnicode_CheckConsistency(string, 1)); assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string); _PyUnicode_InternInPlace(interp, &string);
string = &_Py_ID(duration);
assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string);
string = &_Py_ID(e); string = &_Py_ID(e);
assert(_PyUnicode_CheckConsistency(string, 1)); assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string); _PyUnicode_InternInPlace(interp, &string);
@ -1134,9 +1131,6 @@ _PyUnicode_InitStaticStrings(PyInterpreterState *interp) {
string = &_Py_ID(format); string = &_Py_ID(format);
assert(_PyUnicode_CheckConsistency(string, 1)); assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string); _PyUnicode_InternInPlace(interp, &string);
string = &_Py_ID(frequency);
assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string);
string = &_Py_ID(from_param); string = &_Py_ID(from_param);
assert(_PyUnicode_CheckConsistency(string, 1)); assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string); _PyUnicode_InternInPlace(interp, &string);
@ -1866,9 +1860,6 @@ _PyUnicode_InitStaticStrings(PyInterpreterState *interp) {
string = &_Py_ID(sort); string = &_Py_ID(sort);
assert(_PyUnicode_CheckConsistency(string, 1)); assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string); _PyUnicode_InternInPlace(interp, &string);
string = &_Py_ID(sound);
assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string);
string = &_Py_ID(source); string = &_Py_ID(source);
assert(_PyUnicode_CheckConsistency(string, 1)); assert(_PyUnicode_CheckConsistency(string, 1));
_PyUnicode_InternInPlace(interp, &string); _PyUnicode_InternInPlace(interp, &string);

View file

@ -1,3 +1,4 @@
The ``errno``, ``md5``, ``_ctypes_test`` and ``_testimportmultiple`` C The ``errno``, ``md5``, ``winsound``, ``_ctypes_test``, ``_stat`` and
extensions are now built with the :ref:`limited C API <limited-c-api>`. Patch ``_testimportmultiple`` C extensions are now built with the :ref:`limited C API
by Victor Stinner. <limited-c-api>`.
Patch by Victor Stinner.

138
PC/clinic/winsound.c.h generated
View file

@ -2,12 +2,6 @@
preserve preserve
[clinic start generated code]*/ [clinic start generated code]*/
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
# include "pycore_gc.h" // PyGC_Head
# include "pycore_runtime.h" // _Py_ID()
#endif
#include "pycore_modsupport.h" // _PyArg_UnpackKeywords()
PyDoc_STRVAR(winsound_PlaySound__doc__, PyDoc_STRVAR(winsound_PlaySound__doc__,
"PlaySound($module, /, sound, flags)\n" "PlaySound($module, /, sound, flags)\n"
"--\n" "--\n"
@ -20,53 +14,22 @@ PyDoc_STRVAR(winsound_PlaySound__doc__,
" Flag values, ored together. See module documentation."); " Flag values, ored together. See module documentation.");
#define WINSOUND_PLAYSOUND_METHODDEF \ #define WINSOUND_PLAYSOUND_METHODDEF \
{"PlaySound", _PyCFunction_CAST(winsound_PlaySound), METH_FASTCALL|METH_KEYWORDS, winsound_PlaySound__doc__}, {"PlaySound", (PyCFunction)(void(*)(void))winsound_PlaySound, METH_VARARGS|METH_KEYWORDS, winsound_PlaySound__doc__},
static PyObject * static PyObject *
winsound_PlaySound_impl(PyObject *module, PyObject *sound, int flags); winsound_PlaySound_impl(PyObject *module, PyObject *sound, int flags);
static PyObject * static PyObject *
winsound_PlaySound(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) winsound_PlaySound(PyObject *module, PyObject *args, PyObject *kwargs)
{ {
PyObject *return_value = NULL; PyObject *return_value = NULL;
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) static char *_keywords[] = {"sound", "flags", NULL};
#define NUM_KEYWORDS 2
static struct {
PyGC_Head _this_is_not_used;
PyObject_VAR_HEAD
PyObject *ob_item[NUM_KEYWORDS];
} _kwtuple = {
.ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
.ob_item = { &_Py_ID(sound), &_Py_ID(flags), },
};
#undef NUM_KEYWORDS
#define KWTUPLE (&_kwtuple.ob_base.ob_base)
#else // !Py_BUILD_CORE
# define KWTUPLE NULL
#endif // !Py_BUILD_CORE
static const char * const _keywords[] = {"sound", "flags", NULL};
static _PyArg_Parser _parser = {
.keywords = _keywords,
.fname = "PlaySound",
.kwtuple = KWTUPLE,
};
#undef KWTUPLE
PyObject *argsbuf[2];
PyObject *sound; PyObject *sound;
int flags; int flags;
args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 2, 2, 0, argsbuf); if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi:PlaySound", _keywords,
if (!args) { &sound, &flags))
goto exit; goto exit;
}
sound = args[0];
flags = PyLong_AsInt(args[1]);
if (flags == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = winsound_PlaySound_impl(module, sound, flags); return_value = winsound_PlaySound_impl(module, sound, flags);
exit: exit:
@ -86,56 +49,22 @@ PyDoc_STRVAR(winsound_Beep__doc__,
" How long the sound should play, in milliseconds."); " How long the sound should play, in milliseconds.");
#define WINSOUND_BEEP_METHODDEF \ #define WINSOUND_BEEP_METHODDEF \
{"Beep", _PyCFunction_CAST(winsound_Beep), METH_FASTCALL|METH_KEYWORDS, winsound_Beep__doc__}, {"Beep", (PyCFunction)(void(*)(void))winsound_Beep, METH_VARARGS|METH_KEYWORDS, winsound_Beep__doc__},
static PyObject * static PyObject *
winsound_Beep_impl(PyObject *module, int frequency, int duration); winsound_Beep_impl(PyObject *module, int frequency, int duration);
static PyObject * static PyObject *
winsound_Beep(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) winsound_Beep(PyObject *module, PyObject *args, PyObject *kwargs)
{ {
PyObject *return_value = NULL; PyObject *return_value = NULL;
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) static char *_keywords[] = {"frequency", "duration", NULL};
#define NUM_KEYWORDS 2
static struct {
PyGC_Head _this_is_not_used;
PyObject_VAR_HEAD
PyObject *ob_item[NUM_KEYWORDS];
} _kwtuple = {
.ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
.ob_item = { &_Py_ID(frequency), &_Py_ID(duration), },
};
#undef NUM_KEYWORDS
#define KWTUPLE (&_kwtuple.ob_base.ob_base)
#else // !Py_BUILD_CORE
# define KWTUPLE NULL
#endif // !Py_BUILD_CORE
static const char * const _keywords[] = {"frequency", "duration", NULL};
static _PyArg_Parser _parser = {
.keywords = _keywords,
.fname = "Beep",
.kwtuple = KWTUPLE,
};
#undef KWTUPLE
PyObject *argsbuf[2];
int frequency; int frequency;
int duration; int duration;
args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 2, 2, 0, argsbuf); if (!PyArg_ParseTupleAndKeywords(args, kwargs, "ii:Beep", _keywords,
if (!args) { &frequency, &duration))
goto exit; goto exit;
}
frequency = PyLong_AsInt(args[0]);
if (frequency == -1 && PyErr_Occurred()) {
goto exit;
}
duration = PyLong_AsInt(args[1]);
if (duration == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = winsound_Beep_impl(module, frequency, duration); return_value = winsound_Beep_impl(module, frequency, duration);
exit: exit:
@ -151,59 +80,24 @@ PyDoc_STRVAR(winsound_MessageBeep__doc__,
"x defaults to MB_OK."); "x defaults to MB_OK.");
#define WINSOUND_MESSAGEBEEP_METHODDEF \ #define WINSOUND_MESSAGEBEEP_METHODDEF \
{"MessageBeep", _PyCFunction_CAST(winsound_MessageBeep), METH_FASTCALL|METH_KEYWORDS, winsound_MessageBeep__doc__}, {"MessageBeep", (PyCFunction)(void(*)(void))winsound_MessageBeep, METH_VARARGS|METH_KEYWORDS, winsound_MessageBeep__doc__},
static PyObject * static PyObject *
winsound_MessageBeep_impl(PyObject *module, int type); winsound_MessageBeep_impl(PyObject *module, int type);
static PyObject * static PyObject *
winsound_MessageBeep(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) winsound_MessageBeep(PyObject *module, PyObject *args, PyObject *kwargs)
{ {
PyObject *return_value = NULL; PyObject *return_value = NULL;
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) static char *_keywords[] = {"type", NULL};
#define NUM_KEYWORDS 1
static struct {
PyGC_Head _this_is_not_used;
PyObject_VAR_HEAD
PyObject *ob_item[NUM_KEYWORDS];
} _kwtuple = {
.ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
.ob_item = { &_Py_ID(type), },
};
#undef NUM_KEYWORDS
#define KWTUPLE (&_kwtuple.ob_base.ob_base)
#else // !Py_BUILD_CORE
# define KWTUPLE NULL
#endif // !Py_BUILD_CORE
static const char * const _keywords[] = {"type", NULL};
static _PyArg_Parser _parser = {
.keywords = _keywords,
.fname = "MessageBeep",
.kwtuple = KWTUPLE,
};
#undef KWTUPLE
PyObject *argsbuf[1];
Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
int type = MB_OK; int type = MB_OK;
args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 1, 0, argsbuf); if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i:MessageBeep", _keywords,
if (!args) { &type))
goto exit; goto exit;
}
if (!noptargs) {
goto skip_optional_pos;
}
type = PyLong_AsInt(args[0]);
if (type == -1 && PyErr_Occurred()) {
goto exit;
}
skip_optional_pos:
return_value = winsound_MessageBeep_impl(module, type); return_value = winsound_MessageBeep_impl(module, type);
exit: exit:
return return_value; return return_value;
} }
/*[clinic end generated code: output=191d4fb1542c7abf input=a9049054013a1b77]*/ /*[clinic end generated code: output=18a3771b34cdf97d input=a9049054013a1b77]*/

View file

@ -35,10 +35,8 @@
winsound.PlaySound(None, 0) winsound.PlaySound(None, 0)
*/ */
// clinic/winsound.c.h uses internal pycore_modsupport.h API // Need limited C API version 3.13 for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
#ifndef Py_BUILD_CORE_BUILTIN #define Py_LIMITED_API 0x030d0000
# define Py_BUILD_CORE_MODULE 1
#endif
#include <Python.h> #include <Python.h>
#include <windows.h> #include <windows.h>
@ -100,9 +98,13 @@ winsound_PlaySound_impl(PyObject *module, PyObject *sound, int flags)
} }
wsound = (wchar_t *)view.buf; wsound = (wchar_t *)view.buf;
} else if (PyBytes_Check(sound)) { } else if (PyBytes_Check(sound)) {
PyErr_Format(PyExc_TypeError, PyObject *type_name = PyType_GetQualName(Py_TYPE(sound));
"'sound' must be str, os.PathLike, or None, not '%s'", if (type_name != NULL) {
Py_TYPE(sound)->tp_name); PyErr_Format(PyExc_TypeError,
"'sound' must be str, os.PathLike, or None, not %S",
type_name);
Py_DECREF(type_name);
}
return NULL; return NULL;
} else { } else {
PyObject *obj = PyOS_FSPath(sound); PyObject *obj = PyOS_FSPath(sound);