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