File: gallery.c

package info (click to toggle)
swayimg 4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,776 kB
  • sloc: ansic: 13,527; cpp: 2,495; makefile: 9
file content (748 lines) | stat: -rw-r--r-- 20,505 bytes parent folder | download
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
// SPDX-License-Identifier: MIT
// Gallery mode.
// Copyright (C) 2024 Artem Senichev <artemsen@gmail.com>

#include "gallery.h"

#include "application.h"
#include "array.h"
#include "fs.h"
#include "imglist.h"
#include "info.h"
#include "layout.h"
#include "tpool.h"
#include "ui/ui.h"

#include <assert.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>

// Limits for thumbnail size
#define THIMB_SIZE_MIN 50
#define THIMB_SIZE_MAX 1000

static const char* aspect_names[] = {
    [aspect_fit] = "fit",
    [aspect_fill] = "fill",
    [aspect_keep] = "keep",
};

/** Gallery context. */
struct gallery {
    size_t cache; ///< Max number of thumbnails in cache
    bool preload; ///< Preload invisible thumbnails

    bool thumb_aa_en;      ///< Enable/disable anti-aliasing mode
    enum aa_mode thumb_aa; ///< Anti-aliasing mode

    enum thumb_aspect aspect; ///< Thumbnail aspect ratio (fit/fill/keep)
    bool thumb_pstore;        ///< Use persistent storage for thumbnails

    argb_t clr_window;     ///< Window background
    argb_t clr_background; ///< Tile background
    argb_t clr_select;     ///< Selected tile background
    argb_t clr_border;     ///< Selected tile border
    size_t border_width;   ///< Selected tile border size
    double selected_scale; ///< Selected tile scale

    struct layout layout; ///< Thumbnail layout

    struct keybind* kb; ///< Key bindings
};

/** Global gallery context. */
static struct gallery ctx;

/**
 * Get path for the thumbnail on persistent storage.
 * @param source original image source
 * @param path output buffer
 * @param path_max size of the buffer
 * @return length of the result path without last null
 */
static size_t pstore_path(const char* source, char* path, size_t path_max)
{
    char postfix[16];
    int postfix_len;
    size_t len;

    if (strcmp(source, LDRSRC_STDIN) == 0 ||
        strncmp(source, LDRSRC_EXEC, LDRSRC_EXEC_LEN) == 0) {
        return 0;
    }

    // get directory to store thumbnails
    len = fs_envpath("XDG_CACHE_HOME", "/swayimg", path, path_max);
    if (!len) {
        len = fs_envpath("HOME", "/.cache/swayimg", path, path_max);
    }
    if (!len) {
        return 0;
    }

    // append file name
    len = fs_append_path(source, path, path_max);
    if (!len) {
        return 0;
    }

    // append postfix
    postfix_len = snprintf(postfix, sizeof(postfix), ".%04x%d%d",
                           (uint16_t)ctx.layout.thumb_size, ctx.aspect,
                           ctx.thumb_aa_en ? ctx.thumb_aa : aa_nearest);
    if (postfix_len <= 0 || len + postfix_len + 1 >= path_max) {
        return 0;
    }

    memcpy(path + len, postfix, postfix_len + 1);
    len += postfix_len;

    return len;
}

/**
 * Save thumbnail on persistent storage.
 * @param img image with thumbnail to save
 */
void pstore_save(const struct image* img)
{
    char path[PATH_MAX] = { 0 };
    char* tmp;

    if (!image_thumb_get(img)) {
        return;
    }

    if (!pstore_path(img->source, path, sizeof(path))) {
        return;
    }

    // export thumbnail to file, exporting to png is slow so we use a temporary
    // file to prevent incomplete export from being used in other threads
    tmp = str_dup(path, NULL);
    if (tmp && str_append(".tmp", 0, &tmp)) {
        image_thumb_save(img, tmp);
        rename(tmp, path);
    } else {
        image_thumb_save(img, path);
    }
    free(tmp);
}

/**
 * Load thumbnail from persistent storage.
 * @param img image for loading thumbnail
 * @return true if thumbnail loaded
 */
bool pstore_load(struct image* img)
{
    char path[PATH_MAX] = { 0 };
    struct stat st_image;
    struct stat st_thumb;

    if (!pstore_path(img->source, path, sizeof(path))) {
        return false;
    }

    // check modification time
    if (stat(img->source, &st_image) == -1 || stat(path, &st_thumb) == -1 ||
        st_image.st_mtim.tv_sec > st_thumb.st_mtim.tv_sec) {
        return false;
    }

    return image_thumb_load(img, path);
}

