nstool/lib/libnx/include/nx/PfsHeader.h

107 lines
2 KiB
C
Raw Normal View History

2017-07-18 14:17:32 +00:00
#pragma once
#include <string>
#include <fnd/types.h>
#include <fnd/MemoryBlob.h>
2017-07-18 14:17:32 +00:00
#include <fnd/List.h>
#include <fnd/ISerialiseableBinary.h>
2017-07-18 14:17:32 +00:00
namespace nx
{
class PfsHeader :
public fnd::ISerialiseableBinary
2017-07-18 14:17:32 +00:00
{
public:
struct sFile
{
std::string name;
size_t offset;
size_t size;
sFile& operator=(const sFile& other)
{
name = other.name;
offset = other.offset;
size = other.size;
return *this;
}
bool operator==(const sFile& other) const
{
return (name == other.name) \
&& (offset == other.offset) \
&& (size == other.size);
}
bool operator!=(const sFile& other) const
{
return !operator==(other);
}
bool operator==(const std::string& other) const
{
return (name == other);
}
bool operator!=(const std::string& other) const
{
return !operator==(other);
}
};
PfsHeader();
PfsHeader(const PfsHeader& other);
2018-03-22 05:26:22 +00:00
PfsHeader(const byte_t* bytes, size_t len);
2017-07-18 14:17:32 +00:00
bool operator==(const PfsHeader& other) const;
bool operator!=(const PfsHeader& other) const;
void operator=(const PfsHeader& other);
// to be used after export
2018-03-22 05:26:22 +00:00
const byte_t* getBytes() const;
2017-07-18 14:17:32 +00:00
size_t getSize() const;
// export/import binary
void exportBinary();
2018-03-22 05:26:22 +00:00
void importBinary(const byte_t* bytes, size_t len);
2017-07-18 14:17:32 +00:00
// variables
void clear();
const fnd::List<sFile>& getFileList() const;
void addFile(const std::string& name, size_t size);
private:
const std::string kModuleName = "PFS_HEADER";
const std::string kPfsStructSig = "PFS0";
static const size_t kPfsAlign = 0x40;
#pragma pack (push, 1)
struct sPfsFile
{
2018-03-22 05:26:22 +00:00
le_uint64_t data_offset;
le_uint64_t size;
le_uint64_t name_offset;
2017-07-18 14:17:32 +00:00
};
struct sPfsHeader
{
2018-03-22 05:26:22 +00:00
char signature[4];
le_uint32_t file_num;
le_uint64_t name_table_size;
2017-07-18 14:17:32 +00:00
};
#pragma pack (pop)
// binary blob
fnd::MemoryBlob mBinaryBlob;
// variables
fnd::List<sFile> mFileList;
void calculateOffsets(size_t data_offset);
bool isEqual(const PfsHeader& other) const;
void copyFrom(const PfsHeader& other);
};
}