summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/ElapsedTimer.h
blob: 16cb2a32fb916141daa12d45c01a7c06ea7aacdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Time.h>

namespace Core {

class ElapsedTimer {
public:
    static ElapsedTimer start_new();

    ElapsedTimer(bool precise = false)
        : m_precise(precise)
    {
    }

    bool is_valid() const { return m_valid; }
    void start();
    void reset();

    i64 elapsed() const; // milliseconds
    Time elapsed_time() const;

    Time const& origin_time() const { return m_origin_time; }

private:
    Time m_origin_time {};
    bool m_precise { false };
    bool m_valid { false };
};

}