aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-06-25 15:50:37 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-06-25 15:50:37 +0000
commit3ec525258258ea50a411eb6b7d3c6aa7ecac708b (patch)
tree3cfa8ad844e4a7525bc51d191d001cbbba44d939
parent2b07b0e7ebee69e6a64013dcdda363c393d3f4fc (diff)
* Improved syntax and semantics for Nix expressions.
-rw-r--r--src/eval.hh117
1 files changed, 56 insertions, 61 deletions
diff --git a/src/eval.hh b/src/eval.hh
index 2e764b1bd..c1b2f2139 100644
--- a/src/eval.hh
+++ b/src/eval.hh
@@ -10,67 +10,62 @@ extern "C" {
using namespace std;
-/* Abstract syntax of Nix values:
-
- e := Deref(e) -- external expression
- | Hash(h) -- value reference
- | Str(s) -- string constant
- | Bool(b) -- boolean constant
- | Var(x) -- variable
- | App(e, e) -- application
- | Lam(x, e) -- lambda abstraction
- | Exec(platform, e, [Arg(e, e)])
- -- primitive; execute e with args e* on platform
- ;
-
- TODO: Deref(e) allows computed external expressions, which might be
- too expressive; perhaps this should be Deref(h).
-
- Semantics
-
- Each rule given as eval(e) => e', i.e., expression e has a normal
- form e'.
-
- eval(Deref(Hash(h))) => eval(loadExpr(h))
-
- eval(Hash(h)) => Hash(h) # idem for Str, Bool
-
- eval(App(e1, e2)) => eval(App(e1', e2))
- where e1' = eval(e1)
-
- eval(App(Lam(var, body), arg)) =>
- eval(subst(var, arg, body))
-
- eval(Exec(platform, prog, args)) => Hash(h)
- where
- fn = ... name of the output (random or by hashing expr) ...
- h =
- if exec( fn
- , eval(platform) => Str(...)
- , getFile(eval(prog))
- , map(makeArg . eval, args)
- ) then
- hashPath(fn)
- else
- undef
- ... register ...
-
- makeArg(Arg(Str(nm), (Hash(h), h))) => (nm, getFile(h))
- makeArg(Arg(Str(nm), (Str(s), _))) => (nm, s)
- makeArg(Arg(Str(nm), (Bool(True), _))) => (nm, "1")
- makeArg(Arg(Str(nm), (Bool(False), _))) => (nm, undef)
-
- subst(x, e1, e2) is defined as a generic topdown term
- traversal of e2, replacing each `Var(x)' with e1, and not
- descending into `Lam(x, _)'.
-
- Note: all stored expressions must be closed. !!! ugly
-
- getFile :: Hash -> FileName
- loadExpr :: Hash -> FileName
- hashExpr :: Expr -> Hash
- hashPath :: FileName -> Hash
- exec :: FileName -> Platform -> FileName -> [(String, String)] -> Status
+/* Abstract syntax of Nix expressions.
+
+ An expression describes a (partial) state of the file system in a
+ referentially transparent way. The operational effect of
+ evaluating an expression is that the state described by the
+ expression is realised.
+
+ File : String * Content * [Expr] -> Expr
+
+ File(path, content, refs) specifies a file object (its full path
+ and contents), along with all file objects referenced by it (that
+ is, that it has pointers to). We assume that all files are
+ self-referential. This prevents us from having to deal with
+ cycles.
+
+ Derive : String * Expr * [Expr] * [String] -> Expr
+
+ Derive(platform, builder, ins, outs) specifies the creation of new
+ file objects (in paths declared by `outs') by the execution of a
+ program `builder' on a platform `platform'. This execution takes
+ place in a file system state and in an environment given by `ins'.
+
+ Str : String -> Expr
+
+ A string constant.
+
+ Tup : Expr * Expr -> Expr
+
+ Tuples of expressions.
+
+ Regular : String -> Content
+ Directory : [(String, Content)] -> Content
+ Hash : String -> Content
+
+ File content, given either explicitly or implicitly through a cryptographic hash.
+
+ The set of expressions in {\em $f$-normal form} is as follows:
+
+ File : String * Content * [FExpr] -> FExpr
+
+ These are completely evaluated Nix expressions.
+
+ The set of expressions in {\em $d$-normal form} is as follows:
+
+ File : String * Content * [DExpr] -> DExpr
+ Derive : String * DExpr * [Tup] * [String] -> DExpr
+
+ Tup : Str * DExpr -> Tup
+ Tup : Str * Str -> Tup
+
+ Str : String -> Str
+
+ These are Nix expressions in which the file system result of Derive
+ expressions has not yet been computed. This is useful for, e.g.,
+ querying dependencies.
+
*/
typedef ATerm Expr;