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 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
|
// This contains the implementation of the pyqtBoundSignal type.
//
// Copyright (c) 2018 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt5.
//
// This file may be used under the terms of the GNU General Public License
// version 3.0 as published by the Free Software Foundation and appearing in
// the file LICENSE included in the packaging of this file. Please review the
// following information to ensure the GNU General Public License version 3.0
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
//
// If you do not wish to use this file under the terms of the GPL version 3.0
// then you may purchase a commercial license. For more information contact
// info@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#include <Python.h>
#include <QtGlobal>
#include <QByteArray>
#include <QMetaObject>
#include "qpycore_api.h"
#include "qpycore_chimera.h"
#include "qpycore_misc.h"
#include "qpycore_objectified_strings.h"
#include "qpycore_pyqtboundsignal.h"
#include "qpycore_pyqtpyobject.h"
#include "qpycore_pyqtsignal.h"
#include "qpycore_pyqtslotproxy.h"
#include "sipAPIQtCore.h"
#if PY_VERSION_HEX >= 0x02050000
#define CHAR_CAST(s) (s)
#else
#define CHAR_CAST(s) (const_cast<char *>(s))
#endif
// The type object.
PyTypeObject *qpycore_pyqtBoundSignal_TypeObject;
// Forward declarations.
extern "C" {
static PyObject *pyqtBoundSignal_call(PyObject *self, PyObject *args,
PyObject *kw);
static void pyqtBoundSignal_dealloc(PyObject *self);
static PyObject *pyqtBoundSignal_repr(PyObject *self);
static PyObject *pyqtBoundSignal_get_doc(PyObject *self, void *);
static PyObject *pyqtBoundSignal_get_signal(PyObject *self, void *);
static PyObject *pyqtBoundSignal_connect(PyObject *self, PyObject *args,
PyObject *kwd_args);
static PyObject *pyqtBoundSignal_disconnect(PyObject *self, PyObject *args);
static PyObject *pyqtBoundSignal_emit(PyObject *self, PyObject *args);
static PyObject *pyqtBoundSignal_mp_subscript(PyObject *self,
PyObject *subscript);
}
static PyObject *disconnect(qpycore_pyqtBoundSignal *bs, QObject *qrx,
const char *slot);
static bool do_emit(QObject *qtx, int signal_index,
const Chimera::Signature *parsed_signature, const char *docstring,
PyObject *sigargs);
static bool get_receiver(PyObject *slot,
const Chimera::Signature *signal_signature, QObject **receiver,
QByteArray &slot_signature);
static void slot_signature_from_decorations(QByteArray &slot_signature,
const Chimera::Signature *signal_signature, PyObject *decorations);
static QByteArray slot_signature_from_signal(
const Chimera::Signature *signal_signature,
const QByteArray &slot_name, int nr_args);
static sipErrorState get_receiver_slot_signature(PyObject *slot,
QObject *transmitter, const Chimera::Signature *signal_signature,
bool single_shot, QObject **receiver, QByteArray &slot_signature,
bool unique_connection_check, int no_receiver_check);
static void add_slot_prefix(QByteArray &slot_signature);
// Doc-strings.
PyDoc_STRVAR(pyqtBoundSignal_connect_doc,
"connect(slot, type=Qt.AutoConnection, no_receiver_check=False)\n"
"\n"
"slot is either a Python callable or another signal.\n"
"type is a Qt.ConnectionType.\n"
"no_receiver_check is True to disable the check that the receiver's C++\n"
"instance still exists when the signal is emitted.\n");
PyDoc_STRVAR(pyqtBoundSignal_disconnect_doc,
"disconnect([slot])\n"
"\n"
"slot is an optional Python callable or another signal. If it is omitted\n"
"then the signal is disconnected from everything it is connected to.");
PyDoc_STRVAR(pyqtBoundSignal_emit_doc,
"emit(*args)\n"
"\n"
"*args are the values that will be passed as arguments to all connected\n"
"slots.");
PyDoc_STRVAR(pyqtBoundSignal_signal_doc,
"The signature of the signal that would be returned by SIGNAL()");
// Define the methods.
static PyMethodDef pyqtBoundSignal_methods[] = {
{CHAR_CAST("connect"), (PyCFunction)pyqtBoundSignal_connect,
METH_VARARGS|METH_KEYWORDS,
CHAR_CAST(pyqtBoundSignal_connect_doc)},
{CHAR_CAST("disconnect"), pyqtBoundSignal_disconnect,
METH_VARARGS, CHAR_CAST(pyqtBoundSignal_disconnect_doc)},
{CHAR_CAST("emit"), pyqtBoundSignal_emit,
METH_VARARGS, CHAR_CAST(pyqtBoundSignal_emit_doc)},
{0, 0, 0, 0}
};
// The getters/setters.
static PyGetSetDef pyqtBoundSignal_getset[] = {
{(char *)"__doc__", pyqtBoundSignal_get_doc, NULL, NULL, NULL},
{(char *)"signal", pyqtBoundSignal_get_signal, NULL,
(char *)pyqtBoundSignal_signal_doc, NULL},
{NULL, NULL, NULL, NULL, NULL}
};
#if PY_VERSION_HEX >= 0x03040000
// Define the slots.
static PyType_Slot qpycore_pyqtBoundSignal_Slots[] = {
{Py_tp_new, (void *)PyType_GenericNew},
{Py_tp_dealloc, (void *)pyqtBoundSignal_dealloc},
{Py_tp_repr, (void *)pyqtBoundSignal_repr},
{Py_tp_call, (void *)pyqtBoundSignal_call},
{Py_mp_subscript, (void *)pyqtBoundSignal_mp_subscript},
{Py_tp_methods, pyqtBoundSignal_methods},
{Py_tp_getset, pyqtBoundSignal_getset},
{0, 0}
};
// Define the type.
static PyType_Spec qpycore_pyqtBoundSignal_Spec = {
"PyQt5.QtCore.pyqtBoundSignal",
sizeof (qpycore_pyqtBoundSignal),
0,
Py_TPFLAGS_DEFAULT,
qpycore_pyqtBoundSignal_Slots
};
#else
// Define the mapping methods.
static PyMappingMethods pyqtBoundSignal_as_mapping = {
0, /* mp_length */
pyqtBoundSignal_mp_subscript, /* mp_subscript */
0, /* mp_ass_subscript */
};
// Define the type.
static PyTypeObject qpycore_pyqtBoundSignal_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
CHAR_CAST("PyQt5.QtCore.pyqtBoundSignal"), /* tp_name */
sizeof (qpycore_pyqtBoundSignal), /* tp_basicsize */
0, /* tp_itemsize */
pyqtBoundSignal_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
pyqtBoundSignal_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
&pyqtBoundSignal_as_mapping, /* tp_as_mapping */
0, /* tp_hash */
pyqtBoundSignal_call, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
pyqtBoundSignal_methods, /* tp_methods */
0, /* tp_members */
pyqtBoundSignal_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
#if PY_VERSION_HEX >= 0x03040000
0, /* tp_finalize */
#endif
};
#endif
// The __doc__ getter.
static PyObject *pyqtBoundSignal_get_doc(PyObject *self, void *)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
const char *docstring = bs->unbound_signal->docstring;
if (!docstring)
{
Py_INCREF(Py_None);
return Py_None;
}
if (*docstring == '\1')
++docstring;
return
#if PY_MAJOR_VERSION >= 3
PyUnicode_FromString
#else
PyString_FromString
#endif
(docstring);
}
// The 'signal' getter.
static PyObject *pyqtBoundSignal_get_signal(PyObject *self, void *)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
return
#if PY_MAJOR_VERSION >= 3
PyUnicode_FromString
#else
PyString_FromString
#endif
(bs->unbound_signal->parsed_signature->signature.constData());
}
// The type repr slot.
static PyObject *pyqtBoundSignal_repr(PyObject *self)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
QByteArray name = bs->unbound_signal->parsed_signature->name();
return
#if PY_MAJOR_VERSION >= 3
PyUnicode_FromFormat
#else
PyString_FromFormat
#endif
("<bound PYQT_SIGNAL %s of %s object at %p>", name.constData() + 1,
sipPyTypeName(Py_TYPE(bs->bound_pyobject)),
bs->bound_pyobject);
}
// The type call slot.
static PyObject *pyqtBoundSignal_call(PyObject *self, PyObject *args,
PyObject *kw)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
return qpycore_call_signal_overload(bs->unbound_signal, bs->bound_pyobject,
args, kw);
}
// The type dealloc slot.
static void pyqtBoundSignal_dealloc(PyObject *self)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
Py_XDECREF((PyObject *)bs->unbound_signal);
PyObject_Del(self);
}
// Initialise the type and return true if there was no error.
bool qpycore_pyqtBoundSignal_init_type()
{
#if PY_VERSION_HEX >= 0x03040000
qpycore_pyqtBoundSignal_TypeObject = (PyTypeObject *)PyType_FromSpec(
&qpycore_pyqtBoundSignal_Spec);
return qpycore_pyqtBoundSignal_TypeObject;
#else
if (PyType_Ready(&qpycore_pyqtBoundSignal_Type) < 0)
return false;
qpycore_pyqtBoundSignal_TypeObject = &qpycore_pyqtBoundSignal_Type;
return true;
#endif
}
// Create a bound signal.
PyObject *qpycore_pyqtBoundSignal_New(qpycore_pyqtSignal *unbound_signal,
PyObject *bound_pyobject, QObject *bound_qobject)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)PyType_GenericNew(
qpycore_pyqtBoundSignal_TypeObject, 0, 0);
if (bs)
{
Py_INCREF((PyObject *)unbound_signal);
bs->unbound_signal = unbound_signal;
bs->bound_pyobject = bound_pyobject;
bs->bound_qobject = bound_qobject;
}
return (PyObject *)bs;
}
// The mapping subscript slot.
static PyObject *pyqtBoundSignal_mp_subscript(PyObject *self,
PyObject *subscript)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
qpycore_pyqtSignal *ps = qpycore_find_signal(bs->unbound_signal, subscript,
"a bound signal type argument");
if (!ps)
return 0;
// Create a new bound signal.
return qpycore_pyqtBoundSignal_New(ps, bs->bound_pyobject,
bs->bound_qobject);
}
// Connect a signal.
static PyObject *pyqtBoundSignal_connect(PyObject *self, PyObject *args,
PyObject *kwd_args)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
static const char *kwds[] = {
"slot",
"type",
"no_receiver_check",
0
};
PyObject *py_slot, *py_type = 0;
int no_receiver_check = 0;
if (!PyArg_ParseTupleAndKeywords(args, kwd_args,
#if PY_VERSION_HEX >= 0x03030000
"O|Op:connect",
#else
"O|Oi:connect",
#endif
const_cast<char **>(kwds), &py_slot, &py_type, &no_receiver_check))
return 0;
Qt::ConnectionType q_type = Qt::AutoConnection;
if (py_type)
{
int v = sipConvertToEnum(py_type, sipType_Qt_ConnectionType);
if (PyErr_Occurred())
{
PyErr_Format(PyExc_TypeError,
"Qt.ConnectionType expected, not '%s'",
sipPyTypeName(Py_TYPE(py_slot)));
return 0;
}
q_type = static_cast<Qt::ConnectionType>(v);
}
QObject *q_tx = bs->bound_qobject, *q_rx;
Chimera::Signature *signal_signature = bs->unbound_signal->parsed_signature;
QByteArray slot_signature;
sipErrorState estate = get_receiver_slot_signature(py_slot, q_tx,
signal_signature, false, &q_rx, slot_signature,
((q_type & Qt::UniqueConnection) == Qt::UniqueConnection),
no_receiver_check);
if (estate != sipErrorNone)
{
if (estate == sipErrorContinue)
sipBadCallableArg(0, py_slot);
return 0;
}
// Connect the signal to the slot and handle any errors.
QMetaObject::Connection connection;
Py_BEGIN_ALLOW_THREADS
connection = QObject::connect(q_tx,
signal_signature->signature.constData(), q_rx,
slot_signature.constData(), q_type);
Py_END_ALLOW_THREADS
if (!connection)
{
QByteArray slot_name = Chimera::Signature::name(slot_signature);
PyErr_Format(PyExc_TypeError, "connect() failed between %s and %s()",
signal_signature->py_signature.constData(),
slot_name.constData() + 1);
return 0;
}
// Save the connection in any proxy.
if (qstrcmp(q_rx->metaObject()->className(), "PyQtSlotProxy") == 0)
static_cast<PyQtSlotProxy *>(q_rx)->connection = connection;
return sipConvertFromNewType(new QMetaObject::Connection(connection),
sipType_QMetaObject_Connection, NULL);
}
// Get the receiver object and slot signature from a callable or signal.
sipErrorState qpycore_get_receiver_slot_signature(PyObject *slot,
QObject *transmitter, const Chimera::Signature *signal_signature,
bool single_shot, QObject **receiver, QByteArray &slot_signature)
{
return get_receiver_slot_signature(slot, transmitter, signal_signature,
single_shot, receiver, slot_signature, false, 0);
}
// Get the receiver object and slot signature from a callable or signal.
// Optionally disable the receiver check.
static sipErrorState get_receiver_slot_signature(PyObject *slot,
QObject *transmitter, const Chimera::Signature *signal_signature,
bool single_shot, QObject **receiver, QByteArray &slot_signature,
bool unique_connection_check, int no_receiver_check)
{
// See if the slot is a signal.
if (PyObject_TypeCheck(slot, qpycore_pyqtBoundSignal_TypeObject))
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)slot;
*receiver = bs->bound_qobject;
slot_signature = bs->unbound_signal->parsed_signature->signature;
return sipErrorNone;
}
// Make sure the slot is callable.
if (!PyCallable_Check(slot))
return sipErrorContinue;
// See if the slot can be used directly (ie. it wraps a Qt slot) or if it
// needs a proxy.
if (!get_receiver(slot, signal_signature, receiver, slot_signature))
return sipErrorFail;
if (slot_signature.isEmpty())
{
slot_signature = PyQtSlotProxy::proxy_slot_signature;
// Create a proxy for the slot.
PyQtSlotProxy *proxy;
if (unique_connection_check)
{
proxy = PyQtSlotProxy::findSlotProxy(transmitter,
signal_signature->signature, slot);
if (proxy)
{
// We give more information than we could if it was a Qt slot
// but to be consistent we raise a TypeError even though it's
// not the most appropriate for the type of error.
PyErr_SetString(PyExc_TypeError, "connection is not unique");
return sipErrorFail;
}
}
Py_BEGIN_ALLOW_THREADS
proxy = new PyQtSlotProxy(slot, transmitter, signal_signature,
single_shot);
if (no_receiver_check)
proxy->disableReceiverCheck();
if (proxy->metaObject())
{
if (*receiver)
proxy->moveToThread((*receiver)->thread());
*receiver = proxy;
}
else
{
delete proxy;
proxy = 0;
}
Py_END_ALLOW_THREADS
if (!proxy)
return sipErrorFail;
}
return sipErrorNone;
}
// Disconnect all of a QObject's signals.
PyObject *qpycore_qobject_disconnect(const QObject *q_obj)
{
PyObject *res_obj;
bool ok;
Py_BEGIN_ALLOW_THREADS
ok = q_obj->disconnect();
Py_END_ALLOW_THREADS
if (ok)
{
res_obj = Py_None;
Py_INCREF(res_obj);
}
else
{
PyErr_SetString(PyExc_TypeError, "disconnect() of all signals failed");
res_obj = 0;
}
PyQtSlotProxy::deleteSlotProxies(q_obj, QByteArray());
return res_obj;
}
// Disconnect a signal.
static PyObject *pyqtBoundSignal_disconnect(PyObject *self, PyObject *args)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
PyObject *py_slot = 0, *res_obj;
Chimera::Signature *signal_signature = bs->unbound_signal->parsed_signature;
if (!PyArg_ParseTuple(args, "|O:disconnect", &py_slot))
return 0;
// See if we are disconnecting everything from the overload.
if (!py_slot)
{
res_obj = disconnect(bs, 0, 0);
PyQtSlotProxy::deleteSlotProxies(bs->bound_qobject,
signal_signature->signature);
return res_obj;
}
// See if the slot is a connection.
if (sipCanConvertToType(py_slot, sipType_QMetaObject_Connection, 0))
{
int is_error = 0;
QMetaObject::Connection *connection = reinterpret_cast<QMetaObject::Connection *>(sipConvertToType(py_slot, sipType_QMetaObject_Connection, NULL, 0, NULL, &is_error));
if (is_error)
return 0;
if (!QObject::disconnect(*connection))
{
PyErr_SetString(PyExc_TypeError,
"disconnect() of connection failed");
return 0;
}
// Delete any connected slot proxy.
PyQtSlotProxy::deleteSlotProxy(connection);
Py_INCREF(Py_None);
return Py_None;
}
// See if the slot is a signal.
if (PyObject_TypeCheck(py_slot, qpycore_pyqtBoundSignal_TypeObject))
{
qpycore_pyqtBoundSignal *slot_bs = (qpycore_pyqtBoundSignal *)py_slot;
return disconnect(bs, slot_bs->bound_qobject,
slot_bs->unbound_signal->parsed_signature->signature.constData());
}
if (!PyCallable_Check(py_slot))
{
sipBadCallableArg(0, py_slot);
return 0;
}
// See if the slot has been used directly (ie. it wraps a Qt slot) or if it
// has a proxy.
QObject *q_rx;
QByteArray slot_signature;
if (!get_receiver(py_slot, signal_signature, &q_rx, slot_signature))
return 0;
if (!slot_signature.isEmpty())
return disconnect(bs, q_rx, slot_signature.constData());
PyQtSlotProxy *proxy = PyQtSlotProxy::findSlotProxy(bs->bound_qobject,
signal_signature->signature, py_slot);
if (!proxy)
{
PyErr_Format(PyExc_TypeError, "'%s' object is not connected",
sipPyTypeName(Py_TYPE(py_slot)));
return 0;
}
res_obj = disconnect(bs, proxy,
PyQtSlotProxy::proxy_slot_signature.constData());
proxy->disable();
return res_obj;
}
// Disonnect a signal from a slot and handle any errors.
static PyObject *disconnect(qpycore_pyqtBoundSignal *bs, QObject *qrx,
const char *slot)
{
Chimera::Signature *signature = bs->unbound_signal->parsed_signature;
bool ok;
Py_BEGIN_ALLOW_THREADS
ok = QObject::disconnect(bs->bound_qobject,
signature->signature.constData(), qrx, slot);
Py_END_ALLOW_THREADS
if (!ok)
{
QByteArray tx_name = signature->name();
if (slot)
{
QByteArray rx_name = Chimera::Signature::name(slot);
PyErr_Format(PyExc_TypeError,
"disconnect() failed between '%s' and '%s'",
tx_name.constData() + 1, rx_name.constData() + 1);
}
else
{
PyErr_Format(PyExc_TypeError,
"disconnect() failed between '%s' and all its connections",
tx_name.constData() + 1);
}
return 0;
}
Py_INCREF(Py_None);
return Py_None;
}
// Emit a signal.
static PyObject *pyqtBoundSignal_emit(PyObject *self, PyObject *args)
{
qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self;
if (!bs->bound_qobject->signalsBlocked())
{
Q_ASSERT(PyTuple_Check(args));
qpycore_pyqtSignal *ps = bs->unbound_signal;
// Use the emitter if there is one.
if (ps->emitter)
{
if (ps->emitter(bs->bound_qobject, args) < 0)
return 0;
}
else
{
Chimera::Signature *signature = ps->parsed_signature;
int mo_index = bs->bound_qobject->metaObject()->indexOfSignal(
signature->signature.constData() + 1);
if (mo_index < 0)
{
PyErr_Format(PyExc_AttributeError,
"'%s' does not have a signal with the signature %s",
sipPyTypeName(Py_TYPE(bs->bound_pyobject)),
signature->signature.constData() + 1);
return 0;
}
// Use the docstring if there is one and it is auto-generated.
const char *docstring = bs->unbound_signal->docstring;
if (!docstring || *docstring != '\1')
{
docstring = signature->py_signature.constData();
}
else
{
// Skip the auto-generated marker.
++docstring;
}
if (!do_emit(bs->bound_qobject, mo_index, signature, docstring, args))
return 0;
}
}
Py_INCREF(Py_None);
return Py_None;
}
// Emit a signal based on a parsed signature.
static bool do_emit(QObject *qtx, int signal_index,
const Chimera::Signature *parsed_signature, const char *docstring,
PyObject *sigargs)
{
const QList<const Chimera *> &args = parsed_signature->parsed_arguments;
if (args.size() != PyTuple_Size(sigargs))
{
PyErr_Format(PyExc_TypeError,
"%s signal has %d argument(s) but %d provided", docstring,
args.size(), (int)PyTuple_Size(sigargs));
return false;
}
// Convert the arguments.
QList<Chimera::Storage *> values;
void **argv = new void *[1 + args.size()];
argv[0] = 0;
QList<const Chimera *>::const_iterator it = args.constBegin();
for (int a = 0; it != args.constEnd(); ++a)
{
PyObject *arg_obj = PyTuple_GetItem(sigargs, a);
Chimera::Storage *val = (*it)->fromPyObjectToStorage(arg_obj);
if (!val)
{
// Mimic SIP's exception text.
PyErr_Format(PyExc_TypeError,
"%s.emit(): argument %d has unexpected type '%s'",
docstring, a + 1, sipPyTypeName(Py_TYPE(arg_obj)));
delete[] argv;
qDeleteAll(values.constBegin(), values.constEnd());
return false;
}
argv[1 + a] = val->address();
values << val;
++it;
}
Py_BEGIN_ALLOW_THREADS
QMetaObject::activate(qtx, signal_index, argv);
Py_END_ALLOW_THREADS
delete[] argv;
qDeleteAll(values.constBegin(), values.constEnd());
return true;
}
// Get the receiver QObject from the slot (if there is one) and its signature
// (if it wraps a Qt slot). Return true if there was no error.
static bool get_receiver(PyObject *slot,
const Chimera::Signature *signal_signature, QObject **receiver,
QByteArray &slot_signature)
{
bool try_qt_slot = false;
PyObject *rx_self = 0;
QByteArray rx_name;
sipMethodDef slot_m;
sipCFunctionDef slot_cf;
// Assume there isn't a QObject receiver.
*receiver = 0;
if (sipGetMethod(slot, &slot_m))
{
rx_self = slot_m.pm_self;
// The method may be any callable so don't assume it has a __name__.
PyObject *f_name_obj = PyObject_GetAttr(slot_m.pm_function,
qpycore_dunder_name);
if (!f_name_obj)
return false;
PyObject *f_name_owner_obj = f_name_obj;
const char *f_name = sipString_AsASCIIString(&f_name_owner_obj);
Py_DECREF(f_name_obj);
if (!f_name)
return false;
rx_name = f_name;
Py_DECREF(f_name_owner_obj);
// See if this has been decorated.
PyObject *decorations = PyObject_GetAttr(slot_m.pm_function,
qpycore_dunder_pyqtsignature);
if (decorations)
{
// Choose from the decorations.
slot_signature_from_decorations(slot_signature, signal_signature,
decorations);
Py_DECREF(decorations);
if (slot_signature.isEmpty())
{
PyErr_Format(PyExc_TypeError,
"decorated slot has no signature compatible with %s",
signal_signature->py_signature.constData());
return false;
}
}
Py_XINCREF(rx_self);
}
else if (sipGetCFunction(slot, &slot_cf))
{
rx_self = slot_cf.cf_self;
rx_name = slot_cf.cf_function->ml_name;
// We actually want the C++ name which may (in theory) be completely
// different. However this will cope with the exec_ case which is
// probably good enough.
if (rx_name.endsWith('_'))
rx_name.chop(1);
try_qt_slot = true;
Py_XINCREF(rx_self);
}
else
{
static PyObject *partial = 0;
// Get the functools.partial type object if we haven't already got it.
if (!partial)
{
PyObject *functools = PyImport_ImportModule("functools");
if (functools)
{
partial = PyObject_GetAttrString(functools, "partial");
Py_DECREF(functools);
}
}
// If we know about functools.partial then remove the outer partials to
// get to the original function.
if (partial && PyObject_IsInstance(slot, partial) > 0)
{
PyObject *func = slot;
sipMethodDef func_m;
sipCFunctionDef func_cf;
Py_INCREF(func);
do
{
PyObject *subfunc = PyObject_GetAttrString(func, "func");
Py_DECREF(func);
// This should never happen.
if (!subfunc)
return false;
func = subfunc;
}
while (PyObject_IsInstance(func, partial) > 0);
if (sipGetMethod(func, &func_m))
rx_self = func_m.pm_self;
else if (sipGetCFunction(func, &func_cf))
rx_self = func_cf.cf_self;
Py_XINCREF(rx_self);
Py_DECREF(func);
}
}
if (!rx_self)
return true;
int iserr = 0;
void *rx = sipForceConvertToType(rx_self, sipType_QObject, 0,
SIP_NO_CONVERTORS, 0, &iserr);
Py_DECREF(rx_self);
PyErr_Clear();
if (iserr)
return true;
*receiver = reinterpret_cast<QObject *>(rx);
// If there might be a Qt slot that can handle the arguments (or a subset
// of them) then use it. Otherwise we will fallback to using a proxy.
if (try_qt_slot)
{
const QMetaObject *mo = (*receiver)->metaObject();
for (int ol = signal_signature->parsed_arguments.count(); ol >= 0; --ol)
{
slot_signature = slot_signature_from_signal(signal_signature,
rx_name, ol);
if (mo->indexOfSlot(slot_signature.constData()) >= 0)
{
add_slot_prefix(slot_signature);
break;
}
slot_signature.clear();
}
}
return true;
}
// Return the full name and signature of a Qt slot that a signal can be
// connected to, taking the slot decorators into account.
static void slot_signature_from_decorations(QByteArray &slot_signature,
const Chimera::Signature *signal, PyObject *decorations)
{
Chimera::Signature *candidate = 0;
int signal_nr_args = signal->parsed_arguments.count();
for (Py_ssize_t i = 0; i < PyList_Size(decorations); ++i)
{
Chimera::Signature *slot = Chimera::Signature::fromPyObject(
PyList_GetItem(decorations, i));
int slot_nr_args = slot->parsed_arguments.count();
// Ignore the slot if it requires more arguments than the signal will
// provide.
if (slot_nr_args > signal_nr_args)
continue;
// Ignore the slot if any current candidate will accept more arguments.
if (candidate && candidate->parsed_arguments.count() >= slot_nr_args)
continue;
for (int a = 0; a < slot_nr_args; ++a)
{
const Chimera *sig_arg = signal->parsed_arguments.at(a);
const Chimera *slot_arg = slot->parsed_arguments.at(a);
// We simply compare meta-types.
if (sig_arg->metatype() != slot_arg->metatype())
{
slot = 0;
break;
}
}
// If all of the slot's arguments were Ok then this will be the best
// candidate so far.
if (slot)
candidate = slot;
}
if (candidate)
{
slot_signature = candidate->signature;
add_slot_prefix(slot_signature);
}
}
// Return the full name and signature of the Qt slot that a signal would be
// connected to.
static QByteArray slot_signature_from_signal(
const Chimera::Signature *signal_signature,
const QByteArray &slot_name, int nr_args)
{
QByteArray slot_sig = slot_name;
slot_sig.append('(');
for (int a = 0; a < nr_args; ++a)
{
if (a != 0)
slot_sig.append(',');
slot_sig.append(signal_signature->parsed_arguments.at(a)->name());
}
slot_sig.append(')');
return slot_sig;
}
// Add the prefix to a signaturethat tells Qt it is a slot.
static void add_slot_prefix(QByteArray &slot_signature)
{
slot_signature.prepend('1');
}
|