I am starting to clean up the mess that is Global right now, and to implement a clean...
[quassel.git] / src / common / global.cpp
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 #include <QObject>
21 #include <QStringList>
22
23 #include "global.h"
24 #include "logger.h"
25 #include "message.h"
26 #include "util.h"
27
28 extern void messageHandler(QtMsgType type, const char *msg);
29
30 Global *Global::instanceptr = 0;
31
32 Global * Global::instance() {
33   if(instanceptr) return instanceptr;
34   return instanceptr = new Global();
35 }
36
37 void Global::destroy() {
38   delete instanceptr;
39   instanceptr = 0;
40 }
41
42 Global::Global() {
43   qInstallMsgHandler(messageHandler);
44   qRegisterMetaType<Message>("Message");
45   qRegisterMetaTypeStreamOperators<Message>("Message");
46   qRegisterMetaType<BufferId>("BufferId");
47   qRegisterMetaTypeStreamOperators<BufferId>("BufferId");
48
49   guiUser = 0;
50 }
51
52 Global::~Global() {
53
54
55 }
56
57 void Global::setGuiUser(UserId uid) {
58   guiUser = uid;
59 }
60
61 QVariant Global::data(QString key, QVariant defval) {
62   return data(guiUser, key, defval);
63 }
64
65 QVariant Global::data(UserId uid, QString key, QVariant defval) {
66   QVariant d;
67   mutex.lock();
68   if(instance()->datastore[uid].contains(key)) d = instance()->datastore[uid][key];
69   else d = defval;
70   mutex.unlock();
71   //qDebug() << "getData("<<key<<"): " << d;
72   return d;
73 }
74
75 QStringList Global::keys() {
76   return keys(guiUser);
77 }
78
79 QStringList Global::keys(UserId uid) {
80   QStringList k;
81   mutex.lock();
82   k = instance()->datastore[uid].keys();
83   mutex.unlock();
84   return k;
85 }
86
87 void Global::putData(QString key, QVariant d) {
88   putData(guiUser, key, d);
89 }
90
91 void Global::putData(UserId uid, QString key, QVariant d) {
92   mutex.lock();
93   instance()->datastore[uid][key] = d;
94   mutex.unlock();
95   emit instance()->dataPutLocally(uid, key);
96 }
97
98 void Global::updateData(QString key, QVariant d) {
99   updateData(guiUser, key, d);
100 }
101
102 void Global::updateData(UserId uid, QString key, QVariant d) {
103   mutex.lock();
104   instance()->datastore[uid][key] = d;
105   mutex.unlock();
106   emit instance()->dataUpdatedRemotely(uid, key);
107 }
108
109 /* not done yet */
110 /*
111 void Global::initIconMap() {
112 // Do not depend on GUI in core!
113   QDomDocument doc("IconMap");
114   QFile file("images/iconmap.xml");
115   if(!file.open(QIODevice::ReadOnly)) {
116     qDebug() << "Error opening iconMap file!";
117     return;
118   } else if(!doc.setContent(&file)) {
119     file.close();
120     qDebug() << "Error parsing iconMap file!";
121   } else {
122     file.close();
123
124   }
125 }
126 */
127
128 /**************************************************************************************/
129
130
131
132 BufferId::BufferId(uint _id, QString _net, QString _buf, uint _gid) : id(_id), gid(_gid), net(_net), buf(_buf) {
133
134
135 }
136
137 QString BufferId::buffer() const {
138   if(isChannelName(buf)) return buf;
139   else return nickFromMask(buf);
140 }
141
142 QDataStream &operator<<(QDataStream &out, const BufferId &bufferId) {
143   out << bufferId.id << bufferId.gid << bufferId.net.toUtf8() << bufferId.buf.toUtf8();
144 }
145
146 QDataStream &operator>>(QDataStream &in, BufferId &bufferId) {
147   QByteArray n, b;
148   BufferId i;
149   in >> bufferId.id >> bufferId.gid >> n >> b;
150   bufferId.net = QString::fromUtf8(n);
151   bufferId.buf = QString::fromUtf8(b);
152 }
153
154 uint qHash(const BufferId &bid) {
155   return qHash(bid.id);
156 }
157
158 /**
159  * Retrieves an icon determined by its symbolic name. The mapping shall later
160  * be performed by a theme manager or something like that.
161  * @param symbol Symbol of requested icon
162  * @return Pointer to a newly created QIcon
163  */
164 //
165 //QIcon *Global::getIcon(QString /*symbol*/) {
166   //if(symbol == "connect"
167
168 //  return 0;
169 //}
170
171 QMutex Global::mutex;
172 Global::RunMode Global::runMode;
173 UserId Global::guiUser;
174 QString Global::quasselDir;