2005-01-19 18:39:47 +02:00
|
|
|
#ifndef __BUILD_H
|
|
|
|
#define __BUILD_H
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2005-01-19 18:39:47 +02:00
|
|
|
#include "derivations.hh"
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2005-01-20 18:01:07 +02:00
|
|
|
/* Ensure that the output paths of the derivation are valid. If they
|
|
|
|
are already valid, this is a no-op. Otherwise, validity can
|
|
|
|
be reached in two ways. First, if the output paths have
|
|
|
|
substitutes, then those can be used. Second, the output paths can
|
|
|
|
be created by running the builder, after recursively building any
|
|
|
|
sub-derivations. */
|
2005-01-19 17:02:02 +02:00
|
|
|
void buildDerivations(const PathSet & drvPaths);
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2005-01-20 18:01:07 +02:00
|
|
|
/* Ensure that a path is valid. If it is not currently valid, it may
|
|
|
|
be made valid by running a substitute (if defined for the path). */
|
2005-01-19 13:16:11 +02:00
|
|
|
void ensurePath(const Path & storePath);
|
2003-10-16 19:29:57 +03:00
|
|
|
|
2005-02-14 19:35:10 +02:00
|
|
|
|
|
|
|
|
2005-01-19 18:39:47 +02:00
|
|
|
#endif /* !__BUILD_H */
|