2019-09-11 14:10:46 +03:00
|
|
|
#include "serialise.hh"
|
2019-12-10 10:47:38 +02:00
|
|
|
#include <archive.h>
|
2019-09-11 14:10:46 +03:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-12-10 10:47:38 +02:00
|
|
|
struct TarArchive {
|
2021-04-15 14:51:00 +03:00
|
|
|
struct archive * archive;
|
|
|
|
Source * source;
|
2019-12-10 10:47:38 +02:00
|
|
|
std::vector<unsigned char> buffer;
|
|
|
|
|
2021-04-15 14:51:00 +03:00
|
|
|
void check(int err, const std::string & reason = "failed to extract archive (%s)");
|
2019-12-10 10:47:38 +02:00
|
|
|
|
2021-04-15 14:51:00 +03:00
|
|
|
TarArchive(Source & source, bool raw = false);
|
2019-12-10 10:47:38 +02:00
|
|
|
|
2021-04-15 14:51:00 +03:00
|
|
|
TarArchive(const Path & path);
|
2019-12-10 10:47:38 +02:00
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/// disable copy constructor
|
2021-04-15 14:51:00 +03:00
|
|
|
TarArchive(const TarArchive &) = delete;
|
2019-12-10 10:47:38 +02:00
|
|
|
|
|
|
|
void close();
|
|
|
|
|
|
|
|
~TarArchive();
|
|
|
|
};
|
2019-09-11 16:25:43 +03:00
|
|
|
void unpackTarfile(Source & source, const Path & destDir);
|
|
|
|
|
2019-12-07 17:35:14 +02:00
|
|
|
void unpackTarfile(const Path & tarFile, const Path & destDir);
|
2019-09-11 14:10:46 +03:00
|
|
|
|
|
|
|
}
|