44 lines
971 B
C++
44 lines
971 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "libstore/pathlocks.hh"
|
|
#include "lix/libfetchers/fetchers.hh"
|
|
#include "lix/libstore/path.hh"
|
|
|
|
namespace nix::fetchers {
|
|
|
|
struct Cache
|
|
{
|
|
virtual ~Cache() { }
|
|
|
|
virtual void add(
|
|
ref<Store> store,
|
|
const Attrs & inAttrs,
|
|
const Attrs & infoAttrs,
|
|
const StorePath & storePath,
|
|
bool locked) = 0;
|
|
|
|
virtual kj::Promise<Result<std::optional<std::pair<Attrs, StorePath>>>> lookup(
|
|
ref<Store> store,
|
|
const Attrs & inAttrs) = 0;
|
|
|
|
virtual kj::Promise<Result<std::variant<std::pair<Attrs, StorePath>, PathLock>>> lookupOrLock(
|
|
ref<Store> store,
|
|
const Attrs & inAttrs) = 0;
|
|
|
|
struct LookupResult
|
|
{
|
|
bool expired = false;
|
|
Attrs infoAttrs;
|
|
StorePath storePath;
|
|
};
|
|
|
|
virtual kj::Promise<Result<std::optional<LookupResult>>> lookupExpired(
|
|
ref<Store> store,
|
|
const Attrs & inAttrs) = 0;
|
|
};
|
|
|
|
ref<Cache> getCache();
|
|
|
|
}
|