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 "filescopier.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "operation.h"
|
|
|
|
|
|
|
|
#include "nel/misc/path.h"
|
|
|
|
|
|
|
|
#ifdef DEBUG_NEW
|
|
|
|
#define new DEBUG_NEW
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CFilesCopier::CFilesCopier(IOperationProgressListener *listener):m_listener(listener)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CFilesCopier::~CFilesCopier()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFilesCopier::setSourceDirectory(const QString &src)
|
|
|
|
{
|
|
|
|
m_sourceDirectory = src;
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:34:48 +00:00
|
|
|
void CFilesCopier::setDestinationDirectory(const QString &dst)
|
2016-05-16 09:10:01 +00:00
|
|
|
{
|
|
|
|
m_destinationDirectory = dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFilesCopier::setIncludeFilter(const QStringList &filter)
|
|
|
|
{
|
|
|
|
m_includeFilter = filter;
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:30:18 +00:00
|
|
|
void CFilesCopier::addFile(const QString &filename)
|
2016-05-16 09:10:01 +00:00
|
|
|
{
|
2016-05-26 17:30:18 +00:00
|
|
|
m_files << filename;
|
2016-05-16 09:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CFilesCopier::exec()
|
|
|
|
{
|
|
|
|
if (m_sourceDirectory.isEmpty() || m_destinationDirectory.isEmpty()) return false;
|
|
|
|
|
|
|
|
if (m_listener) m_listener->operationPrepare();
|
|
|
|
|
|
|
|
QDir().mkpath(m_destinationDirectory);
|
|
|
|
|
|
|
|
FilesToCopy files;
|
|
|
|
|
|
|
|
CFilesCopier::getFilesList(files);
|
|
|
|
|
|
|
|
return copyFiles(files);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFilesCopier::getFilesList(FilesToCopy &files)
|
|
|
|
{
|
|
|
|
QDir dir(m_sourceDirectory);
|
|
|
|
|
|
|
|
QFileInfoList entries = dir.entryInfoList(m_includeFilter);
|
|
|
|
|
|
|
|
foreach(const QFileInfo &entry, entries)
|
|
|
|
{
|
|
|
|
QString fullPath = entry.absoluteFilePath();
|
|
|
|
|
|
|
|
QString dstPath = m_destinationDirectory + "/" + dir.relativeFilePath(fullPath);
|
|
|
|
|
|
|
|
if (entry.isDir())
|
|
|
|
{
|
|
|
|
QDir().mkpath(dstPath);
|
|
|
|
|
|
|
|
QDir subDir(fullPath);
|
|
|
|
|
|
|
|
QDirIterator it(subDir, QDirIterator::Subdirectories);
|
|
|
|
|
|
|
|
while (it.hasNext())
|
|
|
|
{
|
|
|
|
fullPath = it.next();
|
|
|
|
|
|
|
|
if (it.fileName().startsWith('.')) continue;
|
|
|
|
|
|
|
|
QFileInfo fileInfo = it.fileInfo();
|
|
|
|
|
|
|
|
dstPath = m_destinationDirectory + "/" + dir.relativeFilePath(fullPath);
|
|
|
|
|
|
|
|
if (fileInfo.isDir())
|
|
|
|
{
|
|
|
|
QDir().mkpath(dstPath);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FileToCopy file;
|
|
|
|
file.filename = it.fileName();
|
|
|
|
file.src = it.filePath();
|
|
|
|
file.dst = dstPath;
|
|
|
|
file.size = it.fileInfo().size();
|
|
|
|
file.date = it.fileInfo().lastModified().toTime_t();
|
2016-06-12 12:19:56 +00:00
|
|
|
file.permissions = it.fileInfo().permissions();
|
2016-05-16 09:10:01 +00:00
|
|
|
|
|
|
|
files << file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FileToCopy file;
|
|
|
|
file.filename = entry.fileName();
|
|
|
|
file.src = entry.filePath();
|
|
|
|
file.dst = dstPath;
|
|
|
|
file.size = entry.size();
|
|
|
|
file.date = entry.lastModified().toTime_t();
|
2016-06-11 15:05:02 +00:00
|
|
|
file.permissions = entry.permissions();
|
2016-05-16 09:10:01 +00:00
|
|
|
|
|
|
|
files << file;
|
|
|
|
}
|
|
|
|
}
|
2016-05-26 17:30:18 +00:00
|
|
|
|
|
|
|
// copy additional files
|
|
|
|
foreach(const QString &fullpath, m_files)
|
|
|
|
{
|
|
|
|
QFileInfo fileInfo(fullpath);
|
|
|
|
|
|
|
|
if (fileInfo.isFile())
|
|
|
|
{
|
|
|
|
FileToCopy file;
|
|
|
|
file.filename = fileInfo.fileName();
|
|
|
|
file.src = fileInfo.filePath();
|
|
|
|
file.dst = m_destinationDirectory + "/" + fileInfo.fileName();
|
|
|
|
file.size = fileInfo.size();
|
|
|
|
file.date = fileInfo.lastModified().toTime_t();
|
2016-06-11 15:05:02 +00:00
|
|
|
file.permissions = fileInfo.permissions();
|
2016-05-26 17:30:18 +00:00
|
|
|
|
|
|
|
files << file;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 09:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CFilesCopier::copyFiles(const FilesToCopy &files)
|
|
|
|
{
|
|
|
|
qint64 totalSize = 0;
|
|
|
|
|
|
|
|
foreach(const FileToCopy &file, files)
|
|
|
|
{
|
|
|
|
totalSize += file.size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_listener)
|
|
|
|
{
|
|
|
|
m_listener->operationInit(0, totalSize);
|
|
|
|
m_listener->operationStart();
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 processedSize = 0;
|
|
|
|
|
|
|
|
foreach(const FileToCopy &file, files)
|
|
|
|
{
|
|
|
|
if (m_listener && m_listener->operationShouldStop())
|
|
|
|
{
|
|
|
|
m_listener->operationStop();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_listener) m_listener->operationProgress(processedSize, file.filename);
|
|
|
|
|
|
|
|
QFileInfo dstFileInfo(file.dst);
|
|
|
|
|
|
|
|
if (dstFileInfo.size() != file.size || dstFileInfo.lastModified().toTime_t() != file.date)
|
|
|
|
{
|
|
|
|
// force deleting previous file since it was incomplete
|
|
|
|
QFile::remove(file.dst);
|
|
|
|
|
|
|
|
if (!QFile::copy(file.src, file.dst))
|
|
|
|
{
|
|
|
|
if (m_listener) m_listener->operationFail(QApplication::tr("Unable to copy file %1").arg(file.src));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 15:05:02 +00:00
|
|
|
if (!QFile::setPermissions(file.dst, file.permissions))
|
|
|
|
{
|
|
|
|
qDebug() << "Unable to change permissions of " << file.dst;
|
|
|
|
}
|
|
|
|
|
2016-05-16 09:10:01 +00:00
|
|
|
if (!NLMISC::CFile::setFileModificationDate(qToUtf8(file.dst), file.date))
|
|
|
|
{
|
|
|
|
qDebug() << "Unable to change date of " << file.dst;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
processedSize += file.size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_listener)
|
|
|
|
{
|
|
|
|
m_listener->operationSuccess(totalSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|