summaryrefslogtreecommitdiff
path: root/src/mongo/util/progress_meter.h
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-06-20 00:22:50 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2015-06-20 10:56:02 -0400
commit9c2ed42daa8fbbef4a919c21ec564e2db55e8d60 (patch)
tree3814f79c10d7b490948d8cb7b112ac1dd41ceff1 /src/mongo/util/progress_meter.h
parent01965cf52bce6976637ecb8f4a622aeb05ab256a (diff)
downloadmongo-9c2ed42daa8fbbef4a919c21ec564e2db55e8d60.tar.gz
SERVER-18579: Clang-Format - reformat code, no comment reflow
Diffstat (limited to 'src/mongo/util/progress_meter.h')
-rw-r--r--src/mongo/util/progress_meter.h228
1 files changed, 127 insertions, 101 deletions
diff --git a/src/mongo/util/progress_meter.h b/src/mongo/util/progress_meter.h
index 39bd2790ad7..a9672462534 100644
--- a/src/mongo/util/progress_meter.h
+++ b/src/mongo/util/progress_meter.h
@@ -35,105 +35,131 @@
namespace mongo {
- class ProgressMeter {
- MONGO_DISALLOW_COPYING(ProgressMeter);
- public:
- ProgressMeter(unsigned long long total,
- int secondsBetween = 3,
- int checkInterval = 100,
- std::string units = "",
- std::string name = "Progress")
- : _showTotal(true),
- _units(units) {
- _name = name.c_str();
- reset( total , secondsBetween , checkInterval );
- }
-
- ProgressMeter() : _active(0), _showTotal(true), _units("") {
- _name = "Progress";
- }
-
- // typically you do ProgressMeterHolder
- void reset( unsigned long long total , int secondsBetween = 3 , int checkInterval = 100 );
-
- void finished() { _active = 0; }
- bool isActive() const { return _active; }
-
- /**
- * @param n how far along we are relative to the total # we set in CurOp::setMessage
- * @return if row was printed
- */
- bool hit( int n = 1 );
-
- void setUnits( const std::string& units ) { _units = units; }
- std::string getUnit() const { return _units; }
-
- void setName(std::string name) { _name = name.c_str(); }
- std::string getName() const { return _name.toString(); }
-
- void setTotalWhileRunning( unsigned long long total ) {
- _total = total;
- }
-
- unsigned long long done() const { return _done; }
-
- unsigned long long hits() const { return _hits; }
-
- unsigned long long total() const { return _total; }
-
- void showTotal(bool doShow) {
- _showTotal = doShow;
- }
-
- std::string toString() const;
-
- bool operator==( const ProgressMeter& other ) const { return this == &other; }
-
- private:
-
- bool _active;
-
- unsigned long long _total;
- bool _showTotal;
- int _secondsBetween;
- int _checkInterval;
-
- unsigned long long _done;
- unsigned long long _hits;
- int _lastTime;
-
- std::string _units;
- ThreadSafeString _name;
- };
-
- // e.g.:
- // CurOp * op = CurOp::get(txn);
- // ProgressMeterHolder pm(op->setMessage("index: (1/3) external sort", "Index: External Sort Progress", d->stats.nrecords, 10));
- // loop { pm.hit(); }
- class ProgressMeterHolder {
- MONGO_DISALLOW_COPYING(ProgressMeterHolder);
- public:
- ProgressMeterHolder( ProgressMeter& pm )
- : _pm( pm ) {
- }
-
- ~ProgressMeterHolder() {
- _pm.finished();
- }
-
- ProgressMeter* operator->() { return &_pm; }
-
- ProgressMeter* get() { return &_pm; }
-
- bool hit( int n = 1 ) { return _pm.hit( n ); }
-
- void finished() { _pm.finished(); }
-
- bool operator==( const ProgressMeter& other ) { return _pm == other; }
-
- private:
- ProgressMeter& _pm;
- };
-
-
+class ProgressMeter {
+ MONGO_DISALLOW_COPYING(ProgressMeter);
+
+public:
+ ProgressMeter(unsigned long long total,
+ int secondsBetween = 3,
+ int checkInterval = 100,
+ std::string units = "",
+ std::string name = "Progress")
+ : _showTotal(true), _units(units) {
+ _name = name.c_str();
+ reset(total, secondsBetween, checkInterval);
+ }
+
+ ProgressMeter() : _active(0), _showTotal(true), _units("") {
+ _name = "Progress";
+ }
+
+ // typically you do ProgressMeterHolder
+ void reset(unsigned long long total, int secondsBetween = 3, int checkInterval = 100);
+
+ void finished() {
+ _active = 0;
+ }
+ bool isActive() const {
+ return _active;
+ }
+
+ /**
+ * @param n how far along we are relative to the total # we set in CurOp::setMessage
+ * @return if row was printed
+ */
+ bool hit(int n = 1);
+
+ void setUnits(const std::string& units) {
+ _units = units;
+ }
+ std::string getUnit() const {
+ return _units;
+ }
+
+ void setName(std::string name) {
+ _name = name.c_str();
+ }
+ std::string getName() const {
+ return _name.toString();
+ }
+
+ void setTotalWhileRunning(unsigned long long total) {
+ _total = total;
+ }
+
+ unsigned long long done() const {
+ return _done;
+ }
+
+ unsigned long long hits() const {
+ return _hits;
+ }
+
+ unsigned long long total() const {
+ return _total;
+ }
+
+ void showTotal(bool doShow) {
+ _showTotal = doShow;
+ }
+
+ std::string toString() const;
+
+ bool operator==(const ProgressMeter& other) const {
+ return this == &other;
+ }
+
+private:
+ bool _active;
+
+ unsigned long long _total;
+ bool _showTotal;
+ int _secondsBetween;
+ int _checkInterval;
+
+ unsigned long long _done;
+ unsigned long long _hits;
+ int _lastTime;
+
+ std::string _units;
+ ThreadSafeString _name;
+};
+
+// e.g.:
+// CurOp * op = CurOp::get(txn);
+// ProgressMeterHolder pm(op->setMessage("index: (1/3) external sort", "Index: External Sort Progress", d->stats.nrecords, 10));
+// loop { pm.hit(); }
+class ProgressMeterHolder {
+ MONGO_DISALLOW_COPYING(ProgressMeterHolder);
+
+public:
+ ProgressMeterHolder(ProgressMeter& pm) : _pm(pm) {}
+
+ ~ProgressMeterHolder() {
+ _pm.finished();
+ }
+
+ ProgressMeter* operator->() {
+ return &_pm;
+ }
+
+ ProgressMeter* get() {
+ return &_pm;
+ }
+
+ bool hit(int n = 1) {
+ return _pm.hit(n);
+ }
+
+ void finished() {
+ _pm.finished();
+ }
+
+ bool operator==(const ProgressMeter& other) {
+ return _pm == other;
+ }
+
+private:
+ ProgressMeter& _pm;
+};
}