forked from lix-project/lix
nix copy: Improve progress indicator
It now shows the amount of data copied: [8/1038 copied, 160.4/1590.9 MiB copied] copying path '...'
This commit is contained in:
parent
c5e4404580
commit
b29b6feaba
|
@ -569,9 +569,26 @@ void copyStorePath(ref<Store> srcStore, ref<Store> dstStore,
|
||||||
|
|
||||||
auto info = srcStore->queryPathInfo(storePath);
|
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);
|
srcStore->narFromPath({storePath}, sink);
|
||||||
|
|
||||||
if (!info->narHash && !checkSigs) {
|
if (!info->narHash && !checkSigs) {
|
||||||
|
@ -604,12 +621,13 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa
|
||||||
for (auto & path : storePaths)
|
for (auto & path : storePaths)
|
||||||
if (!valid.count(path)) missing.insert(path);
|
if (!valid.count(path)) missing.insert(path);
|
||||||
|
|
||||||
Activity act;
|
Activity act(actUnknown);
|
||||||
|
|
||||||
logger->event(evCopyStarted, act);
|
logger->event(evCopyStarted, act);
|
||||||
|
|
||||||
std::atomic<size_t> nrCopied{0};
|
std::atomic<size_t> nrCopied{0};
|
||||||
std::atomic<size_t> nrDone{storePaths.size() - missing.size()};
|
std::atomic<size_t> nrDone{storePaths.size() - missing.size()};
|
||||||
|
std::atomic<uint64_t> bytesExpected{0};
|
||||||
|
|
||||||
auto showProgress = [&]() {
|
auto showProgress = [&]() {
|
||||||
logger->event(evCopyProgress, act, storePaths.size(), nrCopied, nrDone);
|
logger->event(evCopyProgress, act, storePaths.size(), nrCopied, nrDone);
|
||||||
|
@ -626,7 +644,13 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa
|
||||||
showProgress();
|
showProgress();
|
||||||
return PathSet();
|
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) {
|
[&](const Path & storePath) {
|
||||||
|
|
|
@ -83,7 +83,7 @@ Activity::Activity() : id(nextId++) { };
|
||||||
Activity::Activity(ActivityType type, std::string msg)
|
Activity::Activity(ActivityType type, std::string msg)
|
||||||
: Activity()
|
: Activity()
|
||||||
{
|
{
|
||||||
logger->event(evStartActivity, id, msg);
|
logger->event(evStartActivity, id, type, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
Activity::~Activity()
|
Activity::~Activity()
|
||||||
|
|
|
@ -14,6 +14,7 @@ typedef enum {
|
||||||
} Verbosity;
|
} Verbosity;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
actUnknown = 0,
|
||||||
actCopyPath = 100,
|
actCopyPath = 100,
|
||||||
} ActivityType;
|
} ActivityType;
|
||||||
|
|
||||||
|
@ -28,7 +29,8 @@ public:
|
||||||
Activity(ActivityType type, std::string msg = "");
|
Activity(ActivityType type, std::string msg = "");
|
||||||
~Activity();
|
~Activity();
|
||||||
|
|
||||||
//void progress(...);
|
template<typename... Args>
|
||||||
|
void progress(const Args & ... args);
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
@ -49,6 +51,8 @@ typedef enum {
|
||||||
|
|
||||||
evStartActivity = 1000,
|
evStartActivity = 1000,
|
||||||
evStopActivity = 1001,
|
evStopActivity = 1001,
|
||||||
|
evProgress = 1002,
|
||||||
|
evSetExpected = 1003,
|
||||||
|
|
||||||
} EventType;
|
} EventType;
|
||||||
|
|
||||||
|
@ -149,4 +153,14 @@ void warnOnce(bool & haveWarned, const FormatOrString & fs);
|
||||||
|
|
||||||
void writeToStderr(const string & s);
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
namespace nix {
|
namespace nix {
|
||||||
|
|
||||||
class ProgressBar : public Logger
|
class ProgressBar : public Logger
|
||||||
|
@ -17,6 +19,10 @@ private:
|
||||||
struct ActInfo
|
struct ActInfo
|
||||||
{
|
{
|
||||||
std::string s, s2;
|
std::string s, s2;
|
||||||
|
ActivityType type = actUnknown;
|
||||||
|
uint64_t done = 0;
|
||||||
|
uint64_t expected = 0;
|
||||||
|
std::map<ActivityType, uint64_t> expectedByType;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct DownloadInfo
|
struct DownloadInfo
|
||||||
|
@ -34,6 +40,13 @@ private:
|
||||||
uint64_t done = 0;
|
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
|
struct State
|
||||||
{
|
{
|
||||||
std::map<Activity::t, Path> builds;
|
std::map<Activity::t, Path> builds;
|
||||||
|
@ -52,6 +65,8 @@ private:
|
||||||
|
|
||||||
std::list<ActInfo> activities;
|
std::list<ActInfo> activities;
|
||||||
std::map<Activity::t, std::list<ActInfo>::iterator> its;
|
std::map<Activity::t, std::list<ActInfo>::iterator> its;
|
||||||
|
|
||||||
|
std::map<ActivityType, ActivitiesByType> activitiesByType;
|
||||||
};
|
};
|
||||||
|
|
||||||
Sync<State> state_;
|
Sync<State> state_;
|
||||||
|
@ -85,16 +100,25 @@ public:
|
||||||
update(state);
|
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.activities.emplace_back(ActInfo{s, "", type});
|
||||||
state.its.emplace(activity, std::prev(state.activities.end()));
|
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)
|
void deleteActivity(State & state, Activity::t activity)
|
||||||
{
|
{
|
||||||
auto i = state.its.find(activity);
|
auto i = state.its.find(activity);
|
||||||
if (i != state.its.end()) {
|
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.activities.erase(i->second);
|
||||||
state.its.erase(i);
|
state.its.erase(i);
|
||||||
}
|
}
|
||||||
|
@ -144,6 +168,8 @@ public:
|
||||||
|
|
||||||
std::string getStatus(State & state)
|
std::string getStatus(State & state)
|
||||||
{
|
{
|
||||||
|
auto MiB = 1024.0 * 1024.0;
|
||||||
|
|
||||||
std::string res;
|
std::string res;
|
||||||
|
|
||||||
if (state.failedBuilds) {
|
if (state.failedBuilds) {
|
||||||
|
@ -189,44 +215,70 @@ public:
|
||||||
res += fmt("%d/%d copied", copied, expected);
|
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;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
void event(const Event & ev) override
|
void event(const Event & ev) override
|
||||||
{
|
{
|
||||||
|
auto state(state_.lock());
|
||||||
|
|
||||||
if (ev.type == evStartActivity) {
|
if (ev.type == evStartActivity) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
createActivity(*state, act, ev.getS(1));
|
createActivity(*state, act, ev.getS(2), (ActivityType) ev.getI(1));
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evStopActivity) {
|
if (ev.type == evStopActivity) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
deleteActivity(*state, act);
|
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) {
|
if (ev.type == evBuildCreated) {
|
||||||
auto state(state_.lock());
|
|
||||||
state->builds[ev.getI(0)] = ev.getS(1);
|
state->builds[ev.getI(0)] = ev.getS(1);
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evBuildStarted) {
|
if (ev.type == evBuildStarted) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
state->runningBuilds.insert(act);
|
state->runningBuilds.insert(act);
|
||||||
auto name = storePathToName(state->builds[act]);
|
auto name = storePathToName(state->builds[act]);
|
||||||
if (hasSuffix(name, ".drv"))
|
if (hasSuffix(name, ".drv"))
|
||||||
name.resize(name.size() - 4);
|
name.resize(name.size() - 4);
|
||||||
createActivity(*state, act, fmt("building " ANSI_BOLD "%s" ANSI_NORMAL, name));
|
createActivity(*state, act, fmt("building " ANSI_BOLD "%s" ANSI_NORMAL, name));
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evBuildFinished) {
|
if (ev.type == evBuildFinished) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
if (ev.getI(1)) {
|
if (ev.getI(1)) {
|
||||||
if (state->runningBuilds.count(act))
|
if (state->runningBuilds.count(act))
|
||||||
|
@ -236,34 +288,26 @@ public:
|
||||||
state->runningBuilds.erase(act);
|
state->runningBuilds.erase(act);
|
||||||
state->builds.erase(act);
|
state->builds.erase(act);
|
||||||
deleteActivity(*state, act);
|
deleteActivity(*state, act);
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evBuildOutput) {
|
if (ev.type == evBuildOutput) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
assert(state->runningBuilds.count(act));
|
assert(state->runningBuilds.count(act));
|
||||||
updateActivity(*state, act, ev.getS(1));
|
updateActivity(*state, act, ev.getS(1));
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evSubstitutionCreated) {
|
if (ev.type == evSubstitutionCreated) {
|
||||||
auto state(state_.lock());
|
|
||||||
state->substitutions[ev.getI(0)] = ev.getS(1);
|
state->substitutions[ev.getI(0)] = ev.getS(1);
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evSubstitutionStarted) {
|
if (ev.type == evSubstitutionStarted) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
state->runningSubstitutions.insert(act);
|
state->runningSubstitutions.insert(act);
|
||||||
auto name = storePathToName(state->substitutions[act]);
|
auto name = storePathToName(state->substitutions[act]);
|
||||||
createActivity(*state, act, fmt("fetching " ANSI_BOLD "%s" ANSI_NORMAL, name));
|
createActivity(*state, act, fmt("fetching " ANSI_BOLD "%s" ANSI_NORMAL, name));
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evSubstitutionFinished) {
|
if (ev.type == evSubstitutionFinished) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
if (ev.getI(1)) {
|
if (ev.getI(1)) {
|
||||||
if (state->runningSubstitutions.count(act))
|
if (state->runningSubstitutions.count(act))
|
||||||
|
@ -272,60 +316,51 @@ public:
|
||||||
state->runningSubstitutions.erase(act);
|
state->runningSubstitutions.erase(act);
|
||||||
state->substitutions.erase(act);
|
state->substitutions.erase(act);
|
||||||
deleteActivity(*state, act);
|
deleteActivity(*state, act);
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evDownloadCreated) {
|
if (ev.type == evDownloadCreated) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
std::string uri = ev.getS(1);
|
std::string uri = ev.getS(1);
|
||||||
state->downloads.emplace(act, DownloadInfo{uri});
|
state->downloads.emplace(act, DownloadInfo{uri});
|
||||||
if (state->runningSubstitutions.empty()) // FIXME: hack
|
if (state->runningSubstitutions.empty()) // FIXME: hack
|
||||||
createActivity(*state, act, fmt("downloading " ANSI_BOLD "%s" ANSI_NORMAL "", uri));
|
createActivity(*state, act, fmt("downloading " ANSI_BOLD "%s" ANSI_NORMAL "", uri));
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evDownloadProgress) {
|
if (ev.type == evDownloadProgress) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
auto i = state->downloads.find(act);
|
auto i = state->downloads.find(act);
|
||||||
assert(i != state->downloads.end());
|
assert(i != state->downloads.end());
|
||||||
i->second.expected = ev.getI(1);
|
i->second.expected = ev.getI(1);
|
||||||
i->second.current = ev.getI(2);
|
i->second.current = ev.getI(2);
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evDownloadSucceeded) {
|
if (ev.type == evDownloadSucceeded) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
auto i = state->downloads.find(act);
|
auto i = state->downloads.find(act);
|
||||||
assert(i != state->downloads.end());
|
assert(i != state->downloads.end());
|
||||||
state->downloadedBytes += ev.getI(1);
|
state->downloadedBytes += ev.getI(1);
|
||||||
state->downloads.erase(i);
|
state->downloads.erase(i);
|
||||||
deleteActivity(*state, act);
|
deleteActivity(*state, act);
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evDownloadDestroyed) {
|
if (ev.type == evDownloadDestroyed) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
auto i = state->downloads.find(act);
|
auto i = state->downloads.find(act);
|
||||||
if (i != state->downloads.end()) {
|
if (i != state->downloads.end()) {
|
||||||
state->downloads.erase(i);
|
state->downloads.erase(i);
|
||||||
deleteActivity(*state, act);
|
deleteActivity(*state, act);
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.type == evCopyProgress) {
|
if (ev.type == evCopyProgress) {
|
||||||
auto state(state_.lock());
|
|
||||||
Activity::t act = ev.getI(0);
|
Activity::t act = ev.getI(0);
|
||||||
auto & i = state->runningCopies[act];
|
auto & i = state->runningCopies[act];
|
||||||
i.expected = ev.getI(1);
|
i.expected = ev.getI(1);
|
||||||
i.copied = ev.getI(2);
|
i.copied = ev.getI(2);
|
||||||
i.done = ev.getI(3);
|
i.done = ev.getI(3);
|
||||||
update(*state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
update(*state);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue