mirror of
https://github.com/itsjunetime/tdf.git
synced 2026-06-01 23:51:46 -04:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ff262cfb74 |
@@ -1,2 +0,0 @@
|
|||||||
[*.rs]
|
|
||||||
indent_style = tab
|
|
||||||
@@ -1,21 +1,5 @@
|
|||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
# v0.5.0
|
|
||||||
|
|
||||||
- Switched simd base64 crate for one that works on stable (from `vb64` to `base64_simd`)
|
|
||||||
- Allow boolean arguments to function as flags, without a `true` or `false` argument following the flag itself ([#109](https://github.com/itsjunetime/tdf/pull/109), thanks [@tatounee](https://github.com/tatounee)!)
|
|
||||||
- Fix cropping issues when zooming out too much while using kitty protocol
|
|
||||||
- Added `gg` and `G` keybindings for scrolling to the top and bottom of a page, respectively, when filling the width of the screen with kitty
|
|
||||||
- Updated help page to only show kitty keybindings when you're actually using kitty
|
|
||||||
- Map page-up and page-down keybindings to do the same thing as up-key and down-key ([#115](https://github.com/itsjunetime/tdf/pull/115), thanks [@maxdexh](https://github.com/maxdexh)!)
|
|
||||||
- Vertically center pages within the available space if they are not constrained by the height ([#116](https://github.com/itsjunetime/tdf/pull/116), thanks [@maxdexh](https://github.com/maxdexh)!)
|
|
||||||
- Fixed issue with cooked mode not being restored upon panic/error ([#118](https://github.com/itsjunetime/tdf/pull/118), thanks [@maxdexh](https://github.com/maxdexh)!)
|
|
||||||
- Implemented a debounce for file reload updates to prevent some editors from paralyzing the app due to a flurry of reloads ([#117](https://github.com/itsjunetime/tdf/pull/117), thanks [@maxdexh](https://github.com/maxdexh))
|
|
||||||
- Fixed an overflow when zooming out of horizontal pdfs ([#119](https://github.com/itsjunetime/tdf/pull/119), thanks [@maxdexh](https://github.com/maxdexh)!)
|
|
||||||
- Reworked zooming to allow for full zooming in and out and panning in both directions ([#121](https://github.com/itsjunetime/tdf/pull/121), thanks [@maxdexh](https://github.com/maxdexh)!)
|
|
||||||
|
|
||||||
# v0.4.3
|
|
||||||
|
|
||||||
- Fix issue with some terminals hanging on startup
|
- Fix issue with some terminals hanging on startup
|
||||||
- Fix issues with some iterm2-backend terminals not displaying anything
|
- Fix issues with some iterm2-backend terminals not displaying anything
|
||||||
- Allow using ctrl+scroll to zoom in/out while zoomed using kitty backend
|
- Allow using ctrl+scroll to zoom in/out while zoomed using kitty backend
|
||||||
|
|||||||
Generated
+677
-594
File diff suppressed because it is too large
Load Diff
+24
-139
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tdf-viewer"
|
name = "tdf-viewer"
|
||||||
version = "0.5.0"
|
version = "0.4.2"
|
||||||
authors = ["June Welker <junewelker@gmail.com>"]
|
authors = ["June Welker <junewelker@gmail.com>"]
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "A terminal viewer for PDFs"
|
description = "A terminal viewer for PDFs"
|
||||||
@@ -39,26 +39,26 @@ xflags = "0.4.0-pre.2"
|
|||||||
mimalloc = "0.1.43"
|
mimalloc = "0.1.43"
|
||||||
nix = { version = "0.30.0", features = ["signal"] }
|
nix = { version = "0.30.0", features = ["signal"] }
|
||||||
mupdf = { git = "https://github.com/messense/mupdf-rs.git", rev = "2e0fae910fac8048c7008211fc4d3b9f5d227a07", default-features = false, features = ["svg", "system-fonts", "img"] }
|
mupdf = { git = "https://github.com/messense/mupdf-rs.git", rev = "2e0fae910fac8048c7008211fc4d3b9f5d227a07", default-features = false, features = ["svg", "system-fonts", "img"] }
|
||||||
rayon = { version = "1", default-features = false }
|
rayon = { version = "*", default-features = false }
|
||||||
# kittage = { path = "../kittage/", features = ["crossterm-tokio", "image-crate", "log"] }
|
# kittage = { path = "../kittage/", features = ["crossterm-tokio", "image-crate", "log"] }
|
||||||
kittage = { version = "0.1.1", features = ["crossterm-tokio", "image-crate", "log"] }
|
kittage = { git = "https://github.com/itsjunetime/kittage.git", features = ["crossterm-tokio", "image-crate", "log"] }
|
||||||
memmap2 = "0"
|
memmap2 = "*"
|
||||||
csscolorparser = { version = "0.8.0", default-features = false }
|
|
||||||
|
|
||||||
# logging
|
# logging
|
||||||
log = "0.4.27"
|
log = "0.4.27"
|
||||||
flexi_logger = "0.31"
|
flexi_logger = "0.31"
|
||||||
|
|
||||||
# for tracing with tokio-console
|
# for tracing with tokio-console
|
||||||
console-subscriber = { version = "0.5.0", optional = true }
|
console-subscriber = { version = "0.4.0", optional = true }
|
||||||
debounce = "0.2.2"
|
csscolorparser = { version = "0.7.0" }
|
||||||
|
|
||||||
[profile.production]
|
[profile.production]
|
||||||
inherits = "release"
|
inherits = "release"
|
||||||
lto = "fat"
|
lto = "fat"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = ["nightly"]
|
||||||
|
nightly = ["ratatui-image/vb64"]
|
||||||
tracing = ["tokio/tracing", "dep:console-subscriber"]
|
tracing = ["tokio/tracing", "dep:console-subscriber"]
|
||||||
epub = ["mupdf/epub"]
|
epub = ["mupdf/epub"]
|
||||||
cbz = ["mupdf/cbz"]
|
cbz = ["mupdf/cbz"]
|
||||||
@@ -76,205 +76,90 @@ name = "for_profiling"
|
|||||||
path = "./benches/for_profiling.rs"
|
path = "./benches/for_profiling.rs"
|
||||||
|
|
||||||
[lints.clippy]
|
[lints.clippy]
|
||||||
alloc_instead_of_core = "warn"
|
uninlined_format_args = "warn"
|
||||||
allow_attributes = "warn"
|
redundant_closure_for_method_calls = "warn"
|
||||||
as_pointer_underscore = "warn"
|
cast_lossless = "warn"
|
||||||
as_ptr_cast_mut = "warn"
|
single_char_pattern = "warn"
|
||||||
as_underscore = "warn"
|
manual_let_else = "warn"
|
||||||
|
ignored_unit_patterns = "warn"
|
||||||
|
range_plus_one = "warn"
|
||||||
|
unreadable_literal = "warn"
|
||||||
|
redundant_else = "warn"
|
||||||
assigning_clones = "warn"
|
assigning_clones = "warn"
|
||||||
assertions_on_result_states = "warn"
|
|
||||||
bool_to_int_with_if = "warn"
|
bool_to_int_with_if = "warn"
|
||||||
borrow_as_ptr = "warn"
|
borrow_as_ptr = "warn"
|
||||||
branches_sharing_code = "warn"
|
|
||||||
cargo_common_metadata = "warn"
|
|
||||||
case_sensitive_file_extension_comparisons = "warn"
|
|
||||||
cast_lossless = "warn"
|
|
||||||
cast_ptr_alignment = "warn"
|
cast_ptr_alignment = "warn"
|
||||||
cfg_not_test = "warn"
|
|
||||||
checked_conversions = "warn"
|
checked_conversions = "warn"
|
||||||
clear_with_drain = "warn"
|
|
||||||
cloned_instead_of_copied = "warn"
|
|
||||||
coerce_container_to_any = "warn"
|
|
||||||
comparison_chain = "warn"
|
|
||||||
copy_iterator = "warn"
|
copy_iterator = "warn"
|
||||||
create_dir = "warn"
|
|
||||||
debug_assert_with_mut_call = "warn"
|
|
||||||
decimal_literal_representation = "warn"
|
|
||||||
default_trait_access = "warn"
|
default_trait_access = "warn"
|
||||||
deref_by_slicing = "warn"
|
|
||||||
doc_broken_link = "warn"
|
|
||||||
doc_link_code = "warn"
|
|
||||||
doc_link_with_quotes = "warn"
|
doc_link_with_quotes = "warn"
|
||||||
elidable_lifetime_names = "warn"
|
empty_enum = "warn"
|
||||||
empty_drop = "warn"
|
|
||||||
empty_enums = "warn"
|
|
||||||
empty_enum_variants_with_brackets = "warn"
|
|
||||||
empty_structs_with_brackets = "warn"
|
|
||||||
equatable_if_let = "warn"
|
|
||||||
error_impl_error = "warn"
|
|
||||||
expl_impl_clone_on_copy = "warn"
|
|
||||||
explicit_deref_methods = "warn"
|
|
||||||
explicit_into_iter_loop = "warn"
|
explicit_into_iter_loop = "warn"
|
||||||
explicit_iter_loop = "warn"
|
explicit_iter_loop = "warn"
|
||||||
fallible_impl_from = "warn"
|
|
||||||
filetype_is_file = "warn"
|
|
||||||
filter_map_next = "warn"
|
filter_map_next = "warn"
|
||||||
flat_map_option = "warn"
|
flat_map_option = "warn"
|
||||||
fn_to_numeric_cast_any = "warn"
|
|
||||||
fn_params_excessive_bools = "warn"
|
fn_params_excessive_bools = "warn"
|
||||||
format_collect = "warn"
|
from_iter_instead_of_collect = "warn"
|
||||||
format_push_string = "warn"
|
|
||||||
get_unwrap = "warn"
|
|
||||||
if_then_some_else_none = "warn"
|
|
||||||
ignore_without_reason = "warn"
|
|
||||||
ignored_unit_patterns = "warn"
|
|
||||||
implicit_clone = "warn"
|
implicit_clone = "warn"
|
||||||
imprecise_flops = "warn"
|
|
||||||
index_refutable_slice = "warn"
|
index_refutable_slice = "warn"
|
||||||
indexing_slicing = "allow" # can't warn on this cause we basically have to do indexing for some ratatui apis
|
inefficient_to_string = "warn"
|
||||||
infinite_loop = "warn"
|
|
||||||
invalid_upcast_comparisons = "warn"
|
invalid_upcast_comparisons = "warn"
|
||||||
ip_constant = "warn"
|
|
||||||
iter_filter_is_ok = "warn"
|
iter_filter_is_ok = "warn"
|
||||||
iter_filter_is_some = "warn"
|
iter_filter_is_some = "warn"
|
||||||
iter_not_returning_iterator = "warn"
|
iter_not_returning_iterator = "warn"
|
||||||
iter_on_empty_collections = "warn"
|
|
||||||
iter_on_single_items = "warn"
|
|
||||||
large_digit_groups = "warn"
|
|
||||||
large_futures = "warn"
|
large_futures = "warn"
|
||||||
large_include_file = "warn"
|
large_stack_arrays = "warn"
|
||||||
large_stack_frames = "warn"
|
|
||||||
large_types_passed_by_value = "warn"
|
large_types_passed_by_value = "warn"
|
||||||
linkedlist = "warn"
|
linkedlist = "warn"
|
||||||
literal_string_with_formatting_args = "warn"
|
|
||||||
lossy_float_literal = "warn"
|
|
||||||
macro_use_imports = "warn"
|
macro_use_imports = "warn"
|
||||||
manual_assert = "warn"
|
manual_assert = "warn"
|
||||||
manual_instant_elapsed = "warn"
|
manual_instant_elapsed = "warn"
|
||||||
manual_is_power_of_two = "warn"
|
manual_is_power_of_two = "warn"
|
||||||
manual_is_variant_and = "warn"
|
manual_is_variant_and = "warn"
|
||||||
manual_let_else = "warn"
|
|
||||||
manual_midpoint = "warn"
|
|
||||||
manual_ok_or = "warn"
|
manual_ok_or = "warn"
|
||||||
|
manual_string_new = "warn"
|
||||||
many_single_char_names = "warn"
|
many_single_char_names = "warn"
|
||||||
map_err_ignore = "warn"
|
manual_unwrap_or = "warn"
|
||||||
map_unwrap_or = "warn"
|
|
||||||
map_with_unused_argument_over_ranges = "warn"
|
|
||||||
match_same_arms = "warn"
|
match_same_arms = "warn"
|
||||||
match_wild_err_arm = "warn"
|
|
||||||
match_wildcard_for_single_variants = "warn"
|
match_wildcard_for_single_variants = "warn"
|
||||||
maybe_infinite_iter = "warn"
|
maybe_infinite_iter = "warn"
|
||||||
mem_forget = "warn"
|
|
||||||
mismatching_type_param_order = "warn"
|
mismatching_type_param_order = "warn"
|
||||||
missing_assert_message = "warn"
|
|
||||||
missing_fields_in_debug = "warn"
|
missing_fields_in_debug = "warn"
|
||||||
mixed_read_write_in_expression = "warn"
|
|
||||||
multiple_unsafe_ops_per_block = "warn"
|
|
||||||
must_use_candidate = "warn"
|
|
||||||
mut_mut = "warn"
|
mut_mut = "warn"
|
||||||
mutex_atomic = "warn"
|
|
||||||
mutex_integer = "warn"
|
|
||||||
naive_bytecount = "warn"
|
|
||||||
needless_bitwise_bool = "warn"
|
needless_bitwise_bool = "warn"
|
||||||
needless_collect = "warn"
|
|
||||||
needless_continue = "warn"
|
needless_continue = "warn"
|
||||||
needless_for_each = "warn"
|
needless_for_each = "warn"
|
||||||
needless_pass_by_ref_mut = "warn"
|
|
||||||
needless_pass_by_value = "warn"
|
needless_pass_by_value = "warn"
|
||||||
needless_raw_string_hashes = "warn"
|
needless_raw_string_hashes = "warn"
|
||||||
needless_raw_strings = "warn"
|
|
||||||
negative_feature_names = "warn"
|
|
||||||
no_effect_underscore_binding = "warn"
|
no_effect_underscore_binding = "warn"
|
||||||
no_mangle_with_rust_abi = "warn"
|
no_mangle_with_rust_abi = "warn"
|
||||||
non_send_fields_in_send_ty = "warn"
|
|
||||||
non_std_lazy_statics = "warn"
|
|
||||||
non_zero_suggestions = "warn"
|
|
||||||
nonstandard_macro_braces = "warn"
|
|
||||||
option_as_ref_cloned = "warn"
|
option_as_ref_cloned = "warn"
|
||||||
option_option = "warn"
|
option_option = "warn"
|
||||||
or_fun_call = "warn"
|
|
||||||
path_buf_push_overwrite = "warn"
|
|
||||||
pathbuf_init_then_push = "warn"
|
|
||||||
precedence_bits = "warn"
|
|
||||||
ptr_as_ptr = "warn"
|
ptr_as_ptr = "warn"
|
||||||
ptr_cast_constness = "warn"
|
ptr_cast_constness = "warn"
|
||||||
pub_underscore_fields = "warn"
|
|
||||||
pub_without_shorthand = "warn"
|
|
||||||
range_minus_one = "warn"
|
range_minus_one = "warn"
|
||||||
range_plus_one = "warn"
|
|
||||||
rc_buffer = "warn"
|
|
||||||
rc_mutex = "warn"
|
|
||||||
read_zero_byte_vec = "warn"
|
|
||||||
redundant_clone = "warn"
|
|
||||||
redundant_closure_for_method_calls = "warn"
|
|
||||||
redundant_else = "warn"
|
|
||||||
redundant_pub_crate = "warn"
|
|
||||||
redundant_test_prefix = "warn"
|
|
||||||
ref_as_ptr = "warn"
|
ref_as_ptr = "warn"
|
||||||
ref_binding_to_reference = "warn"
|
ref_binding_to_reference = "warn"
|
||||||
ref_option = "warn"
|
ref_option = "warn"
|
||||||
ref_option_ref = "warn"
|
ref_option_ref = "warn"
|
||||||
rest_pat_in_fully_bound_structs = "warn"
|
|
||||||
return_self_not_must_use = "warn"
|
return_self_not_must_use = "warn"
|
||||||
same_functions_in_if_condition = "warn"
|
same_functions_in_if_condition = "warn"
|
||||||
self_named_module_files = "warn"
|
|
||||||
semicolon_if_nothing_returned = "warn"
|
|
||||||
semicolon_inside_block = "warn"
|
|
||||||
should_panic_without_expect = "warn"
|
should_panic_without_expect = "warn"
|
||||||
significant_drop_in_scrutinee = "warn" # I thought this was fixed in the 2024 edition. watever
|
similar_names = "warn"
|
||||||
significant_drop_tightening = "warn"
|
|
||||||
single_char_pattern = "warn"
|
|
||||||
single_option_map = "warn"
|
|
||||||
stable_sort_primitive = "warn"
|
stable_sort_primitive = "warn"
|
||||||
str_split_at_newline = "warn"
|
str_split_at_newline = "warn"
|
||||||
string_lit_as_bytes = "warn"
|
|
||||||
string_lit_chars_any = "warn"
|
|
||||||
string_slice = "warn"
|
|
||||||
struct_excessive_bools = "warn"
|
struct_excessive_bools = "warn"
|
||||||
struct_field_names = "warn"
|
struct_field_names = "warn"
|
||||||
suboptimal_flops = "warn"
|
|
||||||
suspicious_operation_groupings = "warn"
|
|
||||||
suspicious_xor_used_as_pow = "warn"
|
|
||||||
tests_outside_test_module = "warn"
|
|
||||||
trait_duplication_in_bounds = "warn"
|
|
||||||
transmute_ptr_to_ptr = "warn"
|
transmute_ptr_to_ptr = "warn"
|
||||||
trivial_regex = "warn"
|
|
||||||
trivially_copy_pass_by_ref = "warn"
|
trivially_copy_pass_by_ref = "warn"
|
||||||
try_err = "warn"
|
|
||||||
tuple_array_conversions = "warn"
|
|
||||||
type_repetition_in_bounds = "warn"
|
|
||||||
unchecked_time_subtraction = "warn"
|
|
||||||
undocumented_unsafe_blocks = "warn"
|
|
||||||
unicode_not_nfc = "warn"
|
unicode_not_nfc = "warn"
|
||||||
uninhabited_references = "warn"
|
|
||||||
uninlined_format_args = "warn"
|
|
||||||
unnecessary_box_returns = "warn"
|
unnecessary_box_returns = "warn"
|
||||||
unnecessary_debug_formatting = "warn"
|
|
||||||
unnecessary_join = "warn"
|
unnecessary_join = "warn"
|
||||||
unnecessary_literal_bound = "warn"
|
unnecessary_literal_bound = "warn"
|
||||||
unnecessary_safety_comment = "warn"
|
|
||||||
unnecessary_safety_doc = "warn"
|
|
||||||
unnecessary_self_imports = "warn"
|
|
||||||
unnecessary_semicolon = "warn"
|
|
||||||
unnecessary_struct_initialization = "warn"
|
|
||||||
unnecessary_wraps = "warn"
|
unnecessary_wraps = "warn"
|
||||||
unnested_or_patterns = "warn"
|
unnested_or_patterns = "warn"
|
||||||
unreadable_literal = "warn"
|
|
||||||
unsafe_derive_deserialize = "warn"
|
|
||||||
unused_async = "warn"
|
unused_async = "warn"
|
||||||
unused_peekable = "warn"
|
|
||||||
unused_result_ok = "warn"
|
|
||||||
unused_rounding = "warn"
|
|
||||||
unused_self = "warn"
|
unused_self = "warn"
|
||||||
unused_trait_names = "warn"
|
|
||||||
use_self = "warn"
|
|
||||||
used_underscore_binding = "warn"
|
used_underscore_binding = "warn"
|
||||||
used_underscore_items = "warn"
|
used_underscore_items = "warn"
|
||||||
useless_let_if_seq = "warn"
|
|
||||||
verbose_bit_mask = "warn"
|
|
||||||
verbose_file_reads = "warn"
|
|
||||||
volatile_composites = "warn"
|
|
||||||
while_float = "warn"
|
|
||||||
wildcard_dependencies = "warn"
|
|
||||||
wildcard_imports = "warn"
|
|
||||||
zero_sized_map_values = "warn"
|
zero_sized_map_values = "warn"
|
||||||
|
|||||||
@@ -16,9 +16,7 @@ Designed to be performant, very responsive, and work well with even very large P
|
|||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
1. Get the rust toolchain from [rustup.rs](https://rustup.rs)
|
1. Get the rust toolchain from [rustup.rs](https://rustup.rs)
|
||||||
2. Run `cargo install --git https://github.com/itsjunetime/tdf.git`
|
2. Run `rustup install nightly && cargo +nightly install --git https://github.com/itsjunetime/tdf.git`
|
||||||
|
|
||||||
If you want to use this with `epub`s or `cbz`s, add `--features epub` or `--features cbz` to the command line (or `--features cbz,epub` for both)
|
|
||||||
|
|
||||||
## To Build
|
## To Build
|
||||||
First, you need to install the system dependencies. This will generally only include `libfontconfig` and `clang`. If you're on linux, these will probably show up in your package manager as something like `libfontconfig1-devel` or `libfontconfig-dev` and just `clang`.
|
First, you need to install the system dependencies. This will generally only include `libfontconfig` and `clang`. If you're on linux, these will probably show up in your package manager as something like `libfontconfig1-devel` or `libfontconfig-dev` and just `clang`.
|
||||||
@@ -27,12 +25,10 @@ If it turns out that you're missing one of these, it will fail to compile and te
|
|||||||
|
|
||||||
1. Get the rust toolchain from [rustup.rs](https://rustup.rs)
|
1. Get the rust toolchain from [rustup.rs](https://rustup.rs)
|
||||||
2. Clone the repo and `cd` into it
|
2. Clone the repo and `cd` into it
|
||||||
3. Run `cargo build --release`
|
3. Run `cargo +nightly build --release`
|
||||||
|
|
||||||
The binary should then be found at `./target/release/tdf`.
|
The binary should then be found at `./target/release/tdf`.
|
||||||
|
|
||||||
You can also pull this in via [radicle](https://radicle.xyz) with `rad clone rad:zb11K1XGfQooopqEfwtCMyvbcyK1`
|
|
||||||
|
|
||||||
## Why in the world would you use this?
|
## Why in the world would you use this?
|
||||||
|
|
||||||
I dunno. Just for fun, mostly.
|
I dunno. Just for fun, mostly.
|
||||||
@@ -41,6 +37,4 @@ I dunno. Just for fun, mostly.
|
|||||||
|
|
||||||
Yeah, sure. Please do.
|
Yeah, sure. Please do.
|
||||||
|
|
||||||
Please note, though, that:
|
Please note, though, that all contributions will be treated as licensed under MPL-2.0.
|
||||||
1. No AI-generated or AI-assisted or AI-viewed or AI-anythinged code will be accepted. "AI" is a plague upon this earth and I won't be caught dead pretending it's normal.
|
|
||||||
2. All contributions will be treated as licensed under MPL-2.0 :)
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
use ratatui_image::picker::ProtocolType;
|
|
||||||
|
|
||||||
mod utils;
|
mod utils;
|
||||||
|
|
||||||
const BLACK: i32 = 0;
|
const BLACK: i32 = 0;
|
||||||
@@ -14,5 +12,5 @@ async fn main() {
|
|||||||
.nth(1)
|
.nth(1)
|
||||||
.expect("Please enter a file to profile");
|
.expect("Please enter a file to profile");
|
||||||
|
|
||||||
utils::render_doc(file, None, BLACK, WHITE, ProtocolType::Kitty).await;
|
utils::render_doc(file, None, BLACK, WHITE).await;
|
||||||
}
|
}
|
||||||
|
|||||||
+66
-82
@@ -1,15 +1,17 @@
|
|||||||
mod utils;
|
mod utils;
|
||||||
|
|
||||||
use std::{hint::black_box, path::Path};
|
use std::{
|
||||||
|
hint::black_box,
|
||||||
|
path::Path,
|
||||||
|
time::{SystemTime, UNIX_EPOCH}
|
||||||
|
};
|
||||||
|
|
||||||
use criterion::{BenchmarkId, Criterion, criterion_group, criterion_main};
|
use criterion::{BenchmarkId, Criterion, criterion_group, criterion_main, profiler::Profiler};
|
||||||
use futures_util::StreamExt as _;
|
use futures_util::StreamExt;
|
||||||
use ratatui_image::picker::ProtocolType;
|
|
||||||
use tdf::{
|
use tdf::{
|
||||||
converter::{ConvertedPage, ConverterMsg},
|
converter::{ConvertedPage, ConverterMsg},
|
||||||
renderer::{PageInfo, RenderInfo, fill_default}
|
renderer::{PageInfo, RenderInfo, fill_default}
|
||||||
};
|
};
|
||||||
use tokio::runtime::Runtime;
|
|
||||||
use utils::{
|
use utils::{
|
||||||
RenderState, handle_converter_msg, handle_renderer_msg, render_doc, start_all_rendering,
|
RenderState, handle_converter_msg, handle_renderer_msg, render_doc, start_all_rendering,
|
||||||
start_converting_loop, start_rendering_loop
|
start_converting_loop, start_rendering_loop
|
||||||
@@ -21,103 +23,90 @@ const FILES: [&str; 3] = [
|
|||||||
"benches/geotopo.pdf"
|
"benches/geotopo.pdf"
|
||||||
];
|
];
|
||||||
|
|
||||||
const PROTOS: [ProtocolType; 3] = [
|
|
||||||
ProtocolType::Kitty,
|
|
||||||
ProtocolType::Sixel,
|
|
||||||
ProtocolType::Iterm2
|
|
||||||
];
|
|
||||||
|
|
||||||
const BLACK: i32 = 0;
|
const BLACK: i32 = 0;
|
||||||
const WHITE: i32 = i32::from_be_bytes([0, 0xff, 0xff, 0xff]);
|
const WHITE: i32 = i32::from_be_bytes([0, 0xff, 0xff, 0xff]);
|
||||||
|
|
||||||
fn for_all_combos(
|
fn render_full(c: &mut Criterion) {
|
||||||
name: &'static str,
|
for file in FILES {
|
||||||
mut f: impl FnMut(&Runtime, BenchmarkId, &'static str, ProtocolType)
|
c.bench_with_input(BenchmarkId::new("render_full", file), &file, |b, &file| {
|
||||||
) {
|
b.to_async(tokio::runtime::Runtime::new().unwrap())
|
||||||
let rt = tokio::runtime::Runtime::new().unwrap();
|
.iter(|| render_doc(file, None, BLACK, WHITE))
|
||||||
for proto in PROTOS {
|
});
|
||||||
for file in FILES {
|
|
||||||
f(
|
|
||||||
&rt,
|
|
||||||
BenchmarkId::new(name, format!("{file},{proto:?}")),
|
|
||||||
file,
|
|
||||||
proto
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn render_full(c: &mut Criterion) {
|
|
||||||
for_all_combos("render_full", |rt, id, file, proto| {
|
|
||||||
_ = c.bench_with_input(id, &file, |b, &file| {
|
|
||||||
b.to_async(rt)
|
|
||||||
.iter(|| render_doc(file, None, BLACK, WHITE, proto));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
fn render_to_first_page(c: &mut Criterion) {
|
fn render_to_first_page(c: &mut Criterion) {
|
||||||
for_all_combos("render_first_page", |rt, id, file, proto| {
|
for file in FILES {
|
||||||
c.bench_with_input(id, &file, |b, &file| {
|
c.bench_with_input(
|
||||||
b.to_async(rt)
|
BenchmarkId::new("render_first_page", file),
|
||||||
.iter(|| render_first_page(file, BLACK, WHITE, proto));
|
&file,
|
||||||
});
|
|b, &file| {
|
||||||
});
|
b.to_async(tokio::runtime::Runtime::new().unwrap())
|
||||||
|
.iter(|| render_first_page(file, BLACK, WHITE))
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn only_converting(c: &mut Criterion) {
|
fn only_converting(c: &mut Criterion) {
|
||||||
for_all_combos("only_converting", |rt, id, file, proto| {
|
for file in FILES {
|
||||||
let all_rendered = rt.block_on(render_all_files(file, BLACK, WHITE));
|
let runtime = tokio::runtime::Runtime::new().unwrap();
|
||||||
|
let all_rendered = runtime.block_on(render_all_files(file, BLACK, WHITE));
|
||||||
|
|
||||||
c.bench_with_input(id, &all_rendered, |b, rendered| {
|
c.bench_with_input(
|
||||||
b.to_async(rt)
|
BenchmarkId::new("only_converting", file),
|
||||||
.iter_with_setup(|| rendered.clone(), |f| convert_all_files(f, proto));
|
&(all_rendered, file),
|
||||||
});
|
|b, (rendered, _)| {
|
||||||
});
|
b.to_async(tokio::runtime::Runtime::new().unwrap())
|
||||||
|
.iter_with_setup(|| rendered.clone(), convert_all_files)
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
fn search_short_common(c: &mut Criterion) {
|
fn search_short_common(c: &mut Criterion) {
|
||||||
for_all_combos("search_short_common", |rt, id, file, proto| {
|
for file in FILES {
|
||||||
c.bench_with_input(id, &file, |b, &file| {
|
c.bench_with_input(
|
||||||
b.to_async(rt)
|
BenchmarkId::new("search_short_common", file),
|
||||||
.iter(|| render_doc(file, Some("an"), BLACK, WHITE, proto))
|
&file,
|
||||||
});
|
|b, &file| {
|
||||||
});
|
b.to_async(tokio::runtime::Runtime::new().unwrap())
|
||||||
|
.iter(|| render_doc(file, Some("an"), BLACK, WHITE))
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn search_long_rare(c: &mut Criterion) {
|
fn search_long_rare(c: &mut Criterion) {
|
||||||
for_all_combos("search_long_rare", |rt, id, file, proto| {
|
for file in FILES {
|
||||||
c.bench_with_input(id, &file, |b, &file| {
|
c.bench_with_input(
|
||||||
b.to_async(rt)
|
BenchmarkId::new("search_long_rare", file),
|
||||||
.iter(|| render_doc(file, Some("this is long and rare"), BLACK, WHITE, proto))
|
&file,
|
||||||
});
|
|b, &file| {
|
||||||
});
|
b.to_async(tokio::runtime::Runtime::new().unwrap())
|
||||||
|
.iter(|| render_doc(file, Some("this is long and rare"), BLACK, WHITE))
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
pub async fn render_first_page(
|
pub async fn render_first_page(path: impl AsRef<Path>, black: i32, white: i32) {
|
||||||
path: impl AsRef<Path>,
|
|
||||||
black: i32,
|
|
||||||
white: i32,
|
|
||||||
proto: ProtocolType
|
|
||||||
) {
|
|
||||||
let RenderState {
|
let RenderState {
|
||||||
mut from_render_rx,
|
mut from_render_rx,
|
||||||
mut from_converter_rx,
|
mut from_converter_rx,
|
||||||
mut pages,
|
mut pages,
|
||||||
to_converter_tx,
|
mut to_converter_tx,
|
||||||
to_render_tx
|
to_render_tx
|
||||||
} = start_all_rendering(path, black, white, proto);
|
} = start_all_rendering(path, black, white);
|
||||||
|
|
||||||
// we only want to render until the first page is ready to be printed
|
// we only want to render until the first page is ready to be printed
|
||||||
while pages.iter().all(Option::is_none) {
|
while pages.iter().all(Option::is_none) {
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
Some(renderer_msg) = from_render_rx.next() => {
|
Some(renderer_msg) = from_render_rx.next() => {
|
||||||
handle_renderer_msg(renderer_msg, &mut pages, &to_converter_tx);
|
handle_renderer_msg(renderer_msg, &mut pages, &mut to_converter_tx);
|
||||||
},
|
},
|
||||||
Some(converter_msg) = from_converter_rx.next() => {
|
Some(converter_msg) = from_converter_rx.next() => {
|
||||||
handle_converter_msg(converter_msg, &mut pages, &to_converter_tx);
|
handle_converter_msg(converter_msg, &mut pages, &mut to_converter_tx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -140,7 +129,7 @@ async fn render_all_files(path: &'static str, black: i32, white: i32) -> Vec<Pag
|
|||||||
let num = page.page_num;
|
let num = page.page_num;
|
||||||
pages[num] = Some(page);
|
pages[num] = Some(page);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
if pages.iter().all(Option::is_some) {
|
if pages.iter().all(Option::is_some) {
|
||||||
break;
|
break;
|
||||||
@@ -151,9 +140,9 @@ async fn render_all_files(path: &'static str, black: i32, white: i32) -> Vec<Pag
|
|||||||
pages.into_iter().flatten().collect()
|
pages.into_iter().flatten().collect()
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn convert_all_files(files: Vec<PageInfo>, proto: ProtocolType) {
|
async fn convert_all_files(files: Vec<PageInfo>) {
|
||||||
let num_files = files.len();
|
let num_files = files.len();
|
||||||
let (mut from_converter_rx, to_converter_tx) = start_converting_loop(proto, num_files);
|
let (mut from_converter_rx, to_converter_tx) = start_converting_loop(num_files);
|
||||||
|
|
||||||
to_converter_tx
|
to_converter_tx
|
||||||
.send(ConverterMsg::NumPages(num_files))
|
.send(ConverterMsg::NumPages(num_files))
|
||||||
@@ -192,12 +181,10 @@ async fn convert_all_files(files: Vec<PageInfo>, proto: ProtocolType) {
|
|||||||
black_box(converted);
|
black_box(converted);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
struct CpuProfiler;
|
struct CpuProfiler;
|
||||||
|
|
||||||
impl criterion::profiler::Profiler for CpuProfiler {
|
impl Profiler for CpuProfiler {
|
||||||
fn start_profiling(&mut self, benchmark_id: &str, _: &std::path::Path) {
|
fn start_profiling(&mut self, benchmark_id: &str, _: &std::path::Path) {
|
||||||
use std::time::{SystemTime, UNIX_EPOCH}
|
|
||||||
let file = format!(
|
let file = format!(
|
||||||
"./{}-{}.profile",
|
"./{}-{}.profile",
|
||||||
benchmark_id.replace('/', "-"),
|
benchmark_id.replace('/', "-"),
|
||||||
@@ -213,13 +200,10 @@ impl criterion::profiler::Profiler for CpuProfiler {
|
|||||||
cpuprofiler::PROFILER.lock().unwrap().stop().unwrap();
|
cpuprofiler::PROFILER.lock().unwrap().stop().unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
criterion_group!(
|
criterion_group!(
|
||||||
name = benches;
|
name = benches;
|
||||||
// config = Criterion::default().sample_size(40).with_profiler(CpuProfiler);
|
config = Criterion::default().sample_size(40).with_profiler(CpuProfiler);
|
||||||
config = Criterion::default().sample_size(40);
|
targets = render_full, render_to_first_page, only_converting, search_short_common, search_long_rare
|
||||||
// targets = render_full, render_to_first_page, only_converting, search_short_common, search_long_rare
|
|
||||||
targets = render_full, render_to_first_page, only_converting
|
|
||||||
);
|
);
|
||||||
criterion_main!(benches);
|
criterion_main!(benches);
|
||||||
|
|||||||
+10
-23
@@ -13,7 +13,7 @@ use tdf::{
|
|||||||
pub fn handle_renderer_msg(
|
pub fn handle_renderer_msg(
|
||||||
msg: Result<RenderInfo, RenderError>,
|
msg: Result<RenderInfo, RenderError>,
|
||||||
pages: &mut Vec<Option<ConvertedPage>>,
|
pages: &mut Vec<Option<ConvertedPage>>,
|
||||||
to_converter_tx: &Sender<tdf::converter::ConverterMsg>
|
to_converter_tx: &mut Sender<tdf::converter::ConverterMsg>
|
||||||
) {
|
) {
|
||||||
match msg {
|
match msg {
|
||||||
Ok(RenderInfo::NumPages(num)) => {
|
Ok(RenderInfo::NumPages(num)) => {
|
||||||
@@ -30,7 +30,7 @@ pub fn handle_renderer_msg(
|
|||||||
pub fn handle_converter_msg(
|
pub fn handle_converter_msg(
|
||||||
msg: Result<ConvertedPage, RenderError>,
|
msg: Result<ConvertedPage, RenderError>,
|
||||||
pages: &mut [Option<ConvertedPage>],
|
pages: &mut [Option<ConvertedPage>],
|
||||||
to_converter_tx: &Sender<ConverterMsg>
|
to_converter_tx: &mut Sender<ConverterMsg>
|
||||||
) {
|
) {
|
||||||
let page = msg.expect("Got error from converter");
|
let page = msg.expect("Got error from converter");
|
||||||
let num = page.num;
|
let num = page.num;
|
||||||
@@ -106,9 +106,7 @@ pub fn start_rendering_loop(
|
|||||||
(from_render_rx, to_render_tx)
|
(from_render_rx, to_render_tx)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[must_use]
|
|
||||||
pub fn start_converting_loop(
|
pub fn start_converting_loop(
|
||||||
proto: ProtocolType,
|
|
||||||
prerender: usize
|
prerender: usize
|
||||||
) -> (
|
) -> (
|
||||||
RecvStream<'static, Result<ConvertedPage, RenderError>>,
|
RecvStream<'static, Result<ConvertedPage, RenderError>>,
|
||||||
@@ -118,7 +116,7 @@ pub fn start_converting_loop(
|
|||||||
let (to_main_tx, from_converter_rx) = unbounded();
|
let (to_main_tx, from_converter_rx) = unbounded();
|
||||||
|
|
||||||
let mut picker = Picker::from_fontsize(FONT_SIZE);
|
let mut picker = Picker::from_fontsize(FONT_SIZE);
|
||||||
picker.set_protocol_type(proto);
|
picker.set_protocol_type(ProtocolType::Kitty);
|
||||||
|
|
||||||
tokio::spawn(run_conversion_loop(
|
tokio::spawn(run_conversion_loop(
|
||||||
to_main_tx,
|
to_main_tx,
|
||||||
@@ -133,14 +131,9 @@ pub fn start_converting_loop(
|
|||||||
(from_converter_rx, to_converter_tx)
|
(from_converter_rx, to_converter_tx)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn start_all_rendering(
|
pub fn start_all_rendering(path: impl AsRef<Path>, black: i32, white: i32) -> RenderState {
|
||||||
path: impl AsRef<Path>,
|
|
||||||
black: i32,
|
|
||||||
white: i32,
|
|
||||||
proto: ProtocolType
|
|
||||||
) -> RenderState {
|
|
||||||
let (from_render_rx, to_render_tx) = start_rendering_loop(path, black, white);
|
let (from_render_rx, to_render_tx) = start_rendering_loop(path, black, white);
|
||||||
let (from_converter_rx, to_converter_tx) = start_converting_loop(proto, 20);
|
let (from_converter_rx, to_converter_tx) = start_converting_loop(20);
|
||||||
|
|
||||||
let pages: Vec<Option<ConvertedPage>> = Vec::new();
|
let pages: Vec<Option<ConvertedPage>> = Vec::new();
|
||||||
|
|
||||||
@@ -153,20 +146,14 @@ pub fn start_all_rendering(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn render_doc(
|
pub async fn render_doc(path: impl AsRef<Path>, search_term: Option<&str>, black: i32, white: i32) {
|
||||||
path: impl AsRef<Path>,
|
|
||||||
search_term: Option<&str>,
|
|
||||||
black: i32,
|
|
||||||
white: i32,
|
|
||||||
proto: ProtocolType
|
|
||||||
) {
|
|
||||||
let RenderState {
|
let RenderState {
|
||||||
mut from_render_rx,
|
mut from_render_rx,
|
||||||
mut from_converter_rx,
|
mut from_converter_rx,
|
||||||
mut pages,
|
mut pages,
|
||||||
to_converter_tx,
|
mut to_converter_tx,
|
||||||
to_render_tx
|
to_render_tx
|
||||||
} = start_all_rendering(path, black, white, proto);
|
} = start_all_rendering(path, black, white);
|
||||||
|
|
||||||
if let Some(term) = search_term {
|
if let Some(term) = search_term {
|
||||||
to_render_tx
|
to_render_tx
|
||||||
@@ -177,10 +164,10 @@ pub async fn render_doc(
|
|||||||
while pages.is_empty() || pages.iter().any(Option::is_none) {
|
while pages.is_empty() || pages.iter().any(Option::is_none) {
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
Some(renderer_msg) = from_render_rx.next() => {
|
Some(renderer_msg) = from_render_rx.next() => {
|
||||||
handle_renderer_msg(renderer_msg, &mut pages, &to_converter_tx);
|
handle_renderer_msg(renderer_msg, &mut pages, &mut to_converter_tx);
|
||||||
},
|
},
|
||||||
Some(converter_msg) = from_converter_rx.next() => {
|
Some(converter_msg) = from_converter_rx.next() => {
|
||||||
handle_converter_msg(converter_msg, &mut pages, &to_converter_tx);
|
handle_converter_msg(converter_msg, &mut pages, &mut to_converter_tx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
Submodule ratatui updated: 6a0b8ddf76...47c200fb7f
+1
-1
Submodule ratatui-image updated: 9564ae6466...fe3d0b992b
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
pkgs ? import <nixpkgs> { },
|
|
||||||
}:
|
|
||||||
pkgs.mkShell {
|
|
||||||
nativeBuildInputs = [ pkgs.pkg-config ];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
pkgs.cargo
|
|
||||||
pkgs.rustc
|
|
||||||
pkgs.rustPlatform.bindgenHook
|
|
||||||
pkgs.cairo
|
|
||||||
pkgs.rust-analyzer
|
|
||||||
];
|
|
||||||
}
|
|
||||||
+12
-15
@@ -1,19 +1,19 @@
|
|||||||
use std::{
|
use std::{
|
||||||
num::NonZeroUsize,
|
num::{NonZeroU32, NonZeroUsize},
|
||||||
time::{SystemTime, UNIX_EPOCH}
|
time::{SystemTime, UNIX_EPOCH}
|
||||||
};
|
};
|
||||||
|
|
||||||
use flume::{Receiver, SendError, Sender, TryRecvError};
|
use flume::{Receiver, SendError, Sender, TryRecvError};
|
||||||
use futures_util::stream::StreamExt as _;
|
use futures_util::stream::StreamExt;
|
||||||
use image::DynamicImage;
|
use image::DynamicImage;
|
||||||
use kittage::{NumberOrId, action::NONZERO_ONE};
|
use kittage::NumberOrId;
|
||||||
use ratatui::layout::Rect;
|
use ratatui::layout::Rect;
|
||||||
use ratatui_image::{
|
use ratatui_image::{
|
||||||
Resize,
|
Resize,
|
||||||
picker::{Picker, ProtocolType},
|
picker::{Picker, ProtocolType},
|
||||||
protocol::Protocol
|
protocol::Protocol
|
||||||
};
|
};
|
||||||
use rayon::iter::ParallelIterator as _;
|
use rayon::iter::ParallelIterator;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
renderer::{PageInfo, RenderError, fill_default},
|
renderer::{PageInfo, RenderError, fill_default},
|
||||||
@@ -37,7 +37,6 @@ pub enum ConvertedImage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl ConvertedImage {
|
impl ConvertedImage {
|
||||||
#[must_use]
|
|
||||||
pub fn w_h(&self) -> (u16, u16) {
|
pub fn w_h(&self) -> (u16, u16) {
|
||||||
match self {
|
match self {
|
||||||
Self::Generic(prot) => {
|
Self::Generic(prot) => {
|
||||||
@@ -68,7 +67,7 @@ pub enum ConverterMsg {
|
|||||||
pub async fn run_conversion_loop(
|
pub async fn run_conversion_loop(
|
||||||
sender: Sender<Result<ConvertedPage, RenderError>>,
|
sender: Sender<Result<ConvertedPage, RenderError>>,
|
||||||
receiver: Receiver<ConverterMsg>,
|
receiver: Receiver<ConverterMsg>,
|
||||||
picker: Picker,
|
mut picker: Picker,
|
||||||
prerender: usize,
|
prerender: usize,
|
||||||
shms_work: bool
|
shms_work: bool
|
||||||
) -> Result<(), SendError<Result<ConvertedPage, RenderError>>> {
|
) -> Result<(), SendError<Result<ConvertedPage, RenderError>>> {
|
||||||
@@ -78,7 +77,7 @@ pub async fn run_conversion_loop(
|
|||||||
|
|
||||||
fn next_page(
|
fn next_page(
|
||||||
images: &mut [Option<PageInfo>],
|
images: &mut [Option<PageInfo>],
|
||||||
picker: &Picker,
|
picker: &mut Picker,
|
||||||
page: usize,
|
page: usize,
|
||||||
iteration: &mut usize,
|
iteration: &mut usize,
|
||||||
prerender: usize,
|
prerender: usize,
|
||||||
@@ -127,7 +126,7 @@ pub async fn run_conversion_loop(
|
|||||||
.for_each(|(_, _, px)| px.0[2] = px.0[2].saturating_sub(u8::MAX / 2));
|
.for_each(|(_, _, px)| px.0[2] = px.0[2].saturating_sub(u8::MAX / 2));
|
||||||
},
|
},
|
||||||
_ => unreachable!()
|
_ => unreachable!()
|
||||||
}
|
};
|
||||||
|
|
||||||
let img_area = Rect {
|
let img_area = Rect {
|
||||||
width: page_info.img_data.cell_w,
|
width: page_info.img_data.cell_w,
|
||||||
@@ -141,20 +140,18 @@ pub async fn run_conversion_loop(
|
|||||||
let rn = SystemTime::now()
|
let rn = SystemTime::now()
|
||||||
.duration_since(UNIX_EPOCH)
|
.duration_since(UNIX_EPOCH)
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
.as_nanos() % 1_000_000;
|
.as_millis() % 1_000_000;
|
||||||
|
|
||||||
let mut img = if shms_work {
|
let mut img = if shms_work {
|
||||||
kittage::image::Image::shm_from(dyn_img, &format!("/tdf_{pid}_{rn}_{page_num}"))
|
kittage::image::Image::shm_from(dyn_img, &format!("tdf_{pid}_{rn}_{page_num}"))
|
||||||
.map_err(|e| {
|
.map_err(|e| {
|
||||||
RenderError::Converting(format!("Couldn't write to shm: {e:?}"))
|
RenderError::Converting(format!("Couldn't write to shm: {e}"))
|
||||||
})?
|
})?
|
||||||
} else {
|
} else {
|
||||||
kittage::image::Image::from(dyn_img)
|
kittage::image::Image::from(dyn_img)
|
||||||
};
|
};
|
||||||
|
|
||||||
// if ur pdf has 4 billion pages then you deserve to suffer
|
img.num_or_id = NumberOrId::Id(NonZeroU32::new(page_num as u32 + 1).unwrap());
|
||||||
img.num_or_id = NumberOrId::Id(NONZERO_ONE.saturating_add(page_num as u32));
|
|
||||||
|
|
||||||
ConvertedImage::Kitty {
|
ConvertedImage::Kitty {
|
||||||
img: MaybeTransferred::NotYet(img),
|
img: MaybeTransferred::NotYet(img),
|
||||||
cell_w: page_info.img_data.cell_w,
|
cell_w: page_info.img_data.cell_w,
|
||||||
@@ -217,7 +214,7 @@ pub async fn run_conversion_loop(
|
|||||||
|
|
||||||
match next_page(
|
match next_page(
|
||||||
&mut images,
|
&mut images,
|
||||||
&picker,
|
&mut picker,
|
||||||
page,
|
page,
|
||||||
&mut iteration,
|
&mut iteration,
|
||||||
prerender,
|
prerender,
|
||||||
|
|||||||
+2
-2
@@ -60,8 +60,8 @@ impl<W: Write> Write for DbgWriter<W> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn run_action<'es>(
|
pub async fn run_action<'image, 'data, 'es>(
|
||||||
action: Action<'_, '_>,
|
action: Action<'image, 'data>,
|
||||||
ev_stream: &'es mut EventStream
|
ev_stream: &'es mut EventStream
|
||||||
) -> Result<ImageId, TransmitError<<&'es mut EventStream as AsyncInputReader>::Error>> {
|
) -> Result<ImageId, TransmitError<<&'es mut EventStream as AsyncInputReader>::Error>> {
|
||||||
let writer = DbgWriter {
|
let writer = DbgWriter {
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ pub struct ScaledResult {
|
|||||||
scale_factor: f32
|
scale_factor: f32
|
||||||
}
|
}
|
||||||
|
|
||||||
#[must_use]
|
|
||||||
pub fn scale_img_for_area(
|
pub fn scale_img_for_area(
|
||||||
(img_width, img_height): (f32, f32),
|
(img_width, img_height): (f32, f32),
|
||||||
(area_width, area_height): (f32, f32),
|
(area_width, area_height): (f32, f32),
|
||||||
|
|||||||
+62
-82
@@ -5,11 +5,8 @@ use core::{
|
|||||||
use std::{
|
use std::{
|
||||||
borrow::Cow,
|
borrow::Cow,
|
||||||
ffi::OsString,
|
ffi::OsString,
|
||||||
io::{BufReader, Read as _, Stdout, Write as _, stdout},
|
io::{BufReader, Read, Stdout, Write, stdout},
|
||||||
mem,
|
path::PathBuf
|
||||||
path::PathBuf,
|
|
||||||
sync::{Arc, Mutex},
|
|
||||||
time::Duration
|
|
||||||
};
|
};
|
||||||
|
|
||||||
use crossterm::{
|
use crossterm::{
|
||||||
@@ -20,16 +17,15 @@ use crossterm::{
|
|||||||
enable_raw_mode, window_size
|
enable_raw_mode, window_size
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
use debounce::EventDebouncer;
|
|
||||||
use flexi_logger::FileSpec;
|
use flexi_logger::FileSpec;
|
||||||
use flume::{Sender, r#async::RecvStream};
|
use flume::{Sender, r#async::RecvStream};
|
||||||
use futures_util::{FutureExt as _, stream::StreamExt as _};
|
use futures_util::{FutureExt, stream::StreamExt};
|
||||||
use kittage::{
|
use kittage::{
|
||||||
action::Action,
|
action::Action,
|
||||||
delete::{ClearOrDelete, DeleteConfig, WhichToDelete},
|
delete::{ClearOrDelete, DeleteConfig, WhichToDelete},
|
||||||
error::{TerminalError, TransmitError}
|
error::{TerminalError, TransmitError}
|
||||||
};
|
};
|
||||||
use notify::{Event, EventKind, RecursiveMode, Watcher as _};
|
use notify::{Event, EventKind, RecursiveMode, Watcher};
|
||||||
use ratatui::{Terminal, backend::CrosstermBackend};
|
use ratatui::{Terminal, backend::CrosstermBackend};
|
||||||
use ratatui_image::{
|
use ratatui_image::{
|
||||||
FontSize,
|
FontSize,
|
||||||
@@ -61,20 +57,17 @@ impl std::fmt::Debug for WrappedErr {
|
|||||||
impl std::error::Error for WrappedErr {}
|
impl std::error::Error for WrappedErr {}
|
||||||
|
|
||||||
fn reset_term() {
|
fn reset_term() {
|
||||||
_ = disable_raw_mode();
|
|
||||||
_ = execute!(
|
_ = execute!(
|
||||||
std::io::stdout(),
|
std::io::stdout(),
|
||||||
LeaveAlternateScreen,
|
LeaveAlternateScreen,
|
||||||
crossterm::cursor::Show,
|
crossterm::cursor::Show,
|
||||||
crossterm::event::DisableMouseCapture
|
crossterm::event::DisableMouseCapture
|
||||||
);
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> Result<(), WrappedErr> {
|
async fn main() -> Result<(), WrappedErr> {
|
||||||
let result = inner_main().await;
|
inner_main().await.inspect_err(|_| reset_term())
|
||||||
reset_term();
|
|
||||||
result
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn inner_main() -> Result<(), WrappedErr> {
|
async fn inner_main() -> Result<(), WrappedErr> {
|
||||||
@@ -87,19 +80,14 @@ async fn inner_main() -> Result<(), WrappedErr> {
|
|||||||
#[cfg(feature = "tracing")]
|
#[cfg(feature = "tracing")]
|
||||||
console_subscriber::init();
|
console_subscriber::init();
|
||||||
|
|
||||||
const DEFAULT_DEBOUNCE_DELAY: Duration = Duration::from_millis(50);
|
|
||||||
|
|
||||||
let flags = xflags::parse_or_exit! {
|
let flags = xflags::parse_or_exit! {
|
||||||
/// Display the pdf with the pages starting at the right hand size and moving left and
|
/// Display the pdf with the pages starting at the right hand size and moving left and
|
||||||
/// adjust input keys to match
|
/// adjust input keys to match
|
||||||
optional -r,--r-to-l
|
optional -r,--r-to-l r_to_l: bool
|
||||||
/// The maximum number of pages to display together, horizontally, at a time
|
/// The maximum number of pages to display together, horizontally, at a time
|
||||||
optional -m,--max-wide max_wide: NonZeroUsize
|
optional -m,--max-wide max_wide: NonZeroUsize
|
||||||
/// Fullscreen the pdf (hide document name, page count, etc)
|
/// Fullscreen the pdf (hide document name, page count, etc)
|
||||||
optional -f,--fullscreen
|
optional -f,--fullscreen fullscreen: bool
|
||||||
/// The time to wait for the file to stop changing before reloading, in milliseconds.
|
|
||||||
/// Defaults to 50ms.
|
|
||||||
optional --reload-delay reload_delay: u64
|
|
||||||
/// The number of pages to prerender surrounding the currently-shown page; 0 means no
|
/// The number of pages to prerender surrounding the currently-shown page; 0 means no
|
||||||
/// limit. By default, there is no limit.
|
/// limit. By default, there is no limit.
|
||||||
optional -p,--prerender prerender: usize
|
optional -p,--prerender prerender: usize
|
||||||
@@ -146,8 +134,10 @@ async fn inner_main() -> Result<(), WrappedErr> {
|
|||||||
|
|
||||||
// need to keep it around throughout the lifetime of the program, but don't rly need to use it.
|
// need to keep it around throughout the lifetime of the program, but don't rly need to use it.
|
||||||
// Just need to make sure it doesn't get dropped yet.
|
// Just need to make sure it doesn't get dropped yet.
|
||||||
let maybe_logger = if std::env::var("RUST_LOG").is_ok() {
|
let mut maybe_logger = None;
|
||||||
Some(
|
|
||||||
|
if std::env::var("RUST_LOG").is_ok() {
|
||||||
|
maybe_logger = Some(
|
||||||
flexi_logger::Logger::try_with_env()
|
flexi_logger::Logger::try_with_env()
|
||||||
.map_err(|e| WrappedErr(format!("Couldn't create initial logger: {e}").into()))?
|
.map_err(|e| WrappedErr(format!("Couldn't create initial logger: {e}").into()))?
|
||||||
.log_to_file(FileSpec::try_from("./debug.log").map_err(|e| {
|
.log_to_file(FileSpec::try_from("./debug.log").map_err(|e| {
|
||||||
@@ -155,10 +145,8 @@ async fn inner_main() -> Result<(), WrappedErr> {
|
|||||||
})?)
|
})?)
|
||||||
.start()
|
.start()
|
||||||
.map_err(|e| WrappedErr(format!("Can't start logger: {e}").into()))?
|
.map_err(|e| WrappedErr(format!("Can't start logger: {e}").into()))?
|
||||||
)
|
);
|
||||||
} else {
|
}
|
||||||
None
|
|
||||||
};
|
|
||||||
|
|
||||||
let (watch_to_render_tx, render_rx) = flume::unbounded();
|
let (watch_to_render_tx, render_rx) = flume::unbounded();
|
||||||
let to_renderer = watch_to_render_tx.clone();
|
let to_renderer = watch_to_render_tx.clone();
|
||||||
@@ -170,11 +158,8 @@ async fn inner_main() -> Result<(), WrappedErr> {
|
|||||||
watch_to_tui_tx,
|
watch_to_tui_tx,
|
||||||
watch_to_render_tx,
|
watch_to_render_tx,
|
||||||
path.file_name()
|
path.file_name()
|
||||||
.ok_or_else(|| WrappedErr("Path does not have a last component??".into()))?
|
.ok_or(WrappedErr("Path does not have a last component??".into()))?
|
||||||
.to_owned(),
|
.to_owned()
|
||||||
flags
|
|
||||||
.reload_delay
|
|
||||||
.map_or(DEFAULT_DEBOUNCE_DELAY, Duration::from_millis)
|
|
||||||
))
|
))
|
||||||
.map_err(|e| WrappedErr(format!("Couldn't start watching the provided file: {e}").into()))?;
|
.map_err(|e| WrappedErr(format!("Couldn't start watching the provided file: {e}").into()))?;
|
||||||
|
|
||||||
@@ -282,7 +267,12 @@ async fn inner_main() -> Result<(), WrappedErr> {
|
|||||||
|| "Unknown file".into(),
|
|| "Unknown file".into(),
|
||||||
|n| n.to_string_lossy().to_string()
|
|n| n.to_string_lossy().to_string()
|
||||||
);
|
);
|
||||||
let tui = Tui::new(file_name, flags.max_wide, flags.r_to_l, is_kitty);
|
let tui = Tui::new(
|
||||||
|
file_name,
|
||||||
|
flags.max_wide,
|
||||||
|
flags.r_to_l.unwrap_or_default(),
|
||||||
|
is_kitty
|
||||||
|
);
|
||||||
|
|
||||||
let backend = CrosstermBackend::new(std::io::stdout());
|
let backend = CrosstermBackend::new(std::io::stdout());
|
||||||
let mut term = Terminal::new(backend).map_err(|e| {
|
let mut term = Terminal::new(backend).map_err(|e| {
|
||||||
@@ -310,7 +300,7 @@ async fn inner_main() -> Result<(), WrappedErr> {
|
|||||||
})?;
|
})?;
|
||||||
}
|
}
|
||||||
|
|
||||||
let fullscreen = flags.fullscreen;
|
let fullscreen = flags.fullscreen.unwrap_or_default();
|
||||||
let main_area = Tui::main_layout(&term.get_frame(), fullscreen);
|
let main_area = Tui::main_layout(&term.get_frame(), fullscreen);
|
||||||
to_renderer
|
to_renderer
|
||||||
.send(RenderNotif::Area(main_area.page_area))
|
.send(RenderNotif::Area(main_area.page_area))
|
||||||
@@ -345,7 +335,17 @@ async fn inner_main() -> Result<(), WrappedErr> {
|
|||||||
)
|
)
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
|
execute!(
|
||||||
|
term.backend_mut(),
|
||||||
|
LeaveAlternateScreen,
|
||||||
|
crossterm::cursor::Show,
|
||||||
|
crossterm::event::DisableMouseCapture
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
disable_raw_mode().unwrap();
|
||||||
|
|
||||||
drop(maybe_logger);
|
drop(maybe_logger);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -466,58 +466,38 @@ async fn enter_redraw_loop(
|
|||||||
fn on_notify_ev(
|
fn on_notify_ev(
|
||||||
to_tui_tx: flume::Sender<Result<RenderInfo, RenderError>>,
|
to_tui_tx: flume::Sender<Result<RenderInfo, RenderError>>,
|
||||||
to_render_tx: flume::Sender<RenderNotif>,
|
to_render_tx: flume::Sender<RenderNotif>,
|
||||||
file_name: OsString,
|
file_name: OsString
|
||||||
debounce_delay: Duration
|
|
||||||
) -> impl Fn(notify::Result<Event>) {
|
) -> impl Fn(notify::Result<Event>) {
|
||||||
let last_event: Mutex<Result<(), RenderError>> = Mutex::new(Ok(()));
|
move |res| match res {
|
||||||
let last_event = Arc::new(last_event);
|
// If we get an error here, and then an error sending, everything's going wrong. Just give
|
||||||
|
// up lol.
|
||||||
|
Err(e) => to_tui_tx.send(Err(RenderError::Notify(e))).unwrap(),
|
||||||
|
// TODO: Should we match EventKind::Rename and propogate that so that the other parts of the
|
||||||
|
// process know that too? Or should that be
|
||||||
|
Ok(ev) => {
|
||||||
|
// We only watch the parent directory (see the comment above `watcher.watch` in `fn
|
||||||
|
// main`) so we need to filter out events to only ones that pertain to the single file
|
||||||
|
// we care about
|
||||||
|
if !ev
|
||||||
|
.paths
|
||||||
|
.iter()
|
||||||
|
.any(|path| path.file_name().is_some_and(|f| f == file_name))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let debouncer = EventDebouncer::new(debounce_delay, {
|
match ev.kind {
|
||||||
let last_event = last_event.clone();
|
EventKind::Access(_) => (),
|
||||||
move |()| {
|
EventKind::Remove(_) => to_tui_tx
|
||||||
let event = mem::replace(&mut *last_event.lock().unwrap(), Ok(()));
|
.send(Err(RenderError::Converting("File was deleted".into())))
|
||||||
match event {
|
.unwrap(),
|
||||||
// This shouldn't fail to send unless the receiver gets disconnected. If that's
|
// This shouldn't fail to send unless the receiver gets disconnected. If that's
|
||||||
// happened, then like the main thread has panicked or something, so it doesn't matter
|
// happened, then like the main thread has panicked or something, so it doesn't matter
|
||||||
// we don't handle the error here.
|
// we don't handle the error here.
|
||||||
Ok(()) => to_render_tx.send(RenderNotif::Reload).unwrap(),
|
EventKind::Other | EventKind::Any | EventKind::Create(_) | EventKind::Modify(_) =>
|
||||||
// If we get an error here, and then an error sending, everything's going wrong. Just give
|
to_render_tx.send(RenderNotif::Reload).unwrap(),
|
||||||
// up lol.
|
|
||||||
Err(e) => to_tui_tx.send(Err(e)).unwrap()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
move |res| {
|
|
||||||
let event = match res {
|
|
||||||
Err(e) => Err(RenderError::Notify(e)),
|
|
||||||
|
|
||||||
// TODO: Should we match EventKind::Rename and propogate that so that the other parts of the
|
|
||||||
// process know that too? Or should that be
|
|
||||||
Ok(ev) => {
|
|
||||||
// We only watch the parent directory (see the comment above `watcher.watch` in `fn
|
|
||||||
// main`) so we need to filter out events to only ones that pertain to the single file
|
|
||||||
// we care about
|
|
||||||
if !ev
|
|
||||||
.paths
|
|
||||||
.iter()
|
|
||||||
.any(|path| path.file_name().is_some_and(|f| f == file_name))
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
match ev.kind {
|
|
||||||
EventKind::Access(_) => return,
|
|
||||||
EventKind::Remove(_) => Err(RenderError::Converting("File was deleted".into())),
|
|
||||||
EventKind::Other
|
|
||||||
| EventKind::Any
|
|
||||||
| EventKind::Create(_)
|
|
||||||
| EventKind::Modify(_) => Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
*last_event.lock().unwrap() = event;
|
|
||||||
debouncer.put(());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -574,18 +554,18 @@ fn get_font_size_through_stdio() -> Result<(u16, u16), WrappedErr> {
|
|||||||
));
|
));
|
||||||
};
|
};
|
||||||
|
|
||||||
let h = h.parse::<u16>().map_err(|e| {
|
let h = h.parse::<u16>().map_err(|_| {
|
||||||
WrappedErr(
|
WrappedErr(
|
||||||
format!(
|
format!(
|
||||||
"Your terminal said its height is {h}, but that is not a 16-bit unsigned integer: {e}"
|
"Your terminal said its height is {h}, but that is not a 16-bit unsigned integer"
|
||||||
)
|
)
|
||||||
.into()
|
.into()
|
||||||
)
|
)
|
||||||
})?;
|
})?;
|
||||||
let w = w.parse::<u16>().map_err(|e| {
|
let w = w.parse::<u16>().map_err(|_| {
|
||||||
WrappedErr(
|
WrappedErr(
|
||||||
format!(
|
format!(
|
||||||
"Your terminal said its width is {w}, but that is not a 16-bit unsigned integer: {e}"
|
"Your terminal said its width is {w}, but that is not a 16-bit unsigned integer"
|
||||||
)
|
)
|
||||||
.into()
|
.into()
|
||||||
)
|
)
|
||||||
|
|||||||
+6
-6
@@ -78,7 +78,7 @@ pub fn fill_default<T: Default>(vec: &mut Vec<T>, size: usize) {
|
|||||||
// We're allowing passing by value here because this is only called once, at the beginning of the
|
// We're allowing passing by value here because this is only called once, at the beginning of the
|
||||||
// program, and the arguments that 'should' be passed by value (`receiver` and `size`) would
|
// program, and the arguments that 'should' be passed by value (`receiver` and `size`) would
|
||||||
// probably be more performant if accessed by-value instead of through a reference. Probably.
|
// probably be more performant if accessed by-value instead of through a reference. Probably.
|
||||||
#[expect(clippy::needless_pass_by_value, clippy::too_many_arguments)]
|
#[allow(clippy::needless_pass_by_value, clippy::too_many_arguments)]
|
||||||
pub fn start_rendering(
|
pub fn start_rendering(
|
||||||
path: &str,
|
path: &str,
|
||||||
sender: Sender<Result<RenderInfo, RenderError>>,
|
sender: Sender<Result<RenderInfo, RenderError>>,
|
||||||
@@ -116,7 +116,7 @@ pub fn start_rendering(
|
|||||||
// temporarily removed to facilitate a save or something like that)
|
// temporarily removed to facilitate a save or something like that)
|
||||||
while let Ok(msg) = receiver.recv() {
|
while let Ok(msg) = receiver.recv() {
|
||||||
// and once that comes, just try to reload again
|
// and once that comes, just try to reload again
|
||||||
if matches!(msg, RenderNotif::Reload) {
|
if let RenderNotif::Reload = msg {
|
||||||
continue 'reload;
|
continue 'reload;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -313,7 +313,7 @@ pub fn start_rendering(
|
|||||||
if let Err(e) = ctx.pixmap.write_to(&mut pixels, mupdf::ImageFormat::PNM) {
|
if let Err(e) = ctx.pixmap.write_to(&mut pixels, mupdf::ImageFormat::PNM) {
|
||||||
sender.send(Err(RenderError::Doc(e)))?;
|
sender.send(Err(RenderError::Doc(e)))?;
|
||||||
continue;
|
continue;
|
||||||
}
|
};
|
||||||
|
|
||||||
log::debug!("got pixmap for page {page_num} with WxH {w}x{h}");
|
log::debug!("got pixmap for page {page_num} with WxH {w}x{h}");
|
||||||
|
|
||||||
@@ -341,7 +341,7 @@ pub fn start_rendering(
|
|||||||
Err(TryRecvError::Disconnected) => return Ok(()),
|
Err(TryRecvError::Disconnected) => return Ok(()),
|
||||||
Ok(notif) => handle_notif!(notif),
|
Ok(notif) => handle_notif!(notif),
|
||||||
Err(TryRecvError::Empty) => ()
|
Err(TryRecvError::Empty) => ()
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now, if we have a search term, we want to look through the rest of the document past
|
// Now, if we have a search term, we want to look through the rest of the document past
|
||||||
@@ -434,7 +434,7 @@ pub fn start_rendering(
|
|||||||
return Ok(());
|
return Ok(());
|
||||||
};
|
};
|
||||||
|
|
||||||
handle_notif!(msg);
|
handle_notif!(msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -565,7 +565,7 @@ struct PopOnNext<'a> {
|
|||||||
inner: &'a mut VecDeque<usize>
|
inner: &'a mut VecDeque<usize>
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Iterator for PopOnNext<'_> {
|
impl<'a> Iterator for PopOnNext<'a> {
|
||||||
type Item = usize;
|
type Item = usize;
|
||||||
fn next(&mut self) -> Option<Self::Item> {
|
fn next(&mut self) -> Option<Self::Item> {
|
||||||
self.inner.pop_front()
|
self.inner.pop_front()
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ pub struct Skip {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Skip {
|
impl Skip {
|
||||||
#[must_use]
|
|
||||||
pub fn new(skip: bool) -> Self {
|
pub fn new(skip: bool) -> Self {
|
||||||
Self { skip }
|
Self { skip }
|
||||||
}
|
}
|
||||||
@@ -46,7 +45,6 @@ impl InterleavedAroundWithMax {
|
|||||||
/// the following must hold or else this is liable to panic or produce nonsense values:
|
/// the following must hold or else this is liable to panic or produce nonsense values:
|
||||||
/// - inclusive_min < exclusive_max
|
/// - inclusive_min < exclusive_max
|
||||||
/// - inclusive_min <= around <= exclusive_max
|
/// - inclusive_min <= around <= exclusive_max
|
||||||
#[must_use]
|
|
||||||
pub fn new(around: usize, inclusive_min: usize, exclusive_max: NonZeroUsize) -> Self {
|
pub fn new(around: usize, inclusive_min: usize, exclusive_max: NonZeroUsize) -> Self {
|
||||||
Self {
|
Self {
|
||||||
around,
|
around,
|
||||||
|
|||||||
+209
-346
@@ -16,7 +16,6 @@ use nix::{
|
|||||||
use ratatui::{
|
use ratatui::{
|
||||||
Frame,
|
Frame,
|
||||||
layout::{Constraint, Flex, Layout, Position, Rect},
|
layout::{Constraint, Flex, Layout, Position, Rect},
|
||||||
prelude::{Line, Text},
|
|
||||||
style::{Color, Style},
|
style::{Color, Style},
|
||||||
symbols::border,
|
symbols::border,
|
||||||
text::Span,
|
text::Span,
|
||||||
@@ -78,8 +77,8 @@ struct PageConstraints {
|
|||||||
|
|
||||||
#[derive(Default, Debug)]
|
#[derive(Default, Debug)]
|
||||||
struct Zoom {
|
struct Zoom {
|
||||||
// just how much 'zoom' you have. 0 means it fills the screen (instead of fits), such
|
// just how much 'zoom' you have. Doesn't relate to anything specific yet, except that 0 means
|
||||||
// that one axis is fully on-screen
|
// it fills the screen (instead of fits)
|
||||||
level: i16,
|
level: i16,
|
||||||
// how many terminal-cells worth of content overflow the left side of the screen (and are thus
|
// how many terminal-cells worth of content overflow the left side of the screen (and are thus
|
||||||
// not displayed)
|
// not displayed)
|
||||||
@@ -88,21 +87,6 @@ struct Zoom {
|
|||||||
// not displayed)
|
// not displayed)
|
||||||
cell_pan_from_top: u16
|
cell_pan_from_top: u16
|
||||||
}
|
}
|
||||||
impl Zoom {
|
|
||||||
/// Returns the zoom factor, where 1 is the default and means fill-screen
|
|
||||||
fn factor(&self) -> f32 {
|
|
||||||
// TODO: Make these configurable once we have a good way to set options after startup
|
|
||||||
const ZOOM_RATE: f32 = 1.1;
|
|
||||||
const ZOOM_RATE_GRANULAR: f32 = 1.05;
|
|
||||||
|
|
||||||
if self.level > 0 {
|
|
||||||
ZOOM_RATE.powi(self.level.into())
|
|
||||||
} else {
|
|
||||||
// use a more granular zoom rate for the steps between fit-screen and fill-screen
|
|
||||||
ZOOM_RATE_GRANULAR.powi(self.level.into())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// This seems like a kinda weird struct because it holds two optionals but any representation
|
// This seems like a kinda weird struct because it holds two optionals but any representation
|
||||||
// within it is valid; I think it's the best way to represent it
|
// within it is valid; I think it's the best way to represent it
|
||||||
@@ -124,8 +108,7 @@ pub struct RenderLayout {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Tui {
|
impl Tui {
|
||||||
#[must_use]
|
pub fn new(name: String, max_wide: Option<NonZeroUsize>, r_to_l: bool, is_kitty: bool) -> Tui {
|
||||||
pub fn new(name: String, max_wide: Option<NonZeroUsize>, r_to_l: bool, is_kitty: bool) -> Self {
|
|
||||||
Self {
|
Self {
|
||||||
name,
|
name,
|
||||||
page: 0,
|
page: 0,
|
||||||
@@ -140,7 +123,6 @@ impl Tui {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[must_use]
|
|
||||||
pub fn main_layout(frame: &Frame<'_>, fullscreened: bool) -> RenderLayout {
|
pub fn main_layout(frame: &Frame<'_>, fullscreened: bool) -> RenderLayout {
|
||||||
if fullscreened {
|
if fullscreened {
|
||||||
RenderLayout {
|
RenderLayout {
|
||||||
@@ -165,129 +147,6 @@ impl Tui {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn render_zoomed<'s>(
|
|
||||||
// area of the 'fit-screen' page
|
|
||||||
mut img_area: Rect,
|
|
||||||
font_size: FontSize,
|
|
||||||
zoom: &mut Zoom,
|
|
||||||
img: &'s mut MaybeTransferred,
|
|
||||||
page_num: usize,
|
|
||||||
img_cell_w: u16,
|
|
||||||
img_cell_h: u16
|
|
||||||
) -> KittyDisplay<'s> {
|
|
||||||
log::debug!("zoom is {zoom:#?}");
|
|
||||||
log::debug!("page area is {img_area:#?}");
|
|
||||||
log::debug!("img dimensions are {img_cell_w}x{img_cell_h}");
|
|
||||||
|
|
||||||
// Dimensions of the section of the image to be displayed.
|
|
||||||
// Kittage calls this the "image area to display".
|
|
||||||
// We need to shrink this or the page area in order to zoom in or out,
|
|
||||||
// respectively.
|
|
||||||
let mut img_section_w = f32::from(img_cell_w);
|
|
||||||
let mut img_section_h = f32::from(img_cell_h);
|
|
||||||
|
|
||||||
let zoom_factor = zoom.factor();
|
|
||||||
|
|
||||||
if zoom_factor >= 1.0 {
|
|
||||||
// Use a smaller section of the image. This efficively zooms into that section.
|
|
||||||
img_section_w /= zoom_factor;
|
|
||||||
img_section_h /= zoom_factor;
|
|
||||||
} else {
|
|
||||||
// Shrink the page area, such that the fill-screen conversion
|
|
||||||
// will zoom out of the image.
|
|
||||||
let initial_page_w = f32::from(img_area.width);
|
|
||||||
let initial_page_h = f32::from(img_area.height);
|
|
||||||
|
|
||||||
// how many pages the image is wide/high
|
|
||||||
let img_page_w_ratio = img_section_w / initial_page_w;
|
|
||||||
let img_page_h_ratio = img_section_h / initial_page_h;
|
|
||||||
|
|
||||||
let shrink_move_page = |dim: &mut u16, pos: &mut u16, axis_zoom_factor: f32| {
|
|
||||||
let old_dim = *dim;
|
|
||||||
// The axis zoom factor tells us what portion of the axis
|
|
||||||
// we need to show.
|
|
||||||
*dim = (f32::from(*dim) * axis_zoom_factor) as u16;
|
|
||||||
|
|
||||||
*pos += old_dim
|
|
||||||
.checked_sub(*dim)
|
|
||||||
.expect("zooming out should shrink the image")
|
|
||||||
/ 2;
|
|
||||||
};
|
|
||||||
|
|
||||||
// TODO: Detect max zoom-out in zoom levels
|
|
||||||
if img_page_w_ratio < img_page_h_ratio {
|
|
||||||
// vertical scroll / tall image. zooming out means decreasing the width of the page area
|
|
||||||
shrink_move_page(
|
|
||||||
&mut img_area.width,
|
|
||||||
&mut img_area.x,
|
|
||||||
// disallow zooming out past fit-screen
|
|
||||||
zoom_factor.max(1.0 / img_page_h_ratio)
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
// horizontal scroll / wide image. zooming out means decreasing the width of the page area
|
|
||||||
shrink_move_page(
|
|
||||||
&mut img_area.height,
|
|
||||||
&mut img_area.y,
|
|
||||||
// disallow zooming out past fit-screen
|
|
||||||
zoom_factor.max(1.0 / img_page_w_ratio)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
log::debug!("after adjustment, page area is {img_area:#?}");
|
|
||||||
|
|
||||||
// Crop the image such that in the end, the aspect ratio of the section
|
|
||||||
// is the same as that of the page area. This effectively performs the
|
|
||||||
// conversion to fill-screen.
|
|
||||||
// Note that this only works because cell_w, cell_h is in fit-screen
|
|
||||||
// format, i.e. the cell size and the page area already share at
|
|
||||||
// least one dimension.
|
|
||||||
{
|
|
||||||
let page_area_w = f32::from(img_area.width);
|
|
||||||
let page_area_h = f32::from(img_area.height);
|
|
||||||
|
|
||||||
// how many pages the image is wide/high
|
|
||||||
// Note that this is not the same as during the
|
|
||||||
// zoom-out calculation, since it changed the page
|
|
||||||
// dimensions.
|
|
||||||
let img_page_w_ratio = img_section_w / page_area_w;
|
|
||||||
let img_page_h_ratio = img_section_h / page_area_h;
|
|
||||||
|
|
||||||
if img_page_w_ratio < img_page_h_ratio {
|
|
||||||
img_section_h = page_area_h * img_page_w_ratio;
|
|
||||||
} else {
|
|
||||||
img_section_w = page_area_w * img_page_h_ratio;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let width = (img_section_w * f32::from(font_size.0)) as u32;
|
|
||||||
let height = (img_section_h * f32::from(font_size.1)) as u32;
|
|
||||||
|
|
||||||
zoom.cell_pan_from_left = zoom
|
|
||||||
.cell_pan_from_left
|
|
||||||
.min(img_cell_w.saturating_sub(img_section_w.ceil() as u16));
|
|
||||||
zoom.cell_pan_from_top = zoom
|
|
||||||
.cell_pan_from_top
|
|
||||||
.min(img_cell_h.saturating_sub(img_section_h.ceil() as u16));
|
|
||||||
|
|
||||||
KittyDisplay::DisplayImages(vec![KittyReadyToDisplay {
|
|
||||||
img,
|
|
||||||
page_num,
|
|
||||||
pos: Position {
|
|
||||||
x: img_area.x,
|
|
||||||
y: img_area.y
|
|
||||||
},
|
|
||||||
display_loc: DisplayLocation {
|
|
||||||
x: u32::from(zoom.cell_pan_from_left) * u32::from(font_size.0),
|
|
||||||
y: u32::from(zoom.cell_pan_from_top) * u32::from(font_size.1),
|
|
||||||
width,
|
|
||||||
height,
|
|
||||||
columns: img_area.width,
|
|
||||||
rows: img_area.height,
|
|
||||||
..DisplayLocation::default()
|
|
||||||
}
|
|
||||||
}])
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Make a way to fill the width of the screen with one page and scroll down to view it
|
// TODO: Make a way to fill the width of the screen with one page and scroll down to view it
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn render<'s>(
|
pub fn render<'s>(
|
||||||
@@ -321,120 +180,166 @@ impl Tui {
|
|||||||
// be written and set to skip it so that ratatui doesn't spend a lot of time diffing it
|
// be written and set to skip it so that ratatui doesn't spend a lot of time diffing it
|
||||||
// each re-render
|
// each re-render
|
||||||
frame.render_widget(Skip::new(true), img_area);
|
frame.render_widget(Skip::new(true), img_area);
|
||||||
return KittyDisplay::NoChange;
|
KittyDisplay::NoChange
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(ref mut zoom) = self.zoom {
|
|
||||||
// yes this is ugly and I hate it. it's due to the limitations that currently exist
|
|
||||||
// in the borrow checker. Once `-Zpolonius=next` is stabilized, we can rework this
|
|
||||||
// to look like what we expect.
|
|
||||||
// See https://github.com/rust-lang/rfcs/blob/master/text/2094-nll.md#problem-case-3-conditional-control-flow-across-functions
|
|
||||||
// You can also rewrite this to just if an `if let` and run it under
|
|
||||||
// `RUSTFLAGS="-Zpolonius=next"` and see that it works
|
|
||||||
if self.rendered[self.page]
|
|
||||||
.img
|
|
||||||
.as_ref()
|
|
||||||
.is_some_and(|c| matches!(c, ConvertedImage::Kitty { .. }))
|
|
||||||
{
|
|
||||||
let Some(ConvertedImage::Kitty {
|
|
||||||
ref mut img,
|
|
||||||
cell_w,
|
|
||||||
cell_h
|
|
||||||
}) = self.rendered[self.page].img
|
|
||||||
else {
|
|
||||||
unreachable!()
|
|
||||||
};
|
|
||||||
|
|
||||||
self.last_render = LastRender {
|
|
||||||
rect: size,
|
|
||||||
pages_shown: 1,
|
|
||||||
unused_width: 0
|
|
||||||
};
|
|
||||||
return Self::render_zoomed(
|
|
||||||
img_area, font_size, zoom, img, self.page, cell_w, cell_h
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// here we calculate how many pages can fit in the available area.
|
|
||||||
let mut test_area_w = img_area.width;
|
|
||||||
// go through our pages, starting at the first one we want to view
|
|
||||||
let mut page_sizes = self.rendered[self.page..]
|
|
||||||
.iter_mut()
|
|
||||||
// and get this to represent a count of how many we're looking at so far to render
|
|
||||||
.enumerate()
|
|
||||||
// and only take as many as are ready to be rendered
|
|
||||||
.take_while(|(idx, page)| {
|
|
||||||
let mut take = page.img.is_some();
|
|
||||||
if let Some(max) = self.page_constraints.max_wide {
|
|
||||||
take &= *idx < max.get();
|
|
||||||
}
|
|
||||||
take
|
|
||||||
})
|
|
||||||
// and map it to their width (in cells on the terminal, not pixels)
|
|
||||||
.filter_map(|(_, page)| {
|
|
||||||
page.img.as_mut().map(|img| {
|
|
||||||
let (w, h) = img.w_h();
|
|
||||||
(w, h, img)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
// and then take them as long as they won't overflow the available area.
|
|
||||||
.take_while(|(width, _, _)| match test_area_w.checked_sub(*width) {
|
|
||||||
Some(new_val) => {
|
|
||||||
test_area_w = new_val;
|
|
||||||
true
|
|
||||||
}
|
|
||||||
None => false
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
|
|
||||||
if self.page_constraints.r_to_l {
|
|
||||||
page_sizes.reverse();
|
|
||||||
}
|
|
||||||
|
|
||||||
if page_sizes.is_empty() {
|
|
||||||
// If none are ready to render, just show the loading thing
|
|
||||||
Self::render_loading_in(frame, img_area);
|
|
||||||
KittyDisplay::ClearImages
|
|
||||||
} else {
|
} else {
|
||||||
execute!(stdout(), BeginSynchronizedUpdate).unwrap();
|
if let Some(ref mut zoom) = self.zoom {
|
||||||
|
// yes this is ugly and I hate it. it's due to the limitations that currently exist
|
||||||
|
// in the borrow checker. Once `-Zpolonius=next` is stabilized, we can rework this
|
||||||
|
// to look like what we expect.
|
||||||
|
// See https://github.com/rust-lang/rfcs/blob/master/text/2094-nll.md#problem-case-3-conditional-control-flow-across-functions
|
||||||
|
// You can also rewrite this to just if an `if let` and run it under
|
||||||
|
// `RUSTFLAGS="-Zpolonius=next"` and see that it works
|
||||||
|
if self.rendered[self.page]
|
||||||
|
.img
|
||||||
|
.as_ref()
|
||||||
|
.is_some_and(|c| matches!(c, ConvertedImage::Kitty { .. }))
|
||||||
|
{
|
||||||
|
let Some(ConvertedImage::Kitty {
|
||||||
|
ref mut img,
|
||||||
|
cell_w,
|
||||||
|
cell_h
|
||||||
|
}) = self.rendered[self.page].img
|
||||||
|
else {
|
||||||
|
unreachable!()
|
||||||
|
};
|
||||||
|
|
||||||
let total_width = page_sizes.iter().map(|(w, _, _)| w).sum::<u16>();
|
log::debug!("zoom is now {zoom:#?}");
|
||||||
|
log::debug!("img_area is {img_area:#?}");
|
||||||
|
|
||||||
self.last_render.pages_shown = page_sizes.len();
|
if zoom.level < 0 {
|
||||||
|
img_area = Rect {
|
||||||
|
width: img_area
|
||||||
|
.width
|
||||||
|
.saturating_sub((zoom.level * 2).unsigned_abs())
|
||||||
|
.max(1),
|
||||||
|
x: img_area.x + (zoom.level.unsigned_abs().min(img_area.width / 2)),
|
||||||
|
..img_area
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let unused_width = img_area.width - total_width;
|
log::debug!("after adjustment, img_area is {img_area:#?}");
|
||||||
self.last_render.unused_width = unused_width;
|
|
||||||
img_area.x += unused_width / 2;
|
|
||||||
|
|
||||||
if let Some(total_height) = page_sizes.iter().map(|(_, h, _)| h).max() {
|
// Ugh I don't like this logic. I wish we could simplify it.
|
||||||
// This subtraction might sporadicly fail while shrinking the window.
|
let img_width = f32::from(cell_w);
|
||||||
if let Some(unused_height) = img_area.height.checked_sub(*total_height) {
|
let img_height = f32::from(cell_h);
|
||||||
img_area.y += unused_height / 2;
|
let img_area_width = f32::from(img_area.width);
|
||||||
}
|
let img_area_height = f32::from(img_area.height);
|
||||||
}
|
let available_to_real_width_ratio = img_area_width / img_width;
|
||||||
|
let available_to_real_height_ratio = img_area_height / img_height;
|
||||||
|
|
||||||
let to_display = page_sizes
|
let (new_cell_width, new_cell_height) =
|
||||||
.into_iter()
|
if available_to_real_width_ratio > available_to_real_height_ratio {
|
||||||
.enumerate()
|
(img_width, img_area_height / available_to_real_width_ratio)
|
||||||
.filter_map(|(idx, (width, _, img))| {
|
} else {
|
||||||
let maybe_img =
|
(img_area_width / available_to_real_height_ratio, img_height)
|
||||||
Self::render_single_page(frame, img, Rect { width, ..img_area });
|
};
|
||||||
img_area.x += width;
|
|
||||||
maybe_img.map(|(img, pos)| KittyReadyToDisplay {
|
log::debug!("new_cell stuff is {new_cell_width}x{new_cell_height}");
|
||||||
|
|
||||||
|
let width = (new_cell_width * f32::from(font_size.0)) as u32;
|
||||||
|
let height = (new_cell_height * f32::from(font_size.1)) as u32;
|
||||||
|
|
||||||
|
self.last_render = LastRender {
|
||||||
|
rect: size,
|
||||||
|
pages_shown: 1,
|
||||||
|
unused_width: 0
|
||||||
|
};
|
||||||
|
|
||||||
|
zoom.cell_pan_from_left = zoom
|
||||||
|
.cell_pan_from_left
|
||||||
|
.min(cell_w.saturating_sub(new_cell_width as u16));
|
||||||
|
zoom.cell_pan_from_top = zoom
|
||||||
|
.cell_pan_from_top
|
||||||
|
.min(cell_h.saturating_sub(new_cell_height as u16));
|
||||||
|
|
||||||
|
return KittyDisplay::DisplayImages(vec![KittyReadyToDisplay {
|
||||||
img,
|
img,
|
||||||
page_num: idx + self.page,
|
page_num: self.page,
|
||||||
pos,
|
pos: Position {
|
||||||
display_loc: DisplayLocation::default()
|
x: img_area.x,
|
||||||
})
|
y: img_area.y
|
||||||
|
},
|
||||||
|
display_loc: DisplayLocation {
|
||||||
|
x: u32::from(zoom.cell_pan_from_left) * u32::from(font_size.0),
|
||||||
|
y: u32::from(zoom.cell_pan_from_top) * u32::from(font_size.1),
|
||||||
|
width,
|
||||||
|
height,
|
||||||
|
columns: img_area.width,
|
||||||
|
rows: img_area.height,
|
||||||
|
..DisplayLocation::default()
|
||||||
|
}
|
||||||
|
}]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// here we calculate how many pages can fit in the available area.
|
||||||
|
let mut test_area_w = img_area.width;
|
||||||
|
// go through our pages, starting at the first one we want to view
|
||||||
|
let mut page_widths = self.rendered[self.page..]
|
||||||
|
.iter_mut()
|
||||||
|
// and get this to represent a count of how many we're looking at so far to render
|
||||||
|
.enumerate()
|
||||||
|
// and only take as many as are ready to be rendered
|
||||||
|
.take_while(|(idx, page)| {
|
||||||
|
let mut take = page.img.is_some();
|
||||||
|
if let Some(max) = self.page_constraints.max_wide {
|
||||||
|
take &= *idx < max.get();
|
||||||
|
}
|
||||||
|
take
|
||||||
|
})
|
||||||
|
// and map it to their width (in cells on the terminal, not pixels)
|
||||||
|
.filter_map(|(_, page)| page.img.as_mut().map(|img| (img.w_h().0, img)))
|
||||||
|
// and then take them as long as they won't overflow the available area.
|
||||||
|
.take_while(|(width, _)| match test_area_w.checked_sub(*width) {
|
||||||
|
Some(new_val) => {
|
||||||
|
test_area_w = new_val;
|
||||||
|
true
|
||||||
|
}
|
||||||
|
None => false
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
// we want to set this at the very end so it doesn't get set somewhere halfway through and
|
if self.page_constraints.r_to_l {
|
||||||
// then the whole diffing thing messes it up
|
page_widths.reverse();
|
||||||
self.last_render.rect = size;
|
}
|
||||||
|
|
||||||
KittyDisplay::DisplayImages(to_display)
|
if page_widths.is_empty() {
|
||||||
|
// If none are ready to render, just show the loading thing
|
||||||
|
Self::render_loading_in(frame, img_area);
|
||||||
|
KittyDisplay::ClearImages
|
||||||
|
} else {
|
||||||
|
execute!(stdout(), BeginSynchronizedUpdate).unwrap();
|
||||||
|
|
||||||
|
let total_width = page_widths.iter().map(|(w, _)| w).sum::<u16>();
|
||||||
|
|
||||||
|
self.last_render.pages_shown = page_widths.len();
|
||||||
|
|
||||||
|
let unused_width = img_area.width - total_width;
|
||||||
|
self.last_render.unused_width = unused_width;
|
||||||
|
img_area.x += unused_width / 2;
|
||||||
|
|
||||||
|
let to_display = page_widths
|
||||||
|
.into_iter()
|
||||||
|
.enumerate()
|
||||||
|
.filter_map(|(idx, (width, img))| {
|
||||||
|
let maybe_img =
|
||||||
|
Self::render_single_page(frame, img, Rect { width, ..img_area });
|
||||||
|
img_area.x += width;
|
||||||
|
maybe_img.map(|(img, pos)| KittyReadyToDisplay {
|
||||||
|
img,
|
||||||
|
page_num: idx + self.page,
|
||||||
|
pos,
|
||||||
|
display_loc: DisplayLocation::default()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
// we want to set this at the very end so it doesn't get set somewhere halfway through and
|
||||||
|
// then the whole diffing thing messes it up
|
||||||
|
self.last_render.rect = size;
|
||||||
|
|
||||||
|
KittyDisplay::DisplayImages(to_display)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -460,13 +365,12 @@ impl Tui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn render_loading_in(frame: &mut Frame<'_>, area: Rect) {
|
fn render_loading_in(frame: &mut Frame<'_>, area: Rect) {
|
||||||
const LOADING_STR: &str = "Loading...";
|
let loading_str = "Loading...";
|
||||||
let inner_space =
|
let inner_space = Layout::horizontal([Constraint::Length(loading_str.len() as u16)])
|
||||||
Layout::horizontal([Constraint::Length(const { LOADING_STR.len() as u16 })])
|
.flex(Flex::Center)
|
||||||
.flex(Flex::Center)
|
.split(area);
|
||||||
.split(area);
|
|
||||||
|
|
||||||
let loading_span = Span::styled(LOADING_STR, Style::new().fg(Color::Cyan));
|
let loading_span = Span::styled(loading_str, Style::new().fg(Color::Cyan));
|
||||||
|
|
||||||
frame.render_widget(loading_span, inner_space[0]);
|
frame.render_widget(loading_span, inner_space[0]);
|
||||||
}
|
}
|
||||||
@@ -495,8 +399,6 @@ impl Tui {
|
|||||||
PageChange::Prev => self.set_page(self.page.saturating_sub(diff))
|
PageChange::Prev => self.set_page(self.page.saturating_sub(diff))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Yes these conversions could wrap around if you have > isize::MAX pages, but we already
|
|
||||||
// decided that you deserve to suffer if you have more than u32::MAX pages, so that's fine.
|
|
||||||
match self.page as isize - old as isize {
|
match self.page as isize - old as isize {
|
||||||
0 => None,
|
0 => None,
|
||||||
_ => Some(InputAction::JumpingToPage(self.page))
|
_ => Some(InputAction::JumpingToPage(self.page))
|
||||||
@@ -630,11 +532,17 @@ impl Tui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn handle_event(&mut self, ev: &Event) -> Option<InputAction> {
|
pub fn handle_event(&mut self, ev: &Event) -> Option<InputAction> {
|
||||||
fn jump_to_page(page: &mut usize, rect: &mut Rect, new_page: usize) -> InputAction {
|
fn jump_to_page(
|
||||||
*page = new_page;
|
page: &mut usize,
|
||||||
// Make sure we re-render
|
rect: &mut Rect,
|
||||||
*rect = Rect::default();
|
new_page: Option<usize>
|
||||||
InputAction::JumpingToPage(new_page)
|
) -> Option<InputAction> {
|
||||||
|
new_page.map(|new_page| {
|
||||||
|
*page = new_page;
|
||||||
|
// Make sure we re-render
|
||||||
|
*rect = Rect::default();
|
||||||
|
InputAction::JumpingToPage(new_page)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
match ev {
|
match ev {
|
||||||
@@ -652,12 +560,6 @@ impl Tui {
|
|||||||
if let BottomMessage::Input(InputCommand::GoToPage(ref mut page)) =
|
if let BottomMessage::Input(InputCommand::GoToPage(ref mut page)) =
|
||||||
self.bottom_msg
|
self.bottom_msg
|
||||||
{
|
{
|
||||||
if c == 'g' && self.is_kitty {
|
|
||||||
self.update_zoom(|z| z.cell_pan_from_top = 0);
|
|
||||||
self.set_msg(MessageSetting::Pop);
|
|
||||||
return Some(InputAction::Redraw);
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.to_digit(10).map(|input_num| {
|
return c.to_digit(10).map(|input_num| {
|
||||||
*page = (*page * 10) + input_num as usize;
|
*page = (*page * 10) + input_num as usize;
|
||||||
InputAction::Redraw
|
InputAction::Redraw
|
||||||
@@ -691,38 +593,30 @@ impl Tui {
|
|||||||
'n' if self.page < self.rendered.len() - 1 => {
|
'n' if self.page < self.rendered.len() - 1 => {
|
||||||
// TODO: If we can't find one, then maybe like block until we've verified
|
// TODO: If we can't find one, then maybe like block until we've verified
|
||||||
// all the pages have been checked?
|
// all the pages have been checked?
|
||||||
self.rendered[(self.page + 1)..]
|
let next_page = self.rendered[(self.page + 1)..]
|
||||||
.iter()
|
.iter()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.find_map(|(idx, p)| {
|
.find_map(|(idx, p)| {
|
||||||
p.num_results
|
p.num_results
|
||||||
.is_some_and(|num| num > 0)
|
.is_some_and(|num| num > 0)
|
||||||
.then_some(self.page + 1 + idx)
|
.then_some(self.page + 1 + idx)
|
||||||
})
|
});
|
||||||
.map(|next_page| {
|
|
||||||
jump_to_page(
|
jump_to_page(&mut self.page, &mut self.last_render.rect, next_page)
|
||||||
&mut self.page,
|
}
|
||||||
&mut self.last_render.rect,
|
'N' if self.page > 0 => {
|
||||||
next_page
|
let prev_page = self.rendered[..(self.page)]
|
||||||
)
|
.iter()
|
||||||
})
|
.rev()
|
||||||
|
.enumerate()
|
||||||
|
.find_map(|(idx, p)| {
|
||||||
|
p.num_results
|
||||||
|
.is_some_and(|num| num > 0)
|
||||||
|
.then_some(self.page - (idx + 1))
|
||||||
|
});
|
||||||
|
|
||||||
|
jump_to_page(&mut self.page, &mut self.last_render.rect, prev_page)
|
||||||
}
|
}
|
||||||
'N' if self.page > 0 => self.rendered[..(self.page)]
|
|
||||||
.iter()
|
|
||||||
.rev()
|
|
||||||
.enumerate()
|
|
||||||
.find_map(|(idx, p)| {
|
|
||||||
p.num_results
|
|
||||||
.is_some_and(|num| num > 0)
|
|
||||||
.then_some(self.page - (idx + 1))
|
|
||||||
})
|
|
||||||
.map(|prev_page| {
|
|
||||||
jump_to_page(
|
|
||||||
&mut self.page,
|
|
||||||
&mut self.last_render.rect,
|
|
||||||
prev_page
|
|
||||||
)
|
|
||||||
}),
|
|
||||||
'z' if key.modifiers.contains(KeyModifiers::CONTROL) => {
|
'z' if key.modifiers.contains(KeyModifiers::CONTROL) => {
|
||||||
// [todo] better error handling here?
|
// [todo] better error handling here?
|
||||||
|
|
||||||
@@ -762,24 +656,23 @@ impl Tui {
|
|||||||
self.last_render.rect = Rect::default();
|
self.last_render.rect = Rect::default();
|
||||||
Some(InputAction::SwitchRenderZoom(f_or_f))
|
Some(InputAction::SwitchRenderZoom(f_or_f))
|
||||||
}
|
}
|
||||||
'o' if self.is_kitty =>
|
'o' if self.is_kitty => self.update_zoom(|z|
|
||||||
self.update_zoom(|z| z.level = z.level.saturating_add(1)),
|
// TODO: for now, we don't let people zoom in past fill-screen
|
||||||
|
z.level = z.level.saturating_add(1).min(0)),
|
||||||
'O' if self.is_kitty =>
|
'O' if self.is_kitty =>
|
||||||
self.update_zoom(|z| z.level = z.level.saturating_sub(1)),
|
self.update_zoom(|z| z.level = z.level.saturating_sub(1)),
|
||||||
'L' if self.is_kitty => self.update_zoom(|z| {
|
'L' if self.is_kitty => self.update_zoom(|z| {
|
||||||
z.cell_pan_from_left = z.cell_pan_from_left.saturating_add(1);
|
z.cell_pan_from_left = z.cell_pan_from_left.saturating_add(1)
|
||||||
}),
|
}),
|
||||||
'H' if self.is_kitty => self.update_zoom(|z| {
|
'H' if self.is_kitty => self.update_zoom(|z| {
|
||||||
z.cell_pan_from_left = z.cell_pan_from_left.saturating_sub(1);
|
z.cell_pan_from_left = z.cell_pan_from_left.saturating_sub(1)
|
||||||
}),
|
}),
|
||||||
'J' if self.is_kitty => self.update_zoom(|z| {
|
'J' if self.is_kitty => self.update_zoom(|z| {
|
||||||
z.cell_pan_from_top = z.cell_pan_from_top.saturating_add(1);
|
z.cell_pan_from_top = z.cell_pan_from_top.saturating_add(1)
|
||||||
}),
|
}),
|
||||||
'K' if self.is_kitty => self.update_zoom(|z| {
|
'K' if self.is_kitty => self.update_zoom(|z| {
|
||||||
z.cell_pan_from_top = z.cell_pan_from_top.saturating_sub(1);
|
z.cell_pan_from_top = z.cell_pan_from_top.saturating_sub(1)
|
||||||
}),
|
}),
|
||||||
'G' if self.is_kitty =>
|
|
||||||
self.update_zoom(|z| z.cell_pan_from_top = u16::MAX),
|
|
||||||
_ => None
|
_ => None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -793,11 +686,9 @@ impl Tui {
|
|||||||
None
|
None
|
||||||
}
|
}
|
||||||
KeyCode::Right => self.change_page(PageChange::Next, ChangeAmount::Single),
|
KeyCode::Right => self.change_page(PageChange::Next, ChangeAmount::Single),
|
||||||
KeyCode::Down | KeyCode::PageDown =>
|
KeyCode::Down => self.change_page(PageChange::Next, ChangeAmount::WholeScreen),
|
||||||
self.change_page(PageChange::Next, ChangeAmount::WholeScreen),
|
|
||||||
KeyCode::Left => self.change_page(PageChange::Prev, ChangeAmount::Single),
|
KeyCode::Left => self.change_page(PageChange::Prev, ChangeAmount::Single),
|
||||||
KeyCode::Up | KeyCode::PageUp =>
|
KeyCode::Up => self.change_page(PageChange::Prev, ChangeAmount::WholeScreen),
|
||||||
self.change_page(PageChange::Prev, ChangeAmount::WholeScreen),
|
|
||||||
KeyCode::Esc => match (self.showing_help_msg, &self.bottom_msg) {
|
KeyCode::Esc => match (self.showing_help_msg, &self.bottom_msg) {
|
||||||
(false, BottomMessage::Help) => Some(InputAction::QuitApp),
|
(false, BottomMessage::Help) => Some(InputAction::QuitApp),
|
||||||
_ => {
|
_ => {
|
||||||
@@ -896,11 +787,11 @@ impl Tui {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// I want this to always return an option 'cause I just use it to return from `Self::handle_event`
|
// I want this to always return 0 'cause I just use it to return from `Self::handle_event`]
|
||||||
#[expect(clippy::unnecessary_wraps)]
|
#[expect(clippy::unnecessary_wraps)]
|
||||||
fn update_zoom(&mut self, f: impl FnOnce(&mut Zoom)) -> Option<InputAction> {
|
fn update_zoom(&mut self, f: impl FnOnce(&mut Zoom)) -> Option<InputAction> {
|
||||||
if let Some(z) = &mut self.zoom {
|
if let Some(z) = &mut self.zoom {
|
||||||
f(z);
|
f(z)
|
||||||
}
|
}
|
||||||
self.last_render.rect = Rect::default();
|
self.last_render.rect = Rect::default();
|
||||||
Some(InputAction::Redraw)
|
Some(InputAction::Redraw)
|
||||||
@@ -956,24 +847,11 @@ impl Tui {
|
|||||||
.border_set(border::ROUNDED)
|
.border_set(border::ROUNDED)
|
||||||
.border_style(Color::Blue);
|
.border_style(Color::Blue);
|
||||||
|
|
||||||
let help_sections = [
|
let help_span = Paragraph::new(HELP_PAGE).wrap(Wrap { trim: false });
|
||||||
Text::from(HELP_PAGE),
|
|
||||||
// just some spacing
|
|
||||||
Text::from(""),
|
|
||||||
if self.is_kitty {
|
|
||||||
Text::from(KITTY_HELP)
|
|
||||||
} else {
|
|
||||||
Text::from("Not using kitty, kitty-specific keybindings hidden")
|
|
||||||
.style(Color::DarkGray)
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
let max_w: u16 = help_sections
|
let max_w: u16 = HELP_PAGE
|
||||||
.iter()
|
.lines()
|
||||||
.flat_map(|section| section.lines.as_slice())
|
.map(str::len)
|
||||||
// We don't really need full unicode-width since we're using all ascii for the help
|
|
||||||
// pages, but this is the function they give us.
|
|
||||||
.map(Line::width)
|
|
||||||
.max()
|
.max()
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
.try_into()
|
.try_into()
|
||||||
@@ -988,24 +866,15 @@ impl Tui {
|
|||||||
|
|
||||||
let block_area = Layout::vertical([
|
let block_area = Layout::vertical([
|
||||||
Constraint::Fill(1),
|
Constraint::Fill(1),
|
||||||
Constraint::Length(
|
Constraint::Length(u16::try_from(HELP_PAGE.lines().count()).unwrap() + 4),
|
||||||
u16::try_from(help_sections.iter().map(|s| s.lines.len()).sum::<usize>()).unwrap()
|
|
||||||
+ 4
|
|
||||||
),
|
|
||||||
Constraint::Fill(1)
|
Constraint::Fill(1)
|
||||||
])
|
])
|
||||||
.split(layout[1]);
|
.split(layout[1]);
|
||||||
|
|
||||||
let mut block_inner = block.inner(block_area[1]);
|
let block_inner = block.inner(block_area[1]);
|
||||||
|
|
||||||
frame.render_widget(block, block_area[1]);
|
frame.render_widget(block, block_area[1]);
|
||||||
|
frame.render_widget(help_span, block_inner);
|
||||||
for section in help_sections {
|
|
||||||
let section_lines = section.lines.len();
|
|
||||||
let span = Paragraph::new(section).wrap(Wrap { trim: false });
|
|
||||||
frame.render_widget(span, block_inner);
|
|
||||||
block_inner.y += u16::try_from(section_lines).unwrap();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1026,24 +895,18 @@ i:
|
|||||||
Invert colors
|
Invert colors
|
||||||
f:
|
f:
|
||||||
Remove borders/fullscreen
|
Remove borders/fullscreen
|
||||||
|
z (when using kitty protocol):
|
||||||
|
Toggle between fill-screen and fit-screen
|
||||||
|
o/O (when on fill-screen):
|
||||||
|
zoom in and out, respectively
|
||||||
|
H, J, K, L (when zoomed in):
|
||||||
|
pan direction around page
|
||||||
?:
|
?:
|
||||||
Show this page
|
Show this page
|
||||||
ctrl+z:
|
ctrl+z:
|
||||||
Suspend & background tdf \
|
Suspend & background tdf \
|
||||||
";
|
";
|
||||||
|
|
||||||
static KITTY_HELP: &str = "\
|
|
||||||
When using Kitty Protocol:
|
|
||||||
z:
|
|
||||||
Toggle between fill-screen and fit-screen
|
|
||||||
o/O (when on fill-screen):
|
|
||||||
Zoom in and out, respectively
|
|
||||||
gg/G (when on fill-screen):
|
|
||||||
Scroll to top/bottom of page
|
|
||||||
H, J, K, L (when zoomed in):
|
|
||||||
Pan direction around page
|
|
||||||
";
|
|
||||||
|
|
||||||
pub enum InputAction {
|
pub enum InputAction {
|
||||||
Redraw,
|
Redraw,
|
||||||
JumpingToPage(usize),
|
JumpingToPage(usize),
|
||||||
|
|||||||
Reference in New Issue
Block a user