aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/tarfile.hh
blob: 4d9141fd458afd9c63ed983def11c018dcbade1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "serialise.hh"
#include <archive.h>

namespace nix {

struct TarArchive {
    struct archive * archive;
    Source * source;
    std::vector<unsigned char> buffer;

    void check(int err, const std::string & reason = "failed to extract archive (%s)");

    TarArchive(Source & source, bool raw = false);

    TarArchive(const Path & path);

    // disable copy constructor
    TarArchive(const TarArchive &) = delete;

    void close();

    ~TarArchive();
};
void unpackTarfile(Source & source, const Path & destDir);

void unpackTarfile(const Path & tarFile, const Path & destDir);

}