1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/src/eval.hh

84 lines
2 KiB
C++
Raw Normal View History

#ifndef __EVAL_H
#define __EVAL_H
extern "C" {
#include <aterm2.h>
}
#include "hash.hh"
using namespace std;
/* Abstract syntax of Nix values:
2003-06-17 11:45:43 -04:00
e := Deref(e) -- external expression
| Hash(h) -- value reference
| Str(s) -- string constant
| Bool(b) -- boolean constant
2003-06-17 11:45:43 -04:00
| Var(x) -- variable
| App(e, e) -- application
| Lam(x, e) -- lambda abstraction
2003-06-17 09:37:44 -04:00
| Exec(platform, e, [Arg(e, e)])
-- primitive; execute e with args e* on platform
;
2003-06-17 11:45:43 -04:00
TODO: Deref(e) allows computed external expressions, which might be
too expressive; perhaps this should be Deref(h).
Semantics
2003-06-17 09:37:44 -04:00
Each rule given as eval(e) => e', i.e., expression e has a normal
form e'.
2003-06-17 11:45:43 -04:00
eval(Deref(Hash(h))) => eval(loadExpr(h))
2003-06-17 11:45:43 -04:00
eval(Hash(h)) => Hash(h) # idem for Str, Bool
eval(App(e1, e2)) => eval(App(e1', e2))
2003-06-17 09:37:44 -04:00
where e1' = eval(e1)
2003-06-17 09:37:44 -04:00
eval(App(Lam(var, body), arg)) =>
eval(subst(var, arg, body))
2003-06-17 11:45:43 -04:00
eval(Exec(platform, prog, args)) => Hash(h)
where
2003-06-17 09:37:44 -04:00
fn = ... name of the output (random or by hashing expr) ...
h =
2003-06-17 09:37:44 -04:00
if exec( fn
, eval(platform) => Str(...)
, getFile(eval(prog))
, map(makeArg . eval, args)
) then
2003-06-17 11:45:43 -04:00
hashPath(fn)
else
undef
2003-06-17 09:37:44 -04:00
... register ...
2003-06-17 11:45:43 -04:00
makeArg(Arg(Str(nm), (Hash(h), h))) => (nm, getFile(h))
2003-06-17 09:37:44 -04:00
makeArg(Arg(Str(nm), (Str(s), _))) => (nm, s)
makeArg(Arg(Str(nm), (Bool(True), _))) => (nm, "1")
makeArg(Arg(Str(nm), (Bool(False), _))) => (nm, undef)
getFile :: Hash -> FileName
loadExpr :: Hash -> FileName
hashExpr :: Expr -> Hash
2003-06-17 11:45:43 -04:00
hashPath :: FileName -> Hash
2003-06-17 09:37:44 -04:00
exec :: FileName -> Platform -> FileName -> [(String, String)] -> Status
*/
typedef ATerm Expr;
2003-06-17 09:37:44 -04:00
/* Evaluate an expression. */
Expr evalValue(Expr e);
2003-06-17 09:37:44 -04:00
/* Return a canonical textual representation of an expression. */
string printExpr(Expr e);
2003-06-17 09:37:44 -04:00
/* Hash an expression. */
Hash hashExpr(Expr e);
#endif /* !__EVAL_H */