/**
 * Remove non-visible thumbnails to save memory.
 * @param all remove even visible thumbnails
 */
static void clear_thumbnails(bool all)
{
    imglist_lock();

    if (all) {
        struct image* img = imglist_first();
        while (img) {
            image_free(img, IMGDATA_THUMB);
            img = imglist_next(img, false);
        }
    } else if (ctx.cache) {
        layout_update(&ctx.layout);
        layout_clear(&ctx.layout, ctx.cache);
    }

    imglist_unlock();
}

/**
 * Skip current image file.
 * @param remove flag to remove current image from the image list
 */
static void skip_current(bool remove)
{
    struct image* skip = ctx.layout.current;

    if (layout_select(&ctx.layout, layout_right) ||
        layout_select(&ctx.layout, layout_left)) {
        if (remove) {
            imglist_remove(skip);
        }
        ui_set_title(ctx.layout.current->name);
        app_redraw();
    } else {
        printf("No more images to view, exit\n");
        app_exit(0);
    }
}

/** Thumbnail cleaner as a task in thread pool. */
static void thumb_clear(__attribute__((unused)) void* data)
{
    clear_thumbnails(false);
}

/** Thumbnail loader as a task in thread pool. */
static void thumb_load(void* data)
{
    struct image* img = data;
    struct image* origin;

    // check if thumbnail already loaded by another thread
    imglist_lock();
    origin = imglist_find(img->source);
    if (!origin ||                 // removed
        image_thumb_get(origin) || // already loaded
        image_thumb_create(origin, ctx.layout.thumb_size, ctx.aspect,
                           ctx.thumb_aa_en ? ctx.thumb_aa : aa_nearest)) {
        imglist_unlock();
        app_redraw();
        return;
    }
    imglist_unlock();

    // try to load from persistent storage
    if (ctx.thumb_pstore) {
        pstore_load(img);
    }
    // load entire image and convert it to thumbnail
    if (!image_thumb_get(img) && image_load(img) == imgload_success) {
        if (image_thumb_create(img, ctx.layout.thumb_size, ctx.aspect,
                               ctx.thumb_aa_en ? ctx.thumb_aa : aa_nearest)) {
            if (ctx.thumb_pstore) {
                // save to thumbnail to persistent storage
                struct imgframe* frame = arr_nth(img->data->frames, 0);
                if (frame->pm.width > ctx.layout.thumb_size &&
                    frame->pm.height > ctx.layout.thumb_size) {
                    pstore_save(img);
                }
            }
        }
        image_free(img, IMGDATA_FRAMES); // not needed anymore
    }

    // put thumbnail to image list
    imglist_lock();
    origin = imglist_find(img->source);
    if (origin) {
        if (image_thumb_get(img)) {
            image_attach(origin, img);
        } else {
            // failed to load
            if (origin == ctx.layout.current) {
                skip_current(true);
            } else {
                imglist_remove(origin);
            }
        }
    }
    imglist_unlock();

    app_redraw();
}

/** Image instance deleter for task in thread pool. */
static void thumb_free(void* data)
{
    image_free(data, IMGDATA_SELF);
}

/** Recreate thumbnail load queue. */
static void thumb_requeue(void)
{
    struct image* queue;

    assert(imglist_is_locked());

    tpool_cancel();

    queue = layout_ldqueue(&ctx.layout, ctx.preload ? ctx.cache : 0);
    if (queue) {
        list_for_each(queue, struct image, it) {
            tpool_add_task(thumb_load, thumb_free, it);
        }
    }

    // add last task to limit stored thumbnails
    tpool_add_task(thumb_clear, NULL, NULL);
}

/**
 * Select next file.
 * @param direction next image position in list
 * @return true if next image was selected
 */
static bool select_next(enum action_type direction)
{
    bool rc = false;
    enum layout_dir dir;

    switch (direction) {
        case action_first_file:
            dir = layout_first;
            break;
        case action_last_file:
            dir = layout_last;
            break;
        case action_prev_file:
        case action_step_left:
            dir = layout_left;
            break;
        case action_next_file:
        case action_step_right:
            dir = layout_right;
            break;
        case action_step_up:
            dir = layout_up;
            break;
        case action_step_down:
            dir = layout_down;
            break;
        case action_page_up:
            dir = layout_pgup;
            break;
        case action_page_down:
            dir = layout_pgdown;
            break;
        default:
            assert(false && "unreachable code");
            return false;
    }

    imglist_lock();
    rc = layout_select(&ctx.layout, dir);
    if (rc) {
        thumb_requeue();
    }
    if (rc) {
        info_reset(ctx.layout.current);
    }
    ui_set_title(ctx.layout.current->name);
    info_update_index(info_index, ctx.layout.current->index, imglist_size());
    imglist_unlock();

    app_redraw();

    return rc;
}

/** Reload. */
static void reload(void)
{
    tpool_cancel();
    tpool_wait();
    clear_thumbnails(true);
    app_redraw();
}

/**
 * Switch antialiasing mode: handle "antialiasing" action.
 * @param params action parameter
 */
static void switch_antialiasing(const char* params)
{
    if (*params) {
        if (aa_from_name(params, &ctx.thumb_aa)) {
            info_update(info_status, "Anti-aliasing: %s", params);
        } else {
            info_update(info_status, "Invalid anti-aliasing: %s", params);
        }
    } else {
        ctx.thumb_aa_en = !ctx.thumb_aa_en;
        info_update(info_status, "Anti-aliasing: %s",
                    ctx.thumb_aa_en ? "ON" : "OFF");
    }
    reload();
}

/**
 * Set thumbnail size: handle "thumb" action.
 * @param params zoom action parameter
 */
static void thumb_resize(const char* params)
{
    bool valid;
    ssize_t size = ctx.layout.thumb_size;

    if (!params || !*params) {
        valid = false;
    } else if (params[0] == '+' || params[0] == '-') {
        // relative
        ssize_t delta;
        valid = str_to_num(params, 0, &delta, 0);
        if (valid) {
            size += delta;
        }
    } else {
        // absolute
        valid = str_to_num(params, 0, &size, 0);
    }

    if (!valid) {
        info_update(info_status, "Invalid thumb resize operation: %s", params);
        app_redraw();
        return;
    }

    if (size < THIMB_SIZE_MIN) {
        size = THIMB_SIZE_MIN;
    } else if (size > THIMB_SIZE_MAX) {
        size = THIMB_SIZE_MAX;
    }
    if (size != (ssize_t)ctx.layout.thumb_size) {
        imglist_lock();
        ctx.layout.thumb_size = size;
        layout_resize(&ctx.layout, ui_get_width(), ui_get_height());
        imglist_unlock();
        reload();
    }
}

/**
 * Draw thumbnail.
 * @param window destination window
 * @param thumb thumbnail description
 */
static void draw_thumbnail(struct pixmap* window,
                           const struct layout_thumb* lth)
{
    const bool selected = (lth == layout_current(&ctx.layout));
    const struct pixmap* pm = image_thumb_get(lth->img);

    // calculate tile position/size
    ssize_t tile_x = lth->x;
    ssize_t tile_y = lth->y;
    size_t tile_w = ctx.layout.thumb_size;
    size_t tile_h = ctx.layout.thumb_size;
    if (selected) {
        tile_w *= ctx.selected_scale;
        tile_h *= ctx.selected_scale;
        tile_x -= tile_w / 2 - ctx.layout.thumb_size / 2;
        tile_y -= tile_h / 2 - ctx.layout.thumb_size / 2;

        // prevent going beyond the window
        if (tile_x + tile_w + ctx.border_width > window->width) {
            tile_x = window->width - tile_w - ctx.border_width;
        }
        if (tile_x < (ssize_t)ctx.border_width) {
            tile_x = ctx.border_width;
        }
        if (tile_y + tile_h + ctx.border_width > window->height) {
            tile_y = window->height - tile_h - ctx.border_width;
        }
        if (tile_y < (ssize_t)ctx.border_width) {
            tile_y = ctx.border_width;
        }
    }

    // calculate thumbnail position/size
    ssize_t th_x = tile_x;
    ssize_t th_y = tile_y;
    size_t th_w = tile_w;
    size_t th_h = tile_h;
    if (pm && (ctx.aspect == aspect_keep || ctx.aspect == aspect_fit)) {
        th_w = pm->width;
        th_h = pm->height;
        if (selected) {
            th_w *= ctx.selected_scale;
            th_h *= ctx.selected_scale;
        }
        th_x += tile_w / 2 - th_w / 2;
        th_y += tile_h / 2 - th_h / 2;
    }

    // draw background
    const argb_t bkg_c = selected ? ctx.clr_select : ctx.clr_background;
    ssize_t bkg_x, bkg_y;
    size_t bkg_w, bkg_h;
    if (ctx.aspect == aspect_keep) {
        bkg_x = th_x;
        bkg_y = th_y;
        bkg_w = th_w;
        bkg_h = th_h;
    } else {
        bkg_x = tile_x;
        bkg_y = tile_y;
        bkg_w = tile_w;
        bkg_h = tile_h;
    }
    pixmap_fill(window, bkg_x, bkg_y, bkg_w, bkg_h, bkg_c);

    // draw thumbnail
    if (pm) {
        if (selected) {
            software_render(pm, window, th_x, th_y, ctx.selected_scale,
                            ctx.thumb_aa_en ? ctx.thumb_aa : aa_nearest, false);
        } else {
            pixmap_copy(pm, window, th_x, th_y);
        }
    }

    // draw border
    if (selected && ARGB_GET_A(ctx.clr_border) && ctx.border_width > 0) {
        const size_t border_x = bkg_x - ctx.border_width;
        const size_t border_y = bkg_y - ctx.border_width;
        const size_t border_w = bkg_w + ctx.border_width * 2;
        const size_t border_h = bkg_h + ctx.border_width * 2;
        pixmap_rect(window, border_x, border_y, border_w, border_h,
                    ctx.border_width, ctx.clr_border);
    }
}

