nix-super/src/libexpr/eval-cache.hh

124 lines
2.6 KiB
C++
Raw Normal View History

#pragma once
#include "sync.hh"
2020-04-20 14:13:52 +03:00
#include "hash.hh"
#include "eval.hh"
#include <functional>
2020-04-20 14:13:52 +03:00
#include <variant>
2020-04-20 14:13:52 +03:00
namespace nix::eval_cache {
MakeError(CachedEvalError, EvalError);
2020-10-06 15:00:42 +03:00
struct AttrDb;
2020-04-20 14:13:52 +03:00
class AttrCursor;
class EvalCache : public std::enable_shared_from_this<EvalCache>
{
friend class AttrCursor;
std::shared_ptr<AttrDb> db;
EvalState & state;
typedef std::function<Value *()> RootLoader;
RootLoader rootLoader;
RootValue value;
Value * getRootValue();
public:
EvalCache(
std::optional<std::reference_wrapper<const Hash>> useCache,
2020-04-20 14:13:52 +03:00
EvalState & state,
RootLoader rootLoader);
std::shared_ptr<AttrCursor> getRoot();
};
enum AttrType {
Placeholder = 0,
FullAttrs = 1,
String = 2,
Missing = 3,
Misc = 4,
Failed = 5,
Bool = 6,
2020-04-20 14:13:52 +03:00
};
struct placeholder_t {};
struct missing_t {};
struct misc_t {};
struct failed_t {};
typedef uint64_t AttrId;
typedef std::pair<AttrId, Symbol> AttrKey;
2020-06-29 20:08:37 +03:00
typedef std::pair<std::string, std::vector<std::pair<Path, std::string>>> string_t;
typedef std::variant<
std::vector<Symbol>,
string_t,
placeholder_t,
missing_t,
misc_t,
failed_t,
bool
> AttrValue;
2020-04-20 14:13:52 +03:00
class AttrCursor : public std::enable_shared_from_this<AttrCursor>
{
2020-04-20 14:13:52 +03:00
friend class EvalCache;
ref<EvalCache> root;
typedef std::optional<std::pair<std::shared_ptr<AttrCursor>, Symbol>> Parent;
Parent parent;
RootValue _value;
std::optional<std::pair<AttrId, AttrValue>> cachedValue;
2020-04-20 14:13:52 +03:00
AttrKey getKey();
2020-04-20 14:13:52 +03:00
Value & getValue();
public:
2020-04-20 14:13:52 +03:00
AttrCursor(
ref<EvalCache> root,
Parent parent,
Value * value = nullptr,
std::optional<std::pair<AttrId, AttrValue>> && cachedValue = {});
std::vector<Symbol> getAttrPath() const;
std::vector<Symbol> getAttrPath(Symbol name) const;
std::string getAttrPathStr() const;
std::string getAttrPathStr(Symbol name) const;
std::shared_ptr<AttrCursor> maybeGetAttr(Symbol name, bool forceErrors = false);
2020-04-20 14:13:52 +03:00
std::shared_ptr<AttrCursor> maybeGetAttr(std::string_view name);
std::shared_ptr<AttrCursor> getAttr(Symbol name, bool forceErrors = false);
2020-04-20 14:13:52 +03:00
std::shared_ptr<AttrCursor> getAttr(std::string_view name);
std::shared_ptr<AttrCursor> findAlongAttrPath(const std::vector<Symbol> & attrPath);
std::string getString();
2020-06-29 20:08:37 +03:00
string_t getStringWithContext();
bool getBool();
2020-04-20 14:13:52 +03:00
std::vector<Symbol> getAttrs();
2020-04-20 14:13:52 +03:00
bool isDerivation();
2020-04-20 14:13:52 +03:00
Value & forceValue();
/* Force creation of the .drv file in the Nix store. */
StorePath forceDerivation();
};
}