/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtDBus module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, 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.GPL 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. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ // // W A R N I N G // ------------- // // This file is not part of the public API. This header file may // change from version to version without notice, or even be // removed. // // We mean it. // // #ifndef QDBUSINTEGRATOR_P_H #define QDBUSINTEGRATOR_P_H #include "qdbus_symbols_p.h" #include "qcoreevent.h" #include "qeventloop.h" #include "qhash.h" #include "qobject.h" #include "private/qobject_p.h" #include "qlist.h" #include "qpointer.h" #include "qsemaphore.h" #include "qdbusconnection.h" #include "qdbusmessage.h" #include "qdbusconnection_p.h" #ifndef QT_NO_DBUS QT_BEGIN_NAMESPACE class QDBusConnectionPrivate; // Really private structs used by qdbusintegrator.cpp // Things that aren't used by any other file struct QDBusSlotCache { struct Data { int flags; int slotIdx; QVector metaTypes; }; typedef QMultiHash Hash; Hash hash; }; class QDBusCallDeliveryEvent: public QMetaCallEvent { public: QDBusCallDeliveryEvent(const QDBusConnection &c, int id, QObject *sender, const QDBusMessage &msg, const QVector &types, int f = 0) : QMetaCallEvent(0, id, 0, sender, -1), connection(c), message(msg), metaTypes(types), flags(f) { } void placeMetaCall(QObject *object) { QDBusConnectionPrivate::d(connection)->deliverCall(object, flags, message, metaTypes, id()); } private: QDBusConnection connection; // just for refcounting QDBusMessage message; QVector metaTypes; int flags; }; class QDBusActivateObjectEvent: public QMetaCallEvent { public: QDBusActivateObjectEvent(const QDBusConnection &c, QObject *sender, const QDBusConnectionPrivate::ObjectTreeNode &n, int p, const QDBusMessage &m, QSemaphore *s = 0) : QMetaCallEvent(0, -1, 0, sender, -1, 0, 0, 0, s), connection(c), node(n), pathStartPos(p), message(m), handled(false) { } ~QDBusActivateObjectEvent(); void placeMetaCall(QObject *); private: QDBusConnection connection; // just for refcounting QDBusConnectionPrivate::ObjectTreeNode node; int pathStartPos; QDBusMessage message; bool handled; }; class QDBusConnectionCallbackEvent : public QEvent { public: QDBusConnectionCallbackEvent() : QEvent(User), subtype(Subtype(0)) { } DBusWatch *watch; union { int timerId; int fd; }; int extra; enum Subtype { AddTimeout = 0, KillTimer, AddWatch, //RemoveWatch, ToggleWatch } subtype; }; QT_END_NAMESPACE Q_DECLARE_METATYPE(QDBusSlotCache) #endif // QT_NO_DBUS #endif