1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
|
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "sbkenum.h"
#include "sbkstring.h"
#include "helper.h"
#include "sbkstaticstrings.h"
#include "sbkstaticstrings_p.h"
#include "sbkconverter.h"
#include "basewrapper.h"
#include "autodecref.h"
#include "sbktypefactory.h"
#include <cstring>
using namespace Shiboken;
extern "C"
{
struct SbkEnumType
{
PyTypeObject type;
};
// Initialization
static bool _init_enum()
{
AutoDecRef shibo(PyImport_ImportModule("shiboken6.Shiboken"));
return !shibo.isNull();
}
static PyObject *PyEnumModule{};
static PyObject *PyEnumMeta{};
static PyObject *PyEnum{};
static PyObject *PyIntEnum{};
static PyObject *PyFlag{};
static PyObject *PyIntFlag{};
static PyObject *PyFlag_KEEP{};
bool PyEnumMeta_Check(PyObject *ob)
{
return Py_TYPE(ob) == reinterpret_cast<PyTypeObject *>(PyEnumMeta);
}
PyTypeObject *getPyEnumMeta()
{
if (PyEnumMeta)
return reinterpret_cast<PyTypeObject *>(PyEnumMeta);
static auto *mod = PyImport_ImportModule("enum");
if (mod) {
PyEnumModule = mod;
PyEnumMeta = PyObject_GetAttrString(mod, "EnumMeta");
if (PyEnumMeta && PyType_Check(PyEnumMeta))
PyEnum = PyObject_GetAttrString(mod, "Enum");
if (PyEnum && PyType_Check(PyEnum))
PyIntEnum = PyObject_GetAttrString(mod, "IntEnum");
if (PyIntEnum && PyType_Check(PyIntEnum))
PyFlag = PyObject_GetAttrString(mod, "Flag");
if (PyFlag && PyType_Check(PyFlag))
PyIntFlag = PyObject_GetAttrString(mod, "IntFlag");
if (PyIntFlag && PyType_Check(PyIntFlag)) {
// KEEP is defined from Python 3.11 on.
PyFlag_KEEP = PyObject_GetAttrString(mod, "KEEP");
PyErr_Clear();
return reinterpret_cast<PyTypeObject *>(PyEnumMeta);
}
}
Py_FatalError("Python module 'enum' not found");
return nullptr;
}
void init_enum()
{
static bool isInitialized = false;
if (isInitialized)
return;
if (!(isInitialized || _init_enum()))
Py_FatalError("could not init enum");
// PYSIDE-1735: Determine whether we should use the old or the new enum implementation.
static PyObject *option = PySys_GetObject("pyside6_option_python_enum");
if (!option || !PyLong_Check(option)) {
PyErr_Clear();
option = PyLong_FromLong(1);
}
int ignoreOver{};
Enum::enumOption = PyLong_AsLongAndOverflow(option, &ignoreOver);
getPyEnumMeta();
isInitialized = true;
}
// PYSIDE-1735: Helper function supporting QEnum
int enumIsFlag(PyObject *ob_type)
{
init_enum();
auto *metatype = Py_TYPE(ob_type);
if (metatype != reinterpret_cast<PyTypeObject *>(PyEnumMeta))
return -1;
auto *mro = reinterpret_cast<PyTypeObject *>(ob_type)->tp_mro;
const Py_ssize_t n = PyTuple_Size(mro);
for (Py_ssize_t idx = 0; idx < n; ++idx) {
auto *sub_type = reinterpret_cast<PyTypeObject *>(PyTuple_GetItem(mro, idx));
if (sub_type == reinterpret_cast<PyTypeObject *>(PyFlag))
return 1;
}
return 0;
}
///////////////////////////////////////////////////////////////////////
//
// Support for Missing Values
// ==========================
//
// Qt enums sometimes use undefined values in enums.
// The enum module handles this by the option "KEEP" for Flag and
// IntFlag. The handling of missing enum values is still strict.
//
// We changed that (also for compatibility with some competitor)
// and provide a `_missing_` function that creates the missing value.
//
// The idea:
// ---------
// We cannot modify the already created class.
// But we can create a one-element class with the new value and
// pretend that this is the already existing class.
//
// We create each constant only once and keep the result in a dict
// "_sbk_missing_". This is similar to a competitor's "_sip_missing_".
//
static PyObject *missing_func(PyObject * /* self */ , PyObject *args)
{
// In order to relax matters to be more compatible with C++, we need
// to create a pseudo-member with that value.
static auto *const _sbk_missing = Shiboken::String::createStaticString("_sbk_missing_");
static auto *const _name = Shiboken::String::createStaticString("__name__");
static auto *const _mro = Shiboken::String::createStaticString("__mro__");
static auto *const _class = Shiboken::String::createStaticString("__class__");
PyObject *klass{};
PyObject *value{};
if (!PyArg_UnpackTuple(args, "missing", 2, 2, &klass, &value))
Py_RETURN_NONE;
if (!PyLong_Check(value))
Py_RETURN_NONE;
auto *type = reinterpret_cast<PyTypeObject *>(klass);
AutoDecRef tpDict(PepType_GetDict(type));
auto *sbk_missing = PyDict_GetItem(tpDict.object(), _sbk_missing);
if (!sbk_missing) {
sbk_missing = PyDict_New();
PyDict_SetItem(tpDict.object(), _sbk_missing, sbk_missing);
}
// See if the value is already in the dict.
AutoDecRef val_str(PyObject_CallMethod(value, "__str__", nullptr));
auto *ret = PyDict_GetItem(sbk_missing, val_str);
if (ret) {
Py_INCREF(ret);
return ret;
}
// No, we must create a new object and insert it into the dict.
AutoDecRef cls_name(PyObject_GetAttr(klass, _name));
AutoDecRef mro(PyObject_GetAttr(klass, _mro));
auto *baseClass(PyTuple_GetItem(mro, 1));
AutoDecRef param(PyDict_New());
PyDict_SetItem(param, val_str, value);
AutoDecRef fake(PyObject_CallFunctionObjArgs(baseClass, cls_name.object(), param.object(),
nullptr));
ret = PyObject_GetAttr(fake, val_str);
PyDict_SetItem(sbk_missing, val_str, ret);
// Now the real fake: Pretend that the type is our original type!
PyObject_SetAttr(ret, _class, klass);
return ret;
}
static struct PyMethodDef dummy_methods[] = {
{"_missing_", reinterpret_cast<PyCFunction>(missing_func), METH_VARARGS|METH_STATIC, nullptr},
{nullptr, nullptr, 0, nullptr}
};
static PyType_Slot dummy_slots[] = {
{Py_tp_base, reinterpret_cast<void *>(&PyType_Type)},
{Py_tp_methods, reinterpret_cast<void *>(dummy_methods)},
{0, nullptr}
};
static PyType_Spec dummy_spec = {
"1:builtins.EnumType",
0,
0,
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE,
dummy_slots,
};
static PyObject *create_missing_func(PyObject *klass)
{
// When creating the class, memorize it in the missing function by
// a partial function argument.
static auto *const type = SbkType_FromSpec(&dummy_spec);
static auto *const obType = reinterpret_cast<PyObject *>(type);
static auto *const _missing = Shiboken::String::createStaticString("_missing_");
static auto *const func = PyObject_GetAttr(obType, _missing);
static auto *const partial = Pep_GetPartialFunction();
return PyObject_CallFunctionObjArgs(partial, func, klass, nullptr);
}
//
////////////////////////////////////////////////////////////////////////
} // extern "C"
namespace Shiboken::Enum {
int enumOption{};
bool check(PyObject *pyObj)
{
return checkType(Py_TYPE(pyObj));
}
bool checkType(PyTypeObject *pyTypeObj)
{
init_enum();
static PyTypeObject *meta = getPyEnumMeta();
return Py_TYPE(pyTypeObj) == meta;
}
PyObject *getEnumItemFromValue(PyTypeObject *enumType, EnumValueType itemValue)
{
init_enum();
auto *obEnumType = reinterpret_cast<PyObject *>(enumType);
AutoDecRef val2members(PyObject_GetAttrString(obEnumType, "_value2member_map_"));
if (val2members.isNull()) {
PyErr_Clear();
return nullptr;
}
AutoDecRef ob_value(PyLong_FromLongLong(itemValue));
auto *result = PyDict_GetItem(val2members, ob_value);
Py_XINCREF(result);
return result;
}
PyObject *newItem(PyTypeObject *enumType, EnumValueType itemValue,
const char *itemName)
{
init_enum();
auto *obEnumType = reinterpret_cast<PyObject *>(enumType);
if (!itemName)
return PyObject_CallFunction(obEnumType, "L", itemValue);
static PyObject *const _member_map_ = String::createStaticString("_member_map_");
AutoDecRef tpDict(PepType_GetDict(enumType));
auto *member_map = PyDict_GetItem(tpDict.object(), _member_map_);
if (!(member_map && PyDict_Check(member_map)))
return nullptr;
auto *result = PyDict_GetItemString(member_map, itemName);
Py_XINCREF(result);
return result;
}
EnumValueType getValue(PyObject *enumItem)
{
init_enum();
assert(Enum::check(enumItem));
AutoDecRef pyValue(PyObject_GetAttrString(enumItem, "value"));
return PyLong_AsLongLong(pyValue);
}
void setTypeConverter(PyTypeObject *type, SbkConverter *converter,
SbkConverter *flagsConverter)
{
SbkEnumTypePrivate *priv = PepType_SETP(reinterpret_cast<SbkEnumType *>(type));
priv->converter = converter;
priv->flagsConverter = flagsConverter;
}
static void setModuleAndQualnameOnType(PyObject *type, const char *fullName)
{
const char *colon = strchr(fullName, ':');
assert(colon);
int package_level = atoi(fullName);
const char *mod = colon + 1;
const char *qual = mod;
for (int idx = package_level; idx > 0; --idx) {
const char *dot = strchr(qual, '.');
if (!dot)
break;
qual = dot + 1;
}
int mlen = qual - mod - 1;
AutoDecRef module(Shiboken::String::fromCString(mod, mlen));
AutoDecRef qualname(Shiboken::String::fromCString(qual));
PyObject_SetAttr(type, Shiboken::PyMagicName::module(), module);
PyObject_SetAttr(type, Shiboken::PyMagicName::qualname(), qualname);
}
static PyTypeObject *createEnumForPython(PyObject *scopeOrModule,
const char *fullName,
PyObject *pyEnumItems)
{
const char *dot = strrchr(fullName, '.');
AutoDecRef name(Shiboken::String::fromCString(dot ? dot + 1 : fullName));
static PyObject *enumName = String::createStaticString("IntEnum");
if (PyType_Check(scopeOrModule)) {
// For global objects, we have no good solution, yet where to put the int info.
auto *type = reinterpret_cast<PyTypeObject *>(scopeOrModule);
auto *sotp = PepType_SOTP(type);
if (!sotp->enumFlagsDict)
initEnumFlagsDict(type);
enumName = PyDict_GetItem(sotp->enumTypeDict, name);
}
SBK_UNUSED(getPyEnumMeta()); // enforce PyEnumModule creation
assert(PyEnumModule != nullptr);
AutoDecRef PyEnumType(PyObject_GetAttr(PyEnumModule, enumName));
assert(PyEnumType.object());
bool isFlag = PyObject_IsSubclass(PyEnumType, PyFlag);
// See if we should use the Int versions of the types, again
bool useIntInheritance = Enum::enumOption & Enum::ENOPT_INHERIT_INT;
if (useIntInheritance) {
auto *surrogate = PyObject_IsSubclass(PyEnumType, PyFlag) ? PyIntFlag : PyIntEnum;
Py_INCREF(surrogate);
PyEnumType.reset(surrogate);
}
// Walk the enumItemStrings and create a Python enum type.
auto *pyName = name.object();
// We now create the new type. Since Python 3.11, we need to pass in
// `boundary=KEEP` because the default STRICT crashes on us.
// See QDir.Filter.Drives | QDir.Filter.Files
AutoDecRef callArgs(Py_BuildValue("(OO)", pyName, pyEnumItems));
AutoDecRef callDict(PyDict_New());
static PyObject *boundary = String::createStaticString("boundary");
if (PyFlag_KEEP)
PyDict_SetItem(callDict, boundary, PyFlag_KEEP);
auto *obNewType = PyObject_Call(PyEnumType, callArgs, callDict);
if (!obNewType || PyObject_SetAttr(scopeOrModule, pyName, obNewType) < 0)
return nullptr;
// For compatibility with Qt enums, provide a permissive missing method for (Int)?Enum.
if (!isFlag) {
bool supportMissing = !(Enum::enumOption & Enum::ENOPT_NO_MISSING);
if (supportMissing) {
AutoDecRef enum_missing(create_missing_func(obNewType));
PyObject_SetAttrString(obNewType, "_missing_", enum_missing);
}
}
setModuleAndQualnameOnType(obNewType, fullName);
// See if we should re-introduce shortcuts in the enclosing object.
const bool useGlobalShortcut = (Enum::enumOption & Enum::ENOPT_GLOBAL_SHORTCUT) != 0;
const bool useScopedShortcut = (Enum::enumOption & Enum::ENOPT_SCOPED_SHORTCUT) != 0;
if (useGlobalShortcut || useScopedShortcut) {
// We have to use the iterator protokol because the values dict is a mappingproxy.
AutoDecRef values(PyObject_GetAttr(obNewType, PyMagicName::members()));
AutoDecRef mapIterator(PyObject_GetIter(values));
AutoDecRef mapKey{};
bool isModule = PyModule_Check(scopeOrModule);
while ((mapKey.reset(PyIter_Next(mapIterator))), mapKey.object()) {
if ((useGlobalShortcut && isModule) || (useScopedShortcut && !isModule)) {
AutoDecRef value(PyObject_GetItem(values, mapKey));
if (PyObject_SetAttr(scopeOrModule, mapKey, value) < 0)
return nullptr;
}
}
}
return reinterpret_cast<PyTypeObject *>(obNewType);
}
template <typename IntT>
static PyObject *toPyObject(IntT v)
{
if constexpr (sizeof(IntT) == 8) {
if constexpr (std::is_unsigned_v<IntT>)
return PyLong_FromUnsignedLongLong(v);
return PyLong_FromLongLong(v);
}
if constexpr (std::is_unsigned_v<IntT>)
return PyLong_FromUnsignedLong(v);
return PyLong_FromLong(v);
}
template <typename IntT>
static PyTypeObject *createPythonEnumHelper(PyObject *module,
const char *fullName, const char *enumItemStrings[], const IntT enumValues[])
{
AutoDecRef args(PyList_New(0));
auto *pyEnumItems = args.object();
for (size_t idx = 0; enumItemStrings[idx] != nullptr; ++idx) {
const char *kv = enumItemStrings[idx];
auto *key = PyUnicode_FromString(kv);
auto *value = toPyObject(enumValues[idx]);
auto *key_value = PyTuple_New(2);
PyTuple_SetItem(key_value, 0, key);
PyTuple_SetItem(key_value, 1, value);
PyList_Append(pyEnumItems, key_value);
}
return createEnumForPython(module, fullName, pyEnumItems);
}
// Now we have to concretize these functions explicitly,
// otherwise templates will not work across modules.
PyTypeObject *createPythonEnum(PyObject *module,
const char *fullName, const char *enumItemStrings[], const int64_t enumValues[])
{
return createPythonEnumHelper(module, fullName, enumItemStrings, enumValues);
}
PyTypeObject *createPythonEnum(PyObject *module,
const char *fullName, const char *enumItemStrings[], const uint64_t enumValues[])
{
return createPythonEnumHelper(module, fullName, enumItemStrings, enumValues);
}
PyTypeObject *createPythonEnum(PyObject *module,
const char *fullName, const char *enumItemStrings[], const int32_t enumValues[])
{
return createPythonEnumHelper(module, fullName, enumItemStrings, enumValues);
}
PyTypeObject *createPythonEnum(PyObject *module,
const char *fullName, const char *enumItemStrings[], const uint32_t enumValues[])
{
return createPythonEnumHelper(module, fullName, enumItemStrings, enumValues);
}
PyTypeObject *createPythonEnum(PyObject *module,
const char *fullName, const char *enumItemStrings[], const int16_t enumValues[])
{
return createPythonEnumHelper(module, fullName, enumItemStrings, enumValues);
}
PyTypeObject *createPythonEnum(PyObject *module,
const char *fullName, const char *enumItemStrings[], const uint16_t enumValues[])
{
return createPythonEnumHelper(module, fullName, enumItemStrings, enumValues);
}
PyTypeObject *createPythonEnum(PyObject *module,
const char *fullName, const char *enumItemStrings[], const int8_t enumValues[])
{
return createPythonEnumHelper(module, fullName, enumItemStrings, enumValues);
}
PyTypeObject *createPythonEnum(PyObject *module,
const char *fullName, const char *enumItemStrings[], const uint8_t enumValues[])
{
return createPythonEnumHelper(module, fullName, enumItemStrings, enumValues);
}
PyTypeObject *createPythonEnum(const char *fullName, PyObject *pyEnumItems,
const char *enumTypeName, PyObject *callDict)
{
SBK_UNUSED(getPyEnumMeta());
AutoDecRef PyEnumTypeName(Shiboken::String::fromCString(enumTypeName));
AutoDecRef PyEnumType(PyObject_GetAttr(PyEnumModule, PyEnumTypeName));
if (!PyEnumType) {
PyErr_Format(PyExc_RuntimeError, "Failed to get enum type %s", enumTypeName);
return nullptr;
}
const char *dot = strrchr(fullName, '.');
AutoDecRef name(Shiboken::String::fromCString(dot ? dot + 1 : fullName));
AutoDecRef callArgs(Py_BuildValue("(OO)", name.object(), pyEnumItems));
auto *newType = PyObject_Call(PyEnumType, callArgs, callDict);
setModuleAndQualnameOnType(newType, fullName);
return reinterpret_cast<PyTypeObject *>(newType);
}
} // namespace Shiboken::Enum
|