summaryrefslogtreecommitdiffstats
path: root/third_party/rust/mapped_hyph/benches/bench.rs
blob: cf4ad6cb2fb6dc99c63fa519f7e8a84c5de261e4 (plain)
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
// Any copyright to the test code below is dedicated to the Public Domain.
// http://creativecommons.org/publicdomain/zero/1.0/

use criterion::black_box;
use criterion::criterion_group;
use criterion::criterion_main;
use criterion::BenchmarkId;
use criterion::Criterion;

use mapped_hyph::Hyphenator;
use std::fs;

const SAMPLE_SIZE: usize = 300;
const DIC_PATH: &str = "hyph_en_US.hyf";

fn bench_construct(c: &mut Criterion) {
    c.bench_function("construct", |b| {
        b.iter(|| {
            let dic = unsafe { mapped_hyph::load_file(DIC_PATH) }
                .expect(&format!("failed to load dictionary {}", DIC_PATH));
            let _ = Hyphenator::new(black_box(&*dic));
        })
    });
}

fn bench_find_hyphen_values(c: &mut Criterion) {
    // XXX: Should we copy this file to the crate to ensure reproducability?
    let data = fs::read_to_string("/usr/share/dict/words").expect("File reading failed.");
    let words: Vec<&str> = data.lines().take(SAMPLE_SIZE).collect();

    let dic = unsafe { mapped_hyph::load_file(DIC_PATH) }
        .expect(&format!("failed to load dictionary {}", DIC_PATH));
    let hyph = Hyphenator::new(&*dic);

    c.bench_with_input(
        BenchmarkId::new("bench_word", SAMPLE_SIZE),
        &words,
        |b, words| {
            b.iter(|| {
                let mut values: Vec<u8> = vec![0; 1000];
                for w in words {
                    hyph.find_hyphen_values(&w, &mut values);
                }
            });
        },
    );
}

criterion_group!(benches, bench_construct, bench_find_hyphen_values,);
criterion_main!(benches);