Fix license headers: Quassel IRC Team -> Quassel Project, 2007 -> 2008
[quassel.git] / src / core / coresession.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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
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 Identity;
31 class Server;
32 class SignalProxy;
33 class Storage;
34
35 class QScriptEngine;
36
37 class CoreSession : public QObject {
38   Q_OBJECT
39
40 public:
41   CoreSession(UserId, Storage *, QObject *parent = 0);
42   virtual ~CoreSession();
43
44   NetworkId getNetworkId(const QString &network) const;
45   QList<BufferInfo> buffers() const;
46   UserId userId() const;
47   QVariant sessionState();
48
49   //! Retrieve a piece of session-wide data.
50   QVariant retrieveSessionData(const QString &key, const QVariant &def = QVariant());
51
52   SignalProxy *signalProxy() const;
53
54   void attachServer(Server *server);
55
56   //! Return necessary data for restoring the session after restarting the core
57   QVariant state() const;
58   void restoreState(const QVariant &previousState);
59
60 public slots:
61   //! Store a piece session-wide data and distribute it to connected clients.
62   void storeSessionData(const QString &key, const QVariant &data);
63
64   void serverStateRequested();
65
66   void addClient(QIODevice *connection);
67
68   void connectToNetwork(QString, const QVariant &previousState = QVariant());
69   //void connectToNetwork(NetworkId);
70
71   //void processSignal(ClientSignal, QVariant, QVariant, QVariant);
72   void sendBacklog(BufferInfo, QVariant, QVariant);
73   void msgFromGui(BufferInfo, QString message);
74
75   //! Create or update an identity and propagate the changes to the clients.
76   /** \param identity The identity to be created/updated.
77    */
78   void createOrUpdateIdentity(const Identity &identity);
79
80   //! Remove identity and propagate that fact to the clients.
81   /** \param identity The identity to be removed.
82    */
83   void removeIdentity(IdentityId identity);
84
85 signals:
86   void msgFromGui(uint netid, QString buf, QString message);
87   void displayMsg(Message message);
88   void displayStatusMsg(QString, QString);
89
90   void connectToIrc(QString net);
91   void disconnectFromIrc(QString net);
92
93   void backlogData(BufferInfo, QVariantList, bool done);
94
95   void bufferInfoUpdated(BufferInfo);
96   void sessionDataChanged(const QString &key);
97   void sessionDataChanged(const QString &key, const QVariant &data);
98
99   void scriptResult(QString result);
100
101   //! Identity has been created.
102   /** This signal is propagated to the clients to tell them that the given identity has been created.
103    *  \param identity The new identity.
104    */
105   void identityCreated(const Identity &identity);
106
107   //! Identity has been removed.
108   /** This signal is propagated to the clients to inform them about the removal of the given identity.
109    *  \param identity The identity that has been removed.
110    */
111   void identityRemoved(IdentityId identity);
112
113 private slots:
114   void recvStatusMsgFromServer(QString msg);
115   void recvMessageFromServer(Message::Type, QString target, QString text, QString sender = "", quint8 flags = Message::None);
116   void serverConnected(uint networkid);
117   void serverDisconnected(uint networkid);
118
119   void scriptRequest(QString script);
120   
121 private:
122   void initScriptEngine();
123   
124   UserId user;
125   
126   SignalProxy *_signalProxy;
127   Storage *storage;
128   QHash<NetworkId, Server *> servers;
129   
130   QVariantMap sessionData;
131   QMutex mutex;
132
133   QScriptEngine *scriptEngine;
134
135   QHash<IdentityId, Identity *> _identities;
136 };
137
138 #endif