2012-08-21 20:28:38 +02:00
|
|
|
/* ============================================================
|
2017-08-25 17:11:29 +02:00
|
|
|
* Falkon - Qt web browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 Franz Fellner <alpine.art.de@googlemail.com>
|
2012-08-21 20:28:38 +02:00
|
|
|
* 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"
|
2015-09-24 22:46:35 +02:00
|
|
|
#include "recoveryjsobject.h"
|
2014-03-09 21:51:42 +01:00
|
|
|
#include "datapaths.h"
|
2012-08-21 20:28:38 +02:00
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
|
2017-04-07 10:02:27 +02:00
|
|
|
RestoreManager::RestoreManager(const QString &file)
|
2015-09-24 22:46:35 +02:00
|
|
|
: m_recoveryObject(new RecoveryJsObject(this))
|
2012-08-21 20:28:38 +02:00
|
|
|
{
|
2017-04-07 10:02:27 +02:00
|
|
|
createFromFile(file);
|
2012-08-21 20:28:38 +02:00
|
|
|
}
|
|
|
|
|
2015-09-24 22:46:35 +02:00
|
|
|
RestoreManager::~RestoreManager()
|
|
|
|
{
|
|
|
|
delete m_recoveryObject;
|
|
|
|
}
|
|
|
|
|
2012-08-21 20:28:38 +02:00
|
|
|
RestoreData RestoreManager::restoreData() const
|
|
|
|
{
|
|
|
|
return m_data;
|
|
|
|
}
|
|
|
|
|
2012-12-25 16:56:23 +01:00
|
|
|
bool RestoreManager::isValid() const
|
|
|
|
{
|
|
|
|
return !m_data.isEmpty();
|
|
|
|
}
|
|
|
|
|
2015-09-24 22:46:35 +02:00
|
|
|
QObject *RestoreManager::recoveryObject(WebPage *page)
|
|
|
|
{
|
|
|
|
m_recoveryObject->setPage(page);
|
|
|
|
return m_recoveryObject;
|
|
|
|
}
|
|
|
|
|
2017-03-26 11:27:04 +02:00
|
|
|
void RestoreManager::createFromFile(const QString &file, QVector<WindowData> &data)
|
2012-08-21 20:28:38 +02:00
|
|
|
{
|
|
|
|
if (!QFile::exists(file)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile recoveryFile(file);
|
|
|
|
recoveryFile.open(QIODevice::ReadOnly);
|
|
|
|
QDataStream stream(&recoveryFile);
|
|
|
|
|
|
|
|
int version;
|
|
|
|
stream >> version;
|
2012-12-25 16:56:23 +01:00
|
|
|
|
2014-03-14 14:08:38 +01:00
|
|
|
if (version != Qz::sessionVersion && version != Qz::sessionVersionQt5) {
|
2012-08-21 20:28:38 +02:00
|
|
|
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;
|
|
|
|
|
2013-05-03 00:35:14 +02:00
|
|
|
QDataStream tabStream(tabState);
|
|
|
|
if (tabStream.atEnd()) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-08-21 20:28:38 +02:00
|
|
|
|
2013-05-03 00:35:14 +02:00
|
|
|
QVector<WebTab::SavedTab> tabs;
|
|
|
|
int tabListCount = 0;
|
|
|
|
tabStream >> tabListCount;
|
|
|
|
for (int i = 0; i < tabListCount; ++i) {
|
|
|
|
WebTab::SavedTab tab;
|
|
|
|
tabStream >> tab;
|
|
|
|
tabs.append(tab);
|
2012-08-21 20:28:38 +02:00
|
|
|
}
|
2017-04-08 11:06:46 +02:00
|
|
|
|
|
|
|
if (tabs.count() == 0)
|
|
|
|
continue;
|
|
|
|
|
2013-05-03 00:35:14 +02:00
|
|
|
wd.tabsState = tabs;
|
|
|
|
|
|
|
|
int currentTab;
|
|
|
|
tabStream >> currentTab;
|
|
|
|
wd.currentTab = currentTab;
|
2012-08-21 20:28:38 +02:00
|
|
|
|
2017-03-26 11:27:04 +02:00
|
|
|
data.append(wd);
|
2012-08-21 20:28:38 +02:00
|
|
|
}
|
|
|
|
}
|
2017-03-26 11:27:04 +02:00
|
|
|
|
|
|
|
void RestoreManager::createFromFile(const QString &file)
|
|
|
|
{
|
|
|
|
createFromFile(file, m_data);
|
|
|
|
}
|