2024-07-15 20:13:11 +03:00
|
|
|
#pragma once
|
|
|
|
///@file
|
|
|
|
|
|
|
|
#include "common-ssh-store-config.hh"
|
|
|
|
#include "store-api.hh"
|
2024-07-18 06:32:27 +03:00
|
|
|
#include "local-fs-store.hh"
|
2024-07-15 20:13:11 +03:00
|
|
|
#include "remote-store.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct SSHStoreConfig : virtual RemoteStoreConfig, virtual CommonSSHStoreConfig
|
|
|
|
{
|
|
|
|
using CommonSSHStoreConfig::CommonSSHStoreConfig;
|
|
|
|
using RemoteStoreConfig::RemoteStoreConfig;
|
|
|
|
|
|
|
|
SSHStoreConfig(std::string_view scheme, std::string_view authority, const Params & params);
|
|
|
|
|
|
|
|
const Setting<Strings> remoteProgram{
|
|
|
|
this, {"nix-daemon"}, "remote-program", "Path to the `nix-daemon` executable on the remote machine."};
|
|
|
|
|
|
|
|
const std::string name() override
|
|
|
|
{
|
|
|
|
return "Experimental SSH Store";
|
|
|
|
}
|
|
|
|
|
2024-07-16 06:26:39 +03:00
|
|
|
static std::set<std::string> uriSchemes()
|
|
|
|
{
|
|
|
|
return {"ssh-ng"};
|
|
|
|
}
|
|
|
|
|
2024-07-15 20:13:11 +03:00
|
|
|
std::string doc() override;
|
|
|
|
};
|
|
|
|
|
2024-07-18 06:32:27 +03:00
|
|
|
struct MountedSSHStoreConfig : virtual SSHStoreConfig, virtual LocalFSStoreConfig
|
|
|
|
{
|
|
|
|
using LocalFSStoreConfig::LocalFSStoreConfig;
|
|
|
|
using SSHStoreConfig::SSHStoreConfig;
|
|
|
|
|
|
|
|
MountedSSHStoreConfig(StringMap params);
|
|
|
|
|
|
|
|
MountedSSHStoreConfig(std::string_view scheme, std::string_view host, StringMap params);
|
|
|
|
|
|
|
|
const std::string name() override
|
|
|
|
{
|
|
|
|
return "Experimental SSH Store with filesystem mounted";
|
|
|
|
}
|
|
|
|
|
2024-07-16 06:26:39 +03:00
|
|
|
static std::set<std::string> uriSchemes()
|
|
|
|
{
|
|
|
|
return {"mounted-ssh-ng"};
|
|
|
|
}
|
|
|
|
|
2024-07-18 06:32:27 +03:00
|
|
|
std::string doc() override;
|
|
|
|
|
|
|
|
std::optional<ExperimentalFeature> experimentalFeature() const override
|
|
|
|
{
|
|
|
|
return ExperimentalFeature::MountedSSHStore;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-07-15 20:13:11 +03:00
|
|
|
}
|