summaryrefslogtreecommitdiff
path: root/Userland/DevTools/Profiler/EventSerialNumber.h
blob: a1934c5b3326b0c3e6b6afcbf6c62f46f96b03ac (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Assertions.h>
#include <AK/NumericLimits.h>
#include <AK/Types.h>

namespace Profiler {

// DistinctNumeric's constructor is non-explicit which makes accidentally turning
// an unrelated u64 into a serial number all too easy.
class EventSerialNumber {
public:
    constexpr EventSerialNumber() = default;

    void increment()
    {
        m_serial++;
    }

    size_t to_number() const
    {
        return m_serial;
    }

    static EventSerialNumber max_valid_serial()
    {
        return EventSerialNumber { NumericLimits<size_t>::max() };
    }

    bool operator==(EventSerialNumber const& rhs) const
    {
        return m_serial == rhs.m_serial;
    }

    bool operator<(EventSerialNumber const& rhs) const
    {
        return m_serial < rhs.m_serial;
    }

    bool operator>(EventSerialNumber const& rhs) const
    {
        return m_serial > rhs.m_serial;
    }

    bool operator<=(EventSerialNumber const& rhs) const
    {
        return m_serial <= rhs.m_serial;
    }

    bool operator>=(EventSerialNumber const& rhs) const
    {
        return m_serial >= rhs.m_serial;
    }

private:
    size_t m_serial { 0 };

    constexpr explicit EventSerialNumber(size_t serial)
        : m_serial(serial)
    {
    }
};

}