Cleaning up ChangeLog :-)
[quassel.git] / main / global.h
1 /***************************************************************************
2  *   Copyright (C) 2005 by The Quassel 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 _GLOBAL_H_
22 #define _GLOBAL_H_
23
24 /** The protocol version we use fo the communication between core and GUI */
25 #define GUI_PROTOCOL 1
26
27 #define BACKLOG_FORMAT 2
28 #define BACKLOG_STRING "QuasselIRC Backlog File"
29
30 class Global;
31
32 #include <QtCore>
33 //#include <QMutex>
34
35 /* Some global stuff */
36 typedef QMap<QString, QVariant> VarMap;
37 extern Global *global;
38
39 /**
40  * This class is mostly a globally synchronized data store, meant for storing systemwide settings such
41  * as identities or network lists. This class is a singleton, but not static as we'd like to use signals and
42  * slots with it.
43  * The global object is used in both Core and GUI clients. Storing and retrieving data is thread-safe.
44  * \note While updated data is propagated to all the remote parts of Quassel quite quickly, the synchronization
45  *       protocol is in no way designed to guarantee strict consistency at all times. In other words, it may
46  *       well happen that different instances of global data differ from one another for a little while until
47  *       all update messages have been processed. You should never rely on all global data stores being consistent.
48 */
49 class Global : public QObject {
50   Q_OBJECT
51
52   public:
53     Global();
54     //static Logger *getLogger();
55     //static void setLogger(Logger *);
56
57 //    static QIcon *getIcon(QString symbol);
58
59     QVariant getData(QString key, QVariant defaultValue = QVariant());
60     QStringList getKeys();
61
62   public slots:
63     void putData(QString key, QVariant data);      ///< Store data changed locally, will be propagated to all other clients and the core
64     void updateData(QString key, QVariant data);   ///< Update stored data if requested by the core or other clients
65
66   signals:
67     void dataPutLocally(QString key);
68     void dataUpdatedRemotely(QString key);  // sent by remote update only!
69
70   public:
71     enum RunMode { Monolithic, GUIOnly, CoreOnly };
72     static RunMode runMode;
73     static QString quasselDir;
74
75   private:
76     static void initIconMap();
77
78     //static Logger *logger;
79
80 //    static QString iconPath;
81     QHash<QString, QString> iconMap;
82     QMutex mutex;
83     QHash<QString, QVariant> data;
84 };
85
86 class Exception {
87   public:
88     Exception(QString msg = "Unknown Exception") : _msg(msg) {};
89     virtual inline QString msg() { return _msg; }
90
91   protected:
92     QString _msg;
93
94 };
95
96 class BufferId {
97   public:
98     BufferId() { id = gid = 0; } // FIXME
99     BufferId(uint uid, QString net, QString buf, uint gid = 0);
100
101     inline uint uid() { return id; }
102     inline uint groupId() { return gid; }
103     inline QString network() { return net; }
104     QString buffer(); // nickfrommask?
105
106     void setGroupId(uint _gid) { gid = _gid; }
107
108     inline bool operator==(const BufferId &other) const { return id == other.id; }
109   private:
110     uint id;
111     uint gid;
112     QString net;
113     QString buf;
114
115     friend uint qHash(const BufferId &);
116     friend QDataStream &operator<<(QDataStream &out, const BufferId &bufferId);
117     friend QDataStream &operator>>(QDataStream &in, BufferId &bufferId);
118 };
119
120 QDataStream &operator<<(QDataStream &out, const BufferId &bufferId);
121 QDataStream &operator>>(QDataStream &in, BufferId &bufferId);
122
123 Q_DECLARE_METATYPE(BufferId);
124
125 uint qHash(const BufferId &);
126
127 #endif