guix/src/fstate.hh

74 lines
1.3 KiB
C++
Raw Normal View History

#ifndef __FSTATE_H
#define __FSTATE_H
extern "C" {
#include <aterm2.h>
}
#include "store.hh"
2003-07-20 19:29:38 +00:00
/* Abstract syntax of fstate-expressions. */
2003-06-27 09:55:31 +00:00
typedef list<FSId> FSIds;
struct SliceElem
{
FSId id;
StringSet refs;
};
typedef map<string, SliceElem> SliceElems;
struct Slice
{
StringSet roots;
SliceElems elems;
};
typedef map<string, FSId> DeriveOutputs;
typedef map<string, string> StringPairs;
2003-07-20 19:29:38 +00:00
struct Derive
{
DeriveOutputs outputs;
FSIdSet inputs;
2003-07-20 19:29:38 +00:00
string platform;
string builder;
Strings args;
2003-07-20 19:29:38 +00:00
StringPairs env;
};
struct FState
{
enum { fsSlice, fsDerive } type;
Slice slice;
Derive derive;
};
2003-06-17 13:37:44 +00:00
/* Return a canonical textual representation of an expression. */
string printTerm(ATerm t);
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);
/* Hash an aterm. */
Hash hashTerm(ATerm t);
/* Read an aterm from disk, given its id. */
2003-07-20 19:29:38 +00:00
ATerm termFromId(const FSId & id);
2003-07-06 14:20:47 +00:00
/* Write an aterm to the Nix store directory, and return its hash. */
FSId writeTerm(ATerm t, const string & suffix, FSId id = FSId());
2003-07-20 19:29:38 +00:00
/* Parse an fstate-expression. */
FState parseFState(ATerm t);
2003-07-16 11:05:59 +00:00
2003-07-20 19:29:38 +00:00
/* Parse an fstate-expression. */
ATerm unparseFState(const FState & fs);
2003-07-15 22:28:27 +00:00
#endif /* !__FSTATE_H */