mirror of
https://github.com/python/cpython.git
synced 2024-12-18 22:34:08 +08:00
55edd0c185
METH_NOARGS functions need only a single argument but they are cast into a PyCFunction, which takes two arguments. This triggers an invalid function cast warning in gcc8 due to the argument mismatch. Fix this by adding a dummy unused argument.
66 lines
1.5 KiB
C
66 lines
1.5 KiB
C
#define PY_SSIZE_T_CLEAN
|
|
|
|
#include "Python.h"
|
|
#ifdef HAVE_UUID_UUID_H
|
|
#include <uuid/uuid.h>
|
|
#endif
|
|
#ifdef HAVE_UUID_H
|
|
#include <uuid.h>
|
|
#endif
|
|
|
|
|
|
static PyObject *
|
|
py_uuid_generate_time_safe(PyObject *Py_UNUSED(context),
|
|
PyObject *Py_UNUSED(ignored))
|
|
{
|
|
uuid_t uuid;
|
|
#ifdef HAVE_UUID_GENERATE_TIME_SAFE
|
|
int res;
|
|
|
|
res = uuid_generate_time_safe(uuid);
|
|
return Py_BuildValue("y#i", (const char *) uuid, sizeof(uuid), res);
|
|
#elif HAVE_UUID_CREATE
|
|
uint32_t status;
|
|
uuid_create(&uuid, &status);
|
|
return Py_BuildValue("y#i", (const char *) &uuid, sizeof(uuid), (int) status);
|
|
#else
|
|
uuid_generate_time(uuid);
|
|
return Py_BuildValue("y#O", (const char *) uuid, sizeof(uuid), Py_None);
|
|
#endif
|
|
}
|
|
|
|
|
|
static PyMethodDef uuid_methods[] = {
|
|
{"generate_time_safe", py_uuid_generate_time_safe, METH_NOARGS, NULL},
|
|
{NULL, NULL, 0, NULL} /* sentinel */
|
|
};
|
|
|
|
static struct PyModuleDef uuidmodule = {
|
|
PyModuleDef_HEAD_INIT,
|
|
.m_name = "_uuid",
|
|
.m_size = -1,
|
|
.m_methods = uuid_methods,
|
|
};
|
|
|
|
PyMODINIT_FUNC
|
|
PyInit__uuid(void)
|
|
{
|
|
PyObject *mod;
|
|
assert(sizeof(uuid_t) == 16);
|
|
#ifdef HAVE_UUID_GENERATE_TIME_SAFE
|
|
int has_uuid_generate_time_safe = 1;
|
|
#else
|
|
int has_uuid_generate_time_safe = 0;
|
|
#endif
|
|
mod = PyModule_Create(&uuidmodule);
|
|
if (mod == NULL) {
|
|
return NULL;
|
|
}
|
|
if (PyModule_AddIntConstant(mod, "has_uuid_generate_time_safe",
|
|
has_uuid_generate_time_safe) < 0) {
|
|
return NULL;
|
|
}
|
|
|
|
return mod;
|
|
}
|