From c36467ad2e2e27d04e681144e0e10417c53c10c1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 14 Aug 2017 20:14:55 +0200 Subject: Improve substitution progress indicator E.g. $ nix build --store local?root=/tmp/nix nixpkgs.firefox-unwrapped [0/1 built, 1/97/98 fetched, 65.8/92.8 MiB DL, 203.2/309.2 MiB copied] downloading 'https://cache.nixos.org/nar/1czm9fk0svacy4h6a3fzkpafi4f7a9gml36kk8cq1igaghbspg3k.nar.xz' --- src/libstore/build.cc | 55 +++++++++++++++++++++++++++++++++++++++++++++++- src/libstore/download.cc | 11 +++++----- 2 files changed, 59 insertions(+), 7 deletions(-) (limited to 'src/libstore') diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 9250a9b1778f..d5f48237bd74 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -9,6 +9,7 @@ #include "finally.hh" #include "compression.hh" #include "json.hh" +#include "nar-info.hh" #include #include @@ -201,6 +202,16 @@ struct Child }; +template +struct MaintainCount +{ + T & counter; + T delta; + MaintainCount(T & counter, T delta) : counter(counter), delta(delta) { counter += delta; } + ~MaintainCount() { counter -= delta; } +}; + + /* The worker class. */ class Worker { @@ -244,6 +255,8 @@ private: public: + const Activity act; + /* Set if at least one derivation had a BuildError (i.e. permanent failure). */ bool permanentFailure; @@ -255,6 +268,11 @@ public: std::unique_ptr hook; + uint64_t expectedDownloadSize = 0; + uint64_t doneDownloadSize = 0; + uint64_t expectedNarSize = 0; + uint64_t doneNarSize = 0; + Worker(LocalStore & store); ~Worker(); @@ -313,6 +331,12 @@ public: bool pathContentsGood(const Path & path); void markContentsGood(const Path & path); + + void updateProgress() + { + logger->event(evSetExpected, act, actDownload, expectedDownloadSize + doneDownloadSize); + logger->event(evSetExpected, act, actCopyPath, expectedNarSize + doneNarSize); + } }; @@ -3304,6 +3328,8 @@ private: storePath when doing a repair. */ Path destPath; + std::unique_ptr> maintainExpectedNar, maintainExpectedDownload; + typedef void (SubstitutionGoal::*GoalState)(); GoalState state; @@ -3430,6 +3456,18 @@ void SubstitutionGoal::tryNext() return; } + /* Update the total expected download size. */ + auto narInfo = std::dynamic_pointer_cast(info); + + maintainExpectedNar = std::make_unique>(worker.expectedNarSize, narInfo->narSize); + + maintainExpectedDownload = + narInfo && narInfo->fileSize + ? std::make_unique>(worker.expectedDownloadSize, narInfo->fileSize) + : nullptr; + + worker.updateProgress(); + hasSubstitute = true; /* Bail out early if this substituter lacks a valid @@ -3538,6 +3576,17 @@ void SubstitutionGoal::finished() printMsg(lvlChatty, format("substitution of path '%1%' succeeded") % storePath); + if (maintainExpectedDownload) { + auto fileSize = maintainExpectedDownload->delta; + maintainExpectedDownload.reset(); + worker.doneDownloadSize += fileSize; + } + + worker.doneNarSize += maintainExpectedNar->delta; + maintainExpectedNar.reset(); + + worker.updateProgress(); + amDone(ecSuccess); } @@ -3560,7 +3609,8 @@ static bool working = false; Worker::Worker(LocalStore & store) - : store(store) + : act(actRealise) + , store(store) { /* Debugging: prevent recursive workers. */ if (working) abort(); @@ -3581,6 +3631,9 @@ Worker::~Worker() are in trouble, since goals may call childTerminated() etc. in their destructors). */ topGoals.clear(); + + assert(expectedDownloadSize == 0); + assert(expectedNarSize == 0); } diff --git a/src/libstore/download.cc b/src/libstore/download.cc index b731297a2086..9ac4a65d5706 100644 --- a/src/libstore/download.cc +++ b/src/libstore/download.cc @@ -83,12 +83,12 @@ struct CurlDownloader : public Downloader std::string encoding; DownloadItem(CurlDownloader & downloader, const DownloadRequest & request) - : downloader(downloader), request(request) + : downloader(downloader) + , request(request) + , act(actDownload, fmt("downloading '%s'", request.uri)) { if (!request.expectedETag.empty()) requestHeaders = curl_slist_append(requestHeaders, ("If-None-Match: " + request.expectedETag).c_str()); - - logger->event(evDownloadCreated, act, request.uri); } ~DownloadItem() @@ -105,7 +105,6 @@ struct CurlDownloader : public Downloader } catch (...) { ignoreException(); } - logger->event(evDownloadDestroyed, act); } template @@ -168,7 +167,7 @@ struct CurlDownloader : public Downloader int progressCallback(double dltotal, double dlnow) { - logger->event(evDownloadProgress, act, dltotal, dlnow); + act.progress(dlnow, dltotal); return _isInterrupted; } @@ -267,7 +266,7 @@ struct CurlDownloader : public Downloader try { result.data = decodeContent(encoding, ref(result.data)); callSuccess(success, failure, const_cast(result)); - logger->event(evDownloadSucceeded, act, result.data->size()); + act.progress(result.data->size(), result.data->size()); } catch (...) { done = true; callFailure(failure, std::current_exception()); -- cgit 1.4.1