2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2003-06-20 13:40:25 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "types.hh"
|
2006-11-30 21:19:59 +02:00
|
|
|
#include "serialise.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
2003-06-20 13:40:25 +03:00
|
|
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* dumpPath creates a Nix archive of the specified path.
|
|
|
|
*
|
|
|
|
* @param path the file system data to dump. Dumping is recursive so if
|
|
|
|
* this is a directory we dump it and all its children.
|
|
|
|
*
|
|
|
|
* @param [out] sink The serialised archive is fed into this sink.
|
|
|
|
*
|
|
|
|
* @param filter Can be used to skip certain files.
|
|
|
|
*
|
|
|
|
* The format is as follows:
|
|
|
|
*
|
|
|
|
* IF path points to a REGULAR FILE:
|
|
|
|
* dump(path) = attrs(
|
|
|
|
* [ ("type", "regular")
|
|
|
|
* , ("contents", contents(path))
|
|
|
|
* ])
|
|
|
|
*
|
|
|
|
* IF path points to a DIRECTORY:
|
|
|
|
* dump(path) = attrs(
|
|
|
|
* [ ("type", "directory")
|
|
|
|
* , ("entries", concat(map(f, sort(entries(path)))))
|
|
|
|
* ])
|
|
|
|
* where f(fn) = attrs(
|
|
|
|
* [ ("name", fn)
|
|
|
|
* , ("file", dump(path + "/" + fn))
|
|
|
|
* ])
|
|
|
|
*
|
|
|
|
* where:
|
|
|
|
*
|
|
|
|
* attrs(as) = concat(map(attr, as)) + encN(0)
|
|
|
|
* attrs((a, b)) = encS(a) + encS(b)
|
|
|
|
*
|
|
|
|
* encS(s) = encN(len(s)) + s + (padding until next 64-bit boundary)
|
|
|
|
*
|
|
|
|
* encN(n) = 64-bit little-endian encoding of n.
|
|
|
|
*
|
|
|
|
* contents(path) = the contents of a regular file.
|
|
|
|
*
|
|
|
|
* sort(strings) = lexicographic sort by 8-bit value (strcmp).
|
|
|
|
*
|
|
|
|
* entries(path) = the entries of a directory, without `.' and
|
|
|
|
* `..'.
|
|
|
|
*
|
|
|
|
* `+' denotes string concatenation.
|
|
|
|
*/
|
2006-12-12 23:51:02 +02:00
|
|
|
void dumpPath(const Path & path, Sink & sink,
|
2006-12-13 01:05:01 +02:00
|
|
|
PathFilter & filter = defaultPathFilter);
|
2003-06-20 13:40:25 +03:00
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* Same as dumpPath(), but returns the last modified date of the path.
|
|
|
|
*/
|
2022-02-18 17:56:35 +02:00
|
|
|
time_t dumpPathAndGetMtime(const Path & path, Sink & sink,
|
|
|
|
PathFilter & filter = defaultPathFilter);
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* Dump an archive with a single file with these contents.
|
|
|
|
*
|
|
|
|
* @param s Contents of the file.
|
|
|
|
*/
|
2022-02-25 17:00:00 +02:00
|
|
|
void dumpString(std::string_view s, Sink & sink);
|
2016-02-24 17:52:28 +02:00
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* \todo Fix this API, it sucks.
|
|
|
|
*/
|
2008-12-03 19:30:32 +02:00
|
|
|
struct ParseSink
|
|
|
|
{
|
|
|
|
virtual void createDirectory(const Path & path) { };
|
2014-07-16 17:02:05 +03:00
|
|
|
|
2008-12-03 19:30:32 +02:00
|
|
|
virtual void createRegularFile(const Path & path) { };
|
2022-09-22 22:47:43 +03:00
|
|
|
virtual void closeRegularFile() { };
|
2008-12-03 19:30:32 +02:00
|
|
|
virtual void isExecutable() { };
|
2020-07-30 14:10:49 +03:00
|
|
|
virtual void preallocateContents(uint64_t size) { };
|
2020-12-02 15:00:43 +02:00
|
|
|
virtual void receiveContents(std::string_view data) { };
|
2008-12-03 19:30:32 +02:00
|
|
|
|
2022-02-25 17:00:00 +02:00
|
|
|
virtual void createSymlink(const Path & path, const std::string & target) { };
|
2008-12-03 19:30:32 +02:00
|
|
|
};
|
2014-07-16 17:02:05 +03:00
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* If the NAR archive contains a single file at top-level, then save
|
|
|
|
* the contents of the file to `s'. Otherwise barf.
|
|
|
|
*/
|
2020-07-16 08:09:41 +03:00
|
|
|
struct RetrieveRegularNARSink : ParseSink
|
2017-03-01 17:16:04 +02:00
|
|
|
{
|
2020-07-16 08:09:41 +03:00
|
|
|
bool regular = true;
|
|
|
|
Sink & sink;
|
2017-03-01 17:16:04 +02:00
|
|
|
|
2020-07-16 08:09:41 +03:00
|
|
|
RetrieveRegularNARSink(Sink & sink) : sink(sink) { }
|
|
|
|
|
2020-12-02 15:00:43 +02:00
|
|
|
void createDirectory(const Path & path) override
|
2020-07-16 08:09:41 +03:00
|
|
|
{
|
|
|
|
regular = false;
|
|
|
|
}
|
|
|
|
|
2020-12-02 15:00:43 +02:00
|
|
|
void receiveContents(std::string_view data) override
|
2020-07-16 08:09:41 +03:00
|
|
|
{
|
2020-12-02 15:00:43 +02:00
|
|
|
sink(data);
|
2020-07-16 08:09:41 +03:00
|
|
|
}
|
|
|
|
|
2022-02-25 17:00:00 +02:00
|
|
|
void createSymlink(const Path & path, const std::string & target) override
|
2020-07-16 08:09:41 +03:00
|
|
|
{
|
|
|
|
regular = false;
|
|
|
|
}
|
2017-03-01 17:16:04 +02:00
|
|
|
};
|
|
|
|
|
2008-12-03 19:30:32 +02:00
|
|
|
void parseDump(ParseSink & sink, Source & source);
|
|
|
|
|
2006-11-30 21:19:59 +02:00
|
|
|
void restorePath(const Path & path, Source & source);
|
2006-09-05 00:06:23 +03:00
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* Read a NAR from 'source' and write it to 'sink'.
|
|
|
|
*/
|
2018-03-21 23:56:02 +02:00
|
|
|
void copyNAR(Source & source, Sink & sink);
|
|
|
|
|
2018-10-01 18:05:55 +03:00
|
|
|
void copyPath(const Path & from, const Path & to);
|
|
|
|
|
2014-07-16 17:02:05 +03:00
|
|
|
|
2022-12-07 13:58:58 +02:00
|
|
|
inline constexpr std::string_view narVersionMagic1 = "nix-archive-1";
|
|
|
|
|
|
|
|
inline constexpr std::string_view caseHackSuffix = "~nix~case~hack~";
|
2016-02-24 17:52:28 +02:00
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|