blob: 8964561e1d8cc694df26dcc18a712cb570ef2e8e (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_FRAMECHECK_H
#define INKSCAPE_FRAMECHECK_H
#include <glib.h>
namespace Inkscape::FrameCheck {
/// RAII object that logs a timing event for the duration of its lifetime.
struct Event
{
gint64 start;
char const *name;
int subtype;
Event() : start(-1) {}
Event(char const *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;
}
private:
void movefrom(Event &p)
{
start = p.start;
name = p.name;
subtype = p.subtype;
p.start = -1;
}
void finish() { if (start != -1) write(); }
void write();
};
} // namespace Inkscape::FrameCheck
#endif // INKSCAPE_FRAMECHECK_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|