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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#![allow(unused_variables)]
#![warn(
clippy::all,
clippy::doc_markdown,
clippy::dbg_macro,
clippy::todo,
clippy::empty_enum,
clippy::enum_glob_use,
clippy::pub_enum_variant_names,
clippy::mem_forget,
clippy::use_self,
clippy::filter_map_next,
clippy::needless_continue,
clippy::needless_borrow,
rust_2018_idioms,
future_incompatible,
trivial_numeric_casts,
unstable_features,
nonstandard_style,
unused_import_braces,
unused_qualifications,
unused_results,
missing_docs
)]
#[cfg(test)]
mod test;
#[cfg(all(feature = "enable", target_os = "windows"))]
use superluminal_perf_sys as ffi;
pub const fn enabled() -> bool {
cfg!(all(feature = "enable", target_os = "windows"))
}
pub fn begin_event(id: &str) {
#[cfg(all(feature = "enable", target_os = "windows"))]
unsafe {
ffi::PerformanceAPI_BeginEvent_N(
id.as_ptr() as *const i8,
id.len() as u16,
std::ptr::null(),
0,
ffi::DEFAULT_COLOR,
)
}
}
pub fn begin_event_with_color(id: &str, color: u32) {
#[cfg(all(feature = "enable", target_os = "windows"))]
unsafe {
ffi::PerformanceAPI_BeginEvent_N(
id.as_ptr() as *const i8,
id.len() as u16,
std::ptr::null(),
0,
color,
)
}
}
pub fn begin_event_with_data(id: &str, data: &str, color: u32) {
#[cfg(all(feature = "enable", target_os = "windows"))]
unsafe {
ffi::PerformanceAPI_BeginEvent_N(
id.as_ptr() as *const i8,
id.len() as u16,
data.as_ptr() as *const i8,
data.len() as u16,
color,
)
}
}
pub fn end_event() {
#[cfg(all(feature = "enable", target_os = "windows"))]
unsafe {
let _ = ffi::PerformanceAPI_EndEvent();
}
}
pub fn set_current_thread_name(name: &str) {
#[cfg(all(feature = "enable", target_os = "windows"))]
unsafe {
ffi::PerformanceAPI_SetCurrentThreadName_N(name.as_ptr() as *const i8, name.len() as u16)
}
}