X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsignalproxy.h;h=7f2a1ddc8bece917b9f5acffe1efc9a994b80239;hp=1e606ccfcc55857f722f8ff6574173b7c445ae09;hb=2a00e8f57d66d9913a10c30408b89676a74010a1;hpb=cebcb6c30e4f866aa1b3d4e07e1a93dd7f178cea diff --git a/src/common/signalproxy.h b/src/common/signalproxy.h index 1e606ccf..7f2a1ddc 100644 --- a/src/common/signalproxy.h +++ b/src/common/signalproxy.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -41,9 +41,7 @@ class SignalProxy : public QObject { class IODevicePeer; class SignalProxyPeer; - class Relay; class SignalRelay; - class SyncRelay; public: enum ProxyMode { @@ -118,6 +116,7 @@ public slots: protected: void customEvent(QEvent *event); + void syncCall(const SyncableObject *obj, ProxyMode modeType, const char *funcname, va_list ap); private slots: void dataAvailable(); @@ -183,8 +182,6 @@ private: // SignalRelay for all manually attached signals SignalRelay *_signalRelay; - // one SyncRelay per class - QHash _syncRelays; // RPC function -> (object, slot ID) typedef QPair MethodId; @@ -202,6 +199,7 @@ private: bool _secure; // determines if all connections are in a secured state (using ssl or internal connections) friend class SignalRelay; + friend class SyncableObject; }; @@ -209,35 +207,55 @@ private: // ExtendedMetaObject // ================================================== class SignalProxy::ExtendedMetaObject { + class MethodDescriptor { + public: + MethodDescriptor(const QMetaMethod &method); + MethodDescriptor() : _returnType(-1), _minArgCount(-1), _receiverMode(SignalProxy::Client) {} + + inline const QByteArray &methodName() const { return _methodName; } + inline const QList &argTypes() const { return _argTypes; } + inline int returnType() const { return _returnType; } + inline int minArgCount() const { return _minArgCount; } + inline SignalProxy::ProxyMode receiverMode() const { return _receiverMode; } + + private: + QByteArray _methodName; + QList _argTypes; + int _returnType; + int _minArgCount; + SignalProxy::ProxyMode _receiverMode; // Only acceptable as a Sync Call if the receiving SignalProxy is in this mode. + }; + public: ExtendedMetaObject(const QMetaObject *meta); - const QList &argTypes(int methodId); - const int &returnType(int methodId); - const int &minArgCount(int methodId); - const QByteArray &methodName(int methodId); - const QHash &syncMap(); + inline const QByteArray &methodName(int methodId) { return methodDescriptor(methodId).methodName(); } + inline const QList &argTypes(int methodId) { return methodDescriptor(methodId).argTypes(); } + inline int returnType(int methodId) { return methodDescriptor(methodId).returnType(); } + inline int minArgCount(int methodId) { return methodDescriptor(methodId).minArgCount(); } + inline SignalProxy::ProxyMode receiverMode(int methodId) { return methodDescriptor(methodId).receiverMode(); } + + inline int methodId(const QByteArray &methodName) { return _methodIds.contains(methodName) ? _methodIds[methodName] : -1; } + + inline int updatedRemotelyId() { return _updatedRemotelyId; } + + inline const QHash &slotMap() { return _methodIds; } const QHash &receiveMap(); - int updatedRemotelyId(); const QMetaObject *metaObject() const { return _meta; } static QByteArray methodName(const QMetaMethod &method); - static bool methodsMatch(const QMetaMethod &signal, const QMetaMethod &slot); - static QString methodBaseName(const QMetaMethod &method); + static QString ExtendedMetaObject::methodBaseName(const QMetaMethod &method); private: - typedef QHash > ArgHash; - typedef QHash MethodNameHash; + const MethodDescriptor &methodDescriptor(int methodId); const QMetaObject *_meta; - ArgHash _argTypes; - QHash _returnType; - QHash _minArgCount; - MethodNameHash _methodNames; int _updatedRemotelyId; // id of the updatedRemotely() signal - makes things faster - QHash _syncMap; - QHash _receiveMap; + + QHash _methods; + QHash _methodIds; + QHash _receiveMap; // if slot x is called then hand over the result to slot y };