aboutsummaryrefslogtreecommitdiff
path: root/src/nix/progress-bar.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-25 15:26:07 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-25 19:18:45 +0200
commit41633f9f73f402714dccb4a7f379441ee8272619 (patch)
treeec5ff0129865356552f340ed099d88e164bcb4ec /src/nix/progress-bar.hh
parentc879a20850f2035cd87b1693da26cadf30affe11 (diff)
Improved logging abstraction
This also gets rid of --log-type, since the nested log type isn't useful in a multi-threaded situation, and nobody cares about the "pretty" log type.
Diffstat (limited to 'src/nix/progress-bar.hh')
-rw-r--r--src/nix/progress-bar.hh44
1 files changed, 5 insertions, 39 deletions
diff --git a/src/nix/progress-bar.hh b/src/nix/progress-bar.hh
index 2dda24346..d2e44f7c4 100644
--- a/src/nix/progress-bar.hh
+++ b/src/nix/progress-bar.hh
@@ -1,49 +1,15 @@
#pragma once
-#include "sync.hh"
-#include "util.hh"
+#include "logging.hh"
namespace nix {
-class ProgressBar
+class StartProgressBar
{
-private:
- struct State
- {
- std::string status;
- bool done = false;
- std::list<std::string> activities;
- };
-
- Sync<State> state;
-
+ Logger * prev = 0;
public:
-
- ProgressBar();
-
- ~ProgressBar();
-
- void updateStatus(const std::string & s);
-
- void done();
-
- class Activity
- {
- friend class ProgressBar;
- private:
- ProgressBar & pb;
- std::list<std::string>::iterator it;
- Activity(ProgressBar & pb, const FormatOrString & fs);
- public:
- ~Activity();
- };
-
- Activity startActivity(const FormatOrString & fs);
-
-private:
-
- void render(State & state_);
-
+ StartProgressBar();
+ ~StartProgressBar();
};
}