0717cbf3be4a04ba673c60bcc92e2f6a95671cb4
[quassel.git] / src / common / basichandler.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-10 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #include "basichandler.h"
21
22 #include <QMetaMethod>
23
24 #include "logger.h"
25
26 BasicHandler::BasicHandler(QObject *parent)
27     : QObject(parent),
28     _defaultHandler(-1),
29     _initDone(false),
30     _methodPrefix("handle")
31 {
32 }
33
34
35 BasicHandler::BasicHandler(const QString &methodPrefix, QObject *parent)
36     : QObject(parent),
37     _defaultHandler(-1),
38     _initDone(false),
39     _methodPrefix(methodPrefix)
40 {
41 }
42
43
44 QStringList BasicHandler::providesHandlers()
45 {
46     return handlerHash().keys();
47 }
48
49
50 const QHash<QString, int> &BasicHandler::handlerHash()
51 {
52     if (!_initDone) {
53         for (int i = metaObject()->methodOffset(); i < metaObject()->methodCount(); i++) {
54             QString methodSignature(metaObject()->method(i).signature());
55             if (methodSignature.startsWith("defaultHandler")) {
56                 _defaultHandler = i;
57                 continue;
58             }
59
60             if (!methodSignature.startsWith(_methodPrefix))
61                 continue;
62
63             methodSignature = methodSignature.section('(', 0, 0); // chop the attribute list
64             methodSignature = methodSignature.mid(_methodPrefix.length()); // strip "handle" or whatever the prefix is
65             _handlerHash[methodSignature] = i;
66         }
67         _initDone = true;
68     }
69     return _handlerHash;
70 }
71
72
73 void BasicHandler::handle(const QString &member, QGenericArgument val0,
74     QGenericArgument val1, QGenericArgument val2,
75     QGenericArgument val3, QGenericArgument val4,
76     QGenericArgument val5, QGenericArgument val6,
77     QGenericArgument val7, QGenericArgument val8)
78 {
79     // Now we try to find a handler for this message. BTW, I do love the Trolltech guys ;-)
80     // and now we even have a fast lookup! Thanks thiago!
81
82     QString handler = member.toLower();
83     handler[0] = handler[0].toUpper();
84
85     if (!handlerHash().contains(handler)) {
86         if (_defaultHandler == -1) {
87             qWarning() << QString("No such Handler: %1::%2%3").arg(metaObject()->className(), _methodPrefix, handler);
88             return;
89         }
90         else {
91             void *param[] = { 0, Q_ARG(QString, member).data(), val0.data(), val1.data(), val2.data(), val3.data(), val4.data(),
92                               val5.data(), val6.data(), val7.data(), val8.data(), val8.data() };
93             qt_metacall(QMetaObject::InvokeMetaMethod, _defaultHandler, param);
94             return;
95         }
96     }
97
98     void *param[] = { 0, val0.data(), val1.data(), val2.data(), val3.data(), val4.data(),
99                       val5.data(), val6.data(), val7.data(), val8.data(), val8.data(), 0 };
100     qt_metacall(QMetaObject::InvokeMetaMethod, handlerHash()[handler], param);
101 }