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
|
|
|
|
|
|
|
|
|
|
|
/* dumpPath creates a Nix archive of the specified path. 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:
|
|
|
|
|
2014-07-16 17:02:05 +03:00
|
|
|
attrs(as) = concat(map(attr, as)) + encN(0)
|
2003-06-20 13:40:25 +03:00
|
|
|
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
|
|
|
|
2016-02-24 17:52:28 +02:00
|
|
|
void dumpString(const std::string & s, Sink & sink);
|
|
|
|
|
2016-02-25 18:43:19 +02:00
|
|
|
/* FIXME: 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) { };
|
|
|
|
virtual void isExecutable() { };
|
2009-03-22 19:36:43 +02:00
|
|
|
virtual void preallocateContents(unsigned long long size) { };
|
2020-07-30 14:00:30 +03:00
|
|
|
virtual void receiveContents(unsigned char * data, size_t len) { };
|
2008-12-03 19:30:32 +02:00
|
|
|
|
|
|
|
virtual void createSymlink(const Path & path, const string & target) { };
|
|
|
|
};
|
2014-07-16 17:02:05 +03:00
|
|
|
|
2020-07-16 08:09:41 +03:00
|
|
|
/* If the NAR archive contains a single file at top-level, then save
|
|
|
|
the contents of the file to `s'. Otherwise barf. */
|
|
|
|
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) { }
|
|
|
|
|
|
|
|
void createDirectory(const Path & path)
|
|
|
|
{
|
|
|
|
regular = false;
|
|
|
|
}
|
|
|
|
|
2020-07-30 14:00:30 +03:00
|
|
|
void receiveContents(unsigned char * data, size_t len)
|
2020-07-16 08:09:41 +03:00
|
|
|
{
|
|
|
|
sink(data, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void createSymlink(const Path & path, const string & target)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2018-03-21 23:56:02 +02:00
|
|
|
/* Read a NAR from 'source' and write it to 'sink'. */
|
|
|
|
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
|
|
|
|
2016-02-24 17:52:28 +02:00
|
|
|
extern const std::string narVersionMagic1;
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|