1a1af75338
We embrace virtual the rest of the way, and get rid of the `assert(false)` 0-param constructors. We also list config base classes first, so the constructor order is always: 1. all the configs 2. all the stores Each in the same order
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "remote-store.hh"
|
|
#include "local-fs-store.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct UDSRemoteStoreConfig : virtual LocalFSStoreConfig, virtual RemoteStoreConfig
|
|
{
|
|
UDSRemoteStoreConfig(const Store::Params & params)
|
|
: StoreConfig(params)
|
|
, LocalFSStoreConfig(params)
|
|
, RemoteStoreConfig(params)
|
|
{
|
|
}
|
|
|
|
const std::string name() override { return "Local Daemon Store"; }
|
|
};
|
|
|
|
class UDSRemoteStore : public virtual UDSRemoteStoreConfig, public virtual LocalFSStore, public virtual RemoteStore
|
|
{
|
|
public:
|
|
|
|
UDSRemoteStore(const Params & params);
|
|
UDSRemoteStore(const std::string scheme, std::string path, const Params & params);
|
|
|
|
std::string getUri() override;
|
|
|
|
static std::set<std::string> uriSchemes()
|
|
{ return {"unix"}; }
|
|
|
|
bool sameMachine() override
|
|
{ return true; }
|
|
|
|
ref<FSAccessor> getFSAccessor() override
|
|
{ return LocalFSStore::getFSAccessor(); }
|
|
|
|
void narFromPath(const StorePath & path, Sink & sink) override
|
|
{ LocalFSStore::narFromPath(path, sink); }
|
|
|
|
private:
|
|
|
|
ref<RemoteStore::Connection> openConnection() override;
|
|
std::optional<std::string> path;
|
|
};
|
|
|
|
}
|