Don't tinker with config and data files on Mac for now
[quassel.git] / src / qtui / qtuiapplication.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 #include "qtuiapplication.h"
22
23 #include <QStringList>
24
25 #ifdef HAVE_KDE
26 #  include <KStandardDirs>
27 #endif
28
29 #include "client.h"
30 #include "cliparser.h"
31 #include "qtui.h"
32 #include "sessionsettings.h"
33
34 QtUiApplication::QtUiApplication(int &argc, char **argv)
35 #ifdef HAVE_KDE
36   : KApplication(),
37 #else
38   : QApplication(argc, argv),
39 #endif
40     Quassel(),
41     _aboutToQuit(false)
42 {
43 #ifdef HAVE_KDE
44   Q_UNUSED(argc); Q_UNUSED(argv);
45
46   // We need to setup KDE's data dirs
47   QStringList dataDirs = KGlobal::dirs()->findDirs("data", "");
48   for(int i = 0; i < dataDirs.count(); i++)
49     dataDirs[i].append("quassel/");
50   dataDirs.append(":/data/");
51   setDataDirPaths(dataDirs);
52
53 #else /* HAVE_KDE */
54
55   setDataDirPaths(findDataDirPaths());
56
57 #endif /* HAVE_KDE */
58
59   setRunMode(Quassel::ClientOnly);
60
61   qInstallMsgHandler(Client::logMessage);
62 }
63
64 bool QtUiApplication::init() {
65   if(Quassel::init()) {
66
67 #ifndef Q_WS_MAC
68     // FIXME: MIGRATION 0.3 -> 0.4: Move database and core config to new location
69     // Move settings, note this does not delete the old files
70 #ifdef Q_WS_WIN
71     QSettings::Format format = QSettings::IniFormat;
72 #else
73     QSettings::Format format = QSettings::NativeFormat;
74 #endif
75     QString newFilePath = Quassel::configDirPath() + "quasselclient"
76     + ((format == QSettings::NativeFormat) ? QLatin1String(".conf") : QLatin1String(".ini"));
77     QSettings newSettings(newFilePath, format);
78
79     if(newSettings.value("Config/Version").toUInt() != 1) {
80       qWarning() << "\n\n*** IMPORTANT: Config and data file locations have changed. Attempting to auto-migrate your client settings...";
81 #     ifdef Q_WS_MAC
82         QString org = "quassel-irc.org";
83 #     else
84         QString org = "Quassel Project";
85 #     endif
86       QSettings oldSettings(org, "Quassel Client");
87       if(oldSettings.allKeys().count()) {
88         foreach(QString key, oldSettings.allKeys())
89           newSettings.setValue(key, oldSettings.value(key));
90         newSettings.setValue("Config/Version", 1);
91         qWarning() << "*   Your client settings have been migrated to" << newFilePath;
92       }
93       qWarning() << "*** Migration completed.\n\n";
94     }
95 #endif /* !Q_WS_MAC */
96     // MIGRATION end
97
98     // session resume
99     QtUi *gui = new QtUi();
100     Client::init(gui);
101     // init gui only after the event loop has started
102     // QTimer::singleShot(0, gui, SLOT(init()));
103     gui->init();
104     resumeSessionIfPossible();
105     return true;
106   }
107   return false;
108 }
109
110 QtUiApplication::~QtUiApplication() {
111   Client::destroy();
112 }
113
114 void QtUiApplication::commitData(QSessionManager &manager) {
115   Q_UNUSED(manager)
116   _aboutToQuit = true;
117 }
118
119 void QtUiApplication::saveState(QSessionManager & manager) {
120   //qDebug() << QString("saving session state to id %1").arg(manager.sessionId());
121   AccountId activeCore = Client::currentCoreAccount();
122   SessionSettings s(manager.sessionId());
123   s.setSessionAge(0);
124   emit saveStateToSession(manager.sessionId());
125   emit saveStateToSessionSettings(s);
126 }
127
128 void QtUiApplication::resumeSessionIfPossible() {
129   // load all sessions
130   if(isSessionRestored()) {
131     qDebug() << QString("restoring from session %1").arg(sessionId());
132     SessionSettings s(sessionId());
133     s.sessionAging();
134     s.setSessionAge(0);
135     emit resumeFromSession(sessionId());
136     emit resumeFromSessionSettings(s);
137     s.cleanup();
138   } else {
139     SessionSettings s(QString("1"));
140     s.sessionAging();
141     s.cleanup();
142   }
143 }