2006-09-04 21:06:23 +00:00
|
|
|
#include "misc.hh"
|
2006-11-30 17:43:04 +00:00
|
|
|
#include "store-api.hh"
|
2008-08-02 12:54:35 +00:00
|
|
|
#include "local-store.hh"
|
2006-09-04 21:06:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
2004-06-18 18:09:32 +00:00
|
|
|
|
|
|
|
|
2005-01-19 11:16:11 +00:00
|
|
|
Derivation derivationFromPath(const Path & drvPath)
|
2004-06-18 18:09:32 +00:00
|
|
|
{
|
2005-01-19 11:16:11 +00:00
|
|
|
assertStorePath(drvPath);
|
2006-11-30 18:02:04 +00:00
|
|
|
store->ensurePath(drvPath);
|
2010-04-19 13:46:58 +00:00
|
|
|
return parseDerivation(readFile(drvPath));
|
2004-06-18 18:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 11:16:11 +00:00
|
|
|
void computeFSClosure(const Path & storePath,
|
2010-01-25 17:18:44 +00:00
|
|
|
PathSet & paths, bool flipDirection, bool includeOutputs)
|
2005-01-19 11:16:11 +00:00
|
|
|
{
|
|
|
|
if (paths.find(storePath) != paths.end()) return;
|
|
|
|
paths.insert(storePath);
|
|
|
|
|
|
|
|
PathSet references;
|
2005-01-25 11:18:03 +00:00
|
|
|
if (flipDirection)
|
2006-11-30 17:43:04 +00:00
|
|
|
store->queryReferrers(storePath, references);
|
2005-01-25 11:18:03 +00:00
|
|
|
else
|
2006-11-30 17:43:04 +00:00
|
|
|
store->queryReferences(storePath, references);
|
2005-01-19 11:16:11 +00:00
|
|
|
|
2010-01-25 17:18:44 +00:00
|
|
|
if (includeOutputs && isDerivation(storePath)) {
|
2010-02-22 12:44:36 +00:00
|
|
|
PathSet outputs = store->queryDerivationOutputs(storePath);
|
|
|
|
foreach (PathSet::iterator, i, outputs)
|
|
|
|
if (store->isValidPath(*i))
|
|
|
|
computeFSClosure(*i, paths, flipDirection, true);
|
2010-01-25 17:18:44 +00:00
|
|
|
}
|
|
|
|
|
2009-04-21 11:52:16 +00:00
|
|
|
foreach (PathSet::iterator, i, references)
|
2010-01-25 17:18:44 +00:00
|
|
|
computeFSClosure(*i, paths, flipDirection, includeOutputs);
|
2005-01-19 11:16:11 +00:00
|
|
|
}
|
2005-02-14 17:35:10 +00:00
|
|
|
|
|
|
|
|
2006-03-06 11:21:15 +00:00
|
|
|
Path findOutput(const Derivation & drv, string id)
|
2005-02-14 17:35:10 +00:00
|
|
|
{
|
2009-04-21 11:52:16 +00:00
|
|
|
foreach (DerivationOutputs::const_iterator, i, drv.outputs)
|
2005-02-14 17:35:10 +00:00
|
|
|
if (i->first == id) return i->second.path;
|
|
|
|
throw Error(format("derivation has no output `%1%'") % id);
|
|
|
|
}
|
2006-03-06 11:21:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
void queryMissing(const PathSet & targets,
|
2008-08-04 12:29:04 +00:00
|
|
|
PathSet & willBuild, PathSet & willSubstitute, PathSet & unknown,
|
|
|
|
unsigned long long & downloadSize)
|
2006-03-06 11:21:15 +00:00
|
|
|
{
|
2008-08-04 12:29:04 +00:00
|
|
|
downloadSize = 0;
|
|
|
|
|
2006-03-06 11:21:15 +00:00
|
|
|
PathSet todo(targets.begin(), targets.end()), done;
|
|
|
|
|
|
|
|
while (!todo.empty()) {
|
|
|
|
Path p = *(todo.begin());
|
|
|
|
todo.erase(p);
|
|
|
|
if (done.find(p) != done.end()) continue;
|
|
|
|
done.insert(p);
|
|
|
|
|
|
|
|
if (isDerivation(p)) {
|
2008-08-04 11:44:50 +00:00
|
|
|
if (!store->isValidPath(p)) {
|
|
|
|
unknown.insert(p);
|
|
|
|
continue;
|
|
|
|
}
|
2006-03-06 11:21:15 +00:00
|
|
|
Derivation drv = derivationFromPath(p);
|
|
|
|
|
|
|
|
bool mustBuild = false;
|
2009-04-21 11:52:16 +00:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
2007-08-12 00:29:28 +00:00
|
|
|
if (!store->isValidPath(i->second.path) && !store->hasSubstitutes(i->second.path))
|
2006-03-06 11:21:15 +00:00
|
|
|
mustBuild = true;
|
|
|
|
|
|
|
|
if (mustBuild) {
|
|
|
|
willBuild.insert(p);
|
|
|
|
todo.insert(drv.inputSrcs.begin(), drv.inputSrcs.end());
|
2009-04-21 11:52:16 +00:00
|
|
|
foreach (DerivationInputs::iterator, i, drv.inputDrvs)
|
2006-03-06 11:21:15 +00:00
|
|
|
todo.insert(i->first);
|
|
|
|
} else
|
2009-04-21 11:52:16 +00:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
2006-03-06 11:21:15 +00:00
|
|
|
todo.insert(i->second.path);
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2006-11-30 17:43:04 +00:00
|
|
|
if (store->isValidPath(p)) continue;
|
2008-08-02 12:54:35 +00:00
|
|
|
SubstitutablePathInfo info;
|
2008-08-04 11:44:50 +00:00
|
|
|
if (store->querySubstitutablePathInfo(p, info)) {
|
2006-03-06 11:21:15 +00:00
|
|
|
willSubstitute.insert(p);
|
2008-08-04 12:29:04 +00:00
|
|
|
downloadSize += info.downloadSize;
|
2008-08-02 12:54:35 +00:00
|
|
|
todo.insert(info.references.begin(), info.references.end());
|
2008-08-04 11:44:50 +00:00
|
|
|
} else
|
|
|
|
unknown.insert(p);
|
2006-03-06 11:21:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-09-04 21:06:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|