aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-11-18 11:38:25 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-11-18 11:38:25 +0000
commitb1117ef29d35822647bda32f8cd3887f4f6eaede (patch)
tree1635a7fd961930104c56aef2fa20ecb3e29d9798 /src
parentce92d1bf1434562f5b80320c503768c4d06f1f8d (diff)
* nix -> nix-store, fix -> nix-instantiate.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/nix-instantiate/Makefile.am (renamed from src/fix-ng/Makefile.am)6
-rw-r--r--src/nix-instantiate/bin2c.c (renamed from src/fix-ng/bin2c.c)0
-rw-r--r--src/nix-instantiate/eval.cc (renamed from src/fix-ng/eval.cc)0
-rw-r--r--src/nix-instantiate/eval.hh (renamed from src/fix-ng/eval.hh)0
-rw-r--r--src/nix-instantiate/fix-expr.cc215
-rw-r--r--src/nix-instantiate/fix-expr.hh (renamed from src/fix-ng/fixexpr.hh)0
-rw-r--r--src/nix-instantiate/fix.cc (renamed from src/fix-ng/fix.cc)0
-rw-r--r--src/nix-instantiate/fix.sdf (renamed from src/fix-ng/fix.sdf)0
-rw-r--r--src/nix-instantiate/fixexpr.cc (renamed from src/fix-ng/fixexpr.cc)0
-rw-r--r--src/nix-instantiate/fixexpr.hh75
-rw-r--r--src/nix-instantiate/parser.cc (renamed from src/fix-ng/parser.cc)0
-rw-r--r--src/nix-instantiate/parser.hh (renamed from src/fix-ng/parser.hh)0
-rw-r--r--src/nix-instantiate/primops.cc (renamed from src/fix-ng/primops.cc)0
-rw-r--r--src/nix-instantiate/primops.hh (renamed from src/fix-ng/primops.hh)0
-rw-r--r--src/nix-store/Makefile.am (renamed from src/nix/Makefile.am)8
-rw-r--r--src/nix-store/dotgraph.cc (renamed from src/nix/dotgraph.cc)0
-rw-r--r--src/nix-store/dotgraph.hh (renamed from src/nix/dotgraph.hh)0
-rw-r--r--src/nix-store/nix-help.txt (renamed from src/nix/nix-help.txt)4
-rw-r--r--src/nix-store/nix.cc (renamed from src/nix/nix.cc)0
20 files changed, 301 insertions, 9 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index ed989fed2..e35b82a88 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1 +1 @@
-SUBDIRS = boost libutil libstore libmain nix nix-hash fix-ng
+SUBDIRS = boost libutil libstore libmain nix-store nix-hash nix-instantiate
diff --git a/src/fix-ng/Makefile.am b/src/nix-instantiate/Makefile.am
index d30a5b2ea..cdaec1390 100644
--- a/src/fix-ng/Makefile.am
+++ b/src/nix-instantiate/Makefile.am
@@ -1,7 +1,7 @@
-bin_PROGRAMS = fix-ng
+bin_PROGRAMS = nix-instantiate
-fix_ng_SOURCES = fixexpr.cc parser.cc eval.cc primops.cc fix.cc
-fix_ng_LDADD = ../libmain/libmain.a ../libstore/libstore.a ../libutil/libutil.a \
+nix_instantiate_SOURCES = fixexpr.cc parser.cc eval.cc primops.cc fix.cc
+nix_instantiate_LDADD = ../libmain/libmain.a ../libstore/libstore.a ../libutil/libutil.a \
../boost/format/libformat.a -L../../externals/inst/lib -ldb_cxx \
-lsglr -lATB -lconversion -lasfix2 -lmept -lATerm
diff --git a/src/fix-ng/bin2c.c b/src/nix-instantiate/bin2c.c
index 18bf81d69..18bf81d69 100644
--- a/src/fix-ng/bin2c.c
+++ b/src/nix-instantiate/bin2c.c
diff --git a/src/fix-ng/eval.cc b/src/nix-instantiate/eval.cc
index b110c3a4a..b110c3a4a 100644
--- a/src/fix-ng/eval.cc
+++ b/src/nix-instantiate/eval.cc
diff --git a/src/fix-ng/eval.hh b/src/nix-instantiate/eval.hh
index 061c840a7..061c840a7 100644
--- a/src/fix-ng/eval.hh
+++ b/src/nix-instantiate/eval.hh
diff --git a/src/nix-instantiate/fix-expr.cc b/src/nix-instantiate/fix-expr.cc
new file mode 100644
index 000000000..e9c5a3ba6
--- /dev/null
+++ b/src/nix-instantiate/fix-expr.cc
@@ -0,0 +1,215 @@
+#include "fix-expr.hh"
+#include "expr.hh"
+
+
+ATermMap::ATermMap(unsigned int initialSize, unsigned int maxLoadPct)
+{
+ table = ATtableCreate(initialSize, maxLoadPct);
+ if (!table) throw Error("cannot create ATerm table");
+}
+
+
+ATermMap::ATermMap(const ATermMap & map)
+ : table(0)
+{
+ ATermList keys = map.keys();
+
+ /* !!! adjust allocation for load pct */
+ table = ATtableCreate(ATgetLength(keys), map.maxLoadPct);
+ if (!table) throw Error("cannot create ATerm table");
+
+ for (ATermIterator i(keys); i; ++i)
+ set(*i, map.get(*i));
+}
+
+
+ATermMap::~ATermMap()
+{
+ if (table) ATtableDestroy(table);
+}
+
+
+void ATermMap::set(ATerm key, ATerm value)
+{
+ return ATtablePut(table, key, value);
+}
+
+
+void ATermMap::set(const string & key, ATerm value)
+{
+ set(string2ATerm(key), value);
+}
+
+
+ATerm ATermMap::get(ATerm key) const
+{
+ return ATtableGet(table, key);
+}
+
+
+ATerm ATermMap::get(const string & key) const
+{
+ return get(string2ATerm(key));
+}
+
+
+void ATermMap::remove(ATerm key)
+{
+ ATtableRemove(table, key);
+}
+
+
+void ATermMap::remove(const string & key)
+{
+ remove(string2ATerm(key));
+}
+
+
+ATermList ATermMap::keys() const
+{
+ ATermList keys = ATtableKeys(table);
+ if (!keys) throw Error("cannot query aterm map keys");
+ return keys;
+}
+
+
+ATerm string2ATerm(const string & s)
+{
+ return (ATerm) ATmakeAppl0(ATmakeAFun((char *) s.c_str(), 0, ATtrue));
+}
+
+
+string aterm2String(ATerm t)
+{
+ return ATgetName(ATgetAFun(t));
+}
+
+
+ATerm bottomupRewrite(TermFun & f, ATerm e)
+{
+ if (ATgetType(e) == AT_APPL) {
+ AFun fun = ATgetAFun(e);
+ int arity = ATgetArity(fun);
+ ATermList args = ATempty;
+
+ for (int i = arity - 1; i >= 0; i--)
+ args = ATinsert(args, bottomupRewrite(f, ATgetArgument(e, i)));
+
+ e = (ATerm) ATmakeApplList(fun, args);
+ }
+
+ else if (ATgetType(e) == AT_LIST) {
+ ATermList in = (ATermList) e;
+ ATermList out = ATempty;
+
+ for (ATermIterator i(in); i; ++i)
+ out = ATinsert(out, bottomupRewrite(f, *i));
+
+ e = (ATerm) ATreverse(out);
+ }
+
+ return f(e);
+}
+
+
+void queryAllAttrs(Expr e, ATermMap & attrs)
+{
+ ATMatcher m;
+ ATermList bnds;
+ if (!(atMatch(m, e) >> "Attrs" >> bnds))
+ throw badTerm("expected attribute set", e);
+
+ for (ATermIterator i(bnds); i; ++i) {
+ string s;
+ Expr e;
+ if (!(atMatch(m, *i) >> "Bind" >> s >> e))
+ abort(); /* can't happen */
+ attrs.set(s, e);
+ }
+}
+
+
+Expr queryAttr(Expr e, const string & name)
+{
+ ATermMap attrs;
+ queryAllAttrs(e, attrs);
+ return attrs.get(name);
+}
+
+
+Expr makeAttrs(const ATermMap & attrs)
+{
+ ATermList bnds = ATempty;
+ for (ATermIterator i(attrs.keys()); i; ++i)
+ bnds = ATinsert(bnds,
+ ATmake("Bind(<term>, <term>)", *i, attrs.get(*i)));
+ return ATmake("Attrs(<term>)", ATreverse(bnds));
+}
+
+
+Expr substitute(const ATermMap & subs, Expr e)
+{
+ ATMatcher m;
+ string s;
+
+ if (atMatch(m, e) >> "Var" >> s) {
+ Expr sub = subs.get(s);
+ return sub ? sub : e;
+ }
+
+ /* In case of a function, filter out all variables bound by this
+ function. */
+ ATermList formals;
+ ATerm body;
+ if (atMatch(m, e) >> "Function" >> formals >> body) {
+ ATermMap subs2(subs);
+ for (ATermIterator i(formals); i; ++i) {
+ Expr def;
+ if (!(atMatch(m, *i) >> "NoDefFormal" >> s) &&
+ !(atMatch(m, *i) >> "DefFormal" >> s >> def))
+ abort();
+ subs2.remove(s);
+ }
+ return ATmake("Function(<term>, <term>)", formals,
+ substitute(subs2, body));
+ }
+
+ /* Idem for a mutually recursive attribute set. */
+ ATermList bindings;
+ if (atMatch(m, e) >> "Rec" >> bindings) {
+ ATermMap subs2(subs);
+ for (ATermIterator i(bindings); i; ++i) {
+ Expr e;
+ if (!(atMatch(m, *i) >> "Bind" >> s >> e))
+ abort(); /* can't happen */
+ subs2.remove(s);
+ }
+ return ATmake("Rec(<term>)", substitute(subs2, (ATerm) bindings));
+ }
+
+ if (ATgetType(e) == AT_APPL) {
+ AFun fun = ATgetAFun(e);
+ int arity = ATgetArity(fun);
+ ATermList args = ATempty;
+
+ for (int i = arity - 1; i >= 0; i--)
+ args = ATinsert(args, substitute(subs, ATgetArgument(e, i)));
+
+ return (ATerm) ATmakeApplList(fun, args);
+ }
+
+ if (ATgetType(e) == AT_LIST) {
+ ATermList out = ATempty;
+ for (ATermIterator i((ATermList) e); i; ++i)
+ out = ATinsert(out, substitute(subs, *i));
+ return (ATerm) ATreverse(out);
+ }
+
+ return e;
+}
+
+
+Expr makeBool(bool b)
+{
+ return b ? ATmake("Bool(True)") : ATmake("Bool(False)");
+}
diff --git a/src/fix-ng/fixexpr.hh b/src/nix-instantiate/fix-expr.hh
index 6c1e51d9c..6c1e51d9c 100644
--- a/src/fix-ng/fixexpr.hh
+++ b/src/nix-instantiate/fix-expr.hh
diff --git a/src/fix-ng/fix.cc b/src/nix-instantiate/fix.cc
index e407aaf44..e407aaf44 100644
--- a/src/fix-ng/fix.cc
+++ b/src/nix-instantiate/fix.cc
diff --git a/src/fix-ng/fix.sdf b/src/nix-instantiate/fix.sdf
index 54f5d5266..54f5d5266 100644
--- a/src/fix-ng/fix.sdf
+++ b/src/nix-instantiate/fix.sdf
diff --git a/src/fix-ng/fixexpr.cc b/src/nix-instantiate/fixexpr.cc
index 721fa8afa..721fa8afa 100644
--- a/src/fix-ng/fixexpr.cc
+++ b/src/nix-instantiate/fixexpr.cc
diff --git a/src/nix-instantiate/fixexpr.hh b/src/nix-instantiate/fixexpr.hh
new file mode 100644
index 000000000..6c1e51d9c
--- /dev/null
+++ b/src/nix-instantiate/fixexpr.hh
@@ -0,0 +1,75 @@
+#ifndef __FIXEXPR_H
+#define __FIXEXPR_H
+
+#include <map>
+
+#include <aterm2.h>
+
+#include "util.hh"
+
+
+/* Fix expressions are represented as ATerms. The maximal sharing
+ property of the ATerm library allows us to implement caching of
+ normals forms efficiently. */
+typedef ATerm Expr;
+
+
+/* Mappings from ATerms to ATerms. This is just a wrapper around
+ ATerm tables. */
+class ATermMap
+{
+private:
+ unsigned int maxLoadPct;
+ ATermTable table;
+
+public:
+ ATermMap(unsigned int initialSize = 16, unsigned int maxLoadPct = 75);
+ ATermMap(const ATermMap & map);
+ ~ATermMap();
+
+ void set(ATerm key, ATerm value);
+ void set(const string & key, ATerm value);
+
+ ATerm get(ATerm key) const;
+ ATerm get(const string & key) const;
+
+ void remove(ATerm key);
+ void remove(const string & key);
+
+ ATermList keys() const;
+};
+
+
+/* Convert a string to an ATerm (i.e., a quoted nullary function
+ applicaton). */
+ATerm string2ATerm(const string & s);
+string aterm2String(ATerm t);
+
+/* Generic bottomup traversal over ATerms. The traversal first
+ recursively descends into subterms, and then applies the given term
+ function to the resulting term. */
+struct TermFun
+{
+ virtual ATerm operator () (ATerm e) = 0;
+};
+ATerm bottomupRewrite(TermFun & f, ATerm e);
+
+/* Query all attributes in an attribute set expression. The
+ expression must be in normal form. */
+void queryAllAttrs(Expr e, ATermMap & attrs);
+
+/* Query a specific attribute from an attribute set expression. The
+ expression must be in normal form. */
+Expr queryAttr(Expr e, const string & name);
+
+/* Create an attribute set expression from an Attrs value. */
+Expr makeAttrs(const ATermMap & attrs);
+
+/* Perform a set of substitutions on an expression. */
+Expr substitute(const ATermMap & subs, Expr e);
+
+/* Create an expression representing a boolean. */
+Expr makeBool(bool b);
+
+
+#endif /* !__FIXEXPR_H */
diff --git a/src/fix-ng/parser.cc b/src/nix-instantiate/parser.cc
index eaa41b396..eaa41b396 100644
--- a/src/fix-ng/parser.cc
+++ b/src/nix-instantiate/parser.cc
diff --git a/src/fix-ng/parser.hh b/src/nix-instantiate/parser.hh
index e44987dd0..e44987dd0 100644
--- a/src/fix-ng/parser.hh
+++ b/src/nix-instantiate/parser.hh
diff --git a/src/fix-ng/primops.cc b/src/nix-instantiate/primops.cc
index 097933115..097933115 100644
--- a/src/fix-ng/primops.cc
+++ b/src/nix-instantiate/primops.cc
diff --git a/src/fix-ng/primops.hh b/src/nix-instantiate/primops.hh
index 76d587afd..76d587afd 100644
--- a/src/fix-ng/primops.hh
+++ b/src/nix-instantiate/primops.hh
diff --git a/src/nix/Makefile.am b/src/nix-store/Makefile.am
index 8a52be364..a39d1e2ad 100644
--- a/src/nix/Makefile.am
+++ b/src/nix-store/Makefile.am
@@ -1,7 +1,7 @@
-bin_PROGRAMS = nix
+bin_PROGRAMS = nix-store
-nix_SOURCES = nix.cc dotgraph.cc
-nix_LDADD = ../libmain/libmain.a ../libstore/libstore.a ../libutil/libutil.a \
+nix_store_SOURCES = nix.cc dotgraph.cc
+nix_store_LDADD = ../libmain/libmain.a ../libstore/libstore.a ../libutil/libutil.a \
../boost/format/libformat.a -L../../externals/inst/lib -ldb_cxx -lATerm
nix.o: nix-help.txt.hh
@@ -22,6 +22,6 @@ install-data-local:
ln -sf $(localstatedir)/nix/links/current $(prefix)/current
$(INSTALL) -d $(localstatedir)/log/nix
$(INSTALL) -d $(prefix)/store
- $(bindir)/nix --init
+ $(bindir)/nix-store --init
EXTRA_DIST = *.hh
diff --git a/src/nix/dotgraph.cc b/src/nix-store/dotgraph.cc
index c670bf19e..c670bf19e 100644
--- a/src/nix/dotgraph.cc
+++ b/src/nix-store/dotgraph.cc
diff --git a/src/nix/dotgraph.hh b/src/nix-store/dotgraph.hh
index ef389b30d..ef389b30d 100644
--- a/src/nix/dotgraph.hh
+++ b/src/nix-store/dotgraph.hh
diff --git a/src/nix/nix-help.txt b/src/nix-store/nix-help.txt
index a2d9958ff..d7f977025 100644
--- a/src/nix/nix-help.txt
+++ b/src/nix-store/nix-help.txt
@@ -1,4 +1,6 @@
-nix [OPTIONS...] [ARGUMENTS...]
+nix-store [OPTIONS...] [ARGUMENTS...]
+
+`nix-store' is a tool to manipulate the Nix store.
Operations:
diff --git a/src/nix/nix.cc b/src/nix-store/nix.cc
index d1766de39..d1766de39 100644
--- a/src/nix/nix.cc
+++ b/src/nix-store/nix.cc