aboutsummaryrefslogtreecommitdiff
path: root/vendor/anstream/benches/stream.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-01-08 00:21:28 +0300
committerValentin Popov <valentin@popov.link>2024-01-08 00:21:28 +0300
commit1b6a04ca5504955c571d1c97504fb45ea0befee4 (patch)
tree7579f518b23313e8a9748a88ab6173d5e030b227 /vendor/anstream/benches/stream.rs
parent5ecd8cf2cba827454317368b68571df0d13d7842 (diff)
downloadfparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.tar.xz
fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.zip
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'vendor/anstream/benches/stream.rs')
-rw-r--r--vendor/anstream/benches/stream.rs81
1 files changed, 81 insertions, 0 deletions
diff --git a/vendor/anstream/benches/stream.rs b/vendor/anstream/benches/stream.rs
new file mode 100644
index 0000000..f89aacf
--- /dev/null
+++ b/vendor/anstream/benches/stream.rs
@@ -0,0 +1,81 @@
+use std::io::Write as _;
+
+use criterion::{black_box, Criterion};
+
+fn stream(c: &mut Criterion) {
+ for (name, content) in [
+ ("demo.vte", &include_bytes!("../tests/demo.vte")[..]),
+ ("rg_help.vte", &include_bytes!("../tests/rg_help.vte")[..]),
+ ("rg_linus.vte", &include_bytes!("../tests/rg_linus.vte")[..]),
+ (
+ "state_changes",
+ &b"\x1b]2;X\x1b\\ \x1b[0m \x1bP0@\x1b\\"[..],
+ ),
+ ] {
+ let mut group = c.benchmark_group(name);
+ group.bench_function("nop", |b| {
+ b.iter(|| {
+ let buffer = Vec::with_capacity(content.len());
+ let mut stream = buffer;
+
+ stream.write_all(content).unwrap();
+
+ black_box(stream)
+ })
+ });
+ group.bench_function("StripStream", |b| {
+ b.iter(|| {
+ let buffer = Vec::with_capacity(content.len());
+ let mut stream = anstream::StripStream::new(buffer);
+
+ stream.write_all(content).unwrap();
+
+ black_box(stream)
+ })
+ });
+ #[cfg(all(windows, feature = "wincon"))]
+ group.bench_function("WinconStream", |b| {
+ b.iter(|| {
+ let buffer = Vec::with_capacity(content.len());
+ let mut stream = anstream::WinconStream::new(buffer);
+
+ stream.write_all(content).unwrap();
+
+ black_box(stream)
+ })
+ });
+ group.bench_function("AutoStream::always_ansi", |b| {
+ b.iter(|| {
+ let buffer = Vec::with_capacity(content.len());
+ let mut stream = anstream::AutoStream::always_ansi(buffer);
+
+ stream.write_all(content).unwrap();
+
+ black_box(stream)
+ })
+ });
+ group.bench_function("AutoStream::always", |b| {
+ b.iter(|| {
+ let buffer = Vec::with_capacity(content.len());
+ let mut stream = anstream::AutoStream::always(buffer);
+
+ stream.write_all(content).unwrap();
+
+ black_box(stream)
+ })
+ });
+ group.bench_function("AutoStream::never", |b| {
+ b.iter(|| {
+ let buffer = Vec::with_capacity(content.len());
+ let mut stream = anstream::AutoStream::never(buffer);
+
+ stream.write_all(content).unwrap();
+
+ black_box(stream)
+ })
+ });
+ }
+}
+
+criterion::criterion_group!(benches, stream);
+criterion::criterion_main!(benches);