mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-03 01:50:12 +00:00

This drops the `TelevisionChannel` enum which served as a unified interface for builtin and cable channels as well as all related macros and the `television-derive` package. This simplifies the code quite a lot and will improve overall maintainability.
516 lines
17 KiB
Rust
516 lines
17 KiB
Rust
use criterion::criterion_group;
|
|
use criterion::{black_box, Criterion};
|
|
use devicons::FileIcon;
|
|
use ratatui::backend::TestBackend;
|
|
use ratatui::layout::Alignment;
|
|
use ratatui::layout::Rect;
|
|
use ratatui::prelude::{Line, Style};
|
|
use ratatui::style::Color;
|
|
use ratatui::widgets::{Block, BorderType, Borders, ListDirection, Padding};
|
|
use ratatui::Terminal;
|
|
use television::channels::cable::prototypes::Cable;
|
|
use television::{
|
|
action::Action,
|
|
channels::{
|
|
cable::prototypes::ChannelPrototype,
|
|
entry::{into_ranges, Entry},
|
|
},
|
|
config::{Config, ConfigEnv},
|
|
screen::{colors::ResultsColorscheme, results::build_results_list},
|
|
television::Television,
|
|
};
|
|
use tokio::runtime::Runtime;
|
|
|
|
#[allow(clippy::too_many_lines)]
|
|
pub fn draw_results_list(c: &mut Criterion) {
|
|
// FIXME: there's probably a way to have this as a benchmark asset
|
|
// possible as a JSON file and to load it for the benchmark using Serde
|
|
// I don't know how exactly right now just having it here instead
|
|
let entries = [
|
|
Entry {
|
|
name: "typeshed/LICENSE".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{f016}',
|
|
color: "#7e8e91",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/README.md".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{f48a}',
|
|
color: "#dddddd",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/re.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/io.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/gc.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/uu.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/nt.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/dis.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/imp.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/bdb.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/abc.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/cgi.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/bz2.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/grp.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/ast.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/csv.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/pdb.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/pwd.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/ssl.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/tty.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/nis.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/pty.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/cmd.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/tests/utils.py".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/pyproject.toml".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e6b2}',
|
|
color: "#9c4221",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/MAINTAINERS.md".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{f48a}',
|
|
color: "#dddddd",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/enum.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/hmac.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/uuid.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/glob.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/_ast.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/_csv.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/code.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/spwd.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/_msi.pyi".to_string(),
|
|
value: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
},
|
|
Entry {
|
|
name: "typeshed/stdlib/time.pyi".to_string(),
|
|
value: None,
|
|
|
|
icon: Some(FileIcon {
|
|
icon: '\u{e606}',
|
|
color: "#ffbc03",
|
|
}),
|
|
line_number: None,
|
|
name_match_ranges: Some(into_ranges(&[0, 1, 2, 3])),
|
|
value_match_ranges: None,
|
|
},
|
|
];
|
|
|
|
let colorscheme = ResultsColorscheme {
|
|
result_name_fg: Color::Indexed(222),
|
|
result_preview_fg: Color::Indexed(222),
|
|
result_line_number_fg: Color::Indexed(222),
|
|
result_selected_fg: Color::Indexed(222),
|
|
result_selected_bg: Color::Indexed(222),
|
|
match_foreground_color: Color::Indexed(222),
|
|
};
|
|
|
|
c.bench_function("results_list", |b| {
|
|
b.iter(|| {
|
|
build_results_list(
|
|
Block::default()
|
|
.title_top(
|
|
Line::from(" Results ").alignment(Alignment::Center),
|
|
)
|
|
.borders(Borders::ALL)
|
|
.border_type(BorderType::Rounded)
|
|
.border_style(Style::default().fg(Color::Blue))
|
|
.style(Style::default())
|
|
.padding(Padding::right(1)),
|
|
&entries,
|
|
None,
|
|
ListDirection::BottomToTop,
|
|
false,
|
|
&colorscheme,
|
|
100,
|
|
);
|
|
});
|
|
});
|
|
}
|
|
|
|
#[allow(clippy::missing_panics_doc)]
|
|
pub fn draw(c: &mut Criterion) {
|
|
let width = 250;
|
|
let height = 80;
|
|
|
|
let rt = Runtime::new().unwrap();
|
|
|
|
c.bench_function("draw", |b| {
|
|
b.to_async(&rt).iter_batched(
|
|
// FIXME: this is kind of hacky
|
|
|| {
|
|
let config = Config::new(&ConfigEnv::init().unwrap()).unwrap();
|
|
let backend = TestBackend::new(width, height);
|
|
let terminal = Terminal::new(backend).unwrap();
|
|
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
|
|
let channel = ChannelPrototype::default();
|
|
// Wait for the channel to finish loading
|
|
let mut tv = Television::new(
|
|
tx,
|
|
channel,
|
|
config,
|
|
None,
|
|
false,
|
|
false,
|
|
false,
|
|
Cable::default(),
|
|
);
|
|
tv.find("television");
|
|
for _ in 0..5 {
|
|
// tick the matcher
|
|
let _ = tv.channel.results(10, 0);
|
|
std::thread::sleep(std::time::Duration::from_millis(10));
|
|
}
|
|
tv.select_next_entry(10);
|
|
let _ = tv.update_preview_state(
|
|
&tv.get_selected_entry(None).unwrap(),
|
|
);
|
|
let _ = tv.update(&Action::Tick);
|
|
(tv, terminal)
|
|
},
|
|
// Measurement
|
|
|(tv, mut terminal)| async move {
|
|
television::draw::draw(
|
|
black_box(&tv.dump_context()),
|
|
black_box(&mut terminal.get_frame()),
|
|
black_box(Rect::new(0, 0, width, height)),
|
|
)
|
|
.unwrap();
|
|
},
|
|
criterion::BatchSize::SmallInput,
|
|
);
|
|
});
|
|
}
|
|
|
|
criterion_group!(benches, draw_results_list, draw);
|