2003-10-30 17:48:26 +01:00
|
|
|
#ifndef __EVAL_H
|
|
|
|
#define __EVAL_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2003-11-18 12:22:29 +01:00
|
|
|
#include "aterm.hh"
|
|
|
|
#include "hash.hh"
|
2003-11-18 13:06:07 +01:00
|
|
|
#include "nixexpr.hh"
|
2003-10-30 17:48:26 +01:00
|
|
|
|
|
|
|
|
2004-10-25 16:38:23 +02:00
|
|
|
typedef map<Path, PathSet> DrvRoots;
|
2003-10-31 18:09:31 +01:00
|
|
|
typedef map<Path, Hash> DrvHashes;
|
2003-10-30 17:48:26 +01:00
|
|
|
|
2006-03-09 16:09:18 +01:00
|
|
|
/* Cache for calls to addToStore(); maps source paths to the store
|
|
|
|
paths. */
|
|
|
|
typedef map<Path, Path> SrcToStore;
|
|
|
|
|
2004-02-04 17:03:29 +01:00
|
|
|
struct EvalState;
|
2004-08-04 12:59:20 +02:00
|
|
|
|
|
|
|
/* Note: using a ATermVector is safe here, since when we call a primop
|
|
|
|
we also have an ATermList on the stack. */
|
|
|
|
typedef Expr (* PrimOp) (EvalState &, const ATermVector & args);
|
2004-02-04 17:03:29 +01:00
|
|
|
|
|
|
|
|
2003-10-30 17:48:26 +01:00
|
|
|
struct EvalState
|
|
|
|
{
|
2003-11-03 21:30:40 +01:00
|
|
|
ATermMap normalForms;
|
2004-08-04 12:59:20 +02:00
|
|
|
ATermMap primOps;
|
2004-10-25 16:38:23 +02:00
|
|
|
DrvRoots drvRoots;
|
2003-10-31 18:09:31 +01:00
|
|
|
DrvHashes drvHashes; /* normalised derivation hashes */
|
2006-03-09 16:09:18 +01:00
|
|
|
SrcToStore srcToStore;
|
2003-10-30 17:48:26 +01:00
|
|
|
Expr blackHole;
|
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
unsigned int nrEvaluated;
|
|
|
|
unsigned int nrCached;
|
|
|
|
|
2003-10-30 17:48:26 +01:00
|
|
|
EvalState();
|
2004-02-04 17:03:29 +01:00
|
|
|
|
2004-08-04 12:59:20 +02:00
|
|
|
void addPrimOps();
|
|
|
|
void addPrimOp(const string & name,
|
|
|
|
unsigned int arity, PrimOp primOp);
|
2003-10-30 17:48:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-03-08 15:11:19 +01:00
|
|
|
MakeError(EvalError, Error)
|
|
|
|
MakeError(AssertionError, EvalError)
|
|
|
|
|
|
|
|
|
2003-10-30 17:48:26 +01: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 18:09:31 +01:00
|
|
|
/* Specific results. */
|
|
|
|
string evalString(EvalState & state, Expr e);
|
|
|
|
Path evalPath(EvalState & state, Expr e);
|
2006-03-23 17:43:07 +01:00
|
|
|
bool evalBool(EvalState & state, Expr e);
|
2005-07-25 17:05:34 +02:00
|
|
|
ATermList evalList(EvalState & state, Expr e);
|
2006-03-10 17:20:42 +01:00
|
|
|
ATerm coerceToString(Expr e);
|
2003-10-31 18:09:31 +01:00
|
|
|
|
2006-05-01 11:56:56 +02:00
|
|
|
/* Contexts. */
|
|
|
|
string coerceToStringWithContext(EvalState & state,
|
|
|
|
ATermList & context, Expr e, bool & isPath);
|
|
|
|
Expr wrapInContext(ATermList context, Expr e);
|
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
/* Print statistics. */
|
|
|
|
void printEvalStats(EvalState & state);
|
|
|
|
|
2003-10-30 17:48:26 +01:00
|
|
|
|
|
|
|
#endif /* !__EVAL_H */
|