Nix/src/libstore/parsed-derivations.hh

40 lines
846 B
C++
Raw Normal View History

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