2022-06-16 15:42:08 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
|
|
|
#include <hex/helpers/fs.hpp>
|
|
|
|
|
|
|
|
#include <microtar.h>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
class Tar {
|
|
|
|
public:
|
|
|
|
enum class Mode {
|
|
|
|
Read,
|
|
|
|
Write,
|
|
|
|
Create
|
|
|
|
};
|
|
|
|
|
|
|
|
Tar() = default;
|
|
|
|
Tar(const std::fs::path &path, Mode mode);
|
|
|
|
~Tar();
|
2022-08-08 21:23:52 +02:00
|
|
|
Tar(const Tar&) = delete;
|
|
|
|
Tar(Tar&&) noexcept;
|
|
|
|
|
|
|
|
Tar &operator=(Tar &&other) noexcept;
|
|
|
|
|
|
|
|
void close();
|
|
|
|
|
|
|
|
[[nodiscard]] std::vector<u8> read(const std::fs::path &path);
|
|
|
|
[[nodiscard]] std::string readString(const std::fs::path &path);
|
2022-06-16 15:42:08 +02:00
|
|
|
|
|
|
|
void write(const std::fs::path &path, const std::vector<u8> &data);
|
2022-08-08 21:23:52 +02:00
|
|
|
void write(const std::fs::path &path, const std::string &data);
|
2022-06-16 15:42:08 +02:00
|
|
|
|
2022-08-08 21:23:52 +02:00
|
|
|
[[nodiscard]] std::vector<std::fs::path> listEntries(const std::fs::path &basePath = "/");
|
|
|
|
[[nodiscard]] bool contains(const std::fs::path &path);
|
2022-06-16 15:42:08 +02:00
|
|
|
|
|
|
|
void extract(const std::fs::path &path, const std::fs::path &outputPath);
|
|
|
|
void extractAll(const std::fs::path &outputPath);
|
|
|
|
|
2022-08-08 21:23:52 +02:00
|
|
|
[[nodiscard]] bool isValid() const { return this->m_valid; }
|
|
|
|
|
2022-06-16 15:42:08 +02:00
|
|
|
private:
|
|
|
|
mtar_t m_ctx = { };
|
2022-08-08 21:23:52 +02:00
|
|
|
|
|
|
|
bool m_valid = false;
|
2022-06-16 15:42:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|