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
|
|
|
|
|
|
|
|
2011-08-31 21:11:50 +00:00
|
|
|
Derivation derivationFromPath(StoreAPI & store, const Path & drvPath)
|
2004-06-18 18:09:32 +00:00
|
|
|
{
|
2005-01-19 11:16:11 +00:00
|
|
|
assertStorePath(drvPath);
|
2011-08-31 21:11:50 +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
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-31 21:11:50 +00:00
|
|
|
void computeFSClosure(StoreAPI & store, 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)
|
2011-08-31 21:11:50 +00:00
|
|
|
store.queryReferrers(storePath, references);
|
2005-01-25 11:18:03 +00:00
|
|
|
else
|
2011-08-31 21:11:50 +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)) {
|
2011-08-31 21:11:50 +00:00
|
|
|
PathSet outputs = store.queryDerivationOutputs(storePath);
|
2010-02-22 12:44:36 +00:00
|
|
|
foreach (PathSet::iterator, i, outputs)
|
2011-08-31 21:11:50 +00:00
|
|
|
if (store.isValidPath(*i))
|
|
|
|
computeFSClosure(store, *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)
|
2011-08-31 21:11:50 +00:00
|
|
|
computeFSClosure(store, *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
|
|
|
|
|
|
|
|
2011-08-31 21:11:50 +00:00
|
|
|
void queryMissing(StoreAPI & store, const PathSet & targets,
|
2008-08-04 12:29:04 +00:00
|
|
|
PathSet & willBuild, PathSet & willSubstitute, PathSet & unknown,
|
2010-11-17 14:31:42 +00:00
|
|
|
unsigned long long & downloadSize, unsigned long long & narSize)
|
2006-03-06 11:21:15 +00:00
|
|
|
{
|
2010-11-17 14:31:42 +00:00
|
|
|
downloadSize = narSize = 0;
|
2008-08-04 12:29:04 +00:00
|
|
|
|
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)) {
|
2011-08-31 21:11:50 +00:00
|
|
|
if (!store.isValidPath(p)) {
|
2008-08-04 11:44:50 +00:00
|
|
|
unknown.insert(p);
|
|
|
|
continue;
|
|
|
|
}
|
2011-08-31 21:11:50 +00:00
|
|
|
Derivation drv = derivationFromPath(store, p);
|
2006-03-06 11:21:15 +00:00
|
|
|
|
|
|
|
bool mustBuild = false;
|
2009-04-21 11:52:16 +00:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
2011-08-31 21:11:50 +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 {
|
2011-08-31 21:11:50 +00:00
|
|
|
if (store.isValidPath(p)) continue;
|
2008-08-02 12:54:35 +00:00
|
|
|
SubstitutablePathInfo info;
|
2011-08-31 21:11: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;
|
2010-11-17 14:31:42 +00:00
|
|
|
narSize += info.narSize;
|
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
|
|
|
|
|
|
|
|
|
|
|
}
|