2012-07-18 18:59:03 +00:00
|
|
|
#pragma once
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2010-10-04 17:55:38 +00:00
|
|
|
#include "eval.hh"
|
|
|
|
|
2006-02-08 13:21:16 +00:00
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2006-02-08 13:21:16 +00:00
|
|
|
struct DrvInfo
|
|
|
|
{
|
2012-11-28 12:49:44 +00:00
|
|
|
public:
|
|
|
|
typedef std::map<string, Path> Outputs;
|
|
|
|
|
2006-02-08 13:21:16 +00:00
|
|
|
private:
|
2013-11-19 13:09:03 +00:00
|
|
|
EvalState * state;
|
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
mutable string name;
|
|
|
|
mutable string system;
|
|
|
|
mutable string drvPath;
|
|
|
|
mutable string outPath;
|
|
|
|
mutable string outputName;
|
2012-11-28 12:49:44 +00:00
|
|
|
Outputs outputs;
|
2010-04-19 12:10:04 +00:00
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
bool failed = false; // set if we get an AssertionError
|
2012-11-28 12:49:44 +00:00
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
Bindings * attrs = nullptr, * meta = nullptr;
|
2013-11-19 13:09:03 +00:00
|
|
|
|
|
|
|
Bindings * getMeta();
|
|
|
|
|
2013-11-19 13:29:39 +00:00
|
|
|
bool checkMeta(Value & v);
|
|
|
|
|
2006-02-08 13:21:16 +00:00
|
|
|
public:
|
2006-07-25 16:40:38 +00:00
|
|
|
string attrPath; /* path towards the derivation */
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
DrvInfo(EvalState & state) : state(&state) { };
|
|
|
|
DrvInfo(EvalState & state, const string & attrPath, Bindings * attrs);
|
2013-11-19 13:09:03 +00:00
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
string queryName() const;
|
|
|
|
string querySystem() const;
|
|
|
|
string queryDrvPath() const;
|
|
|
|
string queryOutPath() const;
|
|
|
|
string queryOutputName() const;
|
2016-02-23 13:19:14 +00:00
|
|
|
/** Return the list of outputs. The "outputs to install" are determined by `mesa.outputsToInstall`. */
|
|
|
|
Outputs queryOutputs(bool onlyOutputsToInstall = false);
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2013-11-19 13:09:03 +00:00
|
|
|
StringSet queryMetaNames();
|
|
|
|
Value * queryMeta(const string & name);
|
|
|
|
string queryMetaString(const string & name);
|
2016-01-04 23:40:40 +00:00
|
|
|
NixInt queryMetaInt(const string & name, NixInt def);
|
|
|
|
NixFloat queryMetaFloat(const string & name, NixFloat def);
|
2013-11-19 13:09:03 +00:00
|
|
|
bool queryMetaBool(const string & name, bool def);
|
|
|
|
void setMeta(const string & name, Value * v);
|
2010-04-19 12:10:04 +00:00
|
|
|
|
2013-11-19 13:09:03 +00:00
|
|
|
/*
|
2006-03-10 16:20:42 +00:00
|
|
|
MetaInfo queryMetaInfo(EvalState & state) const;
|
2009-06-30 15:53:39 +00:00
|
|
|
MetaValue queryMetaInfo(EvalState & state, const string & name) const;
|
2013-11-19 13:09:03 +00:00
|
|
|
*/
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
void setName(const string & s) { name = s; }
|
|
|
|
void setDrvPath(const string & s) { drvPath = s; }
|
|
|
|
void setOutPath(const string & s) { outPath = s; }
|
2007-02-02 01:52:42 +00:00
|
|
|
|
2012-07-11 14:14:06 +00:00
|
|
|
void setFailed() { failed = true; };
|
|
|
|
bool hasFailed() { return failed; };
|
2006-02-08 13:21:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-11-25 13:47:34 +00:00
|
|
|
#if HAVE_BOEHMGC
|
|
|
|
typedef list<DrvInfo, traceable_allocator<DrvInfo> > DrvInfos;
|
|
|
|
#else
|
2006-02-08 13:21:16 +00:00
|
|
|
typedef list<DrvInfo> DrvInfos;
|
2010-11-25 13:47:34 +00:00
|
|
|
#endif
|
2006-02-08 13:21:16 +00:00
|
|
|
|
|
|
|
|
2010-03-31 15:38:03 +00:00
|
|
|
/* If value `v' denotes a derivation, store information about the
|
|
|
|
derivation in `drv' and return true. Otherwise, return false. */
|
2012-10-04 19:22:25 +00:00
|
|
|
bool getDerivation(EvalState & state, Value & v, DrvInfo & drv,
|
|
|
|
bool ignoreAssertionFailures);
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2010-03-31 15:38:03 +00:00
|
|
|
void getDerivations(EvalState & state, Value & v, const string & pathPrefix,
|
2012-10-04 19:22:25 +00:00
|
|
|
Bindings & autoArgs, DrvInfos & drvs,
|
|
|
|
bool ignoreAssertionFailures);
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2012-11-28 12:49:44 +00:00
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|