2015-04-09 13:12:50 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.hh"
|
2016-07-26 22:16:52 +03:00
|
|
|
#include "hash.hh"
|
2019-11-06 18:30:48 +02: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 15:28:26 +02:00
|
|
|
|
2015-04-09 13:12:50 +03:00
|
|
|
#include <string>
|
2016-09-14 17:00:40 +03:00
|
|
|
#include <future>
|
2015-04-09 13:12:50 +03:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
struct FileTransferSettings : Config
|
2019-06-17 09:43:45 +03:00
|
|
|
{
|
|
|
|
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 22:14:40 +03: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 09:43:45 +03:00
|
|
|
Setting<unsigned int> tries{this, 5, "download-attempts",
|
|
|
|
"How often Nix will attempt to download a file before giving up."};
|
|
|
|
};
|
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
extern FileTransferSettings fileTransferSettings;
|
2019-06-17 09:43:45 +03:00
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
struct FileTransferRequest
|
2015-10-21 15:59:01 +03:00
|
|
|
{
|
2016-09-14 17:00:40 +03:00
|
|
|
std::string uri;
|
2016-08-10 17:06:33 +03:00
|
|
|
std::string expectedETag;
|
|
|
|
bool verifyTLS = true;
|
|
|
|
bool head = false;
|
2020-04-07 00:43:43 +03:00
|
|
|
size_t tries = fileTransferSettings.tries;
|
2016-09-14 17:00:40 +03:00
|
|
|
unsigned int baseRetryTimeMs = 250;
|
2017-08-25 18:49:40 +03:00
|
|
|
ActivityId parentAct;
|
2017-09-18 12:07:28 +03:00
|
|
|
bool decompress = true;
|
2018-01-26 21:12:30 +02:00
|
|
|
std::shared_ptr<std::string> data;
|
|
|
|
std::string mimeType;
|
2018-03-28 01:01:47 +03:00
|
|
|
std::function<void(char *, size_t)> dataCallback;
|
2016-09-14 17:00:40 +03:00
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
FileTransferRequest(const std::string & uri)
|
2018-03-12 06:56:41 +02:00
|
|
|
: uri(uri), parentAct(getCurActivity()) { }
|
2018-06-05 15:37:26 +03:00
|
|
|
|
|
|
|
std::string verb()
|
|
|
|
{
|
|
|
|
return data ? "upload" : "download";
|
|
|
|
}
|
2015-10-21 15:59:01 +03:00
|
|
|
};
|
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
struct FileTransferResult
|
2015-04-09 13:12:50 +03:00
|
|
|
{
|
2017-02-14 15:20:00 +02:00
|
|
|
bool cached = false;
|
2016-09-14 17:00:40 +03:00
|
|
|
std::string etag;
|
2019-05-23 00:36:29 +03:00
|
|
|
std::string effectiveUri;
|
2016-04-15 16:11:34 +03:00
|
|
|
std::shared_ptr<std::string> data;
|
2018-08-06 12:31:14 +03:00
|
|
|
uint64_t bodySize = 0;
|
2015-04-09 13:12:50 +03:00
|
|
|
};
|
|
|
|
|
2016-02-04 15:48:42 +02: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 15:28:26 +02:00
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
struct FileTransfer
|
2016-02-29 19:15:20 +02:00
|
|
|
{
|
2020-04-07 00:43:43 +03:00
|
|
|
virtual ~FileTransfer() { }
|
2019-09-20 14:48:53 +03:00
|
|
|
|
2020-04-06 23:57:09 +03:00
|
|
|
/* Enqueue a data transfer request, returning a future to the result of
|
2020-04-07 00:43:43 +03:00
|
|
|
the download. The future may throw a FileTransferError
|
2016-09-14 17:00:40 +03:00
|
|
|
exception. */
|
2020-04-07 00:43:43 +03:00
|
|
|
virtual void enqueueFileTransfer(const FileTransferRequest & request,
|
|
|
|
Callback<FileTransferResult> callback) = 0;
|
2016-09-16 19:54:14 +03:00
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
std::future<FileTransferResult> enqueueFileTransfer(const FileTransferRequest & request);
|
2016-09-14 17:00:40 +03:00
|
|
|
|
2019-07-10 20:46:15 +03:00
|
|
|
/* Synchronously download a file. */
|
2020-04-07 00:43:43 +03:00
|
|
|
FileTransferResult download(const FileTransferRequest & request);
|
2016-02-29 19:15:20 +02:00
|
|
|
|
2020-04-07 00:34:31 +03:00
|
|
|
/* Synchronously upload a file. */
|
2020-04-07 00:43:43 +03:00
|
|
|
FileTransferResult upload(const FileTransferRequest & request);
|
2016-02-29 19:15:20 +02:00
|
|
|
|
2018-03-28 01:01:47 +03:00
|
|
|
/* Download a file, writing its data to a sink. The sink will be
|
2019-07-10 20:46:15 +03:00
|
|
|
invoked on the thread of the caller. */
|
2020-04-07 00:43:43 +03:00
|
|
|
void download(FileTransferRequest && request, Sink & sink);
|
2016-08-11 18:34:43 +03:00
|
|
|
|
2016-09-16 19:54:14 +03:00
|
|
|
enum Error { NotFound, Forbidden, Misc, Transient, Interrupted };
|
2016-02-29 19:15:20 +02:00
|
|
|
};
|
2015-04-09 13:12:50 +03:00
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
/* Return a shared FileTransfer object. Using this object is preferred
|
2016-09-14 17:00:40 +03:00
|
|
|
because it enables connection reuse and HTTP/2 multiplexing. */
|
2020-04-07 00:43:43 +03:00
|
|
|
ref<FileTransfer> getFileTransfer();
|
2016-09-14 17:00:40 +03:00
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
/* Return a new FileTransfer object. */
|
|
|
|
ref<FileTransfer> makeFileTransfer();
|
2015-05-05 18:09:42 +03:00
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
class FileTransferError : public Error
|
2016-02-29 19:15:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2020-04-07 00:43:43 +03:00
|
|
|
FileTransfer::Error error;
|
2020-06-16 22:14:11 +03:00
|
|
|
std::shared_ptr<string> response; // intentionally optional
|
2020-05-12 00:52:15 +03:00
|
|
|
template<typename... Args>
|
2020-06-16 22:14:11 +03:00
|
|
|
FileTransferError(FileTransfer::Error error, std::shared_ptr<string> response, const Args & ... args)
|
|
|
|
: Error(args...), error(error), response(response)
|
2016-02-29 19:15:20 +02:00
|
|
|
{ }
|
|
|
|
};
|
2015-04-09 13:49:13 +03:00
|
|
|
|
2015-05-06 15:54:31 +03:00
|
|
|
bool isUri(const string & s);
|
|
|
|
|
2020-03-30 17:04:18 +03:00
|
|
|
/* Resolve deprecated 'channel:<foo>' URLs. */
|
|
|
|
std::string resolveUri(const std::string & uri);
|
|
|
|
|
2015-04-09 13:12:50 +03:00
|
|
|
}
|