2003-10-30 18:48:26 +02:00
|
|
|
#ifndef __EVAL_H
|
|
|
|
#define __EVAL_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2003-11-18 13:22:29 +02:00
|
|
|
#include "aterm.hh"
|
|
|
|
#include "hash.hh"
|
|
|
|
#include "fixexpr.hh"
|
2003-10-30 18:48:26 +02:00
|
|
|
|
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
typedef map<Path, PathSet> DrvPaths;
|
|
|
|
typedef map<Path, Hash> DrvHashes;
|
2003-10-30 18:48:26 +02:00
|
|
|
|
|
|
|
struct EvalState
|
|
|
|
{
|
2003-11-03 22:30:40 +02:00
|
|
|
ATermMap normalForms;
|
2003-10-31 19:09:31 +02:00
|
|
|
DrvPaths drvPaths;
|
|
|
|
DrvHashes drvHashes; /* normalised derivation hashes */
|
2003-10-30 18:48:26 +02:00
|
|
|
Expr blackHole;
|
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
unsigned int nrEvaluated;
|
|
|
|
unsigned int nrCached;
|
|
|
|
|
2003-10-30 18:48:26 +02:00
|
|
|
EvalState();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Evaluate an expression to normal form. */
|
|
|
|
Expr evalExpr(EvalState & state, Expr e);
|
|
|
|
|
|
|
|
/* Evaluate an expression read from the given file to normal form. */
|
|
|
|
Expr evalFile(EvalState & state, const Path & path);
|
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
/* Specific results. */
|
|
|
|
string evalString(EvalState & state, Expr e);
|
|
|
|
Path evalPath(EvalState & state, Expr e);
|
|
|
|
|
|
|
|
/* Print statistics. */
|
|
|
|
void printEvalStats(EvalState & state);
|
|
|
|
|
2003-10-30 18:48:26 +02:00
|
|
|
|
|
|
|
#endif /* !__EVAL_H */
|