mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
470c0501eb
In particular `local://<path>` and `unix://` (without any path) now work, and mean the same things as `local` and `daemon`, respectively. We thus now have the opportunity to desguar `local` and `daemon` early. This will allow me to make a change to https://github.com/NixOS/nix/pull/9839 requested during review to desugar those earlier. Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
#pragma once
|
|
///@file
|
|
|
|
#include "remote-store.hh"
|
|
#include "remote-store-connection.hh"
|
|
#include "indirect-root-store.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct UDSRemoteStoreConfig : virtual LocalFSStoreConfig, virtual RemoteStoreConfig
|
|
{
|
|
UDSRemoteStoreConfig(const Params & params)
|
|
: StoreConfig(params)
|
|
, LocalFSStoreConfig(params)
|
|
, RemoteStoreConfig(params)
|
|
{
|
|
}
|
|
|
|
const std::string name() override { return "Local Daemon Store"; }
|
|
|
|
std::string doc() override;
|
|
};
|
|
|
|
class UDSRemoteStore : public virtual UDSRemoteStoreConfig
|
|
, public virtual IndirectRootStore
|
|
, public virtual RemoteStore
|
|
{
|
|
public:
|
|
|
|
UDSRemoteStore(const Params & params);
|
|
UDSRemoteStore(
|
|
std::string_view scheme,
|
|
PathView path,
|
|
const Params & params);
|
|
|
|
std::string getUri() override;
|
|
|
|
static std::set<std::string> uriSchemes()
|
|
{ return {"unix"}; }
|
|
|
|
ref<SourceAccessor> getFSAccessor(bool requireValidPath = true) override
|
|
{ return LocalFSStore::getFSAccessor(requireValidPath); }
|
|
|
|
void narFromPath(const StorePath & path, Sink & sink) override
|
|
{ LocalFSStore::narFromPath(path, sink); }
|
|
|
|
/**
|
|
* Implementation of `IndirectRootStore::addIndirectRoot()` which
|
|
* delegates to the remote store.
|
|
*
|
|
* The idea is that the client makes the direct symlink, so it is
|
|
* owned managed by the client's user account, and the server makes
|
|
* the indirect symlink.
|
|
*/
|
|
void addIndirectRoot(const Path & path) override;
|
|
|
|
private:
|
|
|
|
struct Connection : RemoteStore::Connection
|
|
{
|
|
AutoCloseFD fd;
|
|
void closeWrite() override;
|
|
};
|
|
|
|
ref<RemoteStore::Connection> openConnection() override;
|
|
std::optional<std::string> path;
|
|
};
|
|
|
|
}
|