2003-11-18 14:06:07 +02:00
|
|
|
#ifndef __NIXEXPR_H
|
|
|
|
#define __NIXEXPR_H
|
2003-10-30 18:11:24 +02:00
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
#include <map>
|
|
|
|
|
2006-05-04 15:21:08 +03:00
|
|
|
#include "aterm-map.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
2003-10-30 18:11:24 +02:00
|
|
|
|
|
|
|
|
2006-07-19 18:36:15 +03:00
|
|
|
MakeError(EvalError, Error)
|
2009-05-15 15:35:23 +03:00
|
|
|
MakeError(ParseError, Error)
|
2006-07-19 18:36:15 +03:00
|
|
|
MakeError(AssertionError, EvalError)
|
2007-04-16 18:03:19 +03:00
|
|
|
MakeError(ThrownError, AssertionError)
|
2006-08-23 18:46:00 +03:00
|
|
|
MakeError(Abort, EvalError)
|
2006-07-19 18:36:15 +03:00
|
|
|
MakeError(TypeError, EvalError)
|
|
|
|
|
|
|
|
|
2003-11-18 14:06:07 +02:00
|
|
|
/* Nix expressions are represented as ATerms. The maximal sharing
|
2003-10-30 18:11:24 +02:00
|
|
|
property of the ATerm library allows us to implement caching of
|
|
|
|
normals forms efficiently. */
|
|
|
|
typedef ATerm Expr;
|
2006-07-24 18:16:03 +03:00
|
|
|
typedef ATerm DefaultValue;
|
2004-10-27 01:54:26 +03:00
|
|
|
typedef ATerm Pos;
|
2008-08-14 13:04:22 +03:00
|
|
|
typedef ATerm Pattern;
|
2008-08-14 17:00:44 +03:00
|
|
|
typedef ATerm ATermBool;
|
2004-10-27 01:54:26 +03:00
|
|
|
|
2003-10-30 18:11:24 +02:00
|
|
|
|
2004-08-04 13:59:20 +03:00
|
|
|
/* A STL vector of ATerms. Should be used with great care since it's
|
|
|
|
stored on the heap, and the elements are therefore not roots to the
|
|
|
|
ATerm garbage collector. */
|
|
|
|
typedef vector<ATerm> ATermVector;
|
|
|
|
|
|
|
|
|
2004-04-06 01:27:41 +03:00
|
|
|
/* Show a position. */
|
|
|
|
string showPos(ATerm pos);
|
|
|
|
|
2010-04-08 14:41:19 +03:00
|
|
|
|
2003-10-30 18:11:24 +02:00
|
|
|
/* 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
|
|
|
|
{
|
2006-09-20 19:36:29 +03:00
|
|
|
virtual ~TermFun() { }
|
2003-10-30 18:11:24 +02:00
|
|
|
virtual ATerm operator () (ATerm e) = 0;
|
|
|
|
};
|
|
|
|
ATerm bottomupRewrite(TermFun & f, ATerm e);
|
|
|
|
|
2006-10-16 18:55:34 +03:00
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
/* Create an attribute set expression from an Attrs value. */
|
2003-11-03 22:30:40 +02:00
|
|
|
Expr makeAttrs(const ATermMap & attrs);
|
2003-10-31 19:09:31 +02:00
|
|
|
|
2006-10-16 18:55:34 +03:00
|
|
|
|
2004-02-03 16:45:34 +02:00
|
|
|
/* Check whether all variables are defined in the given expression.
|
|
|
|
Throw an exception if this isn't the case. */
|
|
|
|
void checkVarDefs(const ATermMap & def, Expr e);
|
|
|
|
|
2006-10-16 18:55:34 +03:00
|
|
|
|
|
|
|
/* Manipulation of Str() nodes. Note: matchStr() does not clear
|
|
|
|
context! */
|
|
|
|
bool matchStr(Expr e, string & s, PathSet & context);
|
|
|
|
|
|
|
|
Expr makeStr(const string & s, const PathSet & context = PathSet());
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|
|
|
|
|
2003-10-30 18:11:24 +02:00
|
|
|
|
2003-11-18 14:06:07 +02:00
|
|
|
#endif /* !__NIXEXPR_H */
|