Adding code for migrating settings and database to the new location
[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     // FIXME: MIGRATION 0.3 -> 0.4: Move database and core config to new location
68     // Move settings, note this does not delete the old files
69 #ifdef Q_WS_WIN
70     QSettings::Format format = QSettings::IniFormat;
71 #else
72     QSettings::Format format = QSettings::NativeFormat;
73 #endif
74     QString newFilePath = Quassel::configDirPath() + "quasselclient"
75     + ((format == QSettings::NativeFormat) ? QLatin1String(".conf") : QLatin1String(".ini"));
76     QSettings newSettings(newFilePath, format);
77
78     if(newSettings.value("General/Version").toUInt() != 1) {
79       qWarning() << "\n\n*** IMPORTANT: Config and data file locations have changed. Attempting to auto-migrate your client settings...";
80 #     ifdef Q_WS_MAC
81         QString org = "quassel-irc.org";
82 #     else
83         QString org = "Quassel Project";
84 #     endif
85       QSettings oldSettings(org, "Quassel Client");
86       if(oldSettings.allKeys().count()) {
87         foreach(QString key, oldSettings.allKeys())
88           newSettings.setValue(key, oldSettings.value(key));
89         newSettings.setValue("Config/Version", 1);
90         qWarning() << "*   Your client settings have been migrated to" << newFilePath;
91       }
92       qWarning() << "*** Migration completed.\n\n";
93     }
94
95     // MIGRATION end
96
97     // session resume
98     QtUi *gui = new QtUi();
99     Client::init(gui);
100     // init gui only after the event loop has started
101     // QTimer::singleShot(0, gui, SLOT(init()));
102     gui->init();
103     resumeSessionIfPossible();
104     return true;
105   }
106   return false;
107 }
108
109 QtUiApplication::~QtUiApplication() {
110   Client::destroy();
111 }
112
113 void QtUiApplication::commitData(QSessionManager &manager) {
114   _aboutToQuit = true;
115 }
116
117 void QtUiApplication::saveState(QSessionManager & manager) {
118   //qDebug() << QString("saving session state to id %1").arg(manager.sessionId());
119   AccountId activeCore = Client::currentCoreAccount();
120   SessionSettings s(manager.sessionId());
121   s.setSessionAge(0);
122   emit saveStateToSession(manager.sessionId());
123   emit saveStateToSessionSettings(s);
124 }
125
126 void QtUiApplication::resumeSessionIfPossible() {
127   // load all sessions
128   if(isSessionRestored()) {
129     qDebug() << QString("restoring from session %1").arg(sessionId());
130     SessionSettings s(sessionId());
131     s.sessionAging();
132     s.setSessionAge(0);
133     emit resumeFromSession(sessionId());
134     emit resumeFromSessionSettings(s);
135     s.cleanup();
136   } else {
137     SessionSettings s(QString("1"));
138     s.sessionAging();
139     s.cleanup();
140   }
141 }