2003-07-20 19:29:38 +00:00
|
|
|
#ifndef __NORMALISE_H
|
|
|
|
#define __NORMALISE_H
|
|
|
|
|
|
|
|
#include "fstate.hh"
|
|
|
|
|
|
|
|
|
|
|
|
/* Normalise an fstate-expression, that is, return an equivalent
|
2003-07-29 09:45:03 +00:00
|
|
|
slice. (For the meaning of `pending', see expandId()). */
|
|
|
|
FSId normaliseFState(FSId id, FSIdSet pending = FSIdSet());
|
2003-07-20 19:29:38 +00:00
|
|
|
|
|
|
|
/* Realise a Slice in the file system. */
|
2003-07-29 09:45:03 +00:00
|
|
|
void realiseSlice(const FSId & id, FSIdSet pending = FSIdSet());
|
2003-07-20 19:29:38 +00:00
|
|
|
|
|
|
|
/* Get the list of root (output) paths of the given
|
|
|
|
fstate-expression. */
|
2003-07-29 10:43:12 +00:00
|
|
|
Strings fstatePaths(const FSId & id);
|
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
|
|
|
|
requisites of the inputs; for a slice expression, it is the path of
|
|
|
|
each element in the slice. If `includeExprs' is true, include the
|
|
|
|
paths of the Nix expressions themselves. If `includeSuccessors' is
|
|
|
|
true, include the requisites of successors. */
|
|
|
|
Strings fstateRequisites(const FSId & id,
|
|
|
|
bool includeExprs, bool includeSuccessors);
|
2003-07-21 14:46:01 +00:00
|
|
|
|
|
|
|
/* Return the list of the ids of all known fstate-expressions whose
|
|
|
|
output ids are completely contained in `ids'. */
|
|
|
|
FSIds findGenerators(const FSIds & ids);
|
2003-07-20 19:29:38 +00:00
|
|
|
|
|
|
|
/* Register a successor. */
|
|
|
|
void registerSuccessor(const FSId & id1, const FSId & id2);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__NORMALISE_H */
|