29#if (__cplusplus > 201402L) || (defined(_MSC_VER) && _MSVC_LANG > 201402L)
36#if PY_VERSION_HEX < 0x03000000
37#if defined(__GNUC__) && !defined(__APPLE__)
38# if __GNUC__ > 4 && __has_include("codecvt")
61 static std::regex
s_fnptr(
"\\((\\w*:*)*\\*&*\\)");
66#if PY_VERSION_HEX < 0x030e0000
67#if PY_VERSION_HEX < 0x03000000
69#elif PY_VERSION_HEX < 0x03080000
119#define ct_c_uint32 10
122#define ct_c_longlong 13
123#define ct_c_ulonglong 14
125#define ct_c_double 16
126#define ct_c_longdouble 17
127#define ct_c_char_p 18
128#define ct_c_wchar_p 19
129#define ct_c_void_p 20
130#define ct_c_fcomplex 21
131#define ct_c_complex 22
132#define ct_c_pointer 23
138 "c_bool",
"c_char",
"c_wchar",
"c_byte",
"c_ubyte",
"c_short",
"c_ushort",
"c_uint16",
139 "c_int",
"c_uint",
"c_uint32",
"c_long",
"c_ulong",
"c_longlong",
"c_ulonglong",
140 "c_float",
"c_double",
"c_longdouble",
141 "c_char_p",
"c_wchar_p",
"c_void_p",
"c_fcomplex",
"c_complex",
"_Pointer" };
215#if PY_VERSION_HEX < 0x30d0000
275 if (!
holder)
return false;
289 if (!
holder)
return false;
380#define CPPYY_PYLONG_AS_TYPE(name, type, limit_low, limit_high) \
381static inline type CPyCppyy_PyLong_As##name(PyObject* pyobject) \
383 if (!(PyLong_Check(pyobject) || PyInt_Check(pyobject))) { \
384 if (pyobject == CPyCppyy::gDefaultObject) \
386 PyErr_SetString(PyExc_TypeError, #type" conversion expects an integer object");\
389 long l = PyLong_AsLong(pyobject); \
390 if (l < limit_low || limit_high < l) { \
391 PyErr_Format(PyExc_ValueError, "integer %ld out of range for "#type, l);\
444 para.fValue.fVoidp =
nullptr;
450 para.fValue.fVoidp =
nullptr;
453 "could not convert argument to buffer or nullptr");
458 para.fTypeCode =
'p';
511 para.fValue.fVoidp =
pytmp->GetObjectRaw();
512 para.fTypeCode =
'V';
545#define CPPYY_IMPL_BASIC_CONVERTER_BODY(name, type, stype, ctype, F1, F2, tc)\
547 type val = (type)F2(pyobject); \
548 if (val == (type)-1 && PyErr_Occurred()) { \
549 static PyTypeObject* ctypes_type = nullptr; \
550 if (!ctypes_type) { \
551 auto error = CPyCppyy::Utility::FetchPyError(); \
552 ctypes_type = GetCTypesType(ct_##ctype); \
553 CPyCppyy::Utility::RestorePyError(error); \
555 if (Py_TYPE(pyobject) == ctypes_type) { \
557 val = *((type*)((CPyCppyy_tagCDataObject*)pyobject)->b_ptr); \
558 } else if (pyobject == CPyCppyy::gDefaultObject) { \
564 para.fValue.f##name = val; \
565 para.fTypeCode = tc; \
568#define CPPYY_IMPL_BASIC_CONVERTER_METHODS(name, type, stype, ctype, F1, F2) \
569PyObject* CPyCppyy::name##Converter::FromMemory(void* address) \
571 return F1((stype)*((type*)address)); \
574bool CPyCppyy::name##Converter::ToMemory( \
575 PyObject* value, void* address, PyObject* ) \
577 type s = (type)F2(value); \
578 if (s == (type)-1 && PyErr_Occurred()) { \
579 if (value == CPyCppyy::gDefaultObject) { \
585 *((type*)address) = (type)s; \
589#define CPPYY_IMPL_BASIC_CONVERTER_NI(name, type, stype, ctype, F1, F2, tc) \
590bool CPyCppyy::name##Converter::SetArg( \
591 PyObject* pyobject, Parameter& para, CallContext* ctxt) \
593 if (!StrictBool(pyobject, ctxt)) \
595 CPPYY_IMPL_BASIC_CONVERTER_BODY(name, type, stype, ctype, F1, F2, tc) \
597CPPYY_IMPL_BASIC_CONVERTER_METHODS(name, type, stype, ctype, F1, F2)
599#define CPPYY_IMPL_BASIC_CONVERTER_IB(name, type, stype, ctype, F1, F2, tc) \
600bool CPyCppyy::name##Converter::SetArg( \
601 PyObject* pyobject, Parameter& para, CallContext* ctxt) \
603 if (!ImplicitBool(pyobject, ctxt)) \
605 CPPYY_IMPL_BASIC_CONVERTER_BODY(name, type, stype, ctype, F1, F2, tc) \
607CPPYY_IMPL_BASIC_CONVERTER_METHODS(name, type, stype, ctype, F1, F2)
609#define CPPYY_IMPL_BASIC_CONVERTER_NB(name, type, stype, ctype, F1, F2, tc) \
610bool CPyCppyy::name##Converter::SetArg( \
611 PyObject* pyobject, Parameter& para, CallContext* ) \
613 if (PyBool_Check(pyobject)) \
615 CPPYY_IMPL_BASIC_CONVERTER_BODY(name, type, stype, ctype, F1, F2, tc) \
617CPPYY_IMPL_BASIC_CONVERTER_METHODS(name, type, stype, ctype, F1, F2)
643 "integer to character: value %d not in range [%d,%d]",
lchar, low, high);
653#define CPPYY_IMPL_REFCONVERTER_FROM_MEMORY(name, ctype) \
654PyObject* CPyCppyy::name##RefConverter::FromMemory(void* ptr) \
657 PyTypeObject* ctypes_type = GetCTypesType(ct_##ctype); \
658 if (!ctypes_type) { \
659 PyErr_SetString(PyExc_RuntimeError, "no ctypes available"); \
662 PyObject* ref = ctypes_type->tp_new(ctypes_type, nullptr, nullptr); \
663 ((CPyCppyy_tagCDataObject*)ref)->b_ptr = (char*)ptr; \
664 ((CPyCppyy_tagCDataObject*)ref)->b_needsfree = 0; \
669#define CPPYY_IMPL_BASIC_CONST_REFCONVERTER(name, type, ctype, F1) \
670bool CPyCppyy::Const##name##RefConverter::SetArg( \
671 PyObject* pyobject, Parameter& para, CallContext* ) \
673 type val = (type)F1(pyobject); \
674 if (val == (type)-1 && PyErr_Occurred()) { \
675 if (pyobject == CPyCppyy::gDefaultObject) { \
681 para.fValue.f##name = val; \
682 para.fRef = ¶.fValue.f##name; \
683 para.fTypeCode = 'r'; \
686CPPYY_IMPL_REFCONVERTER_FROM_MEMORY(Const##name, ctype)
689#define CPPYY_IMPL_BASIC_CONST_CHAR_REFCONVERTER(name, type, ctype, low, high)\
690bool CPyCppyy::Const##name##RefConverter::SetArg( \
691 PyObject* pyobject, Parameter& para, CallContext* ) \
694 type val = (type)ExtractChar(pyobject, #type, low, high); \
695 if (val == (type)-1 && PyErr_Occurred()) \
697 para.fValue.fLong = val; \
698 para.fTypeCode = 'l'; \
701CPPYY_IMPL_REFCONVERTER_FROM_MEMORY(Const##name, ctype)
705#define CPPYY_IMPL_BASIC_CHAR_CONVERTER(name, type, low, high) \
706bool CPyCppyy::name##Converter::SetArg( \
707 PyObject* pyobject, Parameter& para, CallContext* ) \
710 long val = ExtractChar(pyobject, #type, low, high); \
711 if (val == -1 && PyErr_Occurred()) \
713 para.fValue.fLong = val; \
714 para.fTypeCode = 'l'; \
718PyObject* CPyCppyy::name##Converter::FromMemory(void* address) \
721 return CPyCppyy_PyText_FromFormat("%c", *((type*)address)); \
724bool CPyCppyy::name##Converter::ToMemory( \
725 PyObject* value, void* address, PyObject* ) \
728 const char* cstr = nullptr; \
729 if (PyBytes_Check(value)) \
730 PyBytes_AsStringAndSize(value, (char**)&cstr, &len); \
732 cstr = CPyCppyy_PyText_AsStringAndSize(value, &len); \
735 PyErr_Format(PyExc_TypeError, #type" expected, got string of size %zd", len);\
738 *((type*)address) = (type)cstr[0]; \
741 long l = PyLong_AsLong(value); \
742 if (l == -1 && PyErr_Occurred()) { \
743 if (value == CPyCppyy::gDefaultObject) { \
749 if (!(low <= l && l <= high)) { \
750 PyErr_Format(PyExc_ValueError, \
751 "integer to character: value %ld not in range [%d,%d]", l, low, high);\
754 *((type*)address) = (type)l; \
768#if PY_VERSION_HEX < 0x03000000
771 para.fTypeCode =
'V';
778 para.fTypeCode =
'V';
783 para.fTypeCode =
'V';
812bool CPyCppyy::IntRefConverter::SetArg(
816#if PY_VERSION_HEX < 0x03000000
819 para.fTypeCode =
'V';
824#if PY_VERSION_HEX >= 0x02050000
827 para.fTypeCode =
'V';
834 if (
para.fValue.fVoidp && buflen) {
835 para.fTypeCode =
'V';
839#if PY_VERSION_HEX < 0x02050000
848#define CPPYY_IMPL_REFCONVERTER(name, ctype, type, code) \
849bool CPyCppyy::name##RefConverter::SetArg( \
850 PyObject* pyobject, Parameter& para, CallContext* ) \
853 if (Py_TYPE(pyobject) == GetCTypesType(ct_##ctype)) { \
854 para.fValue.fVoidp = (void*)((CPyCppyy_tagCDataObject*)pyobject)->b_ptr;\
855 para.fTypeCode = 'V'; \
858 bool res = CArraySetArg(pyobject, para, code, sizeof(type)); \
860 PyErr_SetString(PyExc_TypeError, "use ctypes."#ctype" for pass-by-ref of "#type);\
863 para.fTypeCode = 'V'; \
866CPPYY_IMPL_REFCONVERTER_FROM_MEMORY(name, ctype)
910PyObject* CPyCppyy::UCharAsIntConverter::FromMemory(
void* address)
918bool CPyCppyy::WCharConverter::SetArg(
930 para.fValue.fLong = (long)val;
931 para.fTypeCode =
'U';
935PyObject* CPyCppyy::WCharConverter::FromMemory(
void* address)
950 *((
wchar_t*)address) = val;
955bool CPyCppyy::Char16Converter::SetArg(
965 if (!
bstr)
return false;
969 para.fValue.fLong = (long)val;
970 para.fTypeCode =
'U';
974PyObject* CPyCppyy::Char16Converter::FromMemory(
void* address)
987 if (!
bstr)
return false;
995bool CPyCppyy::Char32Converter::SetArg(
1005 if (!
bstr)
return false;
1009 para.fValue.fLong = (long)val;
1010 para.fTypeCode =
'U';
1014PyObject* CPyCppyy::Char32Converter::FromMemory(
void* address)
1027 if (!
bstr)
return false;
1055bool CPyCppyy::ULongConverter::SetArg(
1065 para.fTypeCode =
'L';
1069PyObject* CPyCppyy::ULongConverter::FromMemory(
void* address)
1082 u = (
unsigned long)0;
1086 *((
unsigned long*)address) =
u;
1091PyObject* CPyCppyy::UIntConverter::FromMemory(
void* address)
1109 *((
unsigned int*)address) = (
unsigned int)
u;
1126bool CPyCppyy::ComplexDConverter::SetArg(
1134 para.fTypeCode =
'V';
1141PyObject* CPyCppyy::ComplexDConverter::FromMemory(
void* address)
1143 std::complex<double>*
dc = (std::complex<double>*)address;
1151 std::complex<double>*
dc = (std::complex<double>*)address;
1156 return this->InstanceConverter::ToMemory(
value, address,
ctxt);
1160bool CPyCppyy::DoubleRefConverter::SetArg(
1164#if PY_VERSION_HEX < 0x03000000
1167 para.fTypeCode =
'V';
1172#if PY_VERSION_HEX >= 0x02050000
1175 para.fTypeCode =
'V';
1182 if (
para.fValue.fVoidp && buflen) {
1183 para.fTypeCode =
'V';
1187#if PY_VERSION_HEX < 0x02050000
1209bool CPyCppyy::LLongConverter::SetArg(
1219 para.fTypeCode =
'q';
1223PyObject* CPyCppyy::LLongConverter::FromMemory(
void* address)
1245bool CPyCppyy::ULLongConverter::SetArg(
1255 para.fTypeCode =
'Q';
1259PyObject* CPyCppyy::ULLongConverter::FromMemory(
void* address)
1281bool CPyCppyy::CStringConverter::SetArg(
1293 para.fTypeCode =
'V';
1304 if (!
ctxt->fPyContext) {
1315 para.fTypeCode =
'p';
1319PyObject* CPyCppyy::CStringConverter::FromMemory(
void* address)
1322 if (address && *(
void**)address) {
1326 if (*(
void**)address == (
void*)
fBuffer.data())
1343 if (!
cstr)
return false;
1352 void*
ptrval = *(
void**)address;
1355 *(
void**)address = (
void*)
fBuffer.data();
1365 *(
void**)address = (
void*)
cstr;
1380bool CPyCppyy::WCStringConverter::SetArg(
1396 para.fTypeCode =
'p';
1400PyObject* CPyCppyy::WCStringConverter::FromMemory(
void* address)
1403 if (address && *(
wchar_t**)address) {
1404 if (
fMaxSize != std::wstring::npos)
1427 if (
fMaxSize != std::wstring::npos)
1433 if (res == -1)
return false;
1438#define CPYCPPYY_WIDESTRING_CONVERTER(name, type, encode, decode, snull) \
1439bool CPyCppyy::name##Converter::SetArg( \
1440 PyObject* pyobject, Parameter& para, CallContext* ) \
1443 PyObject* bstr = encode(pyobject); \
1444 if (!bstr) return false; \
1446 Py_ssize_t len = PyBytes_GET_SIZE(bstr) - sizeof(type) ; \
1447 fBuffer = (type*)realloc(fBuffer, len + sizeof(type)); \
1448 memcpy(fBuffer, PyBytes_AS_STRING(bstr) + sizeof(type) , len); \
1451 fBuffer[len/sizeof(type)] = snull; \
1452 para.fValue.fVoidp = (void*)fBuffer; \
1453 para.fTypeCode = 'p'; \
1457PyObject* CPyCppyy::name##Converter::FromMemory(void* address) \
1460 if (address && *(type**)address) { \
1461 if (fMaxSize != std::wstring::npos) \
1462 return decode(*(const char**)address, (Py_ssize_t)fMaxSize*sizeof(type), nullptr, nullptr);\
1463 return decode(*(const char**)address, \
1464 std::char_traits<type>::length(*(type**)address)*sizeof(type), nullptr, nullptr);\
1469 return decode((const char*)&w, 0, nullptr, nullptr); \
1472bool CPyCppyy::name##Converter::ToMemory(PyObject* value, void* address, PyObject* )\
1475 PyObject* bstr = encode(value); \
1476 if (!bstr) return false; \
1478 Py_ssize_t len = PyBytes_GET_SIZE(bstr) - sizeof(type) ; \
1479 Py_ssize_t maxbytes = (Py_ssize_t)fMaxSize*sizeof(type); \
1482 if (fMaxSize != std::wstring::npos && maxbytes < len) { \
1483 PyErr_Warn(PyExc_RuntimeWarning, (char*)"string too long for "#type" array (truncated)");\
1487 memcpy(*((void**)address), PyBytes_AS_STRING(bstr) + sizeof(type) , len);\
1490 if (len/sizeof(type) < fMaxSize) (*(type**)address)[len/sizeof(type)] = snull;\
1498bool CPyCppyy::NonConstCStringConverter::SetArg(
1511PyObject* CPyCppyy::NonConstCStringConverter::FromMemory(
void* address)
1516 return this->CStringConverter::FromMemory(address);
1532 address = (
void*)val;
1560 para.fValue.fVoidp =
pyobj->GetObject();
1561 para.fTypeCode =
'p';
1566 if (GetAddressSpecialCase(
pyobject,
para.fValue.fVoidp)) {
1567 para.fTypeCode =
'p';
1575 para.fValue.fVoidp = (
void*)((CPyCppyy_tagCDataObject*)
pyobject)->b_ptr;
1576 para.fTypeCode =
'V';
1582 void** payload = (
void**)((CPyCppyy_tagCDataObject*)
pyobject)->b_ptr;
1584 para.fValue.fVoidp = *payload;
1585 para.fTypeCode =
'p';
1594 if (
para.fValue.fVoidp && buflen != 0) {
1595 para.fTypeCode =
'p';
1607 if (!address || *(
uintptr_t*)address == 0) {
1625 *(
void**)address =
pyobj->GetObject();
1630 void* ptr =
nullptr;
1631 if (GetAddressSpecialCase(
value, ptr)) {
1632 *(
void**)address = ptr;
1637 void* buf =
nullptr;
1639 if (!buf || buflen == 0)
1642 *(
void**)address = buf;
1684#define CPPYY_IMPL_ARRAY_CONVERTER(name, ctype, type, code, suffix) \
1685CPyCppyy::name##ArrayConverter::name##ArrayConverter(cdims_t dims) : \
1687 fIsFixed = dims ? fShape[0] != UNKNOWN_SIZE : false; \
1690bool CPyCppyy::name##ArrayConverter::SetArg( \
1691 PyObject* pyobject, Parameter& para, CallContext* ctxt) \
1694 bool convOk = false; \
1697 if (fShape.ndim() == 2) { \
1698 if (Py_TYPE(pyobject) == GetCTypesPtrType(ct_##ctype)) { \
1699 para.fValue.fVoidp = (void*)((CPyCppyy_tagCDataObject*)pyobject)->b_ptr;\
1700 para.fTypeCode = 'p'; \
1702 } else if (Py_TYPE(pyobject) == GetCTypesType(ct_c_void_p)) { \
1704 para.fValue.fVoidp = (void*)((CPyCppyy_tagCDataObject*)pyobject)->b_ptr;\
1705 para.fTypeCode = 'p'; \
1707 } else if (LowLevelView_Check(pyobject) && \
1708 ((LowLevelView*)pyobject)->fBufInfo.ndim == 2 && \
1709 strchr(((LowLevelView*)pyobject)->fBufInfo.format, code)) { \
1710 para.fValue.fVoidp = ((LowLevelView*)pyobject)->get_buf(); \
1711 para.fTypeCode = 'p'; \
1718 PyTypeObject* ctypes_type = GetCTypesType(ct_##ctype); \
1719 if (Py_TYPE(pyobject) == ctypes_type) { \
1720 para.fValue.fVoidp = (void*)((CPyCppyy_tagCDataObject*)pyobject)->b_ptr;\
1721 para.fTypeCode = 'p'; \
1723 } else if (Py_TYPE(pyobject) == GetCTypesPtrType(ct_##ctype)) { \
1724 para.fValue.fVoidp = (void*)((CPyCppyy_tagCDataObject*)pyobject)->b_ptr;\
1725 para.fTypeCode = 'V'; \
1727 } else if (IsPyCArgObject(pyobject)) { \
1728 CPyCppyy_tagPyCArgObject* carg = (CPyCppyy_tagPyCArgObject*)pyobject;\
1729 if (carg->obj && Py_TYPE(carg->obj) == ctypes_type) { \
1730 para.fValue.fVoidp = (void*)((CPyCppyy_tagCDataObject*)carg->obj)->b_ptr;\
1731 para.fTypeCode = 'p'; \
1739 bool ismulti = fShape.ndim() > 1; \
1740 convOk = CArraySetArg(pyobject, para, code, ismulti ? sizeof(void*) : sizeof(type), true);\
1744 if (convOk) SetLifeLine(ctxt->fPyContext, pyobject, (intptr_t)this); \
1749PyObject* CPyCppyy::name##ArrayConverter::FromMemory(void* address) \
1752 return CreateLowLevelView##suffix((type**)address, fShape); \
1753 return CreateLowLevelView##suffix(*(type**)address, fShape); \
1756bool CPyCppyy::name##ArrayConverter::ToMemory( \
1757 PyObject* value, void* address, PyObject* ctxt) \
1759 if (fShape.ndim() <= 1 || fIsFixed) { \
1760 void* buf = nullptr; \
1761 Py_ssize_t buflen = Utility::GetBuffer(value, code, sizeof(type), buf);\
1762 return ToArrayFromBuffer<type>(value, address, ctxt, buf, buflen, fShape, fIsFixed);\
1764 void* buf = nullptr; \
1765 Py_ssize_t buflen = Utility::GetBuffer(value, code, sizeof(void*), buf);\
1766 if (buflen == 0) return false; \
1767 *(type**)address = (type*)buf; \
1768 SetLifeLine(ctxt, value, (intptr_t)address); \
1778#if (__cplusplus > 201402L) || (defined(_MSC_VER) && _MSVC_LANG > 201402L)
1803bool CPyCppyy::CStringArrayConverter::SetArg(
1811 para.fTypeCode =
'V';
1815#if PY_VERSION_HEX >= 0x03000000
1823 if (
len == (
size_t)-1) {
1829 for (
size_t i = 0; i <
len; ++i) {
1847 para.fTypeCode =
'p';
1856PyObject* CPyCppyy::CStringArrayConverter::FromMemory(
void* address)
1874 return SCharArrayConverter::ToMemory(
value, address,
ctxt);
1878PyObject* CPyCppyy::NonConstCStringArrayConverter::FromMemory(
void* address)
1892 para.fValue.fVoidp =
nullptr;
1893 para.fTypeCode =
'p';
1908#if PY_VERSION_HEX < 0x03030000
1918 const char*
cstr =
nullptr;
1920 if (
cstr) buffer = T{
cstr, (
typename T::size_type)
len};
1928#define CPPYY_IMPL_STRING_AS_PRIMITIVE_CONVERTER(name, type, F1, F2) \
1929CPyCppyy::name##Converter::name##Converter(bool keepControl) : \
1930 InstanceConverter(Cppyy::GetScope(#type), keepControl) {} \
1932bool CPyCppyy::name##Converter::SetArg( \
1933 PyObject* pyobject, Parameter& para, CallContext* ctxt) \
1935 if (CPyCppyy_PyUnicodeAsBytes2Buffer(pyobject, fBuffer)) { \
1936 para.fValue.fVoidp = &fBuffer; \
1937 para.fTypeCode = 'V'; \
1942 if (!(PyInt_Check(pyobject) || PyLong_Check(pyobject))) { \
1943 bool result = InstanceConverter::SetArg(pyobject, para, ctxt); \
1944 para.fTypeCode = 'V'; \
1951PyObject* CPyCppyy::name##Converter::FromMemory(void* address) \
1954 return InstanceConverter::FromMemory(address); \
1955 auto* empty = new type(); \
1956 return BindCppObjectNoCast(empty, fClass, CPPInstance::kIsOwner); \
1959bool CPyCppyy::name##Converter::ToMemory( \
1960 PyObject* value, void* address, PyObject* ctxt) \
1962 if (CPyCppyy_PyUnicodeAsBytes2Buffer(value, *((type*)address))) \
1964 return InstanceConverter::ToMemory(value, address, ctxt); \
1971CPyCppyy::STLWStringConverter::STLWStringConverter(
bool keepControl) :
1974bool CPyCppyy::STLWStringConverter::SetArg(
1982 para.fTypeCode =
'V';
1985#if PY_VERSION_HEX < 0x03000000
1988 std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>>
cnv;
1992 if (!
pyu)
return false;
1998 para.fTypeCode =
'V';
2005 para.fTypeCode =
'V';
2012PyObject* CPyCppyy::STLWStringConverter::FromMemory(
void* address)
2024 wchar_t* buf =
new wchar_t[
len+1];
2026 *((std::wstring*)address) = std::wstring(buf,
len);
2030 return InstanceConverter::ToMemory(
value, address,
ctxt);
2034#if (__cplusplus > 201402L) || (defined(_MSC_VER) && _MSVC_LANG > 201402L)
2035CPyCppyy::STLStringViewConverter::STLStringViewConverter(
bool keepControl) :
2038bool CPyCppyy::STLStringViewConverter::SetArg(
2045 para.fTypeCode =
'V';
2056 fBuffer = std::string_view(
cstr, (std::string_view::size_type)
len);
2058 para.fTypeCode =
'V';
2071 void* ptr =
pyobj->GetObject();
2077 fBuffer = *((std::string*)ptr);
2079 para.fTypeCode =
'V';
2087PyObject* CPyCppyy::STLStringViewConverter::FromMemory(
void* address)
2090 return InstanceConverter::FromMemory(address);
2091 auto* empty =
new std::string_view();
2095bool CPyCppyy::STLStringViewConverter::ToMemory(
2099 if (InstanceConverter::ToMemory(
value, address,
ctxt))
2107 *
reinterpret_cast<std::string_view*
>(address) = \
2108 std::string_view(
cstr, (std::string_view::size_type)
len);
2117bool CPyCppyy::STLStringMoveConverter::SetArg(
2146template <
bool ISCONST>
2153 if (GetAddressSpecialCase(
pyobject,
para.fValue.fVoidp)) {
2154 para.fTypeCode =
'p';
2174 para.fValue.fVoidp =
pyobj->GetObject();
2181 para.fTypeCode =
'p';
2189template <
bool ISCONST>
2199template <
bool ISCONST>
2205 void* ptr =
nullptr;
2206 if (GetAddressSpecialCase(
value, ptr)) {
2207 *(
void**)address = ptr;
2220 *(
void**)address =
pyobj->GetObject();
2230bool CPyCppyy::InstanceConverter::SetArg(
2239 para.fValue.fVoidp =
pyobj->GetObject();
2240 if (!
para.fValue.fVoidp)
2248 para.fTypeCode =
'V';
2257PyObject* CPyCppyy::InstanceConverter::FromMemory(
void* address)
2271#if PY_VERSION_HEX >= 0x03080000
2287bool CPyCppyy::InstanceRefConverter::SetArg(
2302 if (
pyobj->IsSmart()) {
2305 para.fValue.fVoidp =
pyobj->GetObjectRaw();
2313 para.fValue.fVoidp =
pyobj->GetObject();
2320 if (!
para.fValue.fVoidp) {
2331 para.fTypeCode =
'V';
2343PyObject* CPyCppyy::InstanceRefConverter::FromMemory(
void* address)
2349bool CPyCppyy::InstanceMoveConverter::SetArg(
2380template <
bool ISREFERENCE>
2381bool CPyCppyy::InstancePtrPtrConverter<ISREFERENCE>::SetArg(
2389 para.fValue.fVoidp =
nullptr;
2390 para.fTypeCode =
'p';
2403 para.fValue.fVoidp =
pyobj->GetObjectRaw();
2405 para.fValue.fVoidp = &
pyobj->GetObjectRaw();
2414template <
bool ISREFERENCE>
2415PyObject* CPyCppyy::InstancePtrPtrConverter<ISREFERENCE>::FromMemory(
void* address)
2422template <
bool ISREFERENCE>
2423bool CPyCppyy::InstancePtrPtrConverter<ISREFERENCE>::ToMemory(
2431 *(
void**)address =
nullptr;
2446 *(
void**)address =
pyobj->GetObject();
2458 template class CPyCppyy::InstancePtrPtrConverter<true>;
2459 template class CPyCppyy::InstancePtrPtrConverter<false>;
2463bool CPyCppyy::InstanceArrayConverter::SetArg(
2482 para.fTypeCode =
'p';
2490PyObject* CPyCppyy::InstanceArrayConverter::FromMemory(
void* address)
2497bool CPyCppyy::InstanceArrayConverter::ToMemory(
2504 "access to C-arrays of objects not yet implemented!");
2511bool CPyCppyy::STLIteratorConverter::SetArg(
2519 para.fValue.fVoidp =
pyobj->GetObject();
2520 para.fTypeCode =
'V';
2526bool CPyCppyy::VoidPtrRefConverter::SetArg(
2532 para.fValue.fVoidp = &
pyobj->GetObjectRaw();
2533 para.fTypeCode =
'V';
2541CPyCppyy::VoidPtrPtrConverter::VoidPtrPtrConverter(
cdims_t dims) :
2547bool CPyCppyy::VoidPtrPtrConverter::SetArg(
2554 para.fValue.fVoidp = &
pyobj->GetObjectRaw();
2555 para.fTypeCode =
'p';
2561 para.fTypeCode =
'p';
2571 if (
para.fValue.fVoidp && buflen != 0) {
2572 para.fTypeCode =
'p';
2580PyObject* CPyCppyy::VoidPtrPtrConverter::FromMemory(
void* address)
2583 if (!address || *(ptrdiff_t*)address == 0) {
2593bool CPyCppyy::PyObjectConverter::SetArg(
2598 para.fTypeCode =
'p';
2602PyObject* CPyCppyy::PyObjectConverter::FromMemory(
void* address)
2638 auto key =
ipos->second.second;
2656 const_cast<char*
>(
"internal_WrapperCacheEraser"),
2672 if (!
ol->fMethodInfo ||
ol->fMethodInfo->fMethods.empty())
2676 for (
auto&
m :
ol->fMethodInfo->fMethods) {
2681 void*
fptr = (
void*)
m->GetFunctionAddress();
2691 std::string fullname =
pytmpl->fTI->fCppName;
2692 if (
pytmpl->fTemplateArgs)
2740 std::ostringstream
wname;
2744 std::ostringstream code;
2745 code <<
"namespace __cppyy_internal {\n "
2747 for (
int i = 0; i <
nArgs; ++i) {
2748 code <<
argtypes[i] <<
" arg" << i;
2749 if (i !=
nArgs-1) code <<
", ";
2760 code <<
" PyObject** ref = (PyObject**)" << (intptr_t)ref <<
";\n"
2761 " PyObject* pyresult = nullptr;\n"
2762 " if (*ref) pyresult = PyObject_CallFunctionObjArgs(*ref";
2763 for (
int i = 0; i <
nArgs; ++i)
2764 code <<
", pyargs[" << i <<
"]";
2765 code <<
", NULL);\n"
2766 " else PyErr_SetString(PyExc_TypeError, \"callable was deleted\");\n";
2798bool CPyCppyy::FunctionPointerConverter::SetArg(
2803 para.fValue.fVoidp =
nullptr;
2804 para.fTypeCode =
'p';
2813 para.fTypeCode =
'p';
2820PyObject* CPyCppyy::FunctionPointerConverter::FromMemory(
void* address)
2831bool CPyCppyy::FunctionPointerConverter::ToMemory(
2836 *((
void**)address) =
nullptr;
2844 *((
void**)address) =
fptr;
2853bool CPyCppyy::StdFunctionConverter::SetArg(
2867 PyObject* func = this->FunctionPointerConverter::FromMemory(&
para.fValue.fVoidp);
2880PyObject* CPyCppyy::StdFunctionConverter::FromMemory(
void* address)
2895bool CPyCppyy::SmartPtrConverter::SetArg(
2922 para.fValue.fVoidp =
pyobj->GetSmartObject();
2937 para.fValue.fVoidp =
pyobj->GetObject();
2968 pyobj->PythonOwns();
2979 para.fTypeCode =
'V';
2986PyObject* CPyCppyy::SmartPtrConverter::FromMemory(
void* address)
2999#if PY_VERSION_HEX >= 0x03080000
3018#if defined (_LIBCPP_INITIALIZER_LIST) || defined(__GNUC__)
3021 typedef size_t size_type;
3022 typedef void* iterator;
3026#elif defined (_MSC_VER)
3029 typedef char* iterator;
3034#define NO_KNOWN_INITIALIZER_LIST 1
3039CPyCppyy::InitializerListConverter::InitializerListConverter(
Cppyy::TCppType_t klass, std::string
const &value_type)
3041 : InstanceConverter{
klass},
3048CPyCppyy::InitializerListConverter::~InitializerListConverter()
3056void CPyCppyy::InitializerListConverter::Clear() {
3059#if defined (_LIBCPP_INITIALIZER_LIST) || defined(__GNUC__)
3060 for (faux_initlist::size_type i = 0; i <
fake->_M_len; ++i) {
3061#elif defined (_MSC_VER)
3073bool CPyCppyy::InitializerListConverter::SetArg(
3076#ifdef NO_KNOWN_INITIALIZER_LIST
3096 void* buf =
nullptr;
3100 if (buf && buflen) {
3105#if defined (_LIBCPP_INITIALIZER_LIST) || defined(__GNUC__)
3106 fake->_M_len = (faux_initlist::size_type)buflen;
3107#elif defined (_MSC_VER)
3122#if defined (_LIBCPP_INITIALIZER_LIST) || defined(__GNUC__)
3123 fake->_M_len = (faux_initlist::size_type)
len;
3124 for (faux_initlist::size_type i = 0; i <
fake->_M_len; ++i) {
3125#elif defined (_MSC_VER)
3147 if (
memloc) entries += 1;
3150 "default ctor needed for initializer list of objects");
3165#if defined (_LIBCPP_INITIALIZER_LIST) || defined(__GNUC__)
3166 fake->_M_len = (faux_initlist::size_type)entries;
3167#elif defined (_MSC_VER)
3180 para.fTypeCode =
'V';
3201 if (
cpd ==
"**" ||
cpd ==
"*[]" ||
cpd ==
"&*")
3203 else if (
cpd ==
"*&")
3209 else if (
cpd ==
"&")
3211 else if (
cpd ==
"&&")
3237 return (
h->second)(
dims);
3247 return (
h->second)(
dims);
3258 return (
h->second)(
dims);
3265 return (
h->second)(
dims);
3269 if (
cpd.compare(0, 3,
"*[]") == 0) {
3283 for (
int i = 2; i < (
newdim-1); ++i)
3289 return (
h->second)(
dims);
3292 }
else if (!
cpd.empty() && (std::string::size_type)std::count(
cpd.
begin(),
cpd.
end(),
'*') ==
cpd.size()) {
3298 }
else if (2 <=
cpd.size() && (std::string::size_type)std::count(
cpd.
begin(),
cpd.
end(),
'[') ==
cpd.size() / 2) {
3302 return (
h->second)(
dims);
3306 if (
realType.compare(0, 16,
"initializer_list") == 0) {
3318 if (pos == 0 || pos == 5 ||
3319 pos == 6 || pos == 11 ) {
3329 if (
pos1 != std::string::npos &&
pos2 != std::string::npos) {
3333 return new StdFunctionConverter(
cnv,
3335 }
else if (
cnv->HasState())
3347 }
else if (
cpd ==
"&") {
3357 static STLIteratorConverter
c;
3367 auto pos1 =
sm.position(0);
3369 result =
new FunctionPointerConverter(
3378 return (
h->second)(
dims);
3380 result =
new NotImplementedConverter();
3388 if (
cpd.size() == 2 &&
cpd !=
"&&")
3389 result =
new VoidPtrPtrConverter(
dims.ndim());
3390 else if (!
cpd.empty())
3393 result =
new NotImplementedConverter();
3403 if (
p &&
p->HasState())
3461#define STRINGVIEW "basic_string_view<char,char_traits<char> >"
3462#define WSTRING1 "std::basic_string<wchar_t>"
3463#define WSTRING2 "std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t>>"
3467#define CCOMPLEX_D "_Complex double"
3468#define CCOMPLEX_F "_Complex float"
3470#define CCOMPLEX_D "_C_double_complex"
3471#define CCOMPLEX_F "_C_float_complex"
3474static struct InitConvFactories_t {
3476 InitConvFactories_t() {
3481 gf[
"bool"] = (
cf_t)+[](
cdims_t) {
static BoolConverter
c{};
return &
c; };
3482 gf[
"const bool&"] = (
cf_t)+[](
cdims_t) {
static ConstBoolRefConverter
c{};
return &
c; };
3483 gf[
"bool&"] = (
cf_t)+[](
cdims_t) {
static BoolRefConverter
c{};
return &
c; };
3484 gf[
"char"] = (
cf_t)+[](
cdims_t) {
static CharConverter
c{};
return &
c; };
3485 gf[
"const char&"] = (
cf_t)+[](
cdims_t) {
static ConstCharRefConverter
c{};
return &
c; };
3486 gf[
"char&"] = (
cf_t)+[](
cdims_t) {
static CharRefConverter
c{};
return &
c; };
3487 gf[
"signed char&"] = (
cf_t)+[](
cdims_t) {
static SCharRefConverter
c{};
return &
c; };
3488 gf[
"unsigned char"] = (
cf_t)+[](
cdims_t) {
static UCharConverter
c{};
return &
c; };
3489 gf[
"const unsigned char&"] = (
cf_t)+[](
cdims_t) {
static ConstUCharRefConverter
c{};
return &
c; };
3490 gf[
"unsigned char&"] = (
cf_t)+[](
cdims_t) {
static UCharRefConverter
c{};
return &
c; };
3491 gf[
"SCharAsInt"] = (
cf_t)+[](
cdims_t) {
static SCharAsIntConverter
c{};
return &
c; };
3492 gf[
"UCharAsInt"] = (
cf_t)+[](
cdims_t) {
static UCharAsIntConverter
c{};
return &
c; };
3493 gf[
"wchar_t"] = (
cf_t)+[](
cdims_t) {
static WCharConverter
c{};
return &
c; };
3494 gf[
"char16_t"] = (
cf_t)+[](
cdims_t) {
static Char16Converter
c{};
return &
c; };
3495 gf[
"char32_t"] = (
cf_t)+[](
cdims_t) {
static Char32Converter
c{};
return &
c; };
3496 gf[
"wchar_t&"] = (
cf_t)+[](
cdims_t) {
static WCharRefConverter
c{};
return &
c; };
3497 gf[
"char16_t&"] = (
cf_t)+[](
cdims_t) {
static Char16RefConverter
c{};
return &
c; };
3498 gf[
"char32_t&"] = (
cf_t)+[](
cdims_t) {
static Char32RefConverter
c{};
return &
c; };
3499 gf[
"int8_t"] = (
cf_t)+[](
cdims_t) {
static Int8Converter
c{};
return &
c; };
3500 gf[
"const int8_t&"] = (
cf_t)+[](
cdims_t) {
static ConstInt8RefConverter
c{};
return &
c; };
3501 gf[
"int8_t&"] = (
cf_t)+[](
cdims_t) {
static Int8RefConverter
c{};
return &
c; };
3502 gf[
"int16_t"] = (
cf_t)+[](
cdims_t) {
static Int16Converter
c{};
return &
c; };
3503 gf[
"const int16_t&"] = (
cf_t)+[](
cdims_t) {
static ConstInt16RefConverter
c{};
return &
c; };
3504 gf[
"int16_t&"] = (
cf_t)+[](
cdims_t) {
static Int16RefConverter
c{};
return &
c; };
3505 gf[
"int32_t"] = (
cf_t)+[](
cdims_t) {
static Int32Converter
c{};
return &
c; };
3506 gf[
"const int32_t&"] = (
cf_t)+[](
cdims_t) {
static ConstInt32RefConverter
c{};
return &
c; };
3507 gf[
"int32_t&"] = (
cf_t)+[](
cdims_t) {
static Int32RefConverter
c{};
return &
c; };
3508 gf[
"uint8_t"] = (
cf_t)+[](
cdims_t) {
static UInt8Converter
c{};
return &
c; };
3509 gf[
"const uint8_t&"] = (
cf_t)+[](
cdims_t) {
static ConstUInt8RefConverter
c{};
return &
c; };
3510 gf[
"uint8_t&"] = (
cf_t)+[](
cdims_t) {
static UInt8RefConverter
c{};
return &
c; };
3511 gf[
"uint16_t"] = (
cf_t)+[](
cdims_t) {
static UInt16Converter
c{};
return &
c; };
3512 gf[
"const uint16_t&"] = (
cf_t)+[](
cdims_t) {
static ConstUInt16RefConverter
c{};
return &
c; };
3513 gf[
"uint16_t&"] = (
cf_t)+[](
cdims_t) {
static UInt16RefConverter
c{};
return &
c; };
3514 gf[
"uint32_t"] = (
cf_t)+[](
cdims_t) {
static UInt32Converter
c{};
return &
c; };
3515 gf[
"const uint32_t&"] = (
cf_t)+[](
cdims_t) {
static ConstUInt32RefConverter
c{};
return &
c; };
3516 gf[
"uint32_t&"] = (
cf_t)+[](
cdims_t) {
static UInt32RefConverter
c{};
return &
c; };
3517 gf[
"short"] = (
cf_t)+[](
cdims_t) {
static ShortConverter
c{};
return &
c; };
3518 gf[
"const short&"] = (
cf_t)+[](
cdims_t) {
static ConstShortRefConverter
c{};
return &
c; };
3519 gf[
"short&"] = (
cf_t)+[](
cdims_t) {
static ShortRefConverter
c{};
return &
c; };
3520 gf[
"unsigned short"] = (
cf_t)+[](
cdims_t) {
static UShortConverter
c{};
return &
c; };
3521 gf[
"const unsigned short&"] = (
cf_t)+[](
cdims_t) {
static ConstUShortRefConverter
c{};
return &
c; };
3522 gf[
"unsigned short&"] = (
cf_t)+[](
cdims_t) {
static UShortRefConverter
c{};
return &
c; };
3523 gf[
"int"] = (
cf_t)+[](
cdims_t) {
static IntConverter
c{};
return &
c; };
3524 gf[
"int&"] = (
cf_t)+[](
cdims_t) {
static IntRefConverter
c{};
return &
c; };
3525 gf[
"const int&"] = (
cf_t)+[](
cdims_t) {
static ConstIntRefConverter
c{};
return &
c; };
3526 gf[
"unsigned int"] = (
cf_t)+[](
cdims_t) {
static UIntConverter
c{};
return &
c; };
3527 gf[
"const unsigned int&"] = (
cf_t)+[](
cdims_t) {
static ConstUIntRefConverter
c{};
return &
c; };
3528 gf[
"unsigned int&"] = (
cf_t)+[](
cdims_t) {
static UIntRefConverter
c{};
return &
c; };
3529 gf[
"long"] = (
cf_t)+[](
cdims_t) {
static LongConverter
c{};
return &
c; };
3530 gf[
"long&"] = (
cf_t)+[](
cdims_t) {
static LongRefConverter
c{};
return &
c; };
3531 gf[
"const long&"] = (
cf_t)+[](
cdims_t) {
static ConstLongRefConverter
c{};
return &
c; };
3532 gf[
"unsigned long"] = (
cf_t)+[](
cdims_t) {
static ULongConverter
c{};
return &
c; };
3533 gf[
"const unsigned long&"] = (
cf_t)+[](
cdims_t) {
static ConstULongRefConverter
c{};
return &
c; };
3534 gf[
"unsigned long&"] = (
cf_t)+[](
cdims_t) {
static ULongRefConverter
c{};
return &
c; };
3535 gf[
"long long"] = (
cf_t)+[](
cdims_t) {
static LLongConverter
c{};
return &
c; };
3536 gf[
"const long long&"] = (
cf_t)+[](
cdims_t) {
static ConstLLongRefConverter
c{};
return &
c; };
3537 gf[
"long long&"] = (
cf_t)+[](
cdims_t) {
static LLongRefConverter
c{};
return &
c; };
3538 gf[
"unsigned long long"] = (
cf_t)+[](
cdims_t) {
static ULLongConverter
c{};
return &
c; };
3539 gf[
"const unsigned long long&"] = (
cf_t)+[](
cdims_t) {
static ConstULLongRefConverter
c{};
return &
c; };
3540 gf[
"unsigned long long&"] = (
cf_t)+[](
cdims_t) {
static ULLongRefConverter
c{};
return &
c; };
3542 gf[
"float"] = (
cf_t)+[](
cdims_t) {
static FloatConverter
c{};
return &
c; };
3543 gf[
"const float&"] = (
cf_t)+[](
cdims_t) {
static ConstFloatRefConverter
c{};
return &
c; };
3544 gf[
"float&"] = (
cf_t)+[](
cdims_t) {
static FloatRefConverter
c{};
return &
c; };
3545 gf[
"double"] = (
cf_t)+[](
cdims_t) {
static DoubleConverter
c{};
return &
c; };
3546 gf[
"double&"] = (
cf_t)+[](
cdims_t) {
static DoubleRefConverter
c{};
return &
c; };
3547 gf[
"const double&"] = (
cf_t)+[](
cdims_t) {
static ConstDoubleRefConverter
c{};
return &
c; };
3548 gf[
"long double"] = (
cf_t)+[](
cdims_t) {
static LDoubleConverter
c{};
return &
c; };
3549 gf[
"const long double&"] = (
cf_t)+[](
cdims_t) {
static ConstLDoubleRefConverter
c{};
return &
c; };
3550 gf[
"long double&"] = (
cf_t)+[](
cdims_t) {
static LDoubleRefConverter
c{};
return &
c; };
3551 gf[
"std::complex<double>"] = (
cf_t)+[](
cdims_t) {
return new ComplexDConverter{}; };
3552 gf[
"const std::complex<double>&"] = (
cf_t)+[](
cdims_t) {
return new ComplexDConverter{}; };
3553 gf[
"void"] = (
cf_t)+[](
cdims_t) {
static VoidConverter
c{};
return &
c; };
3556 gf[
"bool ptr"] = (
cf_t)+[](
cdims_t d) {
return new BoolArrayConverter{
d}; };
3557 gf[
"signed char ptr"] = (
cf_t)+[](
cdims_t d) {
return new SCharArrayConverter{
d}; };
3559 gf[
"const unsigned char*"] = (
cf_t)+[](
cdims_t d) {
return new UCharArrayConverter{
d}; };
3560 gf[
"unsigned char ptr"] = (
cf_t)+[](
cdims_t d) {
return new UCharArrayConverter{
d}; };
3561 gf[
"SCharAsInt*"] =
gf[
"signed char ptr"];
3562 gf[
"SCharAsInt[]"] =
gf[
"signed char ptr"];
3563 gf[
"UCharAsInt*"] =
gf[
"unsigned char ptr"];
3564 gf[
"UCharAsInt[]"] =
gf[
"unsigned char ptr"];
3565#if (__cplusplus > 201402L) || (defined(_MSC_VER) && _MSVC_LANG > 201402L)
3568 gf[
"int8_t ptr"] = (
cf_t)+[](
cdims_t d) {
return new Int8ArrayConverter{
d}; };
3569 gf[
"int16_t ptr"] = (
cf_t)+[](
cdims_t d) {
return new Int16ArrayConverter{
d}; };
3570 gf[
"int32_t ptr"] = (
cf_t)+[](
cdims_t d) {
return new Int32ArrayConverter{
d}; };
3571 gf[
"uint8_t ptr"] = (
cf_t)+[](
cdims_t d) {
return new UInt8ArrayConverter{
d}; };
3572 gf[
"uint16_t ptr"] = (
cf_t)+[](
cdims_t d) {
return new UInt16ArrayConverter{
d}; };
3573 gf[
"uint32_t ptr"] = (
cf_t)+[](
cdims_t d) {
return new UInt32ArrayConverter{
d}; };
3574 gf[
"short ptr"] = (
cf_t)+[](
cdims_t d) {
return new ShortArrayConverter{
d}; };
3575 gf[
"unsigned short ptr"] = (
cf_t)+[](
cdims_t d) {
return new UShortArrayConverter{
d}; };
3576 gf[
"int ptr"] = (
cf_t)+[](
cdims_t d) {
return new IntArrayConverter{
d}; };
3577 gf[
"unsigned int ptr"] = (
cf_t)+[](
cdims_t d) {
return new UIntArrayConverter{
d}; };
3578 gf[
"long ptr"] = (
cf_t)+[](
cdims_t d) {
return new LongArrayConverter{
d}; };
3579 gf[
"unsigned long ptr"] = (
cf_t)+[](
cdims_t d) {
return new ULongArrayConverter{
d}; };
3580 gf[
"long long ptr"] = (
cf_t)+[](
cdims_t d) {
return new LLongArrayConverter{
d}; };
3581 gf[
"unsigned long long ptr"] = (
cf_t)+[](
cdims_t d) {
return new ULLongArrayConverter{
d}; };
3582 gf[
"float ptr"] = (
cf_t)+[](
cdims_t d) {
return new FloatArrayConverter{
d}; };
3583 gf[
"double ptr"] = (
cf_t)+[](
cdims_t d) {
return new DoubleArrayConverter{
d}; };
3584 gf[
"long double ptr"] = (
cf_t)+[](
cdims_t d) {
return new LDoubleArrayConverter{
d}; };
3585 gf[
"std::complex<float> ptr"] = (
cf_t)+[](
cdims_t d) {
return new ComplexFArrayConverter{
d}; };
3586 gf[
"std::complex<double> ptr"] = (
cf_t)+[](
cdims_t d) {
return new ComplexDArrayConverter{
d}; };
3590 gf[
"signed char"] =
gf[
"char"];
3591 gf[
"const signed char&"] =
gf[
"const char&"];
3592#if (__cplusplus > 201402L) || (defined(_MSC_VER) && _MSVC_LANG > 201402L)
3593 gf[
"std::byte"] =
gf[
"uint8_t"];
3594 gf[
"byte"] =
gf[
"uint8_t"];
3595 gf[
"const std::byte&"] =
gf[
"const uint8_t&"];
3596 gf[
"const byte&"] =
gf[
"const uint8_t&"];
3597 gf[
"std::byte&"] =
gf[
"uint8_t&"];
3598 gf[
"byte&"] =
gf[
"uint8_t&"];
3600 gf[
"std::int8_t"] =
gf[
"int8_t"];
3601 gf[
"const std::int8_t&"] =
gf[
"const int8_t&"];
3602 gf[
"std::int8_t&"] =
gf[
"int8_t&"];
3603 gf[
"std::uint8_t"] =
gf[
"uint8_t"];
3604 gf[
"const std::uint8_t&"] =
gf[
"const uint8_t&"];
3605 gf[
"std::uint8_t&"] =
gf[
"uint8_t&"];
3606 gf[
"internal_enum_type_t"] =
gf[
"int"];
3607 gf[
"internal_enum_type_t&"] =
gf[
"int&"];
3608 gf[
"const internal_enum_type_t&"] =
gf[
"const int&"];
3609 gf[
"internal_enum_type_t ptr"] =
gf[
"int ptr"];
3611 gf[
"__int64"] =
gf[
"long long"];
3612 gf[
"const __int64&"] =
gf[
"const long long&"];
3613 gf[
"__int64&"] =
gf[
"long long&"];
3614 gf[
"__int64 ptr"] =
gf[
"long long ptr"];
3615 gf[
"unsigned __int64"] =
gf[
"unsigned long long"];
3616 gf[
"const unsigned __int64&"] =
gf[
"const unsigned long long&"];
3617 gf[
"unsigned __int64&"] =
gf[
"unsigned long long&"];
3618 gf[
"unsigned __int64 ptr"] =
gf[
"unsigned long long ptr"];
3626 gf[
"TString"] = (
cf_t)+[](
cdims_t) {
return new TStringConverter{}; };
3627 gf[
"TString&"] =
gf[
"TString"];
3628 gf[
"const TString&"] =
gf[
"TString"];
3629 gf[
"nullptr_t"] = (
cf_t)+[](
cdims_t) {
static NullptrConverter
c{};
return &
c;};
3630 gf[
"const char*"] = (
cf_t)+[](
cdims_t) {
return new CStringConverter{}; };
3631 gf[
"const signed char*"] =
gf[
"const char*"];
3632 gf[
"const char*&&"] =
gf[
"const char*"];
3633 gf[
"const char[]"] = (
cf_t)+[](
cdims_t) {
return new CStringConverter{}; };
3635 gf[
"char[]"] = (
cf_t)+[](
cdims_t d) {
return new NonConstCStringArrayConverter{
d,
true}; };
3636 gf[
"signed char*"] =
gf[
"char*"];
3637 gf[
"wchar_t*"] = (
cf_t)+[](
cdims_t) {
return new WCStringConverter{}; };
3648 gf[
"wchar_t*_Nonnull"] = (
cf_t)+[](
cdims_t) {
return new WCStringConverter{}; };
3649 gf[
"char16_t*"] = (
cf_t)+[](
cdims_t) {
return new CString16Converter{}; };
3651 gf[
"char32_t*"] = (
cf_t)+[](
cdims_t) {
return new CString32Converter{}; };
3654 gf[
"char16_t**"] =
gf[
"char16_t*"];
3655 gf[
"char32_t**"] =
gf[
"char32_t*"];
3657 gf[
"char**"] =
gf[
"const char**"];
3658 gf[
"const char*[]"] = (
cf_t)+[](
cdims_t d) {
return new CStringArrayConverter{
d,
false}; };
3659 gf[
"char*[]"] = (
cf_t)+[](
cdims_t d) {
return new NonConstCStringArrayConverter{
d,
false}; };
3660 gf[
"char ptr"] =
gf[
"char*[]"];
3661 gf[
"std::string"] = (
cf_t)+[](
cdims_t) {
return new STLStringConverter{}; };
3662 gf[
"const std::string&"] =
gf[
"std::string"];
3663 gf[
"string"] =
gf[
"std::string"];
3664 gf[
"const string&"] =
gf[
"std::string"];
3665 gf[
"std::string&&"] = (
cf_t)+[](
cdims_t) {
return new STLStringMoveConverter{}; };
3666 gf[
"string&&"] =
gf[
"std::string&&"];
3667#if (__cplusplus > 201402L) || (defined(_MSC_VER) && _MSVC_LANG > 201402L)
3670 gf[
"std::string_view&"] =
gf[
"std::string_view"];
3671 gf[
"const std::string_view&"] =
gf[
"std::string_view"];
3674 gf[
"std::wstring"] = (
cf_t)+[](
cdims_t) {
return new STLWStringConverter{}; };
3677 gf[
"const std::wstring&"] =
gf[
"std::wstring"];
3680 gf[
"void*&"] = (
cf_t)+[](
cdims_t) {
static VoidPtrRefConverter
c{};
return &
c; };
3681 gf[
"void**"] = (
cf_t)+[](
cdims_t d) {
return new VoidPtrPtrConverter{
d}; };
3682 gf[
"void ptr"] =
gf[
"void**"];
3683 gf[
"PyObject*"] = (
cf_t)+[](
cdims_t) {
static PyObjectConverter
c{};
return &
c; };
3684 gf[
"_object*"] =
gf[
"PyObject*"];
static Py_ssize_t CPyCppyy_PyUnicode_AsWideChar(PyObject *pyobj, wchar_t *w, Py_ssize_t size)
#define PyBytes_AS_STRING
#define PyBytes_AsStringAndSize
#define CPyCppyy_PyText_FromStringAndSize
#define CPyCppyy_PyUnicode_GET_SIZE
#define PY_SSIZE_T_FORMAT
static void * CPyCppyy_PyCapsule_GetPointer(PyObject *capsule, const char *)
#define CPyCppyy_PyText_AsString
#define CPyCppyy_PyText_GET_SIZE
#define CPyCppyy_PyCapsule_CheckExact
static PyObject * PyObject_CallMethodOneArg(PyObject *obj, PyObject *name, PyObject *arg)
static const char * CPyCppyy_PyText_AsStringAndSize(PyObject *pystr, Py_ssize_t *size)
static PyObject * PyObject_CallMethodNoArgs(PyObject *obj, PyObject *name)
#define CPyCppyy_PyText_FromString
#define CPyCppyy_PyText_Check
static bool StrictBool(PyObject *pyobject, CPyCppyy::CallContext *ctxt)
static std::array< PyTypeObject *, 26 > gCTypesTypes
static unsigned short CPyCppyy_PyLong_AsUShort(PyObject *pyobject)
static int32_t CPyCppyy_PyLong_AsInt32(PyObject *pyobject)
static std::map< void *, PyObject ** > sWrapperReference
static bool CPyCppyy_PyLong_AsBool(PyObject *pyobject)
static bool IsPyCArgObject(PyObject *pyobject)
static PyObject * WrapperCacheEraser(PyObject *, PyObject *pyref)
static bool CPyCppyy_PyUnicodeAsBytes2Buffer(PyObject *pyobject, T &buffer)
#define CPPYY_IMPL_STRING_AS_PRIMITIVE_CONVERTER(name, type, F1, F2)
#define CPPYY_IMPL_BASIC_CHAR_CONVERTER(name, type, low, high)
#define CPPYY_IMPL_BASIC_CONST_CHAR_REFCONVERTER(name, type, ctype, low, high)
static bool SetLifeLine(PyObject *holder, PyObject *target, intptr_t ref)
static PY_LONG_LONG CPyCppyy_PyLong_AsStrictLongLong(PyObject *pyobject)
static std::map< RetSigKey_t, std::map< PyObject *, void * > > sWrapperLookup
static bool ImplicitBool(PyObject *pyobject, CPyCppyy::CallContext *ctxt)
static bool CArraySetArg(PyObject *pyobject, CPyCppyy::Parameter ¶, char tc, int size, bool check=true)
static int ExtractChar(PyObject *pyobject, const char *tname, int low, int high)
static bool HasLifeLine(PyObject *holder, intptr_t ref)
static uint32_t CPyCppyy_PyLong_AsUInt32(PyObject *pyobject)
const Py_ssize_t MOVE_REFCOUNT_CUTOFF
static PyTypeObject * GetCTypesPtrType(int nidx)
static std::map< PyObject *, std::pair< void *, RetSigKey_t > > sWrapperWeakRefs
#define CPYCPPYY_WIDESTRING_CONVERTER(name, type, encode, decode, snull)
static int8_t CPyCppyy_PyLong_AsInt8(PyObject *pyobject)
#define CPPYY_IMPL_BASIC_CONVERTER_IB(name, type, stype, ctype, F1, F2, tc)
static CPyCppyy::Converter * selectInstanceCnv(Cppyy::TCppScope_t klass, const std::string &cpd, CPyCppyy::cdims_t dims, bool isConst, bool control)
static CPyCppyy::CPPInstance * GetCppInstance(PyObject *pyobject, Cppyy::TCppType_t klass=(Cppyy::TCppType_t) 0, bool accept_rvalue=false)
static std::array< PyTypeObject *, 26 > gCTypesPtrTypes
static PyMethodDef gWrapperCacheEraserMethodDef
#define CPPYY_IMPL_BASIC_CONST_REFCONVERTER(name, type, ctype, F1)
static std::array< const char *, 26 > gCTypesNames
static uint8_t CPyCppyy_PyLong_AsUInt8(PyObject *pyobject)
static short CPyCppyy_PyLong_AsShort(PyObject *pyobject)
static long CPyCppyy_PyLong_AsStrictLong(PyObject *pyobject)
#define CPPYY_IMPL_ARRAY_CONVERTER(name, ctype, type, code, suffix)
#define CPPYY_IMPL_BASIC_CONVERTER_NB(name, type, stype, ctype, F1, F2, tc)
#define CPPYY_IMPL_REFCONVERTER(name, ctype, type, code)
#define CPPYY_IMPL_BASIC_CONVERTER_NI(name, type, stype, ctype, F1, F2, tc)
static PyTypeObject * GetCTypesType(int nidx)
bool PyUnstable_Object_IsUniqueReferencedTemporary(PyObject *pyobject)
static CPyCppyy::CPPInstance * ConvertImplicit(Cppyy::TCppType_t klass, PyObject *pyobject, CPyCppyy::Parameter ¶, CPyCppyy::CallContext *ctxt, bool manage=true)
static int CPyCppyy_PyLong_AsStrictInt(PyObject *pyobject)
static int16_t CPyCppyy_PyLong_AsInt16(PyObject *pyobject)
static std::map< RetSigKey_t, std::vector< void * > > sWrapperFree
static bool IsCTypesArrayOrPointer(PyObject *pyobject)
static unsigned int sWrapperCounter
static uint16_t CPyCppyy_PyLong_AsUInt16(PyObject *pyobject)
#define CPPYY_PYLONG_AS_TYPE(name, type, limit_low, limit_high)
static void * PyFunction_AsCPointer(PyObject *pyobject, const std::string &rettype, const std::string &signature)
#define CPPYY_IMPL_REFCONVERTER_FROM_MEMORY(name, ctype)
unsigned long long PY_ULONG_LONG
std::string fValueTypeName
Cppyy::TCppType_t fValueType
Cppyy::TCppType_t fSmartPtrType
Cppyy::TCppType_t fUnderlyingType
std::string::size_type fMaxSize
std::vector< Converter * > fConverters
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t target
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t UChar_t len
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
virtual bool SetArg(PyObject *, Parameter &, CallContext *=nullptr)=0
virtual bool ToMemory(PyObject *value, void *address, PyObject *ctxt=nullptr)
virtual PyObject * FromMemory(void *address)
virtual PyObject * FromMemory(void *address)
virtual bool SetArg(PyObject *, Parameter &, CallContext *=nullptr)
virtual bool ToMemory(PyObject *value, void *address, PyObject *ctxt=nullptr)
static bool RegisterPyObject(CPPInstance *pyobj, void *cppobj)
virtual bool GetAddressSpecialCase(PyObject *pyobject, void *&address)
virtual bool ToMemory(PyObject *value, void *address, PyObject *ctxt=nullptr)
virtual PyObject * FromMemory(void *address)
virtual bool SetArg(PyObject *, Parameter &, CallContext *=nullptr)
Internal::TypedIter< T, decltype(std::begin(std::declval< Range_t >())), isDynamic > iterator
const_iterator begin() const
const_iterator end() const
std::string clean_type(const std::string &cppname, bool template_strip=true, bool const_strip=true)
std::string compound(const std::string &name)
std::vector< std::string > extract_arg_types(const std::string &sig)
void ConstructCallbackPreamble(const std::string &retType, const std::vector< std::string > &argtypes, std::ostringstream &code)
void ConstructCallbackReturn(const std::string &retType, int nArgs, std::ostringstream &code)
void RestorePyError(PyError_t &error)
Py_ssize_t GetBuffer(PyObject *pyobject, char tc, int size, void *&buf, bool check=true)
PyObject * FuncPtr2StdFunction(const std::string &retType, const std::string &signature, void *address)
bool IsSTLIterator(const std::string &classname)
unsigned long PyLongOrInt_AsULong(PyObject *pyobject)
Converter *(* cf_t)(cdims_t d)
PyObject * gDefaultObject
PyObject * GetScopeProxy(Cppyy::TCppScope_t)
bool TupleOfInstances_CheckExact(T *object)
PyObject * CreateScopeProxy(Cppyy::TCppScope_t, const unsigned flags=0)
bool RefFloat_CheckExact(T *object)
bool CPPExcInstance_Check(T *object)
bool NoImplicit(CallContext *ctxt)
static ConvFactories_t gConvFactories
PyObject * CreateLowLevelView(bool *, cdims_t shape)
PyObject * BindCppObjectNoCast(Cppyy::TCppObject_t object, Cppyy::TCppType_t klass, const unsigned flags=0)
bool CPPOverload_Check(T *object)
bool RefInt_CheckExact(T *object)
PyObject * CreateLowLevelViewString(char **, cdims_t shape)
bool CPPScope_Check(T *object)
CPYCPPYY_EXTERN bool RegisterConverter(const std::string &name, ConverterFactory_t)
static const dim_t UNKNOWN_SIZE
static std::regex s_fnptr("\\((\\w*:*)*\\*&*\\)")
bool AllowImplicit(CallContext *ctxt)
bool UseStrictOwnership(CallContext *ctxt)
PY_ULONG_LONG PyLongOrInt_AsULong64(PyObject *pyobject)
bool CPPInstance_Check(T *object)
PyObject * BindCppObjectArray(Cppyy::TCppObject_t address, Cppyy::TCppType_t klass, cdims_t dims)
PyObject * CreatePointerView(void *ptr, cdims_t shape=0)
PyObject * gNullPtrObject
bool IsConstructor(uint64_t flags)
CPYCPPYY_EXTERN bool RegisterConverterAlias(const std::string &name, const std::string &target)
CPYCPPYY_EXTERN Converter * CreateConverter(const std::string &name, cdims_t=0)
PyObject * BindCppObject(Cppyy::TCppObject_t object, Cppyy::TCppType_t klass, const unsigned flags=0)
CPYCPPYY_EXTERN void DestroyConverter(Converter *p)
bool TemplateProxy_Check(T *object)
std::map< std::string, cf_t > ConvFactories_t
CPYCPPYY_EXTERN bool UnregisterConverter(const std::string &name)
RPY_EXPORTED ptrdiff_t GetBaseOffset(TCppType_t derived, TCppType_t base, TCppObject_t address, int direction, bool rerror=false)
RPY_EXPORTED size_t SizeOf(TCppType_t klass)
RPY_EXPORTED std::vector< TCppIndex_t > GetMethodIndicesFromName(TCppScope_t scope, const std::string &name)
RPY_EXPORTED bool Compile(const std::string &code, bool silent=false)
RPY_EXPORTED void CallDestructor(TCppType_t type, TCppObject_t self)
RPY_EXPORTED bool IsSubtype(TCppType_t derived, TCppType_t base)
RPY_EXPORTED TCppMethod_t GetMethodTemplate(TCppScope_t scope, const std::string &name, const std::string &proto)
RPY_EXPORTED TCppObject_t Construct(TCppType_t type, void *arena=nullptr)
RPY_EXPORTED bool GetSmartPtrInfo(const std::string &, TCppType_t *raw, TCppMethod_t *deref)
RPY_EXPORTED std::string ResolveName(const std::string &cppitem_name)
RPY_EXPORTED TCppMethod_t GetMethod(TCppScope_t scope, TCppIndex_t imeth)
RPY_EXPORTED bool IsSmartPtr(TCppType_t type)
RPY_EXPORTED TCppScope_t GetScope(const std::string &scope_name)
RPY_EXPORTED TCppFuncAddr_t GetFunctionAddress(TCppMethod_t method, bool check_enabled=true)
RooArgList L(Args_t &&... args)
static ECallFlags sMemoryPolicy
PyObject_HEAD char * b_ptr
union CPyCppyy_tagPyCArgObject::@200 value
PyObject_HEAD void * pffi_type