2010-11-06 23:04:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2011-01-01 17:04:25 +01:00
|
|
|
// Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-11-06 23:04:47 +01:00
|
|
|
//
|
|
|
|
// 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 2 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, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "LockedFile.h"
|
|
|
|
#include "Global.h"
|
|
|
|
|
|
|
|
#include <QResource>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QCryptographicHash>
|
|
|
|
|
|
|
|
LockedFile::LockedFile(const QString &resourcePath, const QString &outPath, const QByteArray &expectedHash)
|
|
|
|
{
|
|
|
|
m_fileHandle = NULL;
|
|
|
|
|
|
|
|
QResource resource(resourcePath);
|
|
|
|
QFile outFile(outPath);
|
|
|
|
|
|
|
|
m_filePath = QFileInfo(outFile).absoluteFilePath();
|
|
|
|
outFile.open(QIODevice::WriteOnly);
|
|
|
|
|
|
|
|
//Write data to file
|
|
|
|
if(outFile.isOpen() && outFile.isWritable() && resource.isValid())
|
|
|
|
{
|
|
|
|
if(outFile.write(reinterpret_cast<const char*>(resource.data()), resource.size()) != resource.size())
|
|
|
|
{
|
2010-11-15 22:07:46 +01:00
|
|
|
QFile::remove(QFileInfo(outFile).canonicalFilePath());
|
2010-11-11 22:58:02 +01:00
|
|
|
char error_msg[512];
|
|
|
|
strcpy_s(error_msg, 512, QString("File '%1' could not be written!").arg(QFileInfo(outFile).fileName()).toUtf8().constData());
|
2010-11-06 23:04:47 +01:00
|
|
|
throw error_msg;
|
|
|
|
}
|
|
|
|
outFile.close();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-11 22:58:02 +01:00
|
|
|
char error_msg[512];
|
|
|
|
strcpy_s(error_msg, 512, QString("File '%1' could not be created!").arg(QFileInfo(outFile).fileName()).toUtf8().constData());
|
2010-11-06 23:04:47 +01:00
|
|
|
throw error_msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Now lock the file
|
|
|
|
m_fileHandle = CreateFileW(QWCHAR(QDir::toNativeSeparators(m_filePath)), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, NULL, NULL);
|
|
|
|
|
|
|
|
if(m_fileHandle == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
2010-11-15 22:07:46 +01:00
|
|
|
QFile::remove(QFileInfo(outFile).canonicalFilePath());
|
2010-11-11 22:58:02 +01:00
|
|
|
char error_msg[512];
|
|
|
|
strcpy_s(error_msg, 512, QString("File '%1' could not be locked!").arg(QFileInfo(outFile).fileName()).toLatin1().constData());
|
2010-11-06 23:04:47 +01:00
|
|
|
throw error_msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Verify file contents
|
|
|
|
outFile.open(QIODevice::ReadOnly);
|
|
|
|
QCryptographicHash fileHash(QCryptographicHash::Sha1);
|
|
|
|
if(outFile.isOpen() && outFile.isReadable())
|
|
|
|
{
|
|
|
|
fileHash.addData(outFile.readAll());
|
|
|
|
outFile.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(_stricmp(fileHash.result().toHex().constData(), expectedHash.constData()))
|
|
|
|
{
|
|
|
|
qWarning("\nFile checksum error:\n Expected = %040s\n Detected = %040s\n", expectedHash.constData(), fileHash.result().toHex().constData());
|
|
|
|
LAMEXP_CLOSE(m_fileHandle);
|
2010-11-15 22:07:46 +01:00
|
|
|
QFile::remove(QFileInfo(outFile).canonicalFilePath());
|
2010-11-11 22:58:02 +01:00
|
|
|
char error_msg[512];
|
|
|
|
strcpy_s(error_msg, 512, QString("File '%1' is corruputed, take care!").arg(QFileInfo(outFile).fileName()).toLatin1().constData());
|
|
|
|
throw error_msg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LockedFile::LockedFile(const QString &filePath)
|
|
|
|
{
|
|
|
|
m_fileHandle = NULL;
|
|
|
|
QFileInfo existingFile(filePath);
|
|
|
|
|
|
|
|
if(!existingFile.exists())
|
|
|
|
{
|
|
|
|
char error_msg[256];
|
|
|
|
strcpy_s(error_msg, 256, QString("File '%1' does not exist!").arg(existingFile.fileName()).toLatin1().constData());
|
|
|
|
throw error_msg;
|
|
|
|
}
|
|
|
|
|
2010-12-03 23:01:17 +01:00
|
|
|
//Remember file path
|
|
|
|
m_filePath = existingFile.canonicalFilePath();
|
|
|
|
|
2010-11-11 22:58:02 +01:00
|
|
|
//Now lock the file
|
|
|
|
m_fileHandle = CreateFileW(QWCHAR(QDir::toNativeSeparators(filePath)), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, NULL, NULL);
|
|
|
|
|
|
|
|
if(m_fileHandle == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
2010-11-06 23:04:47 +01:00
|
|
|
char error_msg[256];
|
2010-11-11 22:58:02 +01:00
|
|
|
strcpy_s(error_msg, 256, QString("File '%1' could not be locked!").arg(existingFile.fileName()).toLatin1().constData());
|
2010-11-06 23:04:47 +01:00
|
|
|
throw error_msg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LockedFile::~LockedFile(void)
|
|
|
|
{
|
|
|
|
LAMEXP_CLOSE(m_fileHandle);
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &LockedFile::filePath()
|
|
|
|
{
|
|
|
|
return m_filePath;
|
|
|
|
}
|