| 1 | /* |
| 2 | * Copyright (C) 2014 University of Washington. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| 14 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 15 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 16 | * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 17 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 18 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 19 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 20 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 21 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 22 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 | */ |
| 24 | |
| 25 | #pragma once |
| 26 | |
| 27 | #include <cmath> |
| 28 | #include <wtf/MonotonicTime.h> |
| 29 | #include <wtf/RefCounted.h> |
| 30 | |
| 31 | namespace WTF { |
| 32 | |
| 33 | class Stopwatch : public RefCounted<Stopwatch> { |
| 34 | public: |
| 35 | static Ref<Stopwatch> create() |
| 36 | { |
| 37 | return adoptRef(*new Stopwatch()); |
| 38 | } |
| 39 | |
| 40 | void reset(); |
| 41 | void start(); |
| 42 | void stop(); |
| 43 | |
| 44 | Seconds elapsedTime(); |
| 45 | Seconds elapsedTimeSince(MonotonicTime); |
| 46 | |
| 47 | bool isActive() const { return !std::isnan(m_lastStartTime); } |
| 48 | private: |
| 49 | Stopwatch() { reset(); } |
| 50 | |
| 51 | Seconds m_elapsedTime; |
| 52 | MonotonicTime m_lastStartTime; |
| 53 | }; |
| 54 | |
| 55 | inline void Stopwatch::reset() |
| 56 | { |
| 57 | m_elapsedTime = 0_s; |
| 58 | m_lastStartTime = MonotonicTime::nan(); |
| 59 | } |
| 60 | |
| 61 | inline void Stopwatch::start() |
| 62 | { |
| 63 | ASSERT_WITH_MESSAGE(std::isnan(m_lastStartTime), "Tried to start the stopwatch, but it is already running." ); |
| 64 | |
| 65 | m_lastStartTime = MonotonicTime::now(); |
| 66 | } |
| 67 | |
| 68 | inline void Stopwatch::stop() |
| 69 | { |
| 70 | ASSERT_WITH_MESSAGE(!std::isnan(m_lastStartTime), "Tried to stop the stopwatch, but it is not running." ); |
| 71 | |
| 72 | m_elapsedTime += MonotonicTime::now() - m_lastStartTime; |
| 73 | m_lastStartTime = MonotonicTime::nan(); |
| 74 | } |
| 75 | |
| 76 | inline Seconds Stopwatch::elapsedTime() |
| 77 | { |
| 78 | if (!isActive()) |
| 79 | return m_elapsedTime; |
| 80 | |
| 81 | return m_elapsedTime + (MonotonicTime::now() - m_lastStartTime); |
| 82 | } |
| 83 | |
| 84 | inline Seconds Stopwatch::elapsedTimeSince(MonotonicTime timeStamp) |
| 85 | { |
| 86 | if (!isActive()) |
| 87 | return m_elapsedTime; |
| 88 | |
| 89 | return m_elapsedTime + (timeStamp - m_lastStartTime); |
| 90 | } |
| 91 | |
| 92 | } // namespace WTF |
| 93 | |
| 94 | using WTF::Stopwatch; |
| 95 | |