Abstract away the protocol handshake code
[quassel.git] / src / common / authhandler.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2013 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "authhandler.h"
22
23 AuthHandler::AuthHandler(QObject *parent)
24     : QObject(parent),
25     _state(UnconnectedState),
26     _socket(0)
27 {
28
29 }
30
31
32 AuthHandler::State AuthHandler::state() const
33 {
34     return _state;
35 }
36
37
38 void AuthHandler::setState(AuthHandler::State state)
39 {
40     if (_state != state) {
41         _state = state;
42         emit stateChanged(state);
43     }
44 }
45
46
47 QTcpSocket *AuthHandler::socket() const
48 {
49     return _socket;
50 }
51
52
53 void AuthHandler::setSocket(QTcpSocket *socket)
54 {
55     _socket = socket;
56     connect(socket, SIGNAL(stateChanged(QAbstractSocket::SocketState)), SIGNAL(socketStateChanged(QAbstractSocket::SocketState)));
57     connect(socket, SIGNAL(error(QAbstractSocket::SocketError)), SLOT(socketError(QAbstractSocket::SocketError)));
58     connect(socket, SIGNAL(disconnected()), SIGNAL(disconnected()));
59 }
60
61
62 void AuthHandler::socketError(QAbstractSocket::SocketError error)
63 {
64     emit socketError(error, _socket->errorString());
65 }
66
67
68 void AuthHandler::invalidMessage()
69 {
70     qWarning() << Q_FUNC_INFO << "No handler for message!";
71 }
72
73
74 void AuthHandler::close()
75 {
76     if (_socket && _socket->isOpen())
77         _socket->close();
78 }