mcat 0.5.6

Terminal image, video, and Markdown viewer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
use anyhow::{Context, Result};
use ignore::WalkBuilder;
use image::{DynamicImage, GenericImage, Rgba, RgbaImage};
use itertools::Itertools;
use rasteroid::{Encoder, term_misc};
use rasteroid::{RasterEncoder, term_misc::SizeDirection};
use rayon::prelude::*;
use std::io::Write;
use std::path::Path;

use tracing::{debug, info, warn};

use crate::mcat_file::{McatFile, McatKind};
use crate::{
    config::{McatConfig, SortMode},
    markdown_viewer::utils::string_len,
};

fn truncate_filename(name: &str, width: u16, lnk: &Path, create_hyprlink: bool) -> String {
    let width = width as usize;

    let osc8_start = if create_hyprlink {
        std::fs::canonicalize(lnk)
            .map(|abs_path| {
                let abs_path = abs_path.display().to_string();
                let abs_path = abs_path.strip_prefix(r"\\?\").unwrap_or(&abs_path);
                let abs_path = abs_path.replace("\\", "/");
                let uri = format!("file://{}", abs_path);
                format!("\x1b]8;;{}\x1b\\", uri)
            })
            .unwrap_or("".to_owned())
    } else {
        "".to_owned()
    };
    let osc8_end = if create_hyprlink {
        "\x1b]8;;\x1b\\"
    } else {
        ""
    };

    let le = string_len(name);
    if le <= width {
        let rem_space = width - le;
        let left_spaces = rem_space / 2;
        let right_spaces = rem_space - left_spaces;
        return format!(
            "{}{osc8_start}{}{osc8_end}{}",
            " ".repeat(left_spaces),
            name,
            " ".repeat(right_spaces)
        );
    }

    // sep base and ext
    let dot_pos = name.rfind('.'); // always a single byte so its fine
    let (base, ext) = match dot_pos {
        Some(pos) => {
            let (b, e) = name.split_at(pos);
            (b, format!(".{}", e))
        }
        None => (name, "".into()),
    };

    let ext_len = string_len(&ext);
    let base_len = string_len(base);

    // if even only the ext can't fit, why..
    if width <= ext_len {
        return if width >= ext_len {
            ext.to_string()
        } else {
            let truncated_ext: String = ext.chars().take(width).collect();
            truncated_ext
        };
    }

    let available_base_width = width - ext_len;

    let front_part = if available_base_width < base_len {
        &base.chars().take(available_base_width).collect::<String>()
    } else {
        base
    };

    format!("{osc8_start}{}{}{osc8_end}", front_part, ext)
}

fn calculate_items_per_row(terminal_width: u16, ctx: &McatConfig) -> Result<usize> {
    let wininfo = ctx
        .wininfo
        .as_ref()
        .context("this is likely a bug, wininfo isn't set at calculate_items_per_row")?;
    let min_item_width: u16 = wininfo.dim_to_cells(&ctx.ls_min_width, SizeDirection::Width)? as u16;
    let max_item_width: u16 = wininfo.dim_to_cells(&ctx.ls_max_width, SizeDirection::Width)? as u16;
    let max_items_per_row: usize = ctx.ls_items_per_row;

    let min_items = terminal_width.div_ceil(max_item_width) as usize;
    let max_items = (terminal_width / min_item_width) as usize;
    let mut items = min_items;
    items = items.min(max_items);
    items = items.min(max_items_per_row);
    Ok(items.max(1))
}

#[rustfmt::skip]
fn ext_to_svg(ext: &str) -> &'static str {
    if ext == "IAMADIR" {
        include_str!("../assets//folder.svg")
    } else if ext.is_empty() {
        include_str!("../assets/file.svg")
    } else if matches!(ext, 
        "codes" | "py" | "rs" | "js" | "ts" | "java" | "c" | "cpp" | "h" | "hpp" | 
        "go" | "php" | "rb" | "sh" | "pl" | "lua" | "swift" | "kt" | "kts" | 
        "scala" | "dart" | "elm" | "hs" | "ml" | "mli" | "r" | "f" | "f90" | 
        "cs" | "vb" | "asm" | "s" | "clj" | "cljs" | "edn" | "coffee" | "erl" | 
        "hrl" | "ex" | "exs" | "json" | "toml" | "yaml" | "yml" | "xml" | "html" | 
        "css" | "scss" | "less" | "vue" | "svelte" | "md" | "markdown" | "tex" | 
        "nim" | "zig" | "v" | "odin" | "d" | "sql" | "ps1" | "bash" | "zsh" | "fish"
    ) {
        include_str!("../assets/code.svg")
    } else if matches!(ext, 
        "conf" | "config" | "ini" | "cfg" | "cnf" | "properties" | "env" | 
        "gitconfig" | "gitignore" | "npmrc" | "yarnrc" | "editorconfig" | 
        "dockerignore" | "dockerfile" | "makefile" | "mk" | "nginx" | "apache" | 
        "htaccess" | "htpasswd" | "hosts" | "service" | "socket" | "timer" | 
        "mount" | "automount" | "swap" | "target" | "path" | "slice" | "sysctl" | 
        "tmpfiles" | "udev" | "logind" | "resolved" | "timesyncd" | "coredump" | 
        "journald" | "netdev" | "network" | "link" | "netctl" | "wpa" | "pacman" | 
        "mirrorlist" | "vconsole" | "locale" | "fstab" | "crypttab" | "grub" | 
        "syslinux" | "archlinux" | "inputrc" | "bashrc" | "bash_profile" | 
        "bash_logout" | "profile" | "zshenv" | "zshrc" | "zprofile" | "zlogin" | 
        "zlogout" | "fishrc" | "fish_variables" | "fish_config" | "fish_plugins" | 
        "fish_functions" | "fish_completions" | "fish_aliases" | "fish_abbreviations" | 
         "fish_user_init" | "fish_user_paths" | 
        "fish_user_variables" | "fish_user_functions" | "fish_user_completions" | 
        "fish_user_abbreviations" | "fish_user_aliases" | "fish_user_key_bindings"
    ) {
        include_str!("../assets/conf.svg")
    } else if matches!(ext,
        "zip" | "tar" | "gz" | "bz2" | "xz" | "zst" | "lz" | "lzma" | "lzo" | 
        "rz" | "sz" | "7z" | "rar" | "iso" | "dmg" | "pkg" | "deb" | "rpm" | 
        "crx" | "cab" | "msi" | "ar" | "cpio" | "shar" | "lbr" | "mar" | 
        "sbx" | "arc" | "wim" | "swm" | "esd" | "zipx" | "zoo" | "pak" | 
        "kgb" | "ace" | "alz" | "apk" | "arj" | "ba" | "bh" | "cfs" | 
        "cramfs" | "dar" | "dd" | "dgc" | "ear" | "gca" | "ha" | "hki" | 
        "ice" | "jar" | "lzh" | "lha" | "lzx" | "partimg" | "paq6" | 
        "paq7" | "paq8" | "pea" | "pim" | "pit" | "qda" | "rk" | "sda" | 
        "sea" | "sen" | "sfx" | "shk" | "sit" | "sitx" | "sqx" | "tar.Z" | 
        "uc" | "uc0" | "uc2" | "ucn" | "ur2" | "ue2" | "uca" | "uha" | 
        "war" |  "xar" | "xp3" | "yz1" | "zap" |  
        "zz"
    ) {
        include_str!("../assets/archive.svg")
    } else {
        include_str!("../assets/txt.svg")
    }
}

