about summary refs log tree commit diff
path: root/src/normalise.hh
blob: 9b827468195cd1f440a490ed7a3d55b89e6eb47a (plain) (blame)
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
29
30
31
32
33
34
35
#ifndef __NORMALISE_H
#define __NORMALISE_H

#include "expr.hh"


/* Normalise a Nix expression, that is, return an equivalent
   closure.  (For the meaning of `pending', see expandId()). */
FSId normaliseNixExpr(FSId id, FSIdSet pending = FSIdSet());

/* Realise a Closure in the file system. */
void realiseClosure(const FSId & id, FSIdSet pending = FSIdSet());

/* Get the list of root (output) paths of the given Nix expression. */
Strings nixExprPaths(const FSId & id);

/* Get the list of paths that are required to realise the given
   expression.  For a derive expression, this is the union of
   requisites of the inputs; for a closure expression, it is the path of
   each element in the closure.  If `includeExprs' is true, include the
   paths of the Nix expressions themselves.  If `includeSuccessors' is
   true, include the requisites of successors. */
Strings nixExprRequisites(const FSId & id,
    bool includeExprs, bool includeSuccessors);

/* Return the list of the ids of all known Nix expressions whose
   output ids are completely contained in `ids'. */
FSIds findGenerators(const FSIds & ids);

/* Register a successor. */
void registerSuccessor(const Transaction & txn,
    const FSId & id1, const FSId & id2);


#endif /* !__NORMALISE_H */