forked from lix-project/lix
Eliminate local-binary-cache-store.hh
This commit is contained in:
parent
0b907321cc
commit
6170bb474b
|
@ -1,7 +1,31 @@
|
||||||
#include "local-binary-cache-store.hh"
|
#include "binary-cache-store.hh"
|
||||||
|
|
||||||
namespace nix {
|
namespace nix {
|
||||||
|
|
||||||
|
class LocalBinaryCacheStore : public BinaryCacheStore
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
|
||||||
|
Path binaryCacheDir;
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
LocalBinaryCacheStore(std::shared_ptr<Store> localStore,
|
||||||
|
const Path & secretKeyFile, const Path & publicKeyFile,
|
||||||
|
const Path & binaryCacheDir);
|
||||||
|
|
||||||
|
void init() override;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
bool fileExists(const std::string & path) override;
|
||||||
|
|
||||||
|
void upsertFile(const std::string & path, const std::string & data) override;
|
||||||
|
|
||||||
|
std::string getFile(const std::string & path) override;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
LocalBinaryCacheStore::LocalBinaryCacheStore(std::shared_ptr<Store> localStore,
|
LocalBinaryCacheStore::LocalBinaryCacheStore(std::shared_ptr<Store> localStore,
|
||||||
const Path & secretKeyFile, const Path & publicKeyFile,
|
const Path & secretKeyFile, const Path & publicKeyFile,
|
||||||
const Path & binaryCacheDir)
|
const Path & binaryCacheDir)
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "binary-cache-store.hh"
|
|
||||||
|
|
||||||
namespace nix {
|
|
||||||
|
|
||||||
class LocalBinaryCacheStore : public BinaryCacheStore
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
|
|
||||||
Path binaryCacheDir;
|
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
LocalBinaryCacheStore(std::shared_ptr<Store> localStore,
|
|
||||||
const Path & secretKeyFile, const Path & publicKeyFile,
|
|
||||||
const Path & binaryCacheDir);
|
|
||||||
|
|
||||||
void init() override;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
|
|
||||||
bool fileExists(const std::string & path) override;
|
|
||||||
|
|
||||||
void upsertFile(const std::string & path, const std::string & data) override;
|
|
||||||
|
|
||||||
std::string getFile(const std::string & path) override;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue