2012-07-18 20:59:03 +02:00
|
|
|
#pragma once
|
2006-11-30 19:35:50 +01:00
|
|
|
|
2016-02-23 16:40:16 +01:00
|
|
|
#include <limits>
|
2006-11-30 19:35:50 +01:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2006-11-30 20:54:43 +01:00
|
|
|
class Pipe;
|
|
|
|
class Pid;
|
|
|
|
struct FdSink;
|
|
|
|
struct FdSource;
|
2016-02-23 15:00:59 +01:00
|
|
|
template<typename T> class Pool;
|
2006-11-30 20:54:43 +01:00
|
|
|
|
|
|
|
|
2016-02-25 17:43:19 +01:00
|
|
|
/* FIXME: RemoteStore is a misnomer - should be something like
|
|
|
|
DaemonStore. */
|
|
|
|
class RemoteStore : public LocalFSStore
|
2006-11-30 19:35:50 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2016-02-23 16:40:16 +01:00
|
|
|
RemoteStore(size_t maxConnections = std::numeric_limits<size_t>::max());
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
/* Implementations of abstract store API methods. */
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2016-04-29 16:26:16 +02:00
|
|
|
std::string getUri() override;
|
|
|
|
|
2016-04-19 18:50:15 +02:00
|
|
|
bool isValidPathUncached(const Path & path) override;
|
2006-11-30 19:35:50 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
PathSet queryValidPaths(const PathSet & paths) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
PathSet queryAllValidPaths() override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2016-04-19 18:50:15 +02:00
|
|
|
std::shared_ptr<ValidPathInfo> queryPathInfoUncached(const Path & path) override;
|
2006-11-30 19:35:50 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
void queryReferrers(const Path & path, PathSet & referrers) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
PathSet queryValidDerivers(const Path & path) override;
|
2012-12-20 18:41:44 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
PathSet queryDerivationOutputs(const Path & path) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
StringSet queryDerivationOutputNames(const Path & path) override;
|
2011-11-06 07:28:20 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
Path queryPathFromHashPart(const string & hashPart) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
PathSet querySubstitutablePaths(const PathSet & paths) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
download-from-binary-cache: parallelise fetching of NAR info files
Getting substitute information using the binary cache substituter has
non-trivial latency overhead. A package or NixOS system configuration
can have hundreds of dependencies, and in the worst case (when the
local info cache is empty) we have to do a separate HTTP request for
each of these. If the ping time to the server is t, getting N info
files will take tN seconds; e.g., with a ping time of 0.1s to
nixos.org, sequentially downloading 1000 info files (a typical NixOS
config) will take at least 100 seconds.
To fix this problem, the binary cache substituter can now perform
requests in parallel. This required changing the substituter
interface to support a function querySubstitutablePathInfos() that
queries multiple paths at the same time, and rewriting queryMissing()
to take advantage of parallelism. (Due to local caching,
parallelising queryMissing() is sufficient for most use cases, since
it's almost always called before building a derivation and thus fills
the local info cache.)
For example, parallelism speeds up querying all 1056 paths in a
particular NixOS system configuration from 116s to 2.6s. It works so
well because the eccentricity of the top-level derivation in the
dependency graph is only 9. So we only need 10 round-trips (when
using an unlimited number of parallel connections) to get everything.
Currently we do a maximum of 150 parallel connections to the server.
Thus it's important that the binary cache server (e.g. nixos.org) has
a high connection limit. Alternatively we could use HTTP pipelining,
but WWW::Curl doesn't support it and libcurl has a hard-coded limit of
5 requests per pipeline.
2012-07-07 01:08:20 +02:00
|
|
|
void querySubstitutablePathInfos(const PathSet & paths,
|
2015-09-18 01:22:06 +02:00
|
|
|
SubstitutablePathInfos & infos) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
|
|
|
Path addToStore(const string & name, const Path & srcPath,
|
2008-12-03 17:10:17 +01:00
|
|
|
bool recursive = true, HashType hashAlgo = htSHA256,
|
2015-09-18 01:22:06 +02:00
|
|
|
PathFilter & filter = defaultPathFilter, bool repair = false) override;
|
2006-11-30 19:35:50 +01:00
|
|
|
|
2008-12-03 16:06:30 +01:00
|
|
|
Path addTextToStore(const string & name, const string & s,
|
2015-09-18 01:22:06 +02:00
|
|
|
const PathSet & references, bool repair = false) override;
|
2006-11-30 19:35:50 +01:00
|
|
|
|
2007-02-21 00:17:20 +01:00
|
|
|
void exportPath(const Path & path, bool sign,
|
2015-09-18 01:22:06 +02:00
|
|
|
Sink & sink) override;
|
2007-02-21 00:17:20 +01:00
|
|
|
|
2016-02-26 15:20:10 +01:00
|
|
|
Paths importPaths(bool requireSignature, Source & source,
|
|
|
|
std::shared_ptr<FSAccessor> accessor) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
void buildPaths(const PathSet & paths, BuildMode buildMode) override;
|
2006-11-30 19:35:50 +01:00
|
|
|
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 17:57:40 +02:00
|
|
|
BuildResult buildDerivation(const Path & drvPath, const BasicDerivation & drv,
|
|
|
|
BuildMode buildMode) override;
|
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
void ensurePath(const Path & path) override;
|
2006-11-30 19:35:50 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
void addTempRoot(const Path & path) override;
|
2006-12-02 17:41:36 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
void addIndirectRoot(const Path & path) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
void syncWithGC() override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
Roots findRoots() override;
|
2006-12-05 03:18:46 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
void collectGarbage(const GCOptions & options, GCResults & results) override;
|
2015-03-25 17:06:12 +01:00
|
|
|
|
2015-09-18 01:22:06 +02:00
|
|
|
void optimiseStore() override;
|
|
|
|
|
|
|
|
bool verifyStore(bool checkContents, bool repair) override;
|
2014-09-01 22:21:42 +02:00
|
|
|
|
2016-04-05 15:30:22 +02:00
|
|
|
void addSignatures(const Path & storePath, const StringSet & sigs) override;
|
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
private:
|
2008-12-11 15:30:25 +01:00
|
|
|
|
2016-02-23 15:00:59 +01:00
|
|
|
struct Connection
|
|
|
|
{
|
|
|
|
AutoCloseFD fd;
|
|
|
|
FdSink to;
|
|
|
|
FdSource from;
|
|
|
|
unsigned int daemonVersion;
|
2006-12-03 03:08:13 +01:00
|
|
|
|
2016-02-23 16:40:16 +01:00
|
|
|
~Connection();
|
|
|
|
|
2016-02-23 15:00:59 +01:00
|
|
|
void processStderr(Sink * sink = 0, Source * source = 0);
|
|
|
|
};
|
2006-12-04 14:28:14 +01:00
|
|
|
|
2016-02-23 15:00:59 +01:00
|
|
|
ref<Pool<Connection>> connections;
|
2007-09-18 11:11:20 +02:00
|
|
|
|
2016-02-24 17:33:53 +01:00
|
|
|
ref<Connection> openConnection();
|
2016-02-23 15:00:59 +01:00
|
|
|
|
|
|
|
void setOptions(ref<Connection> conn);
|
2006-11-30 19:35:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|