mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 10:16:15 +02:00
35 lines
642 B
C++
35 lines
642 B
C++
|
#pragma once
|
||
|
|
||
|
#include "fetchers.hh"
|
||
|
|
||
|
namespace nix::fetchers {
|
||
|
|
||
|
struct Cache
|
||
|
{
|
||
|
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();
|
||
|
|
||
|
}
|