/**
 * Draw thumbnails.
 * @param window destination window
 */
static void draw_thumbnails(struct pixmap* window)
{
    bool all_loaded = true;

    imglist_lock();
    layout_update(&ctx.layout);

    // draw all exclude the currently selected
    for (size_t i = 0; i < ctx.layout.thumb_total; ++i) {
        const struct layout_thumb* thumb = &ctx.layout.thumbs[i];
        all_loaded &= image_thumb_get(thumb->img) != NULL;
        if (thumb != layout_current(&ctx.layout)) {
            draw_thumbnail(window, thumb);
        }
    }
    // draw only currently selected
    draw_thumbnail(window, layout_current(&ctx.layout));

    if (!all_loaded) {
        thumb_requeue();
    }

    imglist_unlock();
}

/** Redraw window. */
static void redraw(void)
{
    struct pixmap* wnd = ui_draw_begin();
    if (wnd) {
        pixmap_fill(wnd, 0, 0, wnd->width, wnd->height, ctx.clr_window);
        draw_thumbnails(wnd);

        info_update_index(info_index, ctx.layout.current->index,
                          imglist_size());
        info_print(wnd);

        ui_draw_commit();
    }
}

/** Mode handler: window resize. */
static void on_resize(void)
{
    tpool_cancel();

    imglist_lock();
    layout_resize(&ctx.layout, ui_get_width(), ui_get_height());
    imglist_unlock();
}

/** Mode handler: apply action. */
static bool handle_action(const struct action* action)
{
    switch (action->type) {
        case action_antialiasing:
            switch_antialiasing(action->params);
            break;
        case action_first_file:
        case action_last_file:
        case action_prev_file:
        case action_next_file:
        case action_step_left:
        case action_step_right:
        case action_step_up:
        case action_step_down:
        case action_page_up:
        case action_page_down:
            select_next(action->type);
            break;
        case action_skip_file:
            imglist_lock();
            skip_current(true);
            imglist_unlock();
            break;
        case action_redraw:
            redraw();
            break;
        case action_reload:
            reload();
            break;
        case action_thumb:
            thumb_resize(action->params);
            break;
        default:
            return false;
    }
    return true;
}

/** Mode handler: mouse move. */
static void on_mouse_move(__attribute__((unused)) uint8_t mods,
                          __attribute__((unused)) uint32_t btn, size_t x,
                          size_t y, __attribute__((unused)) ssize_t dx,
                          __attribute__((unused)) ssize_t dy)
{
    if (layout_select_at(&ctx.layout, x, y)) {
        imglist_lock();
        layout_update(&ctx.layout);
        thumb_requeue();
        imglist_unlock();
        info_reset(ctx.layout.current);
        ui_set_title(ctx.layout.current->name);
        info_update_index(info_index, ctx.layout.current->index,
                          imglist_size());
        app_redraw();
    }
}

