2003-07-20 19:29:38 +00:00
|
|
|
#ifndef __NORMALISE_H
|
|
|
|
#define __NORMALISE_H
|
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
#include "expr.hh"
|
2003-07-20 19:29:38 +00:00
|
|
|
|
|
|
|
|
2003-10-08 15:06:59 +00:00
|
|
|
/* Normalise a Nix expression. That is, if the expression is a
|
|
|
|
derivation, a path containing an equivalent closure expression is
|
|
|
|
returned. This requires that the derivation is performed, unless a
|
|
|
|
successor is known. */
|
|
|
|
Path normaliseNixExpr(const Path & nePath, PathSet pending = PathSet());
|
2003-07-20 19:29:38 +00:00
|
|
|
|
2003-10-08 15:06:59 +00:00
|
|
|
/* Realise a closure expression in the file system.
|
|
|
|
|
|
|
|
The pending paths are those that are already being realised. This
|
|
|
|
prevents infinite recursion for paths realised through a substitute
|
|
|
|
(since when we build the substitute, we would first try to realise
|
|
|
|
its output paths through substitutes... kaboom!). */
|
|
|
|
void realiseClosure(const Path & nePath, PathSet pending = PathSet());
|
2003-07-20 19:29:38 +00:00
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
/* Get the list of root (output) paths of the given Nix expression. */
|
2003-10-08 15:06:59 +00:00
|
|
|
PathSet nixExprRoots(const Path & nePath);
|
2003-07-20 19:29:38 +00:00
|
|
|
|
2003-07-29 14:28:17 +00:00
|
|
|
/* Get the list of paths that are required to realise the given
|
|
|
|
expression. For a derive expression, this is the union of
|
2003-10-07 12:27:49 +00:00
|
|
|
requisites of the inputs; for a closure expression, it is the path of
|
|
|
|
each element in the closure. If `includeExprs' is true, include the
|
2003-07-29 14:28:17 +00:00
|
|
|
paths of the Nix expressions themselves. If `includeSuccessors' is
|
|
|
|
true, include the requisites of successors. */
|
2003-10-08 15:06:59 +00:00
|
|
|
PathSet nixExprRequisites(const Path & nePath,
|
2003-07-29 14:28:17 +00:00
|
|
|
bool includeExprs, bool includeSuccessors);
|
2003-07-21 14:46:01 +00:00
|
|
|
|
2003-10-08 15:06:59 +00:00
|
|
|
/* Return the list of the paths of all known Nix expressions whose
|
|
|
|
output paths are completely contained in the set `outputs'. */
|
|
|
|
PathSet findGenerators(const PathSet & outputs);
|
2003-07-20 19:29:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__NORMALISE_H */
|