2016-03-03 18:03:34 +01:00
|
|
|
|
#include "binary-cache-store.hh"
|
|
|
|
|
#include "download.hh"
|
2016-03-04 17:23:42 +01:00
|
|
|
|
#include "globals.hh"
|
2016-04-20 14:12:38 +02:00
|
|
|
|
#include "nar-info-disk-cache.hh"
|
2016-03-03 18:03:34 +01:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
2016-05-30 13:33:05 +02:00
|
|
|
|
MakeError(UploadToHTTP, Error);
|
|
|
|
|
|
2016-03-03 18:03:34 +01:00
|
|
|
|
class HttpBinaryCacheStore : public BinaryCacheStore
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
Path cacheUri;
|
|
|
|
|
|
2016-03-24 11:10:05 +01:00
|
|
|
|
Pool<Downloader> downloaders;
|
2016-03-03 18:03:34 +01:00
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
2016-05-04 20:15:41 +02:00
|
|
|
|
HttpBinaryCacheStore(
|
2016-06-01 14:49:12 +02:00
|
|
|
|
const Params & params, const Path & _cacheUri)
|
2016-05-04 20:15:41 +02:00
|
|
|
|
: BinaryCacheStore(params)
|
2016-03-03 18:03:34 +01:00
|
|
|
|
, cacheUri(_cacheUri)
|
2016-03-24 11:10:05 +01:00
|
|
|
|
, downloaders(
|
|
|
|
|
std::numeric_limits<size_t>::max(),
|
|
|
|
|
[]() { return makeDownloader(); })
|
2016-03-03 18:03:34 +01:00
|
|
|
|
{
|
|
|
|
|
if (cacheUri.back() == '/')
|
|
|
|
|
cacheUri.pop_back();
|
2016-04-20 14:12:38 +02:00
|
|
|
|
|
|
|
|
|
diskCache = getNarInfoDiskCache();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string getUri() override
|
|
|
|
|
{
|
|
|
|
|
return cacheUri;
|
2016-03-03 18:03:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void init() override
|
|
|
|
|
{
|
|
|
|
|
// FIXME: do this lazily?
|
2016-06-01 15:15:21 +02:00
|
|
|
|
if (!diskCache->cacheExists(cacheUri, wantMassQuery_, priority)) {
|
2016-05-30 13:33:05 +02:00
|
|
|
|
try {
|
|
|
|
|
BinaryCacheStore::init();
|
|
|
|
|
} catch (UploadToHTTP &) {
|
2016-04-20 14:12:38 +02:00
|
|
|
|
throw Error(format("‘%s’ does not appear to be a binary cache") % cacheUri);
|
2016-05-30 13:33:05 +02:00
|
|
|
|
}
|
2016-06-01 14:49:12 +02:00
|
|
|
|
diskCache->createCache(cacheUri, storeDir, wantMassQuery_, priority);
|
2016-04-20 14:12:38 +02:00
|
|
|
|
}
|
2016-03-03 18:03:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
bool fileExists(const std::string & path) override
|
|
|
|
|
{
|
|
|
|
|
try {
|
2016-03-24 11:10:05 +01:00
|
|
|
|
auto downloader(downloaders.get());
|
2016-03-03 18:03:34 +01:00
|
|
|
|
DownloadOptions options;
|
|
|
|
|
options.showProgress = DownloadOptions::no;
|
|
|
|
|
options.head = true;
|
|
|
|
|
downloader->download(cacheUri + "/" + path, options);
|
|
|
|
|
return true;
|
|
|
|
|
} catch (DownloadError & e) {
|
2016-03-30 11:17:51 +02: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 18:03:34 +01:00
|
|
|
|
return false;
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-15 12:11:27 +01:00
|
|
|
|
void upsertFile(const std::string & path, const std::string & data) override
|
2016-03-03 18:03:34 +01:00
|
|
|
|
{
|
2016-05-30 13:33:05 +02:00
|
|
|
|
throw UploadToHTTP("uploading to an HTTP binary cache is not supported");
|
2016-03-03 18:03:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-15 15:11:34 +02:00
|
|
|
|
std::shared_ptr<std::string> getFile(const std::string & path) override
|
2016-03-03 18:03:34 +01:00
|
|
|
|
{
|
2016-03-24 11:10:05 +01:00
|
|
|
|
auto downloader(downloaders.get());
|
2016-03-03 18:03:34 +01:00
|
|
|
|
DownloadOptions options;
|
|
|
|
|
options.showProgress = DownloadOptions::no;
|
2016-04-15 15:11:34 +02:00
|
|
|
|
try {
|
|
|
|
|
return downloader->download(cacheUri + "/" + path, options).data;
|
|
|
|
|
} catch (DownloadError & e) {
|
|
|
|
|
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
|
|
|
|
return 0;
|
|
|
|
|
throw;
|
|
|
|
|
}
|
2016-03-03 18:03:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2016-04-29 16:26:16 +02:00
|
|
|
|
static RegisterStoreImplementation regStore([](
|
2016-06-01 14:49:12 +02:00
|
|
|
|
const std::string & uri, const Store::Params & params)
|
2016-04-29 16:26:16 +02:00
|
|
|
|
-> std::shared_ptr<Store>
|
|
|
|
|
{
|
2016-03-03 18:03:34 +01:00
|
|
|
|
if (std::string(uri, 0, 7) != "http://" &&
|
2016-06-01 15:15:21 +02: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 20:15:41 +02:00
|
|
|
|
auto store = std::make_shared<HttpBinaryCacheStore>(params, uri);
|
2016-03-03 18:03:34 +01:00
|
|
|
|
store->init();
|
|
|
|
|
return store;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|