2003-11-18 11:22:29 +00:00
|
|
|
#ifndef __STOREEXPR_H
|
|
|
|
#define __STOREEXPR_H
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
#include "aterm.hh"
|
2003-07-15 16:28:54 +00:00
|
|
|
#include "store.hh"
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
|
|
|
2003-11-18 11:22:29 +00:00
|
|
|
/* Abstract syntax of store 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;
|
2003-11-18 11:22:29 +00:00
|
|
|
PathSet inputs; /* Store 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-11-18 11:22:29 +00:00
|
|
|
struct StoreExpr
|
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-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-11-18 11:22:29 +00:00
|
|
|
/* Parse a store expression. */
|
|
|
|
StoreExpr parseStoreExpr(ATerm t);
|
2003-07-16 11:05:59 +00:00
|
|
|
|
2003-11-18 11:22:29 +00:00
|
|
|
/* Parse a store expression. */
|
|
|
|
ATerm unparseStoreExpr(const StoreExpr & ne);
|
2003-07-15 22:28:27 +00:00
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-11-18 11:22:29 +00:00
|
|
|
#endif /* !__STOREEXPR_H */
|