Include offset in FfsReport

This commit is contained in:
vit9696 2018-05-08 18:44:49 +03:00
parent cf01543f06
commit 9ee937a429
2 changed files with 17 additions and 11 deletions

View file

@ -21,28 +21,28 @@ std::vector<UString> FfsReport::generate()
// Check model pointer
if (!model) {
report.push_back(UString("ERROR: Invalid model pointer provided"));
report.push_back(usprintf("%s: invalid model pointer provided", __FUNCTION__));
return report;
}
// Check root index to be valid
UModelIndex root = model->index(0,0);
if (!root.isValid()) {
report.push_back(UString("ERROR: Model root index is invalid"));
report.push_back(usprintf("%s: model root index is invalid", __FUNCTION__));
return report;
}
// Generate report recursive
report.push_back(UString(" Type | Subtype | Size | CRC32 | Name "));
report.push_back(UString(" Type | Subtype | Offset | Size | CRC32 | Name "));
USTATUS result = generateRecursive(report, root);
if (result) {
report.push_back(UString("ERROR: generateRecursive returned ") + errorCodeToUString(result));
report.push_back(usprintf("%s: generateRecursive returned ", __FUNCTION__) + errorCodeToUString(result));
}
return report;
}
USTATUS FfsReport::generateRecursive(std::vector<UString> & report, UModelIndex index, UINT32 level)
USTATUS FfsReport::generateRecursive(std::vector<UString> & report, const UModelIndex & index, const UINT32 level)
{
if (!index.isValid())
return U_SUCCESS; // Nothing to report for invalid index
@ -53,11 +53,17 @@ USTATUS FfsReport::generateRecursive(std::vector<UString> & report, UModelIndex
// Information on current item
UString text = model->text(index);
UString offset = "| N/A ";
if ((!model->compressed(index)) || (index.parent().isValid() && !model->compressed(index.parent()))) {
offset = usprintf("| %08X ", model->offset(index));
}
report.push_back(
UString(" ") + itemTypeToUString(model->type(index)).leftJustified(16)
+ UString("| ") + itemSubtypeToUString(model->type(index), model->subtype(index)).leftJustified(22)
+ offset
+ usprintf("| %08X | %08X | ", data.size(), crc)
+ urepeated('-', level) + UString(" ") + model->name(index) + (text.isEmpty() ? UString("") : UString(" | ") + text)
+ urepeated('-', level) + UString(" ") + model->name(index) + (text.isEmpty() ? UString() : UString(" | ") + text)
);
// Information on child items

View file

@ -34,7 +34,7 @@ public:
private:
TreeModel* model;
USTATUS generateRecursive(std::vector<UString> & report, UModelIndex index, UINT32 level = 0);
USTATUS generateRecursive(std::vector<UString> & report, const UModelIndex & index, const UINT32 level = 0);
};
#endif // FFSREPORT_H