-
-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added benchmarks to the block widget to uncover eventual performance issues
- Loading branch information
1 parent
aad164a
commit e18393d
Showing
2 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
use criterion::{criterion_group, criterion_main, Bencher, BenchmarkId, Criterion}; | ||
use ratatui::{ | ||
buffer::Buffer, | ||
layout::Rect, | ||
prelude::Alignment, | ||
widgets::{ | ||
block::{Position, Title}, | ||
Block, Borders, Padding, Widget, | ||
}, | ||
}; | ||
|
||
/// Benchmark for rendering a block. | ||
pub fn block(c: &mut Criterion) { | ||
let mut group = c.benchmark_group("block"); | ||
|
||
for buffer_size in &[ | ||
Rect::new(0, 0, 100, 50), // vertically split screen | ||
Rect::new(0, 0, 200, 50), // 1080p fullscreen with medium font | ||
Rect::new(0, 0, 256, 256), // Max sized area | ||
] { | ||
let buffer_area = buffer_size.area(); | ||
|
||
// Render an empty block | ||
group.bench_with_input( | ||
BenchmarkId::new("render_empty", buffer_area), | ||
&Block::new(), | ||
|b, block| render(b, block, buffer_size), | ||
); | ||
|
||
// Render with all features | ||
group.bench_with_input( | ||
BenchmarkId::new("render_all_feature", buffer_area), | ||
&Block::new() | ||
.borders(Borders::ALL) | ||
.title("test title") | ||
.title( | ||
Title::from("bottom left title") | ||
.alignment(Alignment::Right) | ||
.position(Position::Bottom), | ||
) | ||
.padding(Padding::new(5, 5, 2, 2)), | ||
|b, block| render(b, block, buffer_size), | ||
); | ||
} | ||
|
||
group.finish(); | ||
} | ||
|
||
/// render the block into a buffer of the given `size` | ||
fn render(bencher: &mut Bencher, block: &Block, size: &Rect) { | ||
let mut buffer = Buffer::empty(*size); | ||
bencher.iter(|| { | ||
block.clone().render(buffer.area, &mut buffer); | ||
}) | ||
} | ||
|
||
criterion_group!(benches, block); | ||
criterion_main!(benches); |