2018-09-28 12:31:16 +00:00
|
|
|
#include "derivations.hh"
|
|
|
|
|
2020-03-24 13:26:13 +00:00
|
|
|
#include <nlohmann/json_fwd.hpp>
|
2018-09-28 12:31:16 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
class ParsedDerivation
|
|
|
|
{
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePath drvPath;
|
2018-09-28 12:31:16 +00:00
|
|
|
BasicDerivation & drv;
|
2020-03-24 13:26:13 +00:00
|
|
|
std::unique_ptr<nlohmann::json> structuredAttrs;
|
2018-09-28 12:31:16 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
ParsedDerivation(StorePath && drvPath, BasicDerivation & drv);
|
2018-09-28 12:31:16 +00:00
|
|
|
|
2020-03-24 13:26:13 +00:00
|
|
|
~ParsedDerivation();
|
|
|
|
|
|
|
|
const nlohmann::json * getStructuredAttrs() const
|
2018-09-28 12:31:16 +00:00
|
|
|
{
|
2020-03-24 13:26:13 +00:00
|
|
|
return structuredAttrs.get();
|
2018-09-28 12:31:16 +00:00
|
|
|
}
|
|
|
|
|
2019-02-12 12:43:32 +00:00
|
|
|
std::optional<std::string> getStringAttr(const std::string & name) const;
|
2018-09-28 12:31:16 +00:00
|
|
|
|
|
|
|
bool getBoolAttr(const std::string & name, bool def = false) const;
|
|
|
|
|
2019-02-12 12:43:32 +00:00
|
|
|
std::optional<Strings> getStringsAttr(const std::string & name) const;
|
2018-09-28 12:31:16 +00:00
|
|
|
|
2018-09-28 13:57:27 +00:00
|
|
|
StringSet getRequiredSystemFeatures() const;
|
|
|
|
|
2018-09-28 12:31:16 +00:00
|
|
|
bool canBuildLocally() const;
|
|
|
|
|
|
|
|
bool willBuildLocally() const;
|
2019-09-03 14:02:12 +00:00
|
|
|
|
|
|
|
bool substitutesAllowed() const;
|
2018-09-28 12:31:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|