-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This removes the heavy `regex` dependency from the ANSI feature. Co-authored-by: Armin Ronacher <[email protected]>
- Loading branch information
1 parent
a66421d
commit 8a4d205
Showing
5 changed files
with
496 additions
and
73 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
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,27 @@ | ||
use console::{strip_ansi_codes, AnsiCodeIterator}; | ||
use criterion::{black_box, criterion_group, criterion_main, Criterion, Throughput}; | ||
|
||
use std::{fs, path::Path}; | ||
|
||
pub fn parse_throughput(c: &mut Criterion) { | ||
let session_log_path = Path::new("tests") | ||
.join("data") | ||
.join("sample_zellij_session.log"); | ||
let session_log = fs::read_to_string(session_log_path).unwrap(); | ||
|
||
let mut group = c.benchmark_group("ansi-parsing"); | ||
group.throughput(Throughput::Bytes(session_log.len() as u64)); | ||
group.bench_function("parse", |b| { | ||
b.iter(|| { | ||
let v: Vec<_> = AnsiCodeIterator::new(&session_log).collect(); | ||
black_box(v); | ||
}) | ||
}); | ||
group.bench_function("strip", |b| { | ||
b.iter(|| black_box(strip_ansi_codes(&session_log))) | ||
}); | ||
group.finish(); | ||
} | ||
|
||
criterion_group!(throughput, parse_throughput); | ||
criterion_main!(throughput); |
Oops, something went wrong.