2003-07-14 10:23:11 +00:00
|
|
|
#ifndef __FSTATE_H
|
|
|
|
#define __FSTATE_H
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <aterm2.h>
|
|
|
|
}
|
|
|
|
|
2003-07-15 16:28:54 +00:00
|
|
|
#include "store.hh"
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
/* Abstract syntax of Nix expressions. */
|
2003-06-27 09:55:31 +00:00
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
struct ClosureElem
|
2003-07-15 16:28:54 +00:00
|
|
|
{
|
2003-10-08 15:06:59 +00:00
|
|
|
PathSet refs;
|
2003-07-15 16:28:54 +00:00
|
|
|
};
|
|
|
|
|
2003-10-08 15:06:59 +00:00
|
|
|
typedef map<Path, ClosureElem> ClosureElems;
|
2003-07-15 16:28:54 +00:00
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
struct Closure
|
2003-07-15 16:28:54 +00:00
|
|
|
{
|
2003-10-08 15:06:59 +00:00
|
|
|
PathSet roots;
|
2003-10-07 12:27:49 +00:00
|
|
|
ClosureElems elems;
|
2003-07-15 16:28:54 +00:00
|
|
|
};
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-08-20 14:11:40 +00:00
|
|
|
typedef map<string, string> StringPairs;
|
2003-07-20 19:29:38 +00:00
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
struct Derivation
|
2003-07-20 19:29:38 +00:00
|
|
|
{
|
2003-10-08 15:06:59 +00:00
|
|
|
PathSet outputs;
|
|
|
|
PathSet inputs; /* Nix expressions, not actual inputs */
|
2003-07-20 19:29:38 +00:00
|
|
|
string platform;
|
2003-10-08 15:06:59 +00:00
|
|
|
Path builder;
|
2003-08-15 12:32:37 +00:00
|
|
|
Strings args;
|
2003-07-20 19:29:38 +00:00
|
|
|
StringPairs env;
|
|
|
|
};
|
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
struct NixExpr
|
2003-07-20 19:29:38 +00:00
|
|
|
{
|
2003-10-07 12:27:49 +00:00
|
|
|
enum { neClosure, neDerivation } type;
|
|
|
|
Closure closure;
|
|
|
|
Derivation derivation;
|
2003-07-20 19:29:38 +00:00
|
|
|
};
|
|
|
|
|
2003-07-15 16:28:54 +00:00
|
|
|
|
2003-06-17 13:37:44 +00:00
|
|
|
/* Return a canonical textual representation of an expression. */
|
2003-06-27 13:55:12 +00:00
|
|
|
string printTerm(ATerm t);
|
2003-06-18 12:36:12 +00:00
|
|
|
|
2003-07-06 14:20:47 +00:00
|
|
|
/* Throw an exception with an error message containing the given
|
|
|
|
aterm. */
|
|
|
|
Error badTerm(const format & f, ATerm t);
|
|
|
|
|
2003-06-27 13:55:12 +00:00
|
|
|
/* Hash an aterm. */
|
|
|
|
Hash hashTerm(ATerm t);
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-10-08 15:06:59 +00:00
|
|
|
/* Write an aterm to the Nix store directory, and return its path. */
|
|
|
|
Path writeTerm(ATerm t, const string & suffix);
|
2003-07-10 18:48:11 +00:00
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
/* Parse a Nix expression. */
|
|
|
|
NixExpr parseNixExpr(ATerm t);
|
2003-07-16 11:05:59 +00:00
|
|
|
|
2003-10-07 12:27:49 +00:00
|
|
|
/* Parse a Nix expression. */
|
|
|
|
ATerm unparseNixExpr(const NixExpr & ne);
|
2003-07-15 22:28:27 +00:00
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-07-14 10:23:11 +00:00
|
|
|
#endif /* !__FSTATE_H */
|