IRC disconnects are now handled properly
[quassel.git] / src / core / coresession.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel IRC Development Team             *
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) any later version.                                   *
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
21 #ifndef _CORESESSION_H_
22 #define _CORESESSION_H_
23
24 #include <QObject>
25 #include <QString>
26 #include <QVariant>
27
28 #include "message.h"
29
30 class Server;
31 class SignalProxy;
32 class Storage;
33
34 class CoreSession : public QObject {
35   Q_OBJECT
36
37 public:
38   CoreSession(UserId, Storage *, QObject *parent = 0);
39   virtual ~CoreSession();
40
41   uint getNetworkId(const QString &network) const;
42   QList<BufferInfo> buffers() const;
43   UserId userId() const;
44   QVariant sessionState();
45
46   //! Retrieve a piece of session-wide data.
47   QVariant retrieveSessionData(const QString &key, const QVariant &def = QVariant());
48   
49   SignalProxy *signalProxy() const;
50                                   
51   void attachServer(Server *server);
52                                    
53 public slots:
54   //! Store a piece session-wide data and distribute it to connected clients.
55   void storeSessionData(const QString &key, const QVariant &data);
56
57   void serverStateRequested();
58
59   void addClient(QIODevice *connection);
60   
61   void connectToNetwork(QString);
62   
63   //void processSignal(ClientSignal, QVariant, QVariant, QVariant);
64   void sendBacklog(BufferInfo, QVariant, QVariant);
65   void msgFromGui(BufferInfo, QString message);
66   
67 signals:
68   void msgFromGui(uint netid, QString buf, QString message);
69   void displayMsg(Message message);
70   void displayStatusMsg(QString, QString);
71   
72   void connectToIrc(QString net);
73   void disconnectFromIrc(QString net);
74
75   void backlogData(BufferInfo, QVariantList, bool done);
76
77   void bufferInfoUpdated(BufferInfo);
78   void sessionDataChanged(const QString &key);
79   void sessionDataChanged(const QString &key, const QVariant &data);
80
81 private slots:
82   void recvStatusMsgFromServer(QString msg);
83   void recvMessageFromServer(Message::Type, QString target, QString text, QString sender = "", quint8 flags = Message::None);
84   void serverConnected(uint networkid);
85   void serverDisconnected(uint networkid);
86
87 private:
88   UserId user;
89   
90   SignalProxy *_signalProxy;
91   Storage *storage;
92   QHash<uint, Server *> servers;
93   
94   QVariantMap sessionData;
95   QMutex mutex;
96 };
97
98 #endif