2017-02-16 03:15:00 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
2017-02-22 14:08:53 +01:00
|
|
|
struct TARHeader
|
|
|
|
|
{
|
2017-02-16 03:15:00 +01:00
|
|
|
char name[100];
|
|
|
|
|
char dontcare[24];
|
|
|
|
|
char size[12];
|
|
|
|
|
char mtime[12];
|
|
|
|
|
char chksum[8];
|
|
|
|
|
char filetype;
|
|
|
|
|
char linkname[100];
|
|
|
|
|
char magic[6];
|
|
|
|
|
char dontcare2[82];
|
|
|
|
|
char prefix[155];
|
2021-07-09 19:28:38 +02:00
|
|
|
char padding[12]; // atime for RPCS3
|
2017-02-22 14:08:53 +01:00
|
|
|
};
|
2017-02-16 03:15:00 +01:00
|
|
|
|
2021-07-09 19:28:38 +02:00
|
|
|
namespace fs
|
|
|
|
|
{
|
|
|
|
|
class file;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-16 03:15:00 +01:00
|
|
|
class tar_object
|
|
|
|
|
{
|
|
|
|
|
const fs::file& m_file;
|
|
|
|
|
|
2021-03-11 00:26:39 +01:00
|
|
|
usz largest_offset = 0; // We store the largest offset so we can continue to scan from there.
|
2021-04-19 13:22:03 +02:00
|
|
|
std::map<std::string, std::pair<u64, TARHeader>> m_map{}; // Maps path to offset of file data and its header
|
2017-02-16 03:15:00 +01:00
|
|
|
|
2021-03-11 00:26:39 +01:00
|
|
|
TARHeader read_header(u64 offset) const;
|
2017-02-16 03:15:00 +01:00
|
|
|
|
|
|
|
|
public:
|
2021-03-11 00:26:39 +01:00
|
|
|
tar_object(const fs::file& file);
|
2017-02-16 03:15:00 +01:00
|
|
|
|
|
|
|
|
std::vector<std::string> get_filenames();
|
|
|
|
|
|
2021-03-11 00:26:39 +01:00
|
|
|
fs::file get_file(const std::string& path);
|
2017-02-16 03:15:00 +01:00
|
|
|
|
2021-07-09 19:28:38 +02:00
|
|
|
using process_func = std::function<bool(const fs::file&, std::string&, std::vector<u8>&&)>;
|
|
|
|
|
|
2021-03-05 17:07:36 +01:00
|
|
|
// Extract all files in archive to destination as VFS
|
|
|
|
|
// Allow to optionally specify explicit mount point (which may be directory meant for extraction)
|
|
|
|
|
bool extract(std::string vfs_mp = {});
|
2021-07-09 19:28:38 +02:00
|
|
|
|
|
|
|
|
static std::vector<u8> save_directory(const std::string& src_dir, std::vector<u8>&& init = std::vector<u8>{}, const process_func& func = {}, std::string append_path = {});
|
2017-02-22 14:08:53 +01:00
|
|
|
};
|
2021-03-05 17:07:36 +01:00
|
|
|
|
2021-07-09 19:28:38 +02:00
|
|
|
bool extract_tar(const std::string& file_path, const std::string& dir_path, fs::file file = {});
|