2020-03-30 14:04:18 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "fetchers.hh"
|
|
|
|
|
|
|
|
namespace nix::fetchers {
|
|
|
|
|
|
|
|
struct Cache
|
|
|
|
{
|
2020-07-03 12:50:07 +00:00
|
|
|
virtual ~Cache() { }
|
|
|
|
|
2020-03-30 14:04:18 +00:00
|
|
|
virtual void add(
|
|
|
|
ref<Store> store,
|
|
|
|
const Attrs & inAttrs,
|
|
|
|
const Attrs & infoAttrs,
|
|
|
|
const StorePath & storePath,
|
|
|
|
bool immutable) = 0;
|
|
|
|
|
|
|
|
virtual std::optional<std::pair<Attrs, StorePath>> lookup(
|
|
|
|
ref<Store> store,
|
|
|
|
const Attrs & inAttrs) = 0;
|
|
|
|
|
|
|
|
struct Result
|
|
|
|
{
|
|
|
|
bool expired = false;
|
|
|
|
Attrs infoAttrs;
|
|
|
|
StorePath storePath;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual std::optional<Result> lookupExpired(
|
|
|
|
ref<Store> store,
|
|
|
|
const Attrs & inAttrs) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
ref<Cache> getCache();
|
|
|
|
|
|
|
|
}
|