aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/Foundation/include/Poco/Stopwatch.h
diff options
context:
space:
mode:
authorDevtools Arcadia <arcadia-devtools@yandex-team.ru>2022-02-07 18:08:42 +0300
committerDevtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net>2022-02-07 18:08:42 +0300
commit1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch)
treee26c9fed0de5d9873cce7e00bc214573dc2195b7 /contrib/libs/poco/Foundation/include/Poco/Stopwatch.h
downloadydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'contrib/libs/poco/Foundation/include/Poco/Stopwatch.h')
-rw-r--r--contrib/libs/poco/Foundation/include/Poco/Stopwatch.h108
1 files changed, 108 insertions, 0 deletions
diff --git a/contrib/libs/poco/Foundation/include/Poco/Stopwatch.h b/contrib/libs/poco/Foundation/include/Poco/Stopwatch.h
new file mode 100644
index 0000000000..6bc27fc92b
--- /dev/null
+++ b/contrib/libs/poco/Foundation/include/Poco/Stopwatch.h
@@ -0,0 +1,108 @@
+//
+// Stopwatch.h
+//
+// Library: Foundation
+// Package: DateTime
+// Module: Stopwatch
+//
+// Definition of the Stopwatch class.
+//
+// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
+// and Contributors.
+//
+// SPDX-License-Identifier: BSL-1.0
+//
+
+
+#ifndef Foundation_Stopwatch_INCLUDED
+#define Foundation_Stopwatch_INCLUDED
+
+
+#include "Poco/Foundation.h"
+#include "Poco/Clock.h"
+
+
+namespace Poco {
+
+
+class Foundation_API Stopwatch
+ /// A simple facility to measure time intervals
+ /// with microsecond resolution.
+{
+public:
+ Stopwatch();
+ ~Stopwatch();
+
+ void start();
+ /// Starts (or restarts) the stopwatch.
+
+ void stop();
+ /// Stops or pauses the stopwatch.
+
+ void reset();
+ /// Resets the stopwatch.
+
+ void restart();
+ /// Resets and starts the stopwatch.
+
+ Clock::ClockDiff elapsed() const;
+ /// Returns the elapsed time in microseconds
+ /// since the stopwatch started.
+
+ int elapsedSeconds() const;
+ /// Returns the number of seconds elapsed
+ /// since the stopwatch started.
+
+ static Clock::ClockVal resolution();
+ /// Returns the resolution of the stopwatch.
+
+private:
+ Stopwatch(const Stopwatch&);
+ Stopwatch& operator = (const Stopwatch&);
+
+ Clock _start;
+ Clock::ClockDiff _elapsed;
+ bool _running;
+};
+
+
+//
+// inlines
+//
+inline void Stopwatch::start()
+{
+ if (!_running)
+ {
+ _start.update();
+ _running = true;
+ }
+}
+
+
+inline void Stopwatch::stop()
+{
+ if (_running)
+ {
+ Clock current;
+ _elapsed += current - _start;
+ _running = false;
+ }
+}
+
+
+inline int Stopwatch::elapsedSeconds() const
+{
+ return int(elapsed()/resolution());
+}
+
+
+inline Clock::ClockVal Stopwatch::resolution()
+{
+ return Clock::resolution();
+}
+
+
+} // namespace Poco
+
+
+#endif // Foundation_Stopwatch_INCLUDED