mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-21 23:48:22 +08:00
58 lines
2.1 KiB
C++
58 lines
2.1 KiB
C++
/* fssbuilder.h
|
|
|
|
Copyright (c) 2016, 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.
|
|
|
|
*/
|
|
|
|
#ifndef FFSBUILDER_H
|
|
#define FFSBUILDER_H
|
|
|
|
#include <vector>
|
|
|
|
#include "basetypes.h"
|
|
#include "ubytearray.h"
|
|
#include "ustring.h"
|
|
#include "treemodel.h"
|
|
|
|
class FfsBuilder
|
|
{
|
|
public:
|
|
FfsBuilder(const TreeModel * treeModel) : model(treeModel) {}
|
|
~FfsBuilder() {}
|
|
|
|
std::vector<std::pair<UString, UModelIndex> > getMessages() const { return messagesVector; }
|
|
void clearMessages() { messagesVector.clear(); }
|
|
|
|
USTATUS build(const UModelIndex & root, UByteArray & image);
|
|
|
|
private:
|
|
const TreeModel* model;
|
|
std::vector<std::pair<UString, UModelIndex> > messagesVector;
|
|
void msg(const UString & message, const UModelIndex &index = UModelIndex()) {
|
|
messagesVector.push_back(std::pair<UString, UModelIndex>(message, index));
|
|
}
|
|
|
|
USTATUS buildCapsule(const UModelIndex & index, UByteArray & capsule);
|
|
USTATUS buildIntelImage(const UModelIndex & index, UByteArray & intelImage);
|
|
USTATUS buildRawArea(const UModelIndex & index, UByteArray & rawArea);
|
|
USTATUS buildPadding(const UModelIndex & index, UByteArray & padding);
|
|
USTATUS buildVolume(const UModelIndex & index, UByteArray & volume);
|
|
USTATUS buildNonUefiData(const UModelIndex & index, UByteArray & data);
|
|
USTATUS buildFreeSpace(const UModelIndex & index, UByteArray & freeSpace);
|
|
USTATUS buildPadFile(const UModelIndex & index, UByteArray & padFile);
|
|
USTATUS buildFile(const UModelIndex & index, UByteArray & file);
|
|
USTATUS buildSection(const UModelIndex & index, UByteArray & section);
|
|
|
|
// Utility functions
|
|
USTATUS erase(const UModelIndex & index, UByteArray & erased);
|
|
};
|
|
|
|
#endif // FFSBUILDER_H
|