2003-10-30 16:48:26 +00:00
|
|
|
#ifndef __EVAL_H
|
|
|
|
#define __EVAL_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2003-11-18 11:22:29 +00:00
|
|
|
#include "aterm.hh"
|
|
|
|
#include "hash.hh"
|
2003-11-18 12:06:07 +00:00
|
|
|
#include "nixexpr.hh"
|
2003-10-30 16:48:26 +00:00
|
|
|
|
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
typedef map<Path, PathSet> DrvPaths;
|
|
|
|
typedef map<Path, Hash> DrvHashes;
|
2003-10-30 16:48:26 +00:00
|
|
|
|
2004-02-04 16:03:29 +00:00
|
|
|
struct EvalState;
|
|
|
|
typedef Expr (* PrimOp0) (EvalState &);
|
|
|
|
typedef Expr (* PrimOp1) (EvalState &, Expr arg);
|
|
|
|
|
|
|
|
|
2003-10-30 16:48:26 +00:00
|
|
|
struct EvalState
|
|
|
|
{
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap normalForms;
|
2004-02-04 16:03:29 +00:00
|
|
|
ATermMap primOps0; /* nullary primops */
|
|
|
|
ATermMap primOps1; /* unary primops */
|
|
|
|
ATermMap primOpsAll;
|
2003-10-31 17:09:31 +00:00
|
|
|
DrvPaths drvPaths;
|
|
|
|
DrvHashes drvHashes; /* normalised derivation hashes */
|
2003-10-30 16:48:26 +00:00
|
|
|
Expr blackHole;
|
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
unsigned int nrEvaluated;
|
|
|
|
unsigned int nrCached;
|
|
|
|
|
2003-10-30 16:48:26 +00:00
|
|
|
EvalState();
|
2004-02-04 16:03:29 +00:00
|
|
|
|
|
|
|
void addPrimOp0(const string & name, PrimOp0 primOp);
|
|
|
|
void addPrimOp1(const string & name, PrimOp1 primOp);
|
2003-10-30 16:48:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* 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 17:09:31 +00:00
|
|
|
/* Specific results. */
|
|
|
|
string evalString(EvalState & state, Expr e);
|
|
|
|
Path evalPath(EvalState & state, Expr e);
|
|
|
|
|
|
|
|
/* Print statistics. */
|
|
|
|
void printEvalStats(EvalState & state);
|
|
|
|
|
2003-10-30 16:48:26 +00:00
|
|
|
|
|
|
|
#endif /* !__EVAL_H */
|