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-13 01:05:01 +02:00
|
|
|
struct PathFilter
|
2006-12-12 23:51:02 +02:00
|
|
|
{
|
2006-12-13 01:05:01 +02:00
|
|
|
virtual ~PathFilter() { }
|
2006-12-12 23:51:02 +02:00
|
|
|
virtual bool operator () (const Path & path) { return true; }
|
|
|
|
};
|
|
|
|
|
2006-12-13 01:05:01 +02:00
|
|
|
extern PathFilter defaultPathFilter;
|
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);
|
|
|
|
|
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) { };
|
2008-12-03 19:30:32 +02:00
|
|
|
virtual void receiveContents(unsigned char * data, unsigned int len) { };
|
|
|
|
|
|
|
|
virtual void createSymlink(const Path & path, const string & target) { };
|
|
|
|
};
|
2014-07-16 17:02:05 +03: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
|
|
|
|
2014-07-16 17:02:05 +03:00
|
|
|
|
|
|
|
// FIXME: global variables are bad m'kay.
|
|
|
|
extern bool useCaseHack;
|
|
|
|
|
|
|
|
|
2016-02-24 17:52:28 +02:00
|
|
|
extern const std::string narVersionMagic1;
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|