hydra-eval-jobs: Don't keep track of used inputs

We no longer store this in the database, so it's not necessary for
hydra-eval-jobs to do this.
This commit is contained in:
Eelco Dolstra 2014-09-25 13:38:43 +02:00
parent 6284fd540d
commit 01f4037d6f
2 changed files with 12 additions and 40 deletions

View file

@ -19,19 +19,16 @@ using namespace nix;
static Path gcRootsDir; static Path gcRootsDir;
typedef std::map<Symbol, std::pair<unsigned int, Value *> > ArgsUsed;
typedef std::list<Value *, traceable_allocator<Value *> > ValueList; typedef std::list<Value *, traceable_allocator<Value *> > ValueList;
typedef std::map<Symbol, ValueList> AutoArgs; typedef std::map<Symbol, ValueList> AutoArgs;
static void findJobs(EvalState & state, XMLWriter & doc, static void findJobs(EvalState & state, XMLWriter & doc,
const ArgsUsed & argsUsed, const AutoArgs & argsLeft, const AutoArgs & argsLeft, Value & v, const string & attrPath);
Value & v, const string & attrPath);
static void tryJobAlts(EvalState & state, XMLWriter & doc, static void tryJobAlts(EvalState & state, XMLWriter & doc,
const ArgsUsed & argsUsed, const AutoArgs & argsLeft, const AutoArgs & argsLeft, const string & attrPath, Value & fun,
const string & attrPath, Value & fun,
Formals::Formals_::iterator cur, Formals::Formals_::iterator cur,
Formals::Formals_::iterator last, Formals::Formals_::iterator last,
Bindings & actualArgs) // FIXME: should be const Bindings & actualArgs) // FIXME: should be const
@ -41,7 +38,7 @@ static void tryJobAlts(EvalState & state, XMLWriter & doc,
state.mkAttrs(*arg, 0); state.mkAttrs(*arg, 0);
arg->attrs = &actualArgs; arg->attrs = &actualArgs;
mkApp(v, fun, *arg); mkApp(v, fun, *arg);
findJobs(state, doc, argsUsed, argsLeft, v, attrPath); findJobs(state, doc, argsLeft, v, attrPath);
return; return;
} }
@ -53,7 +50,7 @@ static void tryJobAlts(EvalState & state, XMLWriter & doc,
if (!cur->def) if (!cur->def)
throw TypeError(format("job `%1%' requires an argument named `%2%'") throw TypeError(format("job `%1%' requires an argument named `%2%'")
% attrPath % cur->name); % attrPath % cur->name);
tryJobAlts(state, doc, argsUsed, argsLeft, attrPath, fun, next, last, actualArgs); tryJobAlts(state, doc, argsLeft, attrPath, fun, next, last, actualArgs);
return; return;
} }
@ -62,30 +59,16 @@ static void tryJobAlts(EvalState & state, XMLWriter & doc,
Bindings & actualArgs2(*state.allocBindings(actualArgs.size() + 1)); // !!! inefficient Bindings & actualArgs2(*state.allocBindings(actualArgs.size() + 1)); // !!! inefficient
for (auto & i: actualArgs) for (auto & i: actualArgs)
actualArgs2.push_back(i); actualArgs2.push_back(i);
ArgsUsed argsUsed2(argsUsed);
AutoArgs argsLeft2(argsLeft); AutoArgs argsLeft2(argsLeft);
actualArgs2.push_back(Attr(cur->name, *i)); actualArgs2.push_back(Attr(cur->name, *i));
actualArgs2.sort(); // !!! inefficient actualArgs2.sort(); // !!! inefficient
argsUsed2[cur->name] = std::pair<unsigned int, Value *>(n, *i);
argsLeft2.erase(cur->name); argsLeft2.erase(cur->name);
tryJobAlts(state, doc, argsUsed2, argsLeft2, attrPath, fun, next, last, actualArgs2); tryJobAlts(state, doc, argsLeft2, attrPath, fun, next, last, actualArgs2);
++n; ++n;
} }
} }
static void showArgsUsed(XMLWriter & doc, const ArgsUsed & argsUsed)
{
foreach (ArgsUsed::const_iterator, i, argsUsed) {
XMLAttrs xmlAttrs2;
xmlAttrs2["name"] = i->first;
xmlAttrs2["value"] = (format("%1%") % *i->second.second).str();
xmlAttrs2["altnr"] = int2String(i->second.first);
doc.writeEmptyElement("arg", xmlAttrs2);
}
}
static string queryMetaStrings(EvalState & state, DrvInfo & drv, const string & name) static string queryMetaStrings(EvalState & state, DrvInfo & drv, const string & name)
{ {
Value * v = drv.queryMeta(name); Value * v = drv.queryMeta(name);
@ -111,8 +94,7 @@ static string queryMetaStrings(EvalState & state, DrvInfo & drv, const string &
static void findJobsWrapped(EvalState & state, XMLWriter & doc, static void findJobsWrapped(EvalState & state, XMLWriter & doc,
const ArgsUsed & argsUsed, const AutoArgs & argsLeft, const AutoArgs & argsLeft, Value & v, const string & attrPath)
Value & v, const string & attrPath)
{ {
debug(format("at path `%1%'") % attrPath); debug(format("at path `%1%'") % attrPath);
@ -182,14 +164,12 @@ static void findJobsWrapped(EvalState & state, XMLWriter & doc,
attrs2["path"] = j->second; attrs2["path"] = j->second;
doc.writeEmptyElement("output", attrs2); doc.writeEmptyElement("output", attrs2);
} }
showArgsUsed(doc, argsUsed);
} }
else { else {
if (!state.isDerivation(v)) { if (!state.isDerivation(v)) {
foreach (Bindings::iterator, i, *v.attrs) foreach (Bindings::iterator, i, *v.attrs)
findJobs(state, doc, argsUsed, argsLeft, *i->value, findJobs(state, doc, argsLeft, *i->value,
(attrPath.empty() ? "" : attrPath + ".") + (string) i->name); (attrPath.empty() ? "" : attrPath + ".") + (string) i->name);
} }
} }
@ -197,7 +177,7 @@ static void findJobsWrapped(EvalState & state, XMLWriter & doc,
else if (v.type == tLambda && v.lambda.fun->matchAttrs) { else if (v.type == tLambda && v.lambda.fun->matchAttrs) {
Bindings & tmp(*state.allocBindings(0)); Bindings & tmp(*state.allocBindings(0));
tryJobAlts(state, doc, argsUsed, argsLeft, attrPath, v, tryJobAlts(state, doc, argsLeft, attrPath, v,
v.lambda.fun->formals->formals.begin(), v.lambda.fun->formals->formals.begin(),
v.lambda.fun->formals->formals.end(), v.lambda.fun->formals->formals.end(),
tmp); tmp);
@ -213,17 +193,15 @@ static void findJobsWrapped(EvalState & state, XMLWriter & doc,
static void findJobs(EvalState & state, XMLWriter & doc, static void findJobs(EvalState & state, XMLWriter & doc,
const ArgsUsed & argsUsed, const AutoArgs & argsLeft, const AutoArgs & argsLeft, Value & v, const string & attrPath)
Value & v, const string & attrPath)
{ {
try { try {
findJobsWrapped(state, doc, argsUsed, argsLeft, v, attrPath); findJobsWrapped(state, doc, argsLeft, v, attrPath);
} catch (EvalError & e) { } catch (EvalError & e) {
XMLAttrs xmlAttrs; XMLAttrs xmlAttrs;
xmlAttrs["location"] = attrPath; xmlAttrs["location"] = attrPath;
xmlAttrs["msg"] = e.msg(); xmlAttrs["msg"] = e.msg();
XMLOpenElement _(doc, "error", xmlAttrs); XMLOpenElement _(doc, "error", xmlAttrs);
showArgsUsed(doc, argsUsed);
} }
} }
@ -290,7 +268,7 @@ int main(int argc, char * * argv)
XMLWriter doc(true, std::cout); XMLWriter doc(true, std::cout);
XMLOpenElement root(doc, "jobs"); XMLOpenElement root(doc, "jobs");
findJobs(state, doc, ArgsUsed(), autoArgs, v, ""); findJobs(state, doc, autoArgs, v, "");
state.printStats(); state.printStats();
}); });

View file

@ -363,13 +363,7 @@ sub evalJobs {
next; next;
} }
$jobNames{$job->{jobName}} = 1; $jobNames{$job->{jobName}} = 1;
push @filteredJobs, $job;
my $validJob = 1;
foreach my $arg (@{$job->{arg}}) {
my $input = $inputInfo->{$arg->{name}}->[$arg->{altnr}];
$validJob = 0 if $input->{type} eq "sysbuild" && $input->{system} ne $job->{system};
}
push(@filteredJobs, $job) if $validJob;
} }
$jobs->{job} = \@filteredJobs; $jobs->{job} = \@filteredJobs;