1#[cfg(feature = "profiler")]
2use hdrhistogram::Histogram;
3use itertools::Itertools;
4use scheduler::{Instant, SpawnTime};
5#[cfg(feature = "profiler")]
6use smallvec::SmallVec;
7use std::{
8 cell::LazyCell,
9 collections::{HashMap, VecDeque},
10 hash::{DefaultHasher, Hash, Hasher},
11 sync::{
12 Arc,
13 atomic::{AtomicU64, Ordering},
14 },
15 thread::ThreadId,
16 time::Duration,
17};
18
19mod actions;
20#[cfg(feature = "profiler")]
21pub mod hang;
22#[cfg(feature = "profiler")]
23pub mod journal;
24pub use actions::{ActionStatistics, ActionTiming, take_action_stats};
25
26use serde::{Deserialize, Serialize};
27
28#[cfg(feature = "profiler")]
29use crate::{Action, App, WindowId};
30use crate::{SharedString, TasksIncluded};
31
32#[cfg(feature = "profiler")]
33#[doc(hidden)]
34pub fn get_all_timings(included: gpui::TasksIncluded) -> Vec<gpui::ThreadTaskTimings> {
35 ThreadTaskTimings::collect(upgraded_thread_timings(), included)
36}
37
38#[cfg(feature = "profiler")]
39#[doc(hidden)]
40pub fn get_current_thread_timings(included: TasksIncluded) -> gpui::ThreadTaskTimings {
41 gpui::profiler::get_current_thread_task_timings(included)
42}
43
44#[cfg(feature = "profiler")]
45#[doc(hidden)]
46pub fn take_all_stats(included: TasksIncluded) -> Vec<gpui::ThreadTaskStatistics> {
47 ThreadTaskStatistics::collect_and_reset(upgraded_thread_timings(), included)
48}
49
50#[cfg(not(feature = "profiler"))]
51#[doc(hidden)]
52pub fn get_all_timings(_included: gpui::TasksIncluded) -> Vec<gpui::ThreadTaskTimings> {
53 Vec::new()
54}
55#[cfg(not(feature = "profiler"))]
56#[doc(hidden)]
57pub fn get_current_thread_timings(_included: TasksIncluded) -> gpui::ThreadTaskTimings {
58 gpui::ThreadTaskTimings {
59 thread_name: None,
60 thread_id: std::thread::current().id(),
61 timings: Vec::new(),
62 stats: TaskStatistics::default(),
63 total_pushed: 0,
64 }
65}
66#[cfg(not(feature = "profiler"))]
67#[doc(hidden)]
68pub fn take_all_stats(_included: TasksIncluded) -> Vec<gpui::ThreadTaskStatistics> {
69 Vec::new()
70}
71
72#[doc(hidden)]
73#[derive(Debug, Copy, Clone)]
74pub struct YieldTime(pub Instant);
75
76#[doc(hidden)]
77#[derive(Copy, Clone)]
78pub struct TaskTiming {
79 pub location: &'static core::panic::Location<'static>,
80 pub spawned: SpawnTime,
81 pub start: Instant,
82 pub end: YieldTime,
83}
84
85impl std::fmt::Debug for TaskTiming {
86 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
87 f.debug_struct("TaskTiming")
88 .field("location", &self.location)
89 .field("since_spawned", &self.spawned.0.elapsed())
90 .field("last_poll_duration", &self.poll_duration())
91 .field("total_runtime", &self.since_spawn())
92 .finish()
93 }
94}
95
96#[doc(hidden)]
97#[derive(Debug, Copy, Clone)]
98pub struct ActiveTiming {
99 pub location: &'static core::panic::Location<'static>,
100 pub spawned: SpawnTime,
101 pub start: Instant,
102}
103
104impl TaskTiming {
105 pub fn placeholder() -> Self {
107 let now = Instant::now();
108 Self {
109 location: std::panic::Location::caller(),
110 spawned: SpawnTime(now),
111 start: now,
112 end: YieldTime(now),
113 }
114 }
115
116 #[inline(always)]
117 pub fn poll_duration(&self) -> Duration {
118 self.end.0 - self.start
119 }
120
121 #[inline(always)]
122 fn since_spawn(&self) -> Duration {
123 self.end.0 - self.spawned.0
124 }
125}
126
127#[doc(hidden)]
128#[derive(Debug, Clone)]
129pub struct ThreadTaskTimings {
130 pub thread_name: Option<String>,
131 pub thread_id: ThreadId,
132 pub timings: Vec<TaskTiming>,
133 pub stats: TaskStatistics,
134 pub total_pushed: u64,
135}
136
137impl ThreadTaskTimings {
138 pub fn collect(
140 timings: Vec<(ThreadId, Arc<GuardedTaskTimings>)>,
141 included: TasksIncluded,
142 ) -> Vec<Self> {
143 timings
144 .into_iter()
145 .map(|(thread_id, timings)| {
146 let timings = timings.lock();
147 let thread_name = timings.thread_name.clone();
148 let total_pushed = timings.total_pushed;
149 let completed = &timings.timings;
150
151 let mut vec = Vec::with_capacity(completed.len() + 1); let (s1, s2) = completed.as_slices();
153 vec.extend_from_slice(s1);
154 vec.extend_from_slice(s2);
155 if let TasksIncluded::CompletedAndRunning = included
156 && let Some(running) = timings.running
157 {
158 vec.push(TaskTiming {
159 location: running.location,
160 spawned: running.spawned,
161 start: running.start,
162 end: YieldTime(Instant::now()),
163 })
164 }
165
166 ThreadTaskTimings {
167 thread_name,
168 thread_id,
169 timings: vec,
170 stats: timings.stats.clone(),
171 total_pushed,
172 }
173 })
174 .collect()
175 }
176}
177
178#[doc(hidden)]
179#[derive(Debug)]
180pub struct ThreadTaskStatistics {
181 pub thread_name: Option<String>,
182 pub thread_id: ThreadId,
183 pub stats: TaskStatistics,
184}
185
186impl ThreadTaskStatistics {
187 pub fn collect_and_reset(
188 timings: Vec<(ThreadId, Arc<GuardedTaskTimings>)>,
189 include_running: TasksIncluded,
190 ) -> Vec<Self> {
191 timings
192 .into_iter()
193 .map(|(thread_id, timings)| {
194 let mut timings = timings.lock();
195 let thread_name = timings.thread_name.clone();
196
197 let mut stats = std::mem::take(&mut timings.stats);
198 if let TasksIncluded::CompletedAndRunning = include_running
199 && let Some(ActiveTiming {
200 location,
201 spawned,
202 start,
203 }) = timings.running
204 {
205 let end = YieldTime(Instant::now());
206 let timing = TaskTiming {
207 location,
208 spawned,
209 start,
210 end,
211 };
212 stats.add_runtime(timing);
213 stats.add_yield_timing(timing);
214 }
215
216 Self {
217 thread_name,
218 thread_id,
219 stats,
220 }
221 })
222 .collect()
223 }
224}
225
226#[derive(Debug, Clone, Serialize, Deserialize)]
228pub struct SerializedLocation {
229 pub file: SharedString,
231 pub line: u32,
233 pub column: u32,
235}
236
237impl From<&core::panic::Location<'static>> for SerializedLocation {
238 fn from(value: &core::panic::Location<'static>) -> Self {
239 SerializedLocation {
240 file: value.file().into(),
241 line: value.line(),
242 column: value.column(),
243 }
244 }
245}
246
247#[derive(Debug, Clone, Serialize, Deserialize)]
249pub struct SerializedTaskTiming {
250 pub location: SerializedLocation,
252 pub start: u128,
254 pub duration: u128,
256}
257
258impl SerializedTaskTiming {
259 pub fn convert(anchor: Instant, timings: &[TaskTiming]) -> Vec<SerializedTaskTiming> {
265 let serialized = timings
266 .iter()
267 .map(|timing| {
268 let start = timing.start.duration_since(anchor).as_nanos();
269 let duration = timing.end.0.duration_since(timing.start).as_nanos();
270 SerializedTaskTiming {
271 location: timing.location.into(),
272 start,
273 duration,
274 }
275 })
276 .collect::<Vec<_>>();
277
278 serialized
279 }
280
281 pub fn from(anchor: Instant, timing: TaskTiming) -> SerializedTaskTiming {
283 let start = timing.start.duration_since(anchor).as_nanos();
284 let duration = timing.end.0.duration_since(timing.start).as_nanos();
285 SerializedTaskTiming {
286 location: timing.location.into(),
287 start,
288 duration,
289 }
290 }
291}
292
293#[derive(Debug, Clone, Serialize, Deserialize)]
295pub struct SerializedThreadTaskTimings {
296 pub thread_name: Option<String>,
298 pub thread_id: u64,
300 pub timings: Vec<SerializedTaskTiming>,
302}
303
304impl SerializedThreadTaskTimings {
305 pub fn convert(anchor: Instant, timings: ThreadTaskTimings) -> SerializedThreadTaskTimings {
311 let serialized_timings = SerializedTaskTiming::convert(anchor, &timings.timings);
312
313 let mut hasher = DefaultHasher::new();
314 timings.thread_id.hash(&mut hasher);
315 let thread_id = hasher.finish();
316
317 SerializedThreadTaskTimings {
318 thread_name: timings.thread_name,
319 thread_id,
320 timings: serialized_timings,
321 }
322 }
323}
324
325#[doc(hidden)]
326#[derive(Debug, Clone)]
327pub struct ThreadTimingsDelta {
328 pub thread_id: u64,
330 pub thread_name: Option<String>,
332 pub new_timings: Vec<SerializedTaskTiming>,
335}
336
337#[doc(hidden)]
339pub struct ProfilingCollector {
340 startup_time: Instant,
341 cursors: HashMap<ThreadId, u64>,
342}
343
344impl ProfilingCollector {
345 pub fn new(startup_time: Instant) -> Self {
346 Self {
347 startup_time,
348 cursors: HashMap::default(),
349 }
350 }
351
352 pub fn startup_time(&self) -> Instant {
353 self.startup_time
354 }
355
356 pub fn collect_unseen(
357 &mut self,
358 all_timings: Vec<ThreadTaskTimings>,
359 ) -> Vec<ThreadTimingsDelta> {
360 let mut deltas = Vec::with_capacity(all_timings.len());
361
362 for thread in all_timings {
363 let mut hasher = DefaultHasher::new();
364 thread.thread_id.hash(&mut hasher);
365 let hashed_id = hasher.finish();
366
367 let prev_cursor = self.cursors.get(&thread.thread_id).copied().unwrap_or(0);
368 let buffer_len = thread.timings.len() as u64;
369 let buffer_start = thread.total_pushed.saturating_sub(buffer_len);
370
371 let mut slice = if prev_cursor < buffer_start {
372 thread.timings.as_slice()
375 } else {
376 let skip = (prev_cursor - buffer_start) as usize;
377 &thread.timings[skip.min(thread.timings.len())..]
378 };
379
380 let cursor_advance = thread.total_pushed;
381 self.cursors.insert(thread.thread_id, cursor_advance);
382
383 if slice.is_empty() {
384 continue;
385 }
386
387 let new_timings = SerializedTaskTiming::convert(self.startup_time, slice);
388
389 deltas.push(ThreadTimingsDelta {
390 thread_id: hashed_id,
391 thread_name: thread.thread_name,
392 new_timings,
393 });
394 }
395
396 deltas
397 }
398
399 pub fn reset(&mut self) {
400 self.cursors.clear();
401 }
402}
403
404#[cfg(feature = "profiler")]
408const MAX_TASK_TIMINGS: usize = (16 * 1024 * 1024) / core::mem::size_of::<TaskTiming>();
409
410#[doc(hidden)]
411pub(crate) type TaskTimings = VecDeque<TaskTiming>;
412
413#[doc(hidden)]
414pub type GuardedTaskTimings = spin::Mutex<ThreadTimings>;
415
416#[doc(hidden)]
417pub struct GlobalThreadTimings {
418 pub thread_id: ThreadId,
419 pub timings: std::sync::Weak<GuardedTaskTimings>,
420}
421
422#[doc(hidden)]
423#[derive(Debug, Clone)]
424pub struct TaskStatistics {
425 pub poll_time_to_beat: Duration,
426 pub runtime_to_beat: Duration,
427 pub longest_poll_times: [TaskTiming; 5],
428 pub longest_runtimes: [TaskTiming; 5],
429}
430
431impl std::fmt::Display for TaskStatistics {
432 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
433 f.write_str("Tasks that blocked the longest before yielding\n")?;
434 for timing in self.longest_poll_times {
435 f.write_fmt(format_args!(
436 "{:<20} - {}:{}\n",
437 format!("{:?}", timing.poll_duration()),
438 timing.location.file(),
439 timing.location.column()
440 ))?;
441 }
442 f.write_str("Tasks that ran the longest\n")?;
443 for timing in self.longest_runtimes {
444 f.write_fmt(format_args!(
445 "{:<20} - {}:{}\n",
446 format!("{:?}", timing.since_spawn()),
447 timing.location.file(),
448 timing.location.column()
449 ))?;
450 }
451 Ok(())
452 }
453}
454
455impl Default for TaskStatistics {
456 fn default() -> Self {
457 Self {
458 poll_time_to_beat: Duration::from_micros(100),
461 runtime_to_beat: Duration::from_micros(100),
462 longest_poll_times: [TaskTiming::placeholder(); 5],
463 longest_runtimes: [TaskTiming::placeholder(); 5],
464 }
465 }
466}
467
468impl TaskStatistics {
469 #[inline(always)]
470 fn add_yield_timing(&mut self, task: TaskTiming) {
471 let yielded_after = task.poll_duration();
472 if yielded_after >= self.poll_time_to_beat {
473 std::hint::cold_path(); let to_replace = self
475 .longest_poll_times
476 .iter()
477 .position_min_by_key(|task| task.since_spawn())
478 .expect("guarded by the comparison with nth_longest_yield_time");
479 self.longest_poll_times[to_replace] = task;
480
481 self.poll_time_to_beat = self
482 .longest_poll_times
483 .iter()
484 .map(|task| task.since_spawn())
485 .min()
486 .expect("never empty");
487 }
488 }
489
490 #[inline(always)]
491 fn add_runtime(&mut self, task: TaskTiming) {
492 let runtime = task.since_spawn();
493 if runtime >= self.runtime_to_beat {
494 std::hint::cold_path(); let to_replace = self
496 .longest_runtimes
497 .iter()
498 .position_min_by_key(|task| task.since_spawn())
499 .expect("guarded by the comparison with nth_longest_yield_time");
500 self.longest_runtimes[to_replace] = task;
501
502 self.runtime_to_beat = self
503 .longest_runtimes
504 .iter()
505 .map(|task| task.since_spawn())
506 .min()
507 .expect("never empty");
508 }
509 }
510}
511
512#[doc(hidden)]
513pub static GLOBAL_THREAD_TIMINGS: spin::Mutex<Vec<GlobalThreadTimings>> =
514 spin::Mutex::new(Vec::new());
515
516fn upgraded_thread_timings() -> Vec<(ThreadId, Arc<GuardedTaskTimings>)> {
526 let global_thread_timings = GLOBAL_THREAD_TIMINGS.lock();
527 global_thread_timings
528 .iter()
529 .filter_map(|t| Some((t.thread_id, t.timings.upgrade()?)))
530 .collect()
531}
532
533thread_local! {
534 #[doc(hidden)]
535 pub static THREAD_TIMINGS: LazyCell<Arc<GuardedTaskTimings>> = LazyCell::new(|| {
536 let current_thread = std::thread::current();
537 let thread_name = current_thread.name();
538 let thread_id = current_thread.id();
539 let timings = ThreadTimings::new(thread_name.map(|e| e.to_string()), thread_id);
540 let timings = Arc::new(spin::Mutex::new(timings));
541
542 {
543 let timings = Arc::downgrade(&timings);
544 let global_timings = GlobalThreadTimings {
545 thread_id: std::thread::current().id(),
546 timings,
547 };
548 GLOBAL_THREAD_TIMINGS.lock().push(global_timings);
549 }
550
551 timings
552 });
553}
554
555#[doc(hidden)]
556pub struct ThreadTimings {
557 pub thread_name: Option<String>,
558 pub thread_id: ThreadId,
559 pub timings: TaskTimings,
560 pub running: Option<ActiveTiming>,
561 pub stats: TaskStatistics,
562 pub total_pushed: u64,
563}
564
565impl ThreadTimings {
566 pub fn new(thread_name: Option<String>, thread_id: ThreadId) -> Self {
567 ThreadTimings {
568 thread_name,
569 thread_id,
570 timings: TaskTimings::new(),
571 stats: TaskStatistics::default(),
572 total_pushed: 0,
573 running: None,
574 }
575 }
576
577 #[cfg(feature = "profiler")]
578 pub fn update_running_task(
579 &mut self,
580 spawned: SpawnTime,
581 location: &'static std::panic::Location<'_>,
582 ) {
583 let start = Instant::now();
584 self.running = Some(ActiveTiming {
585 spawned,
586 location,
587 start,
588 });
589 }
590 #[cfg(not(feature = "profiler"))]
591 pub fn update_running_task(&mut self, _: SpawnTime, _: &'static std::panic::Location<'_>) {}
592
593 #[cfg(feature = "profiler")]
594 pub fn save_task_timing(&mut self, ended: YieldTime) -> TaskTiming {
595 let ActiveTiming {
596 location,
597 start,
598 spawned,
599 } = self
600 .running
601 .take()
602 .expect("this function is only ever called after register_task_start");
603
604 let timing = TaskTiming {
605 location,
606 spawned,
607 start,
608 end: ended,
609 };
610 self.stats.add_yield_timing(timing);
611 self.stats.add_runtime(timing);
612
613 if trace_enabled() {
614 std::hint::cold_path(); if self.timings.len() >= MAX_TASK_TIMINGS {
616 self.timings.pop_front();
617 }
618 self.timings.push_back(timing);
619 self.total_pushed += 1;
620 }
621 timing
622 }
623 #[cfg(not(feature = "profiler"))]
624 pub fn save_task_timing(&mut self, _: YieldTime) {}
625
626 pub fn get_thread_task_timings(&self, includes: TasksIncluded) -> ThreadTaskTimings {
629 ThreadTaskTimings {
630 thread_name: self.thread_name.clone(),
631 thread_id: self.thread_id,
632 timings: self
633 .timings
634 .iter()
635 .cloned()
636 .chain(
637 self.running
638 .filter(|_| matches!(includes, TasksIncluded::CompletedAndRunning))
639 .map(|running| TaskTiming {
640 spawned: running.spawned,
641 location: running.location,
642 start: running.start,
643 end: YieldTime(Instant::now()),
644 }),
645 )
646 .collect(),
647 stats: self.stats.clone(),
648 total_pushed: self.total_pushed,
649 }
650 }
651}
652
653impl Drop for ThreadTimings {
654 fn drop(&mut self) {
655 let mut thread_timings = GLOBAL_THREAD_TIMINGS.lock();
656
657 let Some((index, _)) = thread_timings
658 .iter()
659 .enumerate()
660 .find(|(_, t)| t.thread_id == self.thread_id)
661 else {
662 return;
663 };
664 thread_timings.swap_remove(index);
665 }
666}
667
668#[doc(hidden)]
669pub fn update_running_task(spawned: SpawnTime, location: &'static std::panic::Location<'_>) {
670 #[cfg(feature = "profiler")]
671 journal::begin_foreground_turn();
672 THREAD_TIMINGS.with(|timings| {
673 timings.lock().update_running_task(spawned, location);
674 });
675}
676
677#[doc(hidden)]
678pub fn save_task_timing() {
679 let yielded_at = YieldTime(Instant::now());
680 #[cfg(feature = "profiler")]
681 {
682 let timing = THREAD_TIMINGS.with(|timings| timings.lock().save_task_timing(yielded_at));
683 journal::record_task_poll(timing);
684 }
685 #[cfg(not(feature = "profiler"))]
686 THREAD_TIMINGS.with(|timings| {
687 timings.lock().save_task_timing(yielded_at);
688 });
689}
690
691#[doc(hidden)]
692pub fn get_current_thread_task_timings(include_running: TasksIncluded) -> ThreadTaskTimings {
693 THREAD_TIMINGS.with(|timings| timings.lock().get_thread_task_timings(include_running))
694}
695
696const TRACE_SETTING_ENABLED: u64 = 1 << 63;
697const TRACE_SCOPE_COUNT_MASK: u64 = TRACE_SETTING_ENABLED - 1;
698static TRACE_STATE: AtomicU64 = AtomicU64::new(0);
699
700pub fn set_trace_enabled(enabled: bool) -> bool {
708 let mut state = TRACE_STATE.load(Ordering::Acquire);
709 loop {
710 let was_enabled = state & TRACE_SETTING_ENABLED != 0;
711 if was_enabled == enabled {
712 return false;
713 }
714
715 let next_state = if enabled {
716 state | TRACE_SETTING_ENABLED
717 } else {
718 state & TRACE_SCOPE_COUNT_MASK
719 };
720 match TRACE_STATE.compare_exchange_weak(
721 state,
722 next_state,
723 Ordering::AcqRel,
724 Ordering::Acquire,
725 ) {
726 Ok(_) => {
727 if next_state == 0 {
728 clear_trace_buffers();
729 }
730 return true;
731 }
732 Err(updated_state) => state = updated_state,
733 }
734 }
735}
736
737#[cfg(any(feature = "bench-support", all(test, feature = "profiler")))]
738pub(crate) struct TraceGuard;
739
740#[cfg(any(feature = "bench-support", all(test, feature = "profiler")))]
741pub(crate) fn trace_scope() -> TraceGuard {
742 let incremented = TRACE_STATE.fetch_update(Ordering::AcqRel, Ordering::Acquire, |state| {
743 (state & TRACE_SCOPE_COUNT_MASK < TRACE_SCOPE_COUNT_MASK).then_some(state + 1)
744 });
745 assert!(incremented.is_ok(), "too many active profiler trace scopes");
746 TraceGuard
747}
748
749#[cfg(any(feature = "bench-support", all(test, feature = "profiler")))]
750impl Drop for TraceGuard {
751 fn drop(&mut self) {
752 let previous_state =
753 TRACE_STATE.fetch_update(Ordering::AcqRel, Ordering::Acquire, |state| {
754 (state & TRACE_SCOPE_COUNT_MASK > 0).then_some(state - 1)
755 });
756 match previous_state {
757 Ok(1) => clear_trace_buffers(),
758 Ok(_) => {}
759 Err(_) => debug_assert!(false, "profiler trace scope count underflowed"),
760 }
761 }
762}
763
764pub fn trace_enabled() -> bool {
766 TRACE_STATE.load(Ordering::Relaxed) != 0
767}
768
769fn clear_trace_buffers() {
770 for (_, timings) in upgraded_thread_timings() {
771 let mut timings = timings.lock();
772 timings.timings.clear();
773 timings.timings.shrink_to_fit();
774 timings.total_pushed = 0;
775 }
776 #[cfg(feature = "profiler")]
777 {
778 let mut frames = FRAME_TIMINGS.lock();
779 frames.timings.clear();
780 frames.timings.shrink_to_fit();
781 frames.total_pushed = 0;
782 }
783}
784
785#[cfg(feature = "profiler")]
787#[derive(Debug, Copy, Clone)]
788pub struct FrameTiming {
789 pub window_id: WindowId,
791 pub dirty_at: Option<Instant>,
794 pub invalidations: u64,
796 pub draw_start: Instant,
798 pub draw_end: Instant,
800}
801
802#[cfg(feature = "profiler")]
803impl FrameTiming {
804 pub fn draw_duration(&self) -> Duration {
806 self.draw_end.duration_since(self.draw_start)
807 }
808
809 pub fn dirty_to_draw_duration(&self) -> Option<Duration> {
812 self.dirty_at
813 .map(|dirty_at| self.draw_end.duration_since(dirty_at))
814 }
815}
816
817#[cfg(feature = "profiler")]
819#[derive(Debug, Copy, Clone)]
820pub struct PresentTiming {
821 pub window_id: WindowId,
823 pub present_start: Instant,
825 pub present_end: Instant,
827 pub animation_interval: Option<Duration>,
830}
831
832#[cfg(feature = "profiler")]
833impl PresentTiming {
834 pub fn present_duration(&self) -> Duration {
836 self.present_end.duration_since(self.present_start)
837 }
838}
839
840#[cfg(feature = "profiler")]
842#[derive(Debug, Copy, Clone)]
843pub enum FrameEvent {
844 Draw(FrameTiming),
846 Present(PresentTiming),
848}
849
850#[cfg(feature = "profiler")]
853#[derive(Clone)]
854pub struct FrameDurationSnapshot {
855 pub dirty_to_present_histogram: Histogram<u64>,
857 pub draw_duration_histogram: Histogram<u64>,
859 pub present_interval_histogram: Histogram<u64>,
862}
863
864#[cfg(feature = "profiler")]
867#[derive(Clone)]
868pub struct InputLatencySnapshot {
869 pub latency_histogram: Histogram<u64>,
871 pub events_per_frame_histogram: Histogram<u64>,
873 pub mid_draw_events_dropped: u64,
876}
877
878#[cfg(feature = "profiler")]
879enum WindowActivity {
880 Input {
881 started_at: Instant,
882 kind: &'static str,
883 },
884 Draw {
885 started_at: Instant,
886 },
887}
888
889#[cfg(feature = "profiler")]
895pub struct WindowProfiler {
896 window_id: WindowId,
897 active_activities: SmallVec<[WindowActivity; 4]>,
898 active_actions: SmallVec<[(&'static str, Instant); 2]>,
899 dirty_to_present_histogram: Histogram<u64>,
900 draw_duration_histogram: Histogram<u64>,
901 present_interval_histogram: Histogram<u64>,
902 first_input_at: Option<Instant>,
903 pending_input_count: u64,
904 input_latency_histogram: Histogram<u64>,
905 events_per_frame_histogram: Histogram<u64>,
906 mid_draw_events_dropped: u64,
907 last_present_at: Option<Instant>,
908 animating_at_last_present: bool,
909 pending_frame: Option<FrameTiming>,
910}
911
912#[cfg(feature = "profiler")]
913impl WindowProfiler {
914 pub fn new(window_id: WindowId) -> anyhow::Result<Self> {
916 let profiler = Self {
917 window_id,
918 active_activities: SmallVec::new(),
919 active_actions: SmallVec::new(),
920 dirty_to_present_histogram: Histogram::new(3).map_err(|error| {
921 anyhow::anyhow!("Failed to create dirty-to-present histogram: {error}")
922 })?,
923 draw_duration_histogram: Histogram::new(3).map_err(|error| {
924 anyhow::anyhow!("Failed to create draw duration histogram: {error}")
925 })?,
926 present_interval_histogram: Histogram::new(3).map_err(|error| {
927 anyhow::anyhow!("Failed to create present interval histogram: {error}")
928 })?,
929 first_input_at: None,
930 pending_input_count: 0,
931 input_latency_histogram: Histogram::new(3).map_err(|error| {
932 anyhow::anyhow!("Failed to create input latency histogram: {error}")
933 })?,
934 events_per_frame_histogram: Histogram::new(3).map_err(|error| {
935 anyhow::anyhow!("Failed to create events per frame histogram: {error}")
936 })?,
937 mid_draw_events_dropped: 0,
938 last_present_at: None,
939 animating_at_last_present: false,
940 pending_frame: None,
941 };
942 journal::record_frame_pending(window_id, Instant::now());
943 Ok(profiler)
944 }
945
946 pub fn begin_input(&mut self, kind: &'static str) {
949 journal::begin_foreground_turn();
950 self.active_activities.push(WindowActivity::Input {
951 started_at: Instant::now(),
952 kind,
953 });
954 }
955
956 pub fn end_input(&mut self, caused_invalidation: bool) {
958 let Some(WindowActivity::Input { started_at, kind }) = self.active_activities.pop() else {
959 debug_assert!(false, "input activity must be the current window activity");
960 journal::end_foreground_turn();
961 return;
962 };
963
964 if !journal::power_interrupted_since(started_at) {
965 journal::record_input(journal::InputTiming {
966 kind,
967 start: started_at,
968 end: Instant::now(),
969 caused_invalidation,
970 });
971 }
972 journal::end_foreground_turn();
973
974 if !caused_invalidation || !journal::frame_sample_is_valid(self.window_id, started_at) {
975 return;
976 }
977 if self
978 .first_input_at
979 .is_some_and(|at| !journal::frame_sample_is_valid(self.window_id, at))
980 {
981 self.first_input_at = None;
982 self.pending_input_count = 0;
983 }
984
985 let arrived_during_draw = self
986 .active_activities
987 .iter()
988 .any(|activity| matches!(activity, WindowActivity::Draw { .. }));
989 if arrived_during_draw {
990 self.mid_draw_events_dropped += 1;
991 } else {
992 self.first_input_at.get_or_insert(started_at);
993 self.pending_input_count += 1;
994 }
995 }
996
997 pub fn begin_action_handler(&mut self, action: &(dyn Action + 'static), cx: &mut App) {
999 journal::begin_foreground_turn();
1000 let name = actions::update_running_action(action, cx);
1001 self.active_actions.push((name, Instant::now()));
1002 }
1003
1004 pub fn end_action_handler(&mut self) {
1006 actions::save_action_timing();
1010 let Some((name, start)) = self.active_actions.pop() else {
1011 debug_assert!(false, "action handler must be begun before it ends");
1012 journal::end_foreground_turn();
1013 return;
1014 };
1015 if !journal::power_interrupted_since(start) {
1016 journal::record_action(ActionTiming {
1017 name,
1018 start,
1019 end: Instant::now(),
1020 });
1021 }
1022 journal::end_foreground_turn();
1023 }
1024
1025 pub fn begin_draw(&mut self) {
1027 journal::begin_foreground_turn();
1028 let started_at = Instant::now();
1029 journal::record_frame_pending(self.window_id, started_at);
1030 self.active_activities
1031 .push(WindowActivity::Draw { started_at });
1032 }
1033
1034 pub fn end_draw(&mut self, dirty_at: Option<Instant>, invalidations: u64) -> Duration {
1036 let Some(WindowActivity::Draw {
1037 started_at: draw_start,
1038 }) = self.active_activities.pop()
1039 else {
1040 debug_assert!(false, "draw activity must be the current window activity");
1041 journal::end_foreground_turn();
1042 return Duration::ZERO;
1043 };
1044
1045 let draw_end = Instant::now();
1046 let frame_timing = FrameTiming {
1047 window_id: self.window_id,
1048 dirty_at: dirty_at.filter(|at| journal::frame_sample_is_valid(self.window_id, *at)),
1049 invalidations,
1050 draw_start,
1051 draw_end,
1052 };
1053 let draw_duration = frame_timing.draw_duration();
1054 if !journal::power_interrupted_since(draw_start) {
1055 self.record_draw_timing(frame_timing);
1056 }
1057 journal::end_foreground_turn();
1058 draw_duration
1059 }
1060
1061 pub fn record_present(
1066 &mut self,
1067 present_start: Instant,
1068 present_end: Instant,
1069 window_active: bool,
1070 next_frame_scheduled: bool,
1071 ) {
1072 self.record_present_at(
1073 present_start,
1074 present_end,
1075 window_active,
1076 next_frame_scheduled,
1077 );
1078 }
1079
1080 pub fn input_latency_snapshot(&self) -> InputLatencySnapshot {
1082 InputLatencySnapshot {
1083 latency_histogram: self.input_latency_histogram.clone(),
1084 events_per_frame_histogram: self.events_per_frame_histogram.clone(),
1085 mid_draw_events_dropped: self.mid_draw_events_dropped,
1086 }
1087 }
1088
1089 pub fn frame_duration_snapshot(&self) -> FrameDurationSnapshot {
1091 FrameDurationSnapshot {
1092 dirty_to_present_histogram: self.dirty_to_present_histogram.clone(),
1093 draw_duration_histogram: self.draw_duration_histogram.clone(),
1094 present_interval_histogram: self.present_interval_histogram.clone(),
1095 }
1096 }
1097
1098 fn record_present_at(
1099 &mut self,
1100 present_start: Instant,
1101 present_end: Instant,
1102 window_active: bool,
1103 next_frame_scheduled: bool,
1104 ) {
1105 if let Some(first_input_at) = self.first_input_at.take()
1106 && journal::frame_sample_is_valid(self.window_id, first_input_at)
1107 {
1108 let latency_nanos = present_end.duration_since(first_input_at).as_nanos() as u64;
1109 self.input_latency_histogram.record(latency_nanos).ok();
1110 if self.pending_input_count > 0 {
1111 self.events_per_frame_histogram
1112 .record(self.pending_input_count)
1113 .ok();
1114 }
1115 }
1116 self.pending_input_count = 0;
1117
1118 let frame = self
1119 .pending_frame
1120 .take()
1121 .filter(|frame| journal::frame_sample_is_valid(self.window_id, frame.draw_start))
1122 .map(|mut frame| {
1123 frame.dirty_at = frame
1124 .dirty_at
1125 .filter(|at| journal::frame_sample_is_valid(self.window_id, *at));
1126 frame
1127 });
1128 let animation_interval =
1129 if frame.is_some() && self.animating_at_last_present && window_active {
1130 self.last_present_at
1131 .filter(|at| journal::frame_sample_is_valid(self.window_id, *at))
1132 .map(|last_present_at| present_end.duration_since(last_present_at))
1133 } else {
1134 None
1135 };
1136 let present_timing = PresentTiming {
1137 window_id: self.window_id,
1138 present_start,
1139 present_end,
1140 animation_interval,
1141 };
1142 journal::record_present(present_timing, frame);
1143
1144 let Some(frame) = frame else {
1145 return;
1146 };
1147
1148 if let Some(dirty_at) = frame.dirty_at
1149 && let Err(error) = self
1150 .dirty_to_present_histogram
1151 .record(present_end.duration_since(dirty_at).as_nanos() as u64)
1152 {
1153 log::error!("failed to record dirty-to-present frame timing: {error}");
1154 }
1155
1156 if let Some(animation_interval) = animation_interval {
1157 self.present_interval_histogram
1158 .record(animation_interval.as_nanos() as u64)
1159 .ok();
1160 }
1161 record_frame_event(FrameEvent::Present(present_timing));
1162
1163 self.last_present_at = Some(present_end);
1164 self.animating_at_last_present = next_frame_scheduled && window_active;
1165 }
1166
1167 fn record_draw_timing(&mut self, timing: FrameTiming) {
1168 self.record_draw_duration(timing.draw_duration());
1169 self.pending_frame = Some(timing);
1170 record_frame_event(FrameEvent::Draw(timing));
1171 journal::record_draw(timing);
1172 }
1173
1174 fn record_draw_duration(&mut self, duration: Duration) {
1175 self.draw_duration_histogram
1176 .record(duration.as_nanos() as u64)
1177 .ok();
1178 }
1179}
1180
1181#[cfg(feature = "profiler")]
1182impl Drop for WindowProfiler {
1183 fn drop(&mut self) {
1184 journal::record_window_closed(self.window_id);
1185 }
1186}
1187
1188#[cfg(feature = "profiler")]
1190const MAX_FRAME_TIMINGS: usize = (16 * 1024 * 1024) / core::mem::size_of::<FrameEvent>();
1191
1192#[cfg(feature = "profiler")]
1193struct FrameTimings {
1194 timings: VecDeque<FrameEvent>,
1195 total_pushed: u64,
1196}
1197
1198#[cfg(feature = "profiler")]
1199static FRAME_TIMINGS: spin::Mutex<FrameTimings> = spin::Mutex::new(FrameTimings {
1200 timings: VecDeque::new(),
1201 total_pushed: 0,
1202});
1203
1204#[cfg(feature = "profiler")]
1208pub fn record_frame_event(event: FrameEvent) {
1209 if !trace_enabled() {
1210 return;
1211 }
1212 std::hint::cold_path(); let mut frames = FRAME_TIMINGS.lock();
1215 if frames.timings.len() >= MAX_FRAME_TIMINGS {
1216 frames.timings.pop_front();
1217 }
1218 frames.timings.push_back(event);
1219 frames.total_pushed += 1;
1220}
1221
1222#[cfg(feature = "profiler")]
1225pub struct FrameTimingCollector {
1226 cursor: u64,
1227}
1228
1229#[cfg(feature = "profiler")]
1230impl Default for FrameTimingCollector {
1231 fn default() -> Self {
1232 Self::new()
1233 }
1234}
1235
1236#[cfg(feature = "profiler")]
1237impl FrameTimingCollector {
1238 pub fn new() -> Self {
1240 Self {
1241 cursor: FRAME_TIMINGS.lock().total_pushed,
1242 }
1243 }
1244
1245 pub fn collect_unseen(&mut self) -> Vec<FrameEvent> {
1249 let frames = FRAME_TIMINGS.lock();
1250 let buffer_len = frames.timings.len() as u64;
1251 let buffer_start = frames.total_pushed.saturating_sub(buffer_len);
1252 let skip = self.cursor.saturating_sub(buffer_start) as usize;
1253 let unseen = frames
1254 .timings
1255 .iter()
1256 .skip(skip.min(frames.timings.len()))
1257 .copied()
1258 .collect();
1259 self.cursor = frames.total_pushed;
1260 unseen
1261 }
1262}
1263
1264#[cfg(all(test, feature = "profiler"))]
1265mod tests {
1266 use super::*;
1267 use std::sync::{Mutex, MutexGuard};
1268
1269 #[test]
1270 fn interruptions_drop_latency_samples_but_hiding_keeps_draw_work() {
1271 for sleep in [false, true] {
1272 let (_journal, _guard) = journal::install_test_foreground_journal(64, 4);
1273 let id = WindowId::from(1);
1274 let mut profiler = WindowProfiler::new(id).expect("valid histograms");
1275 let old = Instant::now() - Duration::from_secs(1);
1276 record_test_draw(&mut profiler, old);
1277 profiler.record_present_at(old, old, true, true);
1278 profiler.first_input_at = Some(old);
1279 profiler.pending_input_count = 1;
1280 profiler.begin_draw();
1281 if sleep {
1282 journal::record_power_transition(journal::PowerState::Suspended);
1283 journal::record_power_transition(journal::PowerState::Awake);
1284 } else {
1285 journal::record_window_visibility(id, crate::WindowVisibility::Hidden);
1286 journal::record_window_visibility(id, crate::WindowVisibility::Visible);
1287 }
1288 profiler.end_draw(Some(old), 1);
1289 let now = Instant::now();
1290 profiler.record_present_at(now, now, true, true);
1291 assert_eq!(
1292 profiler.draw_duration_histogram.len(),
1293 if sleep { 1 } else { 2 }
1294 );
1295 assert_eq!(profiler.input_latency_histogram.len(), 0);
1296 assert_eq!(profiler.dirty_to_present_histogram.len(), 1);
1297 assert_eq!(profiler.present_interval_histogram.len(), 0);
1298 profiler.begin_draw();
1299 profiler.end_draw(Some(Instant::now()), 1);
1300 let now = Instant::now();
1301 profiler.record_present_at(now, now, true, true);
1302 assert_eq!(profiler.dirty_to_present_histogram.len(), 2);
1303 }
1304 }
1305
1306 #[test]
1307 fn records_draw_events_only_while_tracing() {
1308 let _trace_test_guard = TraceTestGuard::new();
1309 let window_id = WindowId::from(0xD0A0);
1310 let mut window_profiler =
1311 WindowProfiler::new(window_id).expect("window profiler should initialize");
1312 let dirty_at = Instant::now();
1313 let mut collector = FrameTimingCollector::new();
1314
1315 window_profiler.begin_draw();
1316 window_profiler.end_draw(Some(dirty_at), 3);
1317 assert!(
1318 collector
1319 .collect_unseen()
1320 .iter()
1321 .all(|event| !event_matches_window(*event, window_id))
1322 );
1323
1324 set_trace_enabled(true);
1325 let mut collector = FrameTimingCollector::new();
1326 window_profiler.begin_draw();
1327 window_profiler.end_draw(Some(dirty_at), 3);
1328
1329 let timing = collector
1330 .collect_unseen()
1331 .into_iter()
1332 .find_map(|event| match event {
1333 FrameEvent::Draw(timing) if timing.window_id == window_id => Some(timing),
1334 _ => None,
1335 })
1336 .expect("draw event should be recorded while tracing");
1337 assert_eq!(timing.dirty_at, Some(dirty_at));
1338 assert_eq!(timing.invalidations, 3);
1339 assert!(timing.draw_start >= dirty_at);
1340 }
1341
1342 #[test]
1343 fn records_present_events_for_newly_drawn_frames() {
1344 let _trace_test_guard = TraceTestGuard::new();
1345 set_trace_enabled(true);
1346 let window_id = WindowId::from(0xA11E);
1347 let mut window_profiler =
1348 WindowProfiler::new(window_id).expect("window profiler should initialize");
1349 let start = Instant::now();
1350 let mut collector = FrameTimingCollector::new();
1351
1352 record_test_draw(&mut window_profiler, start);
1353 window_profiler.record_present_at(start, start, true, true);
1354 record_test_draw(&mut window_profiler, start + FRAME);
1355 window_profiler.record_present_at(start + FRAME, start + FRAME, true, true);
1356 window_profiler.record_present_at(
1357 start + FRAME + FRAME / 2,
1358 start + FRAME + FRAME / 2,
1359 true,
1360 true,
1361 );
1362
1363 let present_timings = collector
1364 .collect_unseen()
1365 .into_iter()
1366 .filter_map(|event| match event {
1367 FrameEvent::Present(timing) if timing.window_id == window_id => Some(timing),
1368 _ => None,
1369 })
1370 .collect::<Vec<_>>();
1371 let [first_present, second_present] = present_timings.as_slice() else {
1372 panic!("expected exactly two present events, got {present_timings:?}");
1373 };
1374 assert_eq!(first_present.animation_interval, None);
1375 assert_eq!(second_present.animation_interval, Some(FRAME));
1376
1377 #[cfg(feature = "profiler")]
1378 {
1379 assert_eq!(window_profiler.present_interval_histogram.len(), 1);
1380 assert!(
1381 window_profiler.present_interval_histogram.max()
1382 >= second_present
1383 .animation_interval
1384 .expect("second present should have an animation interval")
1385 .as_nanos() as u64
1386 );
1387 }
1388 }
1389
1390 #[test]
1391 fn disabling_tracing_clears_frame_events() {
1392 let _trace_test_guard = TraceTestGuard::new();
1393 set_trace_enabled(true);
1394 let window_id = WindowId::from(0xC1EA);
1395 let mut window_profiler =
1396 WindowProfiler::new(window_id).expect("window profiler should initialize");
1397 let mut collector = FrameTimingCollector::new();
1398
1399 window_profiler.begin_draw();
1400 window_profiler.end_draw(None, 0);
1401 assert!(
1402 FRAME_TIMINGS
1403 .lock()
1404 .timings
1405 .iter()
1406 .copied()
1407 .any(|event| event_matches_window(event, window_id))
1408 );
1409
1410 set_trace_enabled(false);
1411 assert!(
1412 collector
1413 .collect_unseen()
1414 .iter()
1415 .all(|event| !event_matches_window(*event, window_id))
1416 );
1417 }
1418
1419 #[cfg(feature = "profiler")]
1420 #[test]
1421 fn records_intervals_only_between_animation_frames() {
1422 let mut window_profiler =
1423 WindowProfiler::new(WindowId::from(1)).expect("window profiler should initialize");
1424 let start = Instant::now();
1425
1426 draw_and_present(&mut window_profiler, start, true, true);
1427 assert_eq!(window_profiler.present_interval_histogram.len(), 0);
1428
1429 draw_and_present(&mut window_profiler, start + FRAME, true, true);
1430 assert_eq!(window_profiler.present_interval_histogram.len(), 1);
1431
1432 draw_and_present(&mut window_profiler, start + FRAME * 2, true, false);
1433 assert_eq!(window_profiler.present_interval_histogram.len(), 2);
1434
1435 draw_and_present(&mut window_profiler, start + FRAME * 100, true, true);
1436 assert_eq!(window_profiler.present_interval_histogram.len(), 2);
1437 }
1438
1439 #[cfg(feature = "profiler")]
1440 #[test]
1441 fn missed_frames_stretch_the_recorded_interval() {
1442 let mut window_profiler =
1443 WindowProfiler::new(WindowId::from(2)).expect("window profiler should initialize");
1444 let start = Instant::now();
1445
1446 draw_and_present(&mut window_profiler, start, true, true);
1447 draw_and_present(&mut window_profiler, start + FRAME * 5, true, true);
1448
1449 let recorded = window_profiler.present_interval_histogram.max();
1450 assert!(recorded >= (FRAME * 4).as_nanos() as u64);
1451 }
1452
1453 #[cfg(feature = "profiler")]
1454 #[test]
1455 fn ignores_re_presents_of_unchanged_frames() {
1456 let mut window_profiler =
1457 WindowProfiler::new(WindowId::from(3)).expect("window profiler should initialize");
1458 let start = Instant::now();
1459
1460 draw_and_present(&mut window_profiler, start, true, true);
1461 window_profiler.record_present_at(start + FRAME / 2, start + FRAME / 2, true, true);
1462 draw_and_present(&mut window_profiler, start + FRAME, true, true);
1463
1464 assert_eq!(window_profiler.present_interval_histogram.len(), 1);
1465 assert!(
1466 window_profiler.present_interval_histogram.max() >= (FRAME * 3 / 4).as_nanos() as u64
1467 );
1468 }
1469
1470 #[cfg(feature = "profiler")]
1471 #[test]
1472 fn skips_intervals_for_inactive_windows() {
1473 let mut window_profiler =
1474 WindowProfiler::new(WindowId::from(4)).expect("window profiler should initialize");
1475 let start = Instant::now();
1476
1477 draw_and_present(&mut window_profiler, start, false, true);
1478 draw_and_present(&mut window_profiler, start + FRAME, false, true);
1479 assert_eq!(window_profiler.present_interval_histogram.len(), 0);
1480
1481 draw_and_present(&mut window_profiler, start + FRAME * 2, true, true);
1482 assert_eq!(window_profiler.present_interval_histogram.len(), 0);
1483
1484 draw_and_present(&mut window_profiler, start + FRAME * 3, true, true);
1485 assert_eq!(window_profiler.present_interval_histogram.len(), 1);
1486 }
1487
1488 #[test]
1489 fn records_dirty_to_present_durations() {
1490 let mut window_profiler =
1491 WindowProfiler::new(WindowId::from(8)).expect("window profiler should initialize");
1492 let draw_end = Instant::now();
1493 let present_end = draw_end + Duration::from_millis(6);
1494
1495 record_test_draw(&mut window_profiler, draw_end);
1496 window_profiler.record_present_at(present_end, present_end, true, false);
1497
1498 let snapshot = window_profiler.frame_duration_snapshot();
1499 let histogram = snapshot.dirty_to_present_histogram;
1500 assert_eq!(histogram.len(), 1);
1501 assert!(histogram.max() >= Duration::from_millis(10).as_nanos() as u64);
1502 }
1503
1504 #[cfg(feature = "profiler")]
1505 #[test]
1506 fn records_every_draw_duration() {
1507 let mut window_profiler =
1508 WindowProfiler::new(WindowId::from(5)).expect("window profiler should initialize");
1509
1510 window_profiler.record_draw_duration(Duration::from_millis(2));
1511 window_profiler.record_draw_duration(Duration::from_millis(40));
1512
1513 let snapshot = window_profiler.frame_duration_snapshot();
1514 assert_eq!(snapshot.draw_duration_histogram.len(), 2);
1515 assert!(snapshot.draw_duration_histogram.max() >= 39_000_000);
1516 }
1517
1518 #[test]
1519 fn records_input_latency_at_the_frame_presentation_timestamp() {
1520 let mut window_profiler =
1521 WindowProfiler::new(WindowId::from(6)).expect("window profiler should initialize");
1522 let first_input_at = Instant::now();
1523 let presented_at = first_input_at + Duration::from_millis(12);
1524
1525 begin_input_at(&mut window_profiler, first_input_at);
1526 window_profiler.end_input(true);
1527 begin_input_at(
1528 &mut window_profiler,
1529 first_input_at + Duration::from_millis(2),
1530 );
1531 window_profiler.end_input(true);
1532 record_test_draw(&mut window_profiler, presented_at);
1533 window_profiler.record_present_at(presented_at, presented_at, true, false);
1534
1535 let snapshot = window_profiler.input_latency_snapshot();
1536 assert_eq!(snapshot.latency_histogram.len(), 1);
1537 assert!(snapshot.latency_histogram.max() >= Duration::from_millis(12).as_nanos() as u64);
1538 assert_eq!(snapshot.events_per_frame_histogram.len(), 1);
1539 assert_eq!(snapshot.events_per_frame_histogram.max(), 2);
1540 assert_eq!(snapshot.mid_draw_events_dropped, 0);
1541 }
1542
1543 #[test]
1544 fn excludes_input_that_arrives_during_a_draw() {
1545 let mut window_profiler =
1546 WindowProfiler::new(WindowId::from(7)).expect("window profiler should initialize");
1547
1548 window_profiler.begin_draw();
1549 begin_input_at(&mut window_profiler, Instant::now());
1550 window_profiler.end_input(true);
1551 window_profiler.end_draw(None, 0);
1552
1553 let snapshot = window_profiler.input_latency_snapshot();
1554 assert!(snapshot.latency_histogram.is_empty());
1555 assert!(snapshot.events_per_frame_histogram.is_empty());
1556 assert_eq!(snapshot.mid_draw_events_dropped, 1);
1557 }
1558
1559 #[test]
1560 fn overlapping_trace_scopes_keep_tracing_enabled() {
1561 let _trace_test_guard = TraceTestGuard::new();
1562 let first_scope = trace_scope();
1563 let second_scope = trace_scope();
1564
1565 assert!(trace_enabled());
1566 drop(first_scope);
1567 assert!(trace_enabled());
1568 drop(second_scope);
1569 assert!(!trace_enabled());
1570 }
1571
1572 const FRAME: Duration = Duration::from_millis(16);
1573 static TRACE_TEST_LOCK: Mutex<()> = Mutex::new(());
1574
1575 struct TraceTestGuard {
1576 was_enabled: bool,
1577 _lock: MutexGuard<'static, ()>,
1578 }
1579
1580 impl TraceTestGuard {
1581 fn new() -> Self {
1582 let lock = TRACE_TEST_LOCK
1583 .lock()
1584 .unwrap_or_else(|poisoned| poisoned.into_inner());
1585 let was_enabled = trace_enabled();
1586 set_trace_enabled(false);
1587 Self {
1588 was_enabled,
1589 _lock: lock,
1590 }
1591 }
1592 }
1593
1594 impl Drop for TraceTestGuard {
1595 fn drop(&mut self) {
1596 set_trace_enabled(false);
1597 if self.was_enabled {
1598 set_trace_enabled(true);
1599 }
1600 }
1601 }
1602
1603 fn event_matches_window(event: FrameEvent, window_id: WindowId) -> bool {
1604 match event {
1605 FrameEvent::Draw(timing) => timing.window_id == window_id,
1606 FrameEvent::Present(timing) => timing.window_id == window_id,
1607 }
1608 }
1609
1610 fn begin_input_at(window_profiler: &mut WindowProfiler, started_at: Instant) {
1611 window_profiler
1612 .active_activities
1613 .push(WindowActivity::Input {
1614 started_at,
1615 kind: "test",
1616 });
1617 }
1618
1619 #[cfg(feature = "profiler")]
1620 fn draw_and_present(
1621 window_profiler: &mut WindowProfiler,
1622 presented_at: Instant,
1623 window_active: bool,
1624 next_frame_scheduled: bool,
1625 ) {
1626 record_test_draw(window_profiler, presented_at);
1627 window_profiler.record_present_at(
1628 presented_at,
1629 presented_at,
1630 window_active,
1631 next_frame_scheduled,
1632 );
1633 }
1634
1635 fn record_test_draw(window_profiler: &mut WindowProfiler, draw_end: Instant) {
1636 window_profiler.record_draw_timing(FrameTiming {
1637 window_id: window_profiler.window_id,
1638 dirty_at: Some(draw_end - Duration::from_millis(4)),
1639 invalidations: 1,
1640 draw_start: draw_end - Duration::from_millis(2),
1641 draw_end,
1642 });
1643 }
1644}