2016-05-16 09:10:01 +00:00
|
|
|
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#include "stdpch.h"
|
|
|
|
#include "filescleaner.h"
|
|
|
|
#include "operation.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#include "nel/misc/big_file.h"
|
|
|
|
#include "nel/misc/callback.h"
|
|
|
|
#include "nel/misc/file.h"
|
|
|
|
#include "nel/misc/path.h"
|
|
|
|
|
|
|
|
#include "7z.h"
|
|
|
|
#include "7zAlloc.h"
|
|
|
|
#include "7zBuf.h"
|
|
|
|
#include "7zCrc.h"
|
|
|
|
|
|
|
|
#include "qzipreader.h"
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#ifdef DEBUG_NEW
|
|
|
|
#define new DEBUG_NEW
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CFilesCleaner::CFilesCleaner(IOperationProgressListener *listener):m_listener(listener)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CFilesCleaner::~CFilesCleaner()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFilesCleaner::setDirectory(const QString &src)
|
|
|
|
{
|
|
|
|
m_directory = src;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CFilesCleaner::exec()
|
|
|
|
{
|
2016-05-16 12:58:50 +00:00
|
|
|
if (m_listener) m_listener->operationPrepare();
|
|
|
|
|
2016-05-16 09:10:01 +00:00
|
|
|
QDir dir(m_directory);
|
|
|
|
|
|
|
|
// directory doesn't exist
|
|
|
|
if (!dir.exists()) return false;
|
|
|
|
|
|
|
|
if (!dir.cd("data") && dir.exists()) return false;
|
|
|
|
|
|
|
|
// temporary files
|
|
|
|
QStringList files = dir.entryList(QStringList() << "*.string_cache" << "*.packed_sheets" << "*.packed" << "*.pem", QDir::Files);
|
|
|
|
|
2016-05-16 12:58:50 +00:00
|
|
|
if (m_listener)
|
|
|
|
{
|
|
|
|
m_listener->operationInit(0, files.size());
|
|
|
|
m_listener->operationStart();
|
|
|
|
}
|
|
|
|
|
|
|
|
int filesCount = 0;
|
|
|
|
|
2016-05-16 09:10:01 +00:00
|
|
|
foreach(const QString &file, files)
|
|
|
|
{
|
|
|
|
dir.remove(file);
|
2016-05-16 12:58:50 +00:00
|
|
|
|
|
|
|
if (m_listener) m_listener->operationProgress(filesCount, file);
|
|
|
|
|
|
|
|
++filesCount;
|
2016-05-16 09:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// fonts directory is not needed anymore
|
|
|
|
if (dir.cd("fonts") && dir.exists())
|
|
|
|
{
|
|
|
|
dir.removeRecursively();
|
|
|
|
}
|
|
|
|
|
2016-05-16 12:48:01 +00:00
|
|
|
if (m_listener) m_listener->operationSuccess(files.size());
|
2016-05-16 09:10:01 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|