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