pub fn lsix(input: impl AsRef<str>, out: &mut impl Write, mut ctx: McatConfig) -> Result<()> {
    let dir_path = Path::new(input.as_ref());
    let walker = WalkBuilder::new(dir_path)
        .standard_filters(false)
        .hidden(!ctx.hidden)
        .max_depth(Some(1))
        .follow_links(true)
        .build();
    let encoder = ctx
        .encoder
        .context("this is likely a bug, encoder wasn't set at lsix")?;
    let wininfo = ctx
        .wininfo
        .as_ref()
        .context("this is likely a bug, wininfo wasn't set at lsix")?;

    let resize_for_ascii = encoder == RasterEncoder::Ascii;
    let items_per_row = calculate_items_per_row(wininfo.sc_width, &ctx)?;
    let x_padding = wininfo.dim_to_cells(&ctx.ls_x_padding, SizeDirection::Width)? as u16;
    let y_padding = wininfo.dim_to_cells(&ctx.ls_y_padding, SizeDirection::Height)? as u16;
    let width =
        (wininfo.sc_width as f32 / items_per_row as f32 + 0.1).round() as u16 - x_padding - 1;
    debug!(
        items_per_row,
        ?encoder,
        x_padding,
        y_padding,
        cell_width = width,
        resize_for_ascii,
        hidden = ctx.hidden,
        ?ctx.sort,
        reverse = ctx.reverse,
        hyprlink = ctx.hyprlink,
        "lsix layout"
    );
    let cell_px = wininfo.spx_width as f32 / wininfo.sc_width as f32;
    let img_px_width = (cell_px * width as f32).round() as u32;
    let px_x_padding = (cell_px * x_padding as f32).round() as u32;
    let width_formatted = format!("{img_px_width}px");
    ctx.img_width = width_formatted;
    ctx.img_height = ctx.ls_height.clone();

    // Collect all valid paths first
    let mut paths: Vec<_> = walker
        .filter_map(|entry| {
            let entry = entry.ok()?;
            let path = entry.path().to_path_buf();
            if path == dir_path {
                return None;
            }
            let filename = path
                .file_name()
                .unwrap_or_default()
                .to_string_lossy()
                .into_owned();
            if path.is_dir() {
                return Some((path, "IAMADIR".to_owned(), filename));
            }
            let ext = path
                .extension()
                .unwrap_or_default()
                .to_string_lossy()
                .to_lowercase();
            if ext.is_empty() && filename.contains(".") {
                return Some((path, filename.replace(".", ""), filename));
            }
            Some((path, ext, filename))
        })
        .collect();
    paths.sort_by(|a, b| {
        let a_is_dir = a.0.is_dir();
        let b_is_dir = b.0.is_dir();
        let base_dir_order = b_is_dir.cmp(&a_is_dir);
        let dir_order = if ctx.reverse {
            base_dir_order.reverse()
        } else {
            base_dir_order
        };

        match dir_order {
            std::cmp::Ordering::Equal => {
                let order = match ctx.sort {
                    SortMode::Name => {
                        let a_str = a.0.to_string_lossy().to_lowercase();
                        let b_str = b.0.to_string_lossy().to_lowercase();
                        a_str.cmp(&b_str)
                    }
                    SortMode::Size => {
                        let a_size = a.0.metadata().ok().map(|m| m.len()).unwrap_or(0);
                        let b_size = b.0.metadata().ok().map(|m| m.len()).unwrap_or(0);
                        a_size.cmp(&b_size)
                    }
                    SortMode::Time => {
                        let a_time = a.0.metadata().ok().and_then(|m| m.modified().ok());
                        let b_time = b.0.metadata().ok().and_then(|m| m.modified().ok());
                        a_time.cmp(&b_time)
                    }
                    SortMode::Type => {
                        let a_ext =
                            a.0.extension()
                                .and_then(|e| e.to_str())
                                .unwrap_or("")
                                .to_lowercase();
                        let b_ext =
                            b.0.extension()
                                .and_then(|e| e.to_str())
                                .unwrap_or("")
                                .to_lowercase();

                        match a_ext.cmp(&b_ext) {
                            std::cmp::Ordering::Equal => {
                                let a_str = a.0.to_string_lossy().to_lowercase();
                                let b_str = b.0.to_string_lossy().to_lowercase();
                                a_str.cmp(&b_str)
                            }
                            ext_order => ext_order,
                        }
                    }
                };

                if ctx.reverse { order.reverse() } else { order }
            }
            dir_order => dir_order,
        }
    });

    info!(dir = %dir_path.display(), entry_count = paths.len(), "listing directory");
    // Process images in parallel
    let images: Vec<_> = paths
        .into_par_iter()
        .filter_map(|(path, ext, filename)| {
            let (img, kind) = if path.is_dir() {
                (None, McatKind::PreMarkdown)
            } else {
                let mcat_file = match McatFile::from_path(&path) {
                    Ok(f) => f,
                    Err(e) => {
                        warn!(path = %path.display(), error = %e, "failed to read file");
                        return None;
                    }
                };
                let kind = mcat_file.kind.clone();
                let img = match kind {
                    McatKind::Gif
                    | McatKind::Image
                    | McatKind::Svg
                    | McatKind::Url
                    | McatKind::Exe
                    | McatKind::Pdf
                    | McatKind::JpegXL
                    | McatKind::Lnk => mcat_file.to_image(&ctx, true, true).ok(),
                    _ => None,
                };
                (img, kind)
            };

            match img {
                Some(img) => Some((img, filename, path)),
                None => {
                    let svg = if kind == McatKind::Video {
                        include_str!("../assets/video.svg")
                    } else {
                        ext_to_svg(&ext)
                    };
                    let new_file = match McatFile::from_bytes(svg.as_bytes().to_owned(), None, Some("svg".to_owned()), None) {
                        Ok(f) => f,
                        Err(e) => {
                            warn!(path = %path.display(), error = %e, "failed to create svg fallback");
                            return None;
                        }
                    };
                    let img = match new_file.to_image(&ctx, true, true) {
                        Ok(img) => img,
                        Err(e) => {
                            warn!(path = %path.display(), error = %e, "failed to render svg fallback");
                            return None;
                        }
                    };

                    Some((img, filename, path))
                }
            }
        })
        .collect();

    let mut buf = Vec::new();
    buf.write_all(b"\n")?;
    for chunk in &images.into_iter().chunks(items_per_row as usize) {
        let items: Vec<_> = chunk.collect();
        let images: Vec<DynamicImage> = items.iter().map(|f| f.0.clone()).collect();
        let image = combine_images_into_row(
            images,
            if resize_for_ascii {
                x_padding as u32
            } else {
                px_x_padding
            },
        )?;
        let height = wininfo.dim_to_cells(&ctx.ls_height, SizeDirection::Height)?;
        term_misc::ensure_space(&mut buf, height as u16)?;
        // windows for some reason doesn't handle newlines as expected..
        if cfg!(windows) {
            buf.write_all(b"\x1b[s")?;
        }
        encoder.encode_image(&image, &mut buf, wininfo, None, None)?;
        if cfg!(windows) {
            buf.write_all(format!("\x1b[u\x1b[{height}B").as_bytes())?;
        }
        let names: Vec<String> = items
            .iter()
            .map(|f| truncate_filename(&f.1, width, &f.2, ctx.hyprlink))
            .collect();
        let pad_x = " ".repeat(x_padding as usize);
        let pad_y = "\n".repeat(y_padding as usize);
        let names_combined = names.join(&pad_x);
        write!(buf, "\n{pad_x}{names_combined}{pad_x}{pad_y}")?;
    }

    out.write_all(&buf)?;
    out.flush()?;
    Ok(())
}

fn combine_images_into_row(images: Vec<DynamicImage>, padding: u32) -> Result<DynamicImage> {
    let background = Rgba([0, 0, 0, 0]);
    if images.is_empty() {
        return Ok(DynamicImage::new_rgba8(1, 1));
    }

    let max_height = images.iter().map(|img| img.height()).max().unwrap_or(0);
    let total_image_width: u32 = images.iter().map(|img| img.width()).sum();

    // Total width = left padding + images + padding between images
    let total_width = padding + total_image_width + padding * (images.len() as u32 - 1);
    let mut output = RgbaImage::from_pixel(total_width, max_height, background);

    let mut x_offset = padding;
    for img in images {
        let img_height = img.height();
        let y_offset = (max_height - img_height) / 2;
        output.copy_from(&img, x_offset, y_offset)?;
        x_offset += img.width() + padding;
    }

    Ok(DynamicImage::ImageRgba8(output))
}