aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-08-14 19:00:03 +0200
committerEelco Dolstra <edolstra@gmail.com>2017-08-16 20:56:02 +0200
commitb29b6feaba715432490e275a025b3361a021a99b (patch)
tree5b7092b0183a135f807fa85539bbf5ea42acf615
parentc5e4404580164d3edd043e79cf72bac5bdaecb42 (diff)
nix copy: Improve progress indicator
It now shows the amount of data copied: [8/1038 copied, 160.4/1590.9 MiB copied] copying path '...'
-rw-r--r--src/libstore/store-api.cc32
-rw-r--r--src/libutil/logging.cc2
-rw-r--r--src/libutil/logging.hh16
-rw-r--r--src/nix/progress-bar.cc99
4 files changed, 111 insertions, 38 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc
index 88f27e806..2b99a07e2 100644
--- a/src/libstore/store-api.cc
+++ b/src/libstore/store-api.cc
@@ -569,9 +569,26 @@ void copyStorePath(ref<Store> srcStore, ref<Store> dstStore,
auto info = srcStore->queryPathInfo(storePath);
- //act->progress(0, info->size());
+ uint64_t total = 0;
- StringSink sink;
+ auto progress = [&](size_t len) {
+ total += len;
+ act.progress(total, info->narSize);
+ };
+
+ struct MyStringSink : StringSink
+ {
+ typedef std::function<void(size_t)> Callback;
+ Callback callback;
+ MyStringSink(Callback callback) : callback(callback) { }
+ void operator () (const unsigned char * data, size_t len) override
+ {
+ StringSink::operator ()(data, len);
+ callback(len);
+ };
+ };
+
+ MyStringSink sink(progress);
srcStore->narFromPath({storePath}, sink);
if (!info->narHash && !checkSigs) {
@@ -604,12 +621,13 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa
for (auto & path : storePaths)
if (!valid.count(path)) missing.insert(path);
- Activity act;
+ Activity act(actUnknown);
logger->event(evCopyStarted, act);
std::atomic<size_t> nrCopied{0};
std::atomic<size_t> nrDone{storePaths.size() - missing.size()};
+ std::atomic<uint64_t> bytesExpected{0};
auto showProgress = [&]() {
logger->event(evCopyProgress, act, storePaths.size(), nrCopied, nrDone);
@@ -626,7 +644,13 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa
showProgress();
return PathSet();
}
- return srcStore->queryPathInfo(storePath)->references;
+
+ auto info = srcStore->queryPathInfo(storePath);
+
+ bytesExpected += info->narSize;
+ logger->event(evSetExpected, act, actCopyPath, bytesExpected);
+
+ return info->references;
},
[&](const Path & storePath) {
diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc
index c11271e63..321c90712 100644
--- a/src/libutil/logging.cc
+++ b/src/libutil/logging.cc
@@ -83,7 +83,7 @@ Activity::Activity() : id(nextId++) { };
Activity::Activity(ActivityType type, std::string msg)
: Activity()
{
- logger->event(evStartActivity, id, msg);
+ logger->event(evStartActivity, id, type, msg);
}
Activity::~Activity()
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh
index aa407f60b..6a4a36171 100644
--- a/src/libutil/logging.hh
+++ b/src/libutil/logging.hh
@@ -14,6 +14,7 @@ typedef enum {
} Verbosity;
typedef enum {
+ actUnknown = 0,
actCopyPath = 100,
} ActivityType;
@@ -28,7 +29,8 @@ public:
Activity(ActivityType type, std::string msg = "");
~Activity();
- //void progress(...);
+ template<typename... Args>
+ void progress(const Args & ... args);
};
typedef enum {
@@ -49,6 +51,8 @@ typedef enum {
evStartActivity = 1000,
evStopActivity = 1001,
+ evProgress = 1002,
+ evSetExpected = 1003,
} EventType;
@@ -149,4 +153,14 @@ void warnOnce(bool & haveWarned, const FormatOrString & fs);
void writeToStderr(const string & s);
+template<typename... Args>
+void Activity::progress(const Args & ... args)
+{
+ Event ev;
+ ev.type = evProgress;
+ ev.fields.emplace_back(id);
+ nop{(ev.fields.emplace_back(Event::Field(args)), 1)...};
+ logger->event(ev);
+}
+
}
diff --git a/src/nix/progress-bar.cc b/src/nix/progress-bar.cc
index 7561a0084..b15f4488d 100644
--- a/src/nix/progress-bar.cc
+++ b/src/nix/progress-bar.cc
@@ -8,6 +8,8 @@
#include <sys/ioctl.h>
+#include <iostream>
+
namespace nix {
class ProgressBar : public Logger
@@ -17,6 +19,10 @@ private:
struct ActInfo
{
std::string s, s2;
+ ActivityType type = actUnknown;
+ uint64_t done = 0;
+ uint64_t expected = 0;
+ std::map<ActivityType, uint64_t> expectedByType;
};
struct DownloadInfo
@@ -34,6 +40,13 @@ private:
uint64_t done = 0;
};
+ struct ActivitiesByType
+ {
+ std::map<Activity::t, std::list<ActInfo>::iterator> its;
+ uint64_t done = 0;
+ uint64_t expected = 0;
+ };
+
struct State
{
std::map<Activity::t, Path> builds;
@@ -52,6 +65,8 @@ private:
std::list<ActInfo> activities;
std::map<Activity::t, std::list<ActInfo>::iterator> its;
+
+ std::map<ActivityType, ActivitiesByType> activitiesByType;
};
Sync<State> state_;
@@ -85,16 +100,25 @@ public:
update(state);
}
- void createActivity(State & state, Activity::t activity, const std::string & s)
+ void createActivity(State & state, Activity::t activity, const std::string & s, ActivityType type = actUnknown)
{
- state.activities.emplace_back(ActInfo{s});
- state.its.emplace(activity, std::prev(state.activities.end()));
+ state.activities.emplace_back(ActInfo{s, "", type});
+ auto i = std::prev(state.activities.end());
+ state.its.emplace(activity, i);
+ state.activitiesByType[type].its.emplace(activity, i);
}
void deleteActivity(State & state, Activity::t activity)
{
auto i = state.its.find(activity);
if (i != state.its.end()) {
+ auto & act = state.activitiesByType[i->second->type];
+ act.done += i->second->done;
+
+ for (auto & j : i->second->expectedByType)
+ state.activitiesByType[j.first].expected -= j.second;
+
+ act.its.erase(activity);
state.activities.erase(i->second);
state.its.erase(i);
}
@@ -144,6 +168,8 @@ public:
std::string getStatus(State & state)
{
+ auto MiB = 1024.0 * 1024.0;
+
std::string res;
if (state.failedBuilds) {
@@ -189,44 +215,70 @@ public:
res += fmt("%d/%d copied", copied, expected);
}
+ auto & act = state.activitiesByType[actCopyPath];
+ uint64_t done = act.done, expected = act.done;
+ for (auto & j : act.its) {
+ done += j.second->done;
+ expected += j.second->expected;
+ }
+
+ expected = std::max(expected, act.expected);
+
+ if (done || expected) {
+ if (!res.empty()) res += ", ";
+ res += fmt("%1$.1f/%2$.1f MiB copied", done / MiB, expected / MiB);
+ }
+
return res;
}
void event(const Event & ev) override
{
+ auto state(state_.lock());
+
if (ev.type == evStartActivity) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
- createActivity(*state, act, ev.getS(1));
- update(*state);
+ createActivity(*state, act, ev.getS(2), (ActivityType) ev.getI(1));
}
if (ev.type == evStopActivity) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
deleteActivity(*state, act);
- update(*state);
+ }
+
+ if (ev.type == evProgress) {
+ auto i = state->its.find(ev.getI(0));
+ assert(i != state->its.end());
+ ActInfo & actInfo = *i->second;
+ actInfo.done = ev.getI(1);
+ actInfo.expected = ev.getI(2);
+ }
+
+ if (ev.type == evSetExpected) {
+ auto i = state->its.find(ev.getI(0));
+ assert(i != state->its.end());
+ ActInfo & actInfo = *i->second;
+ auto type = (ActivityType) ev.getI(1);
+ auto & j = actInfo.expectedByType[type];
+ state->activitiesByType[type].expected -= j;
+ j = ev.getI(2);
+ state->activitiesByType[type].expected += j;
}
if (ev.type == evBuildCreated) {
- auto state(state_.lock());
state->builds[ev.getI(0)] = ev.getS(1);
- update(*state);
}
if (ev.type == evBuildStarted) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
state->runningBuilds.insert(act);
auto name = storePathToName(state->builds[act]);
if (hasSuffix(name, ".drv"))
name.resize(name.size() - 4);
createActivity(*state, act, fmt("building " ANSI_BOLD "%s" ANSI_NORMAL, name));
- update(*state);
}
if (ev.type == evBuildFinished) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
if (ev.getI(1)) {
if (state->runningBuilds.count(act))
@@ -236,34 +288,26 @@ public:
state->runningBuilds.erase(act);
state->builds.erase(act);
deleteActivity(*state, act);
- update(*state);
}
if (ev.type == evBuildOutput) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
assert(state->runningBuilds.count(act));
updateActivity(*state, act, ev.getS(1));
- update(*state);
}
if (ev.type == evSubstitutionCreated) {
- auto state(state_.lock());
state->substitutions[ev.getI(0)] = ev.getS(1);
- update(*state);
}
if (ev.type == evSubstitutionStarted) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
state->runningSubstitutions.insert(act);
auto name = storePathToName(state->substitutions[act]);
createActivity(*state, act, fmt("fetching " ANSI_BOLD "%s" ANSI_NORMAL, name));
- update(*state);
}
if (ev.type == evSubstitutionFinished) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
if (ev.getI(1)) {
if (state->runningSubstitutions.count(act))
@@ -272,60 +316,51 @@ public:
state->runningSubstitutions.erase(act);
state->substitutions.erase(act);
deleteActivity(*state, act);
- update(*state);
}
if (ev.type == evDownloadCreated) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
std::string uri = ev.getS(1);
state->downloads.emplace(act, DownloadInfo{uri});
if (state->runningSubstitutions.empty()) // FIXME: hack
createActivity(*state, act, fmt("downloading " ANSI_BOLD "%s" ANSI_NORMAL "", uri));
- update(*state);
}
if (ev.type == evDownloadProgress) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
auto i = state->downloads.find(act);
assert(i != state->downloads.end());
i->second.expected = ev.getI(1);
i->second.current = ev.getI(2);
- update(*state);
}
if (ev.type == evDownloadSucceeded) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
auto i = state->downloads.find(act);
assert(i != state->downloads.end());
state->downloadedBytes += ev.getI(1);
state->downloads.erase(i);
deleteActivity(*state, act);
- update(*state);
}
if (ev.type == evDownloadDestroyed) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
auto i = state->downloads.find(act);
if (i != state->downloads.end()) {
state->downloads.erase(i);
deleteActivity(*state, act);
- update(*state);
}
}
if (ev.type == evCopyProgress) {
- auto state(state_.lock());
Activity::t act = ev.getI(0);
auto & i = state->runningCopies[act];
i.expected = ev.getI(1);
i.copied = ev.getI(2);
i.done = ev.getI(3);
- update(*state);
}
+
+ update(*state);
}
};