2003-11-18 13:22:29 +02:00
|
|
|
#ifndef __STOREEXPR_H
|
|
|
|
#define __STOREEXPR_H
|
2003-06-16 16:33:38 +03:00
|
|
|
|
2003-11-16 19:46:31 +02:00
|
|
|
#include "aterm.hh"
|
2003-07-15 19:28:54 +03:00
|
|
|
#include "store.hh"
|
2003-06-16 16:33:38 +03:00
|
|
|
|
|
|
|
|
2003-11-18 13:22:29 +02:00
|
|
|
/* Abstract syntax of store expressions. */
|
2003-06-27 12:55:31 +03:00
|
|
|
|
2003-10-07 15:27:49 +03:00
|
|
|
struct ClosureElem
|
2003-07-15 19:28:54 +03:00
|
|
|
{
|
2003-10-08 18:06:59 +03:00
|
|
|
PathSet refs;
|
2003-07-15 19:28:54 +03:00
|
|
|
};
|
|
|
|
|
2003-10-08 18:06:59 +03:00
|
|
|
typedef map<Path, ClosureElem> ClosureElems;
|
2003-07-15 19:28:54 +03:00
|
|
|
|
2003-10-07 15:27:49 +03:00
|
|
|
struct Closure
|
2003-07-15 19:28:54 +03:00
|
|
|
{
|
2003-10-08 18:06:59 +03:00
|
|
|
PathSet roots;
|
2003-10-07 15:27:49 +03:00
|
|
|
ClosureElems elems;
|
2003-07-15 19:28:54 +03:00
|
|
|
};
|
2003-06-16 16:33:38 +03:00
|
|
|
|
2003-08-20 17:11:40 +03:00
|
|
|
typedef map<string, string> StringPairs;
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2003-10-07 15:27:49 +03:00
|
|
|
struct Derivation
|
2003-07-20 22:29:38 +03:00
|
|
|
{
|
2003-10-08 18:06:59 +03:00
|
|
|
PathSet outputs;
|
2003-11-18 13:22:29 +02:00
|
|
|
PathSet inputs; /* Store expressions, not actual inputs */
|
2003-07-20 22:29:38 +03:00
|
|
|
string platform;
|
2003-10-08 18:06:59 +03:00
|
|
|
Path builder;
|
2003-08-15 15:32:37 +03:00
|
|
|
Strings args;
|
2003-07-20 22:29:38 +03:00
|
|
|
StringPairs env;
|
|
|
|
};
|
|
|
|
|
2003-11-18 13:22:29 +02:00
|
|
|
struct StoreExpr
|
2003-07-20 22:29:38 +03:00
|
|
|
{
|
2003-10-07 15:27:49 +03:00
|
|
|
enum { neClosure, neDerivation } type;
|
|
|
|
Closure closure;
|
|
|
|
Derivation derivation;
|
2003-07-20 22:29:38 +03:00
|
|
|
};
|
|
|
|
|
2003-07-15 19:28:54 +03:00
|
|
|
|
2003-06-27 16:55:12 +03:00
|
|
|
/* Hash an aterm. */
|
|
|
|
Hash hashTerm(ATerm t);
|
2003-06-16 16:33:38 +03:00
|
|
|
|
2003-10-08 18:06:59 +03:00
|
|
|
/* Write an aterm to the Nix store directory, and return its path. */
|
|
|
|
Path writeTerm(ATerm t, const string & suffix);
|
2003-07-10 21:48:11 +03:00
|
|
|
|
2003-11-18 13:22:29 +02:00
|
|
|
/* Parse a store expression. */
|
|
|
|
StoreExpr parseStoreExpr(ATerm t);
|
2003-07-16 14:05:59 +03:00
|
|
|
|
2003-11-18 13:22:29 +02:00
|
|
|
/* Parse a store expression. */
|
|
|
|
ATerm unparseStoreExpr(const StoreExpr & ne);
|
2003-07-16 01:28:27 +03:00
|
|
|
|
2003-06-16 16:33:38 +03:00
|
|
|
|
2003-11-18 13:22:29 +02:00
|
|
|
#endif /* !__STOREEXPR_H */
|