summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/framecheck.h
blob: 36eeea16efcbbe1d27d5982a918b072cbf557617 (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
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Functions for logging timing events.
 * Copyright (C) 2022 PBS <pbs3141@gmail.com>
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#ifndef FRAMECHECK_H
#define FRAMECHECK_H

#include <ostream>
#include <glib.h>

namespace Inkscape {
namespace FrameCheck {

extern std::ostream &logfile();

// RAII object that logs a timing event for the duration of its lifetime.
struct Event
{
    gint64 start;
    const char *name;
    int subtype;

    Event() : start(-1) {}

    Event(const char *name, int subtype = 0) : start(g_get_monotonic_time()), name(name), subtype(subtype) {}

    Event(Event &&p)
    {
        movefrom(p);
    }

    ~Event()
    {
        finish();
    }

    Event &operator=(Event &&p)
    {
        finish();
        movefrom(p);
        return *this;
    }

    void movefrom(Event &p)
    {
        start = p.start;
        name = p.name;
        subtype = p.subtype;
        p.start = -1;
    }

    void finish()
    {
        if (start != -1) {
            logfile() << name << ' ' << start << ' ' << g_get_monotonic_time() << ' ' << subtype << '\n';
        }
    }
};

} // namespace FrameCheck
} // namespace Inkscape

#endif // FRAMECHECK_H