/** Mode handler: mouse click/scroll. */
static bool on_mouse_click(uint8_t mods, uint32_t btn, size_t x, size_t y)
{
    const struct keybind* kb = keybind_find(ctx.kb, MOUSE_TO_XKB(btn), mods);
    if (kb && kb->actions->type == action_mode) {
        if (layout_get_at(&ctx.layout, x, y)) {
            app_switch_mode(kb->actions->params);
        }
        return true;
    }
    return false;
}

/** Mode handler: image list update. */
static void on_imglist(struct image* image, enum fsevent event)
{
    switch (event) {
        case fsevent_create:
            break;
        case fsevent_modify:
            if (image == ctx.layout.current) {
                reload();
            }
            break;
        case fsevent_remove:
            if (image == ctx.layout.current) {
                skip_current(false);
            }
            break;
    }
    app_redraw();
}

/** Mode handler: get currently viewed image. */
static struct image* get_current(void)
{
    return ctx.layout.current;
}

/** Mode handler: get key bindings. */
static struct keybind* get_keybinds(void)
{
    return ctx.kb;
}

/** Mode handler: activate viewer. */
static void on_activate(struct image* image)
{
    imglist_lock();

    ctx.layout.current = image;
    layout_resize(&ctx.layout, ui_get_width(), ui_get_height());

    if (!image_thumb_get(image)) {
        image_thumb_create(image, ctx.layout.thumb_size, ctx.aspect,
                           ctx.thumb_aa_en ? ctx.thumb_aa : aa_nearest);
    }

    imglist_unlock();

    info_reset(image);
    info_update_index(info_index, ctx.layout.current->index, imglist_size());
    ui_set_title(ctx.layout.current->name);
    ui_set_ctype(false);
}

/** Mode handler: deactivate viewer. */
static void on_deactivate(void)
{
    tpool_cancel();
    tpool_wait();
}

void gallery_init(const struct config* cfg, struct mode* handlers)
{
    const struct config* section = config_section(cfg, CFG_GALLERY);

    const size_t ts = config_get_num(section, CFG_GLRY_SIZE, 1, 4096);
    const size_t ps = config_get_num(section, CFG_GLRY_PADDING, 0, 256);
    layout_init(&ctx.layout, ts, ps);

    ctx.cache = config_get_num(section, CFG_GLRY_CACHE, 0, SSIZE_MAX);
    ctx.preload = config_get_bool(section, CFG_GLRY_PRELOAD);

    ctx.thumb_aa_en = true;
    ctx.thumb_aa = aa_mks13;
    if (!aa_from_name(config_get(section, CFG_GLRY_AA), &ctx.thumb_aa)) {
        const char* def = config_get_default(section->name, CFG_GLRY_AA);
        aa_from_name(def, &ctx.thumb_aa);
        config_error_val(section->name, CFG_GLRY_AA);
    }

    ctx.aspect = config_get_oneof(section, CFG_GLRY_ASPECT, aspect_names,
                                  ARRAY_SIZE(aspect_names));
    ctx.thumb_pstore = config_get_bool(section, CFG_GLRY_PSTORE);

    ctx.clr_window = config_get_color(section, CFG_GLRY_WINDOW);
    ctx.clr_background = config_get_color(section, CFG_GLRY_BKG);
    ctx.clr_select = config_get_color(section, CFG_GLRY_SELECT);
    ctx.clr_border = config_get_color(section, CFG_GLRY_BRD_COLOR);
    ctx.border_width = config_get_num(section, CFG_GLRY_BRD_WIDTH, 0, 256);
    ctx.selected_scale =
        config_get_float(section, CFG_GLRY_SSCALE, 1.0f, 10.0f);

    // load key bindings
    ctx.kb = keybind_load(config_section(cfg, CFG_KEYS_GALLERY));

    handlers->on_activate = on_activate;
    handlers->on_deactivate = on_deactivate;
    handlers->on_resize = on_resize;
    handlers->on_mouse_move = on_mouse_move;
    handlers->on_mouse_click = on_mouse_click;
    handlers->on_imglist = on_imglist;
    handlers->handle_action = handle_action;
    handlers->get_current = get_current;
    handlers->get_keybinds = get_keybinds;
}

void gallery_destroy(void)
{
    keybind_free(ctx.kb);
}