2015-04-09 10:12:50 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "types.hh"
|
2016-07-26 19:16:52 +00:00
|
|
|
|
#include "hash.hh"
|
2019-11-06 16:30:48 +00:00
|
|
|
|
#include "config.hh"
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
|
2015-04-09 10:12:50 +00:00
|
|
|
|
#include <string>
|
2016-09-14 14:00:40 +00:00
|
|
|
|
#include <future>
|
2015-04-09 10:12:50 +00:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
2019-06-17 06:43:45 +00:00
|
|
|
|
struct DownloadSettings : Config
|
|
|
|
|
{
|
|
|
|
|
Setting<bool> enableHttp2{this, true, "http2",
|
|
|
|
|
"Whether to enable HTTP/2 support."};
|
|
|
|
|
|
|
|
|
|
Setting<std::string> userAgentSuffix{this, "", "user-agent-suffix",
|
|
|
|
|
"String appended to the user agent in HTTP requests."};
|
|
|
|
|
|
|
|
|
|
Setting<size_t> httpConnections{this, 25, "http-connections",
|
|
|
|
|
"Number of parallel HTTP connections.",
|
|
|
|
|
{"binary-caches-parallel-connections"}};
|
|
|
|
|
|
|
|
|
|
Setting<unsigned long> connectTimeout{this, 0, "connect-timeout",
|
|
|
|
|
"Timeout for connecting to servers during downloads. 0 means use curl's builtin default."};
|
|
|
|
|
|
2019-08-07 19:14:40 +00:00
|
|
|
|
Setting<unsigned long> stalledDownloadTimeout{this, 300, "stalled-download-timeout",
|
|
|
|
|
"Timeout (in seconds) for receiving data from servers during download. Nix cancels idle downloads after this timeout's duration."};
|
|
|
|
|
|
2019-06-17 06:43:45 +00:00
|
|
|
|
Setting<unsigned int> tries{this, 5, "download-attempts",
|
|
|
|
|
"How often Nix will attempt to download a file before giving up."};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern DownloadSettings downloadSettings;
|
|
|
|
|
|
2016-09-14 14:00:40 +00:00
|
|
|
|
struct DownloadRequest
|
2015-10-21 12:59:01 +00:00
|
|
|
|
{
|
2016-09-14 14:00:40 +00:00
|
|
|
|
std::string uri;
|
2016-08-10 14:06:33 +00:00
|
|
|
|
std::string expectedETag;
|
|
|
|
|
bool verifyTLS = true;
|
|
|
|
|
bool head = false;
|
2019-06-17 06:43:45 +00:00
|
|
|
|
size_t tries = downloadSettings.tries;
|
2016-09-14 14:00:40 +00:00
|
|
|
|
unsigned int baseRetryTimeMs = 250;
|
2017-08-25 15:49:40 +00:00
|
|
|
|
ActivityId parentAct;
|
2017-09-18 09:07:28 +00:00
|
|
|
|
bool decompress = true;
|
2018-01-26 19:12:30 +00:00
|
|
|
|
std::shared_ptr<std::string> data;
|
|
|
|
|
std::string mimeType;
|
2018-03-27 22:01:47 +00:00
|
|
|
|
std::function<void(char *, size_t)> dataCallback;
|
2016-09-14 14:00:40 +00:00
|
|
|
|
|
2018-01-31 14:12:27 +00:00
|
|
|
|
DownloadRequest(const std::string & uri)
|
2018-03-12 04:56:41 +00:00
|
|
|
|
: uri(uri), parentAct(getCurActivity()) { }
|
2018-06-05 12:37:26 +00:00
|
|
|
|
|
|
|
|
|
std::string verb()
|
|
|
|
|
{
|
|
|
|
|
return data ? "upload" : "download";
|
|
|
|
|
}
|
2015-10-21 12:59:01 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-04-09 10:12:50 +00:00
|
|
|
|
struct DownloadResult
|
|
|
|
|
{
|
2017-02-14 13:20:00 +00:00
|
|
|
|
bool cached = false;
|
2016-09-14 14:00:40 +00:00
|
|
|
|
std::string etag;
|
2019-05-22 21:36:29 +00:00
|
|
|
|
std::string effectiveUri;
|
2016-04-15 13:11:34 +00:00
|
|
|
|
std::shared_ptr<std::string> data;
|
2018-08-06 09:31:14 +00:00
|
|
|
|
uint64_t bodySize = 0;
|
2015-04-09 10:12:50 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-05-22 21:36:29 +00:00
|
|
|
|
struct CachedDownloadRequest
|
|
|
|
|
{
|
|
|
|
|
std::string uri;
|
|
|
|
|
bool unpack = false;
|
|
|
|
|
std::string name;
|
|
|
|
|
Hash expectedHash;
|
2019-11-06 16:30:48 +00:00
|
|
|
|
unsigned int ttl;
|
2019-05-22 21:36:29 +00:00
|
|
|
|
|
2019-11-06 16:30:48 +00:00
|
|
|
|
CachedDownloadRequest(const std::string & uri);
|
|
|
|
|
CachedDownloadRequest() = delete;
|
2019-05-22 21:36:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-02-25 15:20:50 +00:00
|
|
|
|
struct CachedDownloadResult
|
|
|
|
|
{
|
2019-05-15 13:38:24 +00:00
|
|
|
|
// Note: 'storePath' may be different from 'path' when using a
|
|
|
|
|
// chroot store.
|
|
|
|
|
Path storePath;
|
2019-02-25 15:20:50 +00:00
|
|
|
|
Path path;
|
|
|
|
|
std::optional<std::string> etag;
|
2019-05-22 21:36:29 +00:00
|
|
|
|
std::string effectiveUri;
|
2019-02-25 15:20:50 +00:00
|
|
|
|
};
|
|
|
|
|
|
2016-02-04 13:48:42 +00:00
|
|
|
|
class Store;
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
|
2016-02-29 17:15:20 +00:00
|
|
|
|
struct Downloader
|
|
|
|
|
{
|
2019-09-20 11:48:53 +00:00
|
|
|
|
virtual ~Downloader() { }
|
|
|
|
|
|
2016-09-14 14:00:40 +00:00
|
|
|
|
/* Enqueue a download request, returning a future to the result of
|
|
|
|
|
the download. The future may throw a DownloadError
|
|
|
|
|
exception. */
|
2016-09-16 16:54:14 +00:00
|
|
|
|
virtual void enqueueDownload(const DownloadRequest & request,
|
2018-03-27 20:16:01 +00:00
|
|
|
|
Callback<DownloadResult> callback) = 0;
|
2016-09-16 16:54:14 +00:00
|
|
|
|
|
|
|
|
|
std::future<DownloadResult> enqueueDownload(const DownloadRequest & request);
|
2016-09-14 14:00:40 +00:00
|
|
|
|
|
2019-07-10 17:46:15 +00:00
|
|
|
|
/* Synchronously download a file. */
|
2016-09-14 14:00:40 +00:00
|
|
|
|
DownloadResult download(const DownloadRequest & request);
|
2016-02-29 17:15:20 +00:00
|
|
|
|
|
2018-03-27 22:01:47 +00:00
|
|
|
|
/* Download a file, writing its data to a sink. The sink will be
|
2019-07-10 17:46:15 +00:00
|
|
|
|
invoked on the thread of the caller. */
|
2018-03-27 22:01:47 +00:00
|
|
|
|
void download(DownloadRequest && request, Sink & sink);
|
|
|
|
|
|
2016-09-14 14:00:40 +00:00
|
|
|
|
/* Check if the specified file is already in ~/.cache/nix/tarballs
|
2016-11-25 23:37:43 +00:00
|
|
|
|
and is more recent than ‘tarball-ttl’ seconds. Otherwise,
|
2016-09-14 14:00:40 +00:00
|
|
|
|
use the recorded ETag to verify if the server has a more
|
|
|
|
|
recent version, and if so, download it to the Nix store. */
|
2019-05-22 21:36:29 +00:00
|
|
|
|
CachedDownloadResult downloadCached(ref<Store> store, const CachedDownloadRequest & request);
|
2016-08-11 15:34:43 +00:00
|
|
|
|
|
2016-09-16 16:54:14 +00:00
|
|
|
|
enum Error { NotFound, Forbidden, Misc, Transient, Interrupted };
|
2016-02-29 17:15:20 +00:00
|
|
|
|
};
|
2015-04-09 10:12:50 +00:00
|
|
|
|
|
2016-09-14 14:00:40 +00:00
|
|
|
|
/* Return a shared Downloader object. Using this object is preferred
|
|
|
|
|
because it enables connection reuse and HTTP/2 multiplexing. */
|
|
|
|
|
ref<Downloader> getDownloader();
|
|
|
|
|
|
|
|
|
|
/* Return a new Downloader object. */
|
2016-02-29 17:15:20 +00:00
|
|
|
|
ref<Downloader> makeDownloader();
|
2015-05-05 15:09:42 +00:00
|
|
|
|
|
2016-02-29 17:15:20 +00:00
|
|
|
|
class DownloadError : public Error
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Downloader::Error error;
|
|
|
|
|
DownloadError(Downloader::Error error, const FormatOrString & fs)
|
|
|
|
|
: Error(fs), error(error)
|
|
|
|
|
{ }
|
|
|
|
|
};
|
2015-04-09 10:49:13 +00:00
|
|
|
|
|
2015-05-06 12:54:31 +00:00
|
|
|
|
bool isUri(const string & s);
|
|
|
|
|
|
2015-04-09 10:12:50 +00:00
|
|
|
|
}
|