2016-03-03 17:03:34 +00:00
|
|
|
#include "binary-cache-store.hh"
|
|
|
|
#include "download.hh"
|
2016-03-04 16:23:42 +00:00
|
|
|
#include "globals.hh"
|
2016-04-20 12:12:38 +00:00
|
|
|
#include "nar-info-disk-cache.hh"
|
2016-03-03 17:03:34 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2016-05-30 11:33:05 +00:00
|
|
|
MakeError(UploadToHTTP, Error);
|
|
|
|
|
2016-03-03 17:03:34 +00:00
|
|
|
class HttpBinaryCacheStore : public BinaryCacheStore
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
Path cacheUri;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-05-04 18:15:41 +00:00
|
|
|
HttpBinaryCacheStore(
|
2016-06-01 12:49:12 +00:00
|
|
|
const Params & params, const Path & _cacheUri)
|
2016-05-04 18:15:41 +00:00
|
|
|
: BinaryCacheStore(params)
|
2016-03-03 17:03:34 +00:00
|
|
|
, cacheUri(_cacheUri)
|
|
|
|
{
|
|
|
|
if (cacheUri.back() == '/')
|
|
|
|
cacheUri.pop_back();
|
2016-04-20 12:12:38 +00:00
|
|
|
|
|
|
|
diskCache = getNarInfoDiskCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string getUri() override
|
|
|
|
{
|
|
|
|
return cacheUri;
|
2016-03-03 17:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init() override
|
|
|
|
{
|
|
|
|
// FIXME: do this lazily?
|
2016-06-01 13:15:21 +00:00
|
|
|
if (!diskCache->cacheExists(cacheUri, wantMassQuery_, priority)) {
|
2016-05-30 11:33:05 +00:00
|
|
|
try {
|
|
|
|
BinaryCacheStore::init();
|
|
|
|
} catch (UploadToHTTP &) {
|
2018-01-31 14:12:27 +00:00
|
|
|
throw Error("'%s' does not appear to be a binary cache", cacheUri);
|
2016-05-30 11:33:05 +00:00
|
|
|
}
|
2016-06-01 12:49:12 +00:00
|
|
|
diskCache->createCache(cacheUri, storeDir, wantMassQuery_, priority);
|
2016-04-20 12:12:38 +00:00
|
|
|
}
|
2016-03-03 17:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
bool fileExists(const std::string & path) override
|
|
|
|
{
|
|
|
|
try {
|
2016-09-14 14:00:40 +00:00
|
|
|
DownloadRequest request(cacheUri + "/" + path);
|
|
|
|
request.head = true;
|
|
|
|
request.tries = 5;
|
|
|
|
getDownloader()->download(request);
|
2016-03-03 17:03:34 +00:00
|
|
|
return true;
|
|
|
|
} catch (DownloadError & e) {
|
2016-03-30 09:17:51 +00:00
|
|
|
/* S3 buckets return 403 if a file doesn't exist and the
|
|
|
|
bucket is unlistable, so treat 403 as 404. */
|
|
|
|
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
2016-03-03 17:03:34 +00:00
|
|
|
return false;
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-14 14:26:01 +00:00
|
|
|
void upsertFile(const std::string & path,
|
|
|
|
const std::string & data,
|
|
|
|
const std::string & mimeType) override
|
2016-03-03 17:03:34 +00:00
|
|
|
{
|
2018-01-31 14:12:27 +00:00
|
|
|
auto req = DownloadRequest(cacheUri + "/" + path);
|
|
|
|
req.data = std::make_shared<string>(data); // FIXME: inefficient
|
|
|
|
req.mimeType = mimeType;
|
2018-01-26 19:12:30 +00:00
|
|
|
try {
|
|
|
|
getDownloader()->download(req);
|
|
|
|
} catch (DownloadError & e) {
|
|
|
|
throw UploadToHTTP(format("uploading to HTTP binary cache at %1% not supported: %2%") % cacheUri % e.msg());
|
|
|
|
}
|
2016-03-03 17:03:34 +00:00
|
|
|
}
|
|
|
|
|
2016-09-16 16:54:14 +00:00
|
|
|
void getFile(const std::string & path,
|
|
|
|
std::function<void(std::shared_ptr<std::string>)> success,
|
2016-10-19 13:02:48 +00:00
|
|
|
std::function<void(std::exception_ptr exc)> failure) override
|
2016-03-03 17:03:34 +00:00
|
|
|
{
|
2016-09-14 14:00:40 +00:00
|
|
|
DownloadRequest request(cacheUri + "/" + path);
|
|
|
|
request.tries = 8;
|
2016-09-16 16:54:14 +00:00
|
|
|
|
|
|
|
getDownloader()->enqueueDownload(request,
|
|
|
|
[success](const DownloadResult & result) {
|
|
|
|
success(result.data);
|
|
|
|
},
|
|
|
|
[success, failure](std::exception_ptr exc) {
|
|
|
|
try {
|
|
|
|
std::rethrow_exception(exc);
|
|
|
|
} catch (DownloadError & e) {
|
|
|
|
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
2016-09-20 15:25:12 +00:00
|
|
|
return success(0);
|
|
|
|
failure(exc);
|
|
|
|
} catch (...) {
|
2016-09-16 16:54:14 +00:00
|
|
|
failure(exc);
|
|
|
|
}
|
|
|
|
});
|
2016-03-03 17:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-04-29 14:26:16 +00:00
|
|
|
static RegisterStoreImplementation regStore([](
|
2016-06-01 12:49:12 +00:00
|
|
|
const std::string & uri, const Store::Params & params)
|
2016-04-29 14:26:16 +00:00
|
|
|
-> std::shared_ptr<Store>
|
|
|
|
{
|
2016-03-03 17:03:34 +00:00
|
|
|
if (std::string(uri, 0, 7) != "http://" &&
|
2016-06-01 13:15:21 +00:00
|
|
|
std::string(uri, 0, 8) != "https://" &&
|
|
|
|
(getEnv("_NIX_FORCE_HTTP_BINARY_CACHE_STORE") != "1" || std::string(uri, 0, 7) != "file://")
|
|
|
|
) return 0;
|
2016-05-04 18:15:41 +00:00
|
|
|
auto store = std::make_shared<HttpBinaryCacheStore>(params, uri);
|
2016-03-03 17:03:34 +00:00
|
|
|
store->init();
|
|
|
|
return store;
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|