2015-04-09 12:12:50 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.hh"
|
2016-07-26 21:16:52 +02:00
|
|
|
#include "hash.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 14:28:26 +01:00
|
|
|
|
2015-04-09 12:12:50 +02:00
|
|
|
#include <string>
|
2016-09-14 16:00:40 +02:00
|
|
|
#include <future>
|
2015-04-09 12:12:50 +02:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2016-09-14 16:00:40 +02:00
|
|
|
struct DownloadRequest
|
2015-10-21 14:59:01 +02:00
|
|
|
{
|
2016-09-14 16:00:40 +02:00
|
|
|
std::string uri;
|
2016-08-10 16:06:33 +02:00
|
|
|
std::string expectedETag;
|
|
|
|
bool verifyTLS = true;
|
|
|
|
enum { yes, no, automatic } showProgress = yes;
|
|
|
|
bool head = false;
|
|
|
|
size_t tries = 1;
|
2016-09-14 16:00:40 +02:00
|
|
|
unsigned int baseRetryTimeMs = 250;
|
|
|
|
|
|
|
|
DownloadRequest(const std::string & uri) : uri(uri) { }
|
2015-10-21 14:59:01 +02:00
|
|
|
};
|
|
|
|
|
2015-04-09 12:12:50 +02:00
|
|
|
struct DownloadResult
|
|
|
|
{
|
|
|
|
bool cached;
|
2016-09-14 16:00:40 +02:00
|
|
|
std::string etag;
|
|
|
|
std::string effectiveUrl;
|
2016-04-15 15:11:34 +02:00
|
|
|
std::shared_ptr<std::string> data;
|
2015-04-09 12:12:50 +02:00
|
|
|
};
|
|
|
|
|
2016-02-04 14:48:42 +01: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 14:28:26 +01:00
|
|
|
|
2016-02-29 18:15:20 +01:00
|
|
|
struct Downloader
|
|
|
|
{
|
2016-09-14 16:00:40 +02:00
|
|
|
/* Enqueue a download request, returning a future to the result of
|
|
|
|
the download. The future may throw a DownloadError
|
|
|
|
exception. */
|
2016-09-16 18:54:14 +02:00
|
|
|
virtual void enqueueDownload(const DownloadRequest & request,
|
|
|
|
std::function<void(const DownloadResult &)> success,
|
|
|
|
std::function<void(std::exception_ptr exc)> failure) = 0;
|
|
|
|
|
|
|
|
std::future<DownloadResult> enqueueDownload(const DownloadRequest & request);
|
2016-09-14 16:00:40 +02:00
|
|
|
|
|
|
|
/* Synchronously download a file. */
|
|
|
|
DownloadResult download(const DownloadRequest & request);
|
2016-02-29 18:15:20 +01:00
|
|
|
|
2016-09-14 16:00:40 +02:00
|
|
|
/* Check if the specified file is already in ~/.cache/nix/tarballs
|
2016-11-25 15:48:27 +01:00
|
|
|
and is more recent than 'tarball-ttl' seconds. Otherwise,
|
2016-09-14 16:00:40 +02:00
|
|
|
use the recorded ETag to verify if the server has a more
|
|
|
|
recent version, and if so, download it to the Nix store. */
|
|
|
|
Path downloadCached(ref<Store> store, const string & uri, bool unpack, string name = "",
|
|
|
|
const Hash & expectedHash = Hash(), string * effectiveUri = nullptr);
|
2016-08-11 17:34:43 +02:00
|
|
|
|
2016-09-16 18:54:14 +02:00
|
|
|
enum Error { NotFound, Forbidden, Misc, Transient, Interrupted };
|
2016-02-29 18:15:20 +01:00
|
|
|
};
|
2015-04-09 12:12:50 +02:00
|
|
|
|
2016-09-14 16:00:40 +02: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 18:15:20 +01:00
|
|
|
ref<Downloader> makeDownloader();
|
2015-05-05 17:09:42 +02:00
|
|
|
|
2016-02-29 18:15:20 +01:00
|
|
|
class DownloadError : public Error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Downloader::Error error;
|
|
|
|
DownloadError(Downloader::Error error, const FormatOrString & fs)
|
|
|
|
: Error(fs), error(error)
|
|
|
|
{ }
|
|
|
|
};
|
2015-04-09 12:49:13 +02:00
|
|
|
|
2015-05-06 14:54:31 +02:00
|
|
|
bool isUri(const string & s);
|
|
|
|
|
2015-04-09 12:12:50 +02:00
|
|
|
}
|