mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-14 11:02:19 +01:00
88 lines
2.4 KiB
C++
88 lines
2.4 KiB
C++
|
/* ============================================================
|
||
|
* QupZilla - WebKit based browser
|
||
|
* Copyright (C) 2010-2012 Franz Fellner <alpine.art.de@googlemail.com>
|
||
|
* David Rosca <nowrep@gmail.com>
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
* ============================================================ */
|
||
|
#include "restoremanager.h"
|
||
|
|
||
|
#include <QFile>
|
||
|
|
||
|
RestoreManager::RestoreManager(const QString &sessionFile)
|
||
|
{
|
||
|
createFromFile(sessionFile);
|
||
|
}
|
||
|
|
||
|
RestoreData RestoreManager::restoreData() const
|
||
|
{
|
||
|
return m_data;
|
||
|
}
|
||
|
|
||
|
// Version of session.dat file
|
||
|
static const int sessionVersion = 0x0003;
|
||
|
|
||
|
void RestoreManager::createFromFile(const QString &file)
|
||
|
{
|
||
|
if (!QFile::exists(file)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
QFile recoveryFile(file);
|
||
|
recoveryFile.open(QIODevice::ReadOnly);
|
||
|
QDataStream stream(&recoveryFile);
|
||
|
|
||
|
int version;
|
||
|
stream >> version;
|
||
|
if (version != sessionVersion) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
int windowCount;
|
||
|
stream >> windowCount;
|
||
|
|
||
|
for (int win = 0; win < windowCount; ++win) {
|
||
|
QByteArray tabState;
|
||
|
QByteArray windowState;
|
||
|
stream >> tabState;
|
||
|
stream >> windowState;
|
||
|
|
||
|
WindowData wd;
|
||
|
wd.windowState = windowState;
|
||
|
|
||
|
{
|
||
|
QDataStream tabStream(tabState);
|
||
|
if (tabStream.atEnd()) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
QList<WebTab::SavedTab> tabs;
|
||
|
int tabListCount = 0;
|
||
|
tabStream >> tabListCount;
|
||
|
for (int i = 0; i < tabListCount; ++i) {
|
||
|
WebTab::SavedTab tab;
|
||
|
tabStream >> tab;
|
||
|
tabs.append(tab);
|
||
|
}
|
||
|
wd.tabsState = tabs;
|
||
|
|
||
|
int currentTab;
|
||
|
tabStream >> currentTab;
|
||
|
wd.currentTab = currentTab;
|
||
|
}
|
||
|
|
||
|
m_data.append(wd);
|
||
|
}
|
||
|
}
|