X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=f58b2eac73bc258ca36cd74f106a1db3b693ffe3;hp=fe7f4f2d45aceab7e9fb3d56ba24dde6a8bd2fc2;hb=fc46caf2059654d81251412a13f5db4d40803948;hpb=902c95728306e5ba115de84800fc8d5d239c9d62 diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index fe7f4f2d..f58b2eac 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005/06 by The Quassel Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -27,33 +27,61 @@ class IrcServerHandler : public BasicHandler { Q_OBJECT public: - IrcServerHandler(Server *parent = 0); + IrcServerHandler(NetworkConnection *parent); ~IrcServerHandler(); void handleServerMsg(QByteArray rawMsg); - + public slots: - void handleJoin(QString, QStringList); - void handleKick(QString, QStringList); - void handleMode(QString, QStringList); - void handleNick(QString, QStringList); - void handleNotice(QString, QStringList); - void handlePart(QString, QStringList); - void handlePing(QString, QStringList); - void handlePrivmsg(QString, QStringList); - void handleQuit(QString, QStringList); - void handleTopic(QString, QStringList); - - void handle001(QString, QStringList); // RPL_WELCOME - void handle005(QString, QStringList); // RPL_ISUPPORT - void handle331(QString, QStringList); // RPL_NOTOPIC - void handle332(QString, QStringList); // RPL_TOPIC - void handle333(QString, QStringList); // Topic set by... - void handle353(QString, QStringList); // RPL_NAMREPLY - void handle432(QString, QStringList); // ERR_ERRONEUSNICKNAME - void handle433(QString, QStringList); // ERR_NICKNAMEINUSE - - void defaultHandler(QString cmd, QString prefix, QStringList params); + void handleJoin(const QString &prefix, const QList ¶ms); + void handleKick(const QString &prefix, const QList ¶ms); + void handleMode(const QString &prefix, const QList ¶ms); + void handleNick(const QString &prefix, const QList ¶ms); + void handleNotice(const QString &prefix, const QList ¶ms); + void handlePart(const QString &prefix, const QList ¶ms); + void handlePing(const QString &prefix, const QList ¶ms); + void handlePrivmsg(const QString &prefix, const QList ¶ms); + void handleQuit(const QString &prefix, const QList ¶ms); + void handleTopic(const QString &prefix, const QList ¶ms); + + void handle001(const QString &prefix, const QList ¶ms); // RPL_WELCOME + void handle005(const QString &prefix, const QList ¶ms); // RPL_ISUPPORT + void handle221(const QString &prefix, const QList ¶ms); // RPL_UMODEIS + void handle250(const QString &prefix, const QList ¶ms); // RPL_STATSDLINE + void handle265(const QString &prefix, const QList ¶ms); // RPL_LOCALUSERS + void handle266(const QString &prefix, const QList ¶ms); // RPL_GLOBALUSERS + void handle301(const QString &prefix, const QList ¶ms); // RPL_AWAY + void handle305(const QString &prefix, const QList ¶ms); // RPL_UNAWAY + void handle306(const QString &prefix, const QList ¶ms); // RPL_NOWAWAY + void handle307(const QString &prefix, const QList ¶ms); // RPL_WHOISSERVICE + void handle310(const QString &prefix, const QList ¶ms); // RPL_SUSERHOST + void handle311(const QString &prefix, const QList ¶ms); // RPL_WHOISUSER + void handle312(const QString &prefix, const QList ¶ms); // RPL_WHOISSERVER + void handle313(const QString &prefix, const QList ¶ms); // RPL_WHOISOPERATOR + void handle314(const QString &prefix, const QList ¶ms); // RPL_WHOWASUSER + void handle315(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHO + void handle317(const QString &prefix, const QList ¶ms); // RPL_WHOISIDLE + void handle318(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHOIS + void handle319(const QString &prefix, const QList ¶ms); // RPL_WHOISCHANNELS + void handle320(const QString &prefix, const QList ¶ms); // RPL_WHOISVIRT (is identified to services) + void handle331(const QString &prefix, const QList ¶ms); // RPL_NOTOPIC + void handle332(const QString &prefix, const QList ¶ms); // RPL_TOPIC + void handle333(const QString &prefix, const QList ¶ms); // Topic set by... + void handle352(const QString &prefix, const QList ¶ms); // RPL_WHOREPLY + void handle353(const QString &prefix, const QList ¶ms); // RPL_NAMREPLY + void handle369(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHOWAS + void handle432(const QString &prefix, const QList ¶ms); // ERR_ERRONEUSNICKNAME + void handle433(const QString &prefix, const QList ¶ms); // ERR_NICKNAMEINUSE + + void defaultHandler(QString cmd, const QString &prefix, const QList ¶ms); + +signals: + void nickChanged(const QString &newNick, const QString &oldNick); // this signal is inteded to rename query buffers in the storage backend + +private: + void tryNextNick(const QString &errnick); + bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams); + bool _whois; };