mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
6a63d1f431
- Extract only by listed file GUIDs is now possible for UE - Postcodes must be hexadecimal
96 lines
3.0 KiB
C++
96 lines
3.0 KiB
C++
/* ffsdumper.cpp
|
|
|
|
Copyright (c) 2015, Nikolaj Schlej. All rights reserved.
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
*/
|
|
|
|
#include "ffsdumper.h"
|
|
|
|
FfsDumper::FfsDumper(TreeModel* treeModel, QObject *parent)
|
|
: QObject(parent), model(treeModel), dumped(false)
|
|
{
|
|
}
|
|
|
|
FfsDumper::~FfsDumper()
|
|
{
|
|
}
|
|
|
|
STATUS FfsDumper::dump(const QModelIndex & root, const QString & path, const QString & guid)
|
|
{
|
|
dumped = false;
|
|
UINT8 result = recursiveDump(root, path, guid);
|
|
if (result)
|
|
return result;
|
|
else if (!dumped)
|
|
return ERR_ITEM_NOT_FOUND;
|
|
return ERR_SUCCESS;
|
|
}
|
|
|
|
STATUS FfsDumper::recursiveDump(const QModelIndex & index, const QString & path, const QString & guid)
|
|
{
|
|
if (!index.isValid())
|
|
return ERR_INVALID_PARAMETER;
|
|
|
|
QDir dir;
|
|
if (guid.isEmpty() ||
|
|
guidToQString(*(const EFI_GUID*)model->header(index).constData()) == guid ||
|
|
guidToQString(*(const EFI_GUID*)model->header(model->findParentOfType(index, Types::File)).constData()) == guid) {
|
|
|
|
if (dir.cd(path))
|
|
return ERR_DIR_ALREADY_EXIST;
|
|
|
|
if (!dir.mkpath(path))
|
|
return ERR_DIR_CREATE;
|
|
|
|
QFile file;
|
|
if (!model->header(index).isEmpty()) {
|
|
file.setFileName(tr("%1/header.bin").arg(path));
|
|
if (!file.open(QFile::WriteOnly))
|
|
return ERR_FILE_OPEN;
|
|
|
|
file.write(model->header(index));
|
|
file.close();
|
|
}
|
|
|
|
if (!model->body(index).isEmpty()) {
|
|
file.setFileName(tr("%1/body.bin").arg(path));
|
|
if (!file.open(QFile::WriteOnly))
|
|
return ERR_FILE_OPEN;
|
|
|
|
file.write(model->body(index));
|
|
file.close();
|
|
}
|
|
|
|
QString info = tr("Type: %1\nSubtype: %2\n%3%4")
|
|
.arg(itemTypeToQString(model->type(index)))
|
|
.arg(itemSubtypeToQString(model->type(index), model->subtype(index)))
|
|
.arg(model->text(index).isEmpty() ? "" : tr("Text: %1\n").arg(model->text(index)))
|
|
.arg(model->info(index));
|
|
file.setFileName(tr("%1/info.txt").arg(path));
|
|
if (!file.open(QFile::Text | QFile::WriteOnly))
|
|
return ERR_FILE_OPEN;
|
|
|
|
file.write(info.toLatin1());
|
|
file.close();
|
|
dumped = true;
|
|
}
|
|
|
|
UINT8 result;
|
|
for (int i = 0; i < model->rowCount(index); i++) {
|
|
QModelIndex childIndex = index.child(i, 0);
|
|
QString childPath = QString("%1/%2 %3").arg(path).arg(i).arg(model->text(childIndex).isEmpty() ? model->name(childIndex) : model->text(childIndex));
|
|
result = recursiveDump(childIndex, childPath, guid);
|
|
if (result)
|
|
return result;
|
|
}
|
|
|
|
return ERR_SUCCESS;
|
|
}
|