[BACK]Return to window.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/window.c, Revision 1.266

1.266   ! nicm        1: /* $OpenBSD: window.c,v 1.265 2020/06/05 11:20:51 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.156     nicm        4:  * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #include <sys/types.h>
1.162     nicm       20: #include <sys/ioctl.h>
1.1       nicm       21:
1.236     nicm       22: #include <ctype.h>
1.1       nicm       23: #include <errno.h>
                     24: #include <fcntl.h>
1.5       nicm       25: #include <fnmatch.h>
1.232     nicm       26: #include <regex.h>
1.203     nicm       27: #include <signal.h>
1.1       nicm       28: #include <stdint.h>
                     29: #include <stdlib.h>
                     30: #include <string.h>
1.163     nicm       31: #include <time.h>
1.1       nicm       32: #include <unistd.h>
                     33: #include <util.h>
1.198     nicm       34: #include <vis.h>
1.1       nicm       35:
                     36: #include "tmux.h"
                     37:
                     38: /*
1.14      nicm       39:  * Each window is attached to a number of panes, each of which is a pty. This
1.1       nicm       40:  * file contains code to handle them.
                     41:  *
                     42:  * A pane has two buffers attached, these are filled and emptied by the main
                     43:  * server poll loop. Output data is received from pty's in screen format,
                     44:  * translated and returned as a series of escape sequences and strings via
                     45:  * input_parse (in input.c). Input data is received as key codes and written
                     46:  * directly via input_key.
                     47:  *
                     48:  * Each pane also has a "virtual" screen (screen.c) which contains the current
                     49:  * state and is redisplayed when the window is reattached to a client.
                     50:  *
                     51:  * Windows are stored directly on a global array and wrapped in any number of
                     52:  * winlink structs to be linked onto local session RB trees. A reference count
                     53:  * is maintained and a window removed from the global list and destroyed when
                     54:  * it reaches zero.
                     55:  */
1.124     nicm       56:
1.1       nicm       57: /* Global window list. */
                     58: struct windows windows;
                     59:
1.64      nicm       60: /* Global panes tree. */
                     61: struct window_pane_tree all_window_panes;
1.166     nicm       62: static u_int   next_window_pane_id;
                     63: static u_int   next_window_id;
                     64: static u_int   next_active_point;
1.222     nicm       65:
                     66: /* List of window modes. */
                     67: const struct window_mode *all_window_modes[] = {
                     68:        &window_buffer_mode,
                     69:        &window_client_mode,
                     70:        &window_clock_mode,
                     71:        &window_copy_mode,
                     72:        &window_tree_mode,
                     73:        &window_view_mode,
                     74:        NULL
                     75: };
1.37      nicm       76:
1.228     nicm       77: struct window_pane_input_data {
                     78:        struct cmdq_item        *item;
                     79:        u_int                    wp;
                     80: };
                     81:
1.169     nicm       82: static struct window_pane *window_pane_create(struct window *, u_int, u_int,
                     83:                    u_int);
                     84: static void    window_pane_destroy(struct window_pane *);
                     85:
1.122     nicm       86: RB_GENERATE(windows, window, entry, window_cmp);
1.169     nicm       87: RB_GENERATE(winlinks, winlink, entry, winlink_cmp);
                     88: RB_GENERATE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
1.122     nicm       89:
                     90: int
                     91: window_cmp(struct window *w1, struct window *w2)
                     92: {
                     93:        return (w1->id - w2->id);
                     94: }
                     95:
1.1       nicm       96: int
                     97: winlink_cmp(struct winlink *wl1, struct winlink *wl2)
                     98: {
                     99:        return (wl1->idx - wl2->idx);
1.12      nicm      100: }
                    101:
1.64      nicm      102: int
                    103: window_pane_cmp(struct window_pane *wp1, struct window_pane *wp2)
                    104: {
                    105:        return (wp1->id - wp2->id);
                    106: }
                    107:
1.12      nicm      108: struct winlink *
                    109: winlink_find_by_window(struct winlinks *wwl, struct window *w)
                    110: {
                    111:        struct winlink  *wl;
                    112:
                    113:        RB_FOREACH(wl, winlinks, wwl) {
                    114:                if (wl->window == w)
                    115:                        return (wl);
                    116:        }
                    117:
                    118:        return (NULL);
1.1       nicm      119: }
                    120:
                    121: struct winlink *
                    122: winlink_find_by_index(struct winlinks *wwl, int idx)
                    123: {
                    124:        struct winlink  wl;
                    125:
                    126:        if (idx < 0)
                    127:                fatalx("bad index");
                    128:
                    129:        wl.idx = idx;
                    130:        return (RB_FIND(winlinks, wwl, &wl));
                    131: }
                    132:
1.71      nicm      133: struct winlink *
                    134: winlink_find_by_window_id(struct winlinks *wwl, u_int id)
                    135: {
                    136:        struct winlink *wl;
                    137:
                    138:        RB_FOREACH(wl, winlinks, wwl) {
                    139:                if (wl->window->id == id)
                    140:                        return (wl);
                    141:        }
1.78      nicm      142:        return (NULL);
1.71      nicm      143: }
                    144:
1.169     nicm      145: static int
1.22      nicm      146: winlink_next_index(struct winlinks *wwl, int idx)
1.1       nicm      147: {
1.22      nicm      148:        int     i;
1.1       nicm      149:
1.22      nicm      150:        i = idx;
                    151:        do {
1.1       nicm      152:                if (winlink_find_by_index(wwl, i) == NULL)
                    153:                        return (i);
1.22      nicm      154:                if (i == INT_MAX)
                    155:                        i = 0;
                    156:                else
                    157:                        i++;
                    158:        } while (i != idx);
                    159:        return (-1);
1.1       nicm      160: }
                    161:
                    162: u_int
                    163: winlink_count(struct winlinks *wwl)
                    164: {
                    165:        struct winlink  *wl;
                    166:        u_int            n;
                    167:
                    168:        n = 0;
                    169:        RB_FOREACH(wl, winlinks, wwl)
                    170:                n++;
                    171:
                    172:        return (n);
                    173: }
                    174:
                    175: struct winlink *
1.63      nicm      176: winlink_add(struct winlinks *wwl, int idx)
1.1       nicm      177: {
                    178:        struct winlink  *wl;
                    179:
1.22      nicm      180:        if (idx < 0) {
                    181:                if ((idx = winlink_next_index(wwl, -idx - 1)) == -1)
                    182:                        return (NULL);
                    183:        } else if (winlink_find_by_index(wwl, idx) != NULL)
1.1       nicm      184:                return (NULL);
                    185:
                    186:        wl = xcalloc(1, sizeof *wl);
                    187:        wl->idx = idx;
                    188:        RB_INSERT(winlinks, wwl, wl);
                    189:
1.63      nicm      190:        return (wl);
                    191: }
                    192:
                    193: void
                    194: winlink_set_window(struct winlink *wl, struct window *w)
                    195: {
1.174     nicm      196:        if (wl->window != NULL) {
                    197:                TAILQ_REMOVE(&wl->window->winlinks, wl, wentry);
1.192     nicm      198:                window_remove_ref(wl->window, __func__);
1.174     nicm      199:        }
                    200:        TAILQ_INSERT_TAIL(&w->winlinks, wl, wentry);
1.63      nicm      201:        wl->window = w;
1.192     nicm      202:        window_add_ref(w, __func__);
1.1       nicm      203: }
                    204:
                    205: void
                    206: winlink_remove(struct winlinks *wwl, struct winlink *wl)
                    207: {
                    208:        struct window   *w = wl->window;
                    209:
1.174     nicm      210:        if (w != NULL) {
                    211:                TAILQ_REMOVE(&w->winlinks, wl, wentry);
1.192     nicm      212:                window_remove_ref(w, __func__);
1.174     nicm      213:        }
                    214:
1.1       nicm      215:        RB_REMOVE(winlinks, wwl, wl);
1.82      nicm      216:        free(wl);
1.1       nicm      217: }
                    218:
                    219: struct winlink *
1.41      nicm      220: winlink_next(struct winlink *wl)
1.1       nicm      221: {
                    222:        return (RB_NEXT(winlinks, wwl, wl));
                    223: }
                    224:
                    225: struct winlink *
1.41      nicm      226: winlink_previous(struct winlink *wl)
1.1       nicm      227: {
                    228:        return (RB_PREV(winlinks, wwl, wl));
1.52      nicm      229: }
                    230:
                    231: struct winlink *
1.53      nicm      232: winlink_next_by_number(struct winlink *wl, struct session *s, int n)
1.52      nicm      233: {
                    234:        for (; n > 0; n--) {
                    235:                if ((wl = RB_NEXT(winlinks, wwl, wl)) == NULL)
1.53      nicm      236:                        wl = RB_MIN(winlinks, &s->windows);
1.52      nicm      237:        }
                    238:
                    239:        return (wl);
                    240: }
                    241:
                    242: struct winlink *
1.53      nicm      243: winlink_previous_by_number(struct winlink *wl, struct session *s, int n)
1.52      nicm      244: {
                    245:        for (; n > 0; n--) {
                    246:                if ((wl = RB_PREV(winlinks, wwl, wl)) == NULL)
1.53      nicm      247:                        wl = RB_MAX(winlinks, &s->windows);
1.52      nicm      248:        }
                    249:
                    250:        return (wl);
1.1       nicm      251: }
                    252:
                    253: void
                    254: winlink_stack_push(struct winlink_stack *stack, struct winlink *wl)
                    255: {
                    256:        if (wl == NULL)
                    257:                return;
                    258:
                    259:        winlink_stack_remove(stack, wl);
1.28      nicm      260:        TAILQ_INSERT_HEAD(stack, wl, sentry);
1.1       nicm      261: }
                    262:
                    263: void
                    264: winlink_stack_remove(struct winlink_stack *stack, struct winlink *wl)
                    265: {
                    266:        struct winlink  *wl2;
                    267:
                    268:        if (wl == NULL)
                    269:                return;
1.42      nicm      270:
1.28      nicm      271:        TAILQ_FOREACH(wl2, stack, sentry) {
1.1       nicm      272:                if (wl2 == wl) {
1.28      nicm      273:                        TAILQ_REMOVE(stack, wl, sentry);
1.1       nicm      274:                        return;
                    275:                }
                    276:        }
                    277: }
                    278:
                    279: struct window *
1.125     nicm      280: window_find_by_id_str(const char *s)
1.123     nicm      281: {
                    282:        const char      *errstr;
                    283:        u_int            id;
                    284:
                    285:        if (*s != '@')
                    286:                return (NULL);
                    287:
                    288:        id = strtonum(s + 1, 0, UINT_MAX, &errstr);
                    289:        if (errstr != NULL)
                    290:                return (NULL);
                    291:        return (window_find_by_id(id));
                    292: }
                    293:
                    294: struct window *
1.71      nicm      295: window_find_by_id(u_int id)
                    296: {
1.122     nicm      297:        struct window   w;
1.71      nicm      298:
1.122     nicm      299:        w.id = id;
                    300:        return (RB_FIND(windows, &windows, &w));
1.71      nicm      301: }
                    302:
1.143     nicm      303: void
                    304: window_update_activity(struct window *w)
                    305: {
                    306:        gettimeofday(&w->activity_time, NULL);
                    307:        alerts_queue(w, WINDOW_ACTIVITY);
                    308: }
                    309:
1.71      nicm      310: struct window *
1.245     nicm      311: window_create(u_int sx, u_int sy, u_int xpixel, u_int ypixel)
1.1       nicm      312: {
                    313:        struct window   *w;
                    314:
1.245     nicm      315:        if (xpixel == 0)
                    316:                xpixel = DEFAULT_XPIXEL;
                    317:        if (ypixel == 0)
                    318:                ypixel = DEFAULT_YPIXEL;
                    319:
1.38      nicm      320:        w = xcalloc(1, sizeof *w);
1.244     nicm      321:        w->name = xstrdup("");
1.234     nicm      322:        w->flags = 0;
1.1       nicm      323:
                    324:        TAILQ_INIT(&w->panes);
                    325:        w->active = NULL;
1.14      nicm      326:
1.17      nicm      327:        w->lastlayout = -1;
1.14      nicm      328:        w->layout_root = NULL;
1.42      nicm      329:
1.1       nicm      330:        w->sx = sx;
                    331:        w->sy = sy;
1.245     nicm      332:        w->xpixel = xpixel;
                    333:        w->ypixel = ypixel;
1.133     nicm      334:
1.146     nicm      335:        w->options = options_create(global_w_options);
1.1       nicm      336:
                    337:        w->references = 0;
1.174     nicm      338:        TAILQ_INIT(&w->winlinks);
1.1       nicm      339:
1.122     nicm      340:        w->id = next_window_id++;
1.129     nicm      341:        RB_INSERT(windows, &windows, w);
1.122     nicm      342:
1.143     nicm      343:        window_update_activity(w);
                    344:
1.1       nicm      345:        return (w);
                    346: }
                    347:
1.240     nicm      348: static void
1.1       nicm      349: window_destroy(struct window *w)
                    350: {
1.192     nicm      351:        log_debug("window @%u destroyed (%d references)", w->id, w->references);
1.174     nicm      352:
1.122     nicm      353:        RB_REMOVE(windows, &windows, w);
1.1       nicm      354:
1.14      nicm      355:        if (w->layout_root != NULL)
1.135     nicm      356:                layout_free_cell(w->layout_root);
                    357:        if (w->saved_layout_root != NULL)
                    358:                layout_free_cell(w->saved_layout_root);
1.127     nicm      359:        free(w->old_layout);
1.139     nicm      360:
1.227     nicm      361:        window_destroy_panes(w);
                    362:
1.141     nicm      363:        if (event_initialized(&w->name_event))
                    364:                evtimer_del(&w->name_event);
1.38      nicm      365:
1.143     nicm      366:        if (event_initialized(&w->alerts_timer))
                    367:                evtimer_del(&w->alerts_timer);
1.213     nicm      368:        if (event_initialized(&w->offset_timer))
                    369:                event_del(&w->offset_timer);
1.143     nicm      370:
1.146     nicm      371:        options_free(w->options);
1.1       nicm      372:
1.82      nicm      373:        free(w->name);
                    374:        free(w);
1.84      nicm      375: }
                    376:
1.200     nicm      377: int
                    378: window_pane_destroy_ready(struct window_pane *wp)
                    379: {
1.201     nicm      380:        int     n;
                    381:
                    382:        if (wp->pipe_fd != -1) {
                    383:                if (EVBUFFER_LENGTH(wp->pipe_event->output) != 0)
                    384:                        return (0);
                    385:                if (ioctl(wp->fd, FIONREAD, &n) != -1 && n > 0)
                    386:                        return (0);
                    387:        }
1.200     nicm      388:
                    389:        if (~wp->flags & PANE_EXITED)
                    390:                return (0);
                    391:        return (1);
                    392: }
                    393:
1.84      nicm      394: void
1.192     nicm      395: window_add_ref(struct window *w, const char *from)
                    396: {
                    397:        w->references++;
                    398:        log_debug("%s: @%u %s, now %d", __func__, w->id, from, w->references);
                    399: }
                    400:
                    401: void
                    402: window_remove_ref(struct window *w, const char *from)
1.84      nicm      403: {
                    404:        w->references--;
1.192     nicm      405:        log_debug("%s: @%u %s, now %d", __func__, w->id, from, w->references);
                    406:
1.84      nicm      407:        if (w->references == 0)
                    408:                window_destroy(w);
1.72      nicm      409: }
                    410:
                    411: void
                    412: window_set_name(struct window *w, const char *new_name)
                    413: {
1.82      nicm      414:        free(w->name);
1.198     nicm      415:        utf8_stravis(&w->name, new_name, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);
1.172     nicm      416:        notify_window("window-renamed", w);
1.1       nicm      417: }
                    418:
1.15      nicm      419: void
1.245     nicm      420: window_resize(struct window *w, u_int sx, u_int sy, int xpixel, int ypixel)
1.1       nicm      421: {
1.245     nicm      422:        if (xpixel == 0)
                    423:                xpixel = DEFAULT_XPIXEL;
                    424:        if (ypixel == 0)
                    425:                ypixel = DEFAULT_YPIXEL;
                    426:
                    427:        log_debug("%s: @%u resize %ux%u (%ux%u)", __func__, w->id, sx, sy,
1.249     nicm      428:            xpixel == -1 ? w->xpixel : (u_int)xpixel,
                    429:            ypixel == -1 ? w->ypixel : (u_int)ypixel);
1.1       nicm      430:        w->sx = sx;
                    431:        w->sy = sy;
1.245     nicm      432:        if (xpixel != -1)
                    433:                w->xpixel = xpixel;
                    434:        if (ypixel != -1)
                    435:                w->ypixel = ypixel;
                    436: }
                    437:
                    438: void
1.265     nicm      439: window_pane_send_resize(struct window_pane *wp, int force)
1.245     nicm      440: {
                    441:        struct window   *w = wp->window;
                    442:        struct winsize   ws;
1.265     nicm      443:        u_int            sy;
1.245     nicm      444:
                    445:        if (wp->fd == -1)
                    446:                return;
1.265     nicm      447:
                    448:        if (!force)
                    449:                sy = wp->sy;
                    450:        else if (wp->sy <= 1)
                    451:                sy = wp->sy + 1;
                    452:        else
                    453:                sy = wp->sy - 1;
1.262     nicm      454:        log_debug("%s: %%%u resize to %u,%u", __func__, wp->id, wp->sx, sy);
1.245     nicm      455:
                    456:        memset(&ws, 0, sizeof ws);
                    457:        ws.ws_col = wp->sx;
1.262     nicm      458:        ws.ws_row = sy;
1.245     nicm      459:        ws.ws_xpixel = w->xpixel * ws.ws_col;
                    460:        ws.ws_ypixel = w->ypixel * ws.ws_row;
                    461:        if (ioctl(wp->fd, TIOCSWINSZ, &ws) == -1)
                    462:                fatal("ioctl failed");
1.1       nicm      463: }
                    464:
1.114     nicm      465: int
1.118     nicm      466: window_has_pane(struct window *w, struct window_pane *wp)
                    467: {
                    468:        struct window_pane      *wp1;
                    469:
                    470:        TAILQ_FOREACH(wp1, &w->panes, entry) {
                    471:                if (wp1 == wp)
                    472:                        return (1);
                    473:        }
                    474:        return (0);
                    475: }
                    476:
                    477: int
1.226     nicm      478: window_set_active_pane(struct window *w, struct window_pane *wp, int notify)
1.1       nicm      479: {
1.226     nicm      480:        log_debug("%s: pane %%%u", __func__, wp->id);
                    481:
1.59      nicm      482:        if (wp == w->active)
1.114     nicm      483:                return (0);
1.58      nicm      484:        w->last = w->active;
1.226     nicm      485:
1.1       nicm      486:        w->active = wp;
1.109     nicm      487:        w->active->active_point = next_active_point++;
1.136     nicm      488:        w->active->flags |= PANE_CHANGED;
1.226     nicm      489:
1.213     nicm      490:        tty_update_window_offset(w);
1.226     nicm      491:
                    492:        if (notify)
                    493:                notify_window("window-pane-changed", w);
1.114     nicm      494:        return (1);
1.145     nicm      495: }
                    496:
                    497: void
                    498: window_redraw_active_switch(struct window *w, struct window_pane *wp)
                    499: {
1.258     nicm      500:        struct grid_cell        *gc1, *gc2;
                    501:        int                      c1, c2;
1.145     nicm      502:
                    503:        if (wp == w->active)
                    504:                return;
                    505:
1.234     nicm      506:        for (;;) {
                    507:                /*
                    508:                 * If the active and inactive styles or palettes are different,
                    509:                 * need to redraw the panes.
                    510:                 */
1.258     nicm      511:                gc1 = &wp->cached_gc;
                    512:                gc2 = &wp->cached_active_gc;
                    513:                if (!grid_cells_look_equal(gc1, gc2))
1.234     nicm      514:                        wp->flags |= PANE_REDRAW;
                    515:                else {
1.258     nicm      516:                        c1 = window_pane_get_palette(wp, gc1->fg);
                    517:                        c2 = window_pane_get_palette(wp, gc2->fg);
1.234     nicm      518:                        if (c1 != c2)
                    519:                                wp->flags |= PANE_REDRAW;
                    520:                        else {
1.258     nicm      521:                                c1 = window_pane_get_palette(wp, gc1->bg);
                    522:                                c2 = window_pane_get_palette(wp, gc2->bg);
1.234     nicm      523:                                if (c1 != c2)
                    524:                                        wp->flags |= PANE_REDRAW;
                    525:                        }
                    526:                }
                    527:                if (wp == w->active)
                    528:                        break;
                    529:                wp = w->active;
                    530:        }
1.29      nicm      531: }
                    532:
1.66      nicm      533: struct window_pane *
                    534: window_get_active_at(struct window *w, u_int x, u_int y)
1.29      nicm      535: {
                    536:        struct window_pane      *wp;
                    537:
                    538:        TAILQ_FOREACH(wp, &w->panes, entry) {
1.219     nicm      539:                if (!window_pane_visible(wp))
                    540:                        continue;
1.66      nicm      541:                if (x < wp->xoff || x > wp->xoff + wp->sx)
1.29      nicm      542:                        continue;
1.66      nicm      543:                if (y < wp->yoff || y > wp->yoff + wp->sy)
1.29      nicm      544:                        continue;
1.66      nicm      545:                return (wp);
                    546:        }
                    547:        return (NULL);
                    548: }
                    549:
                    550: struct window_pane *
                    551: window_find_string(struct window *w, const char *s)
                    552: {
1.248     nicm      553:        u_int   x, y, top = 0, bottom = w->sy - 1;
                    554:        int     status;
1.66      nicm      555:
                    556:        x = w->sx / 2;
                    557:        y = w->sy / 2;
                    558:
1.248     nicm      559:        status = options_get_number(w->options, "pane-border-status");
                    560:        if (status == PANE_STATUS_TOP)
                    561:                top++;
                    562:        else if (status == PANE_STATUS_BOTTOM)
                    563:                bottom--;
                    564:
1.66      nicm      565:        if (strcasecmp(s, "top") == 0)
1.248     nicm      566:                y = top;
1.66      nicm      567:        else if (strcasecmp(s, "bottom") == 0)
1.248     nicm      568:                y = bottom;
1.66      nicm      569:        else if (strcasecmp(s, "left") == 0)
                    570:                x = 0;
                    571:        else if (strcasecmp(s, "right") == 0)
                    572:                x = w->sx - 1;
                    573:        else if (strcasecmp(s, "top-left") == 0) {
                    574:                x = 0;
1.248     nicm      575:                y = top;
1.66      nicm      576:        } else if (strcasecmp(s, "top-right") == 0) {
                    577:                x = w->sx - 1;
1.248     nicm      578:                y = top;
1.66      nicm      579:        } else if (strcasecmp(s, "bottom-left") == 0) {
                    580:                x = 0;
1.248     nicm      581:                y = bottom;
1.66      nicm      582:        } else if (strcasecmp(s, "bottom-right") == 0) {
                    583:                x = w->sx - 1;
1.248     nicm      584:                y = bottom;
1.66      nicm      585:        } else
                    586:                return (NULL);
                    587:
                    588:        return (window_get_active_at(w, x, y));
1.1       nicm      589: }
                    590:
1.93      nicm      591: int
                    592: window_zoom(struct window_pane *wp)
                    593: {
                    594:        struct window           *w = wp->window;
                    595:        struct window_pane      *wp1;
                    596:
                    597:        if (w->flags & WINDOW_ZOOMED)
                    598:                return (-1);
                    599:
1.94      nicm      600:        if (window_count_panes(w) == 1)
                    601:                return (-1);
                    602:
1.93      nicm      603:        if (w->active != wp)
1.226     nicm      604:                window_set_active_pane(w, wp, 1);
1.93      nicm      605:
                    606:        TAILQ_FOREACH(wp1, &w->panes, entry) {
                    607:                wp1->saved_layout_cell = wp1->layout_cell;
                    608:                wp1->layout_cell = NULL;
                    609:        }
                    610:
                    611:        w->saved_layout_root = w->layout_root;
                    612:        layout_init(w, wp);
                    613:        w->flags |= WINDOW_ZOOMED;
1.172     nicm      614:        notify_window("window-layout-changed", w);
1.93      nicm      615:
                    616:        return (0);
                    617: }
                    618:
                    619: int
                    620: window_unzoom(struct window *w)
                    621: {
1.97      nicm      622:        struct window_pane      *wp;
1.93      nicm      623:
                    624:        if (!(w->flags & WINDOW_ZOOMED))
                    625:                return (-1);
                    626:
                    627:        w->flags &= ~WINDOW_ZOOMED;
                    628:        layout_free(w);
                    629:        w->layout_root = w->saved_layout_root;
1.120     nicm      630:        w->saved_layout_root = NULL;
1.93      nicm      631:
1.97      nicm      632:        TAILQ_FOREACH(wp, &w->panes, entry) {
                    633:                wp->layout_cell = wp->saved_layout_cell;
                    634:                wp->saved_layout_cell = NULL;
1.93      nicm      635:        }
1.213     nicm      636:        layout_fix_panes(w);
1.172     nicm      637:        notify_window("window-layout-changed", w);
1.93      nicm      638:
1.241     nicm      639:        return (0);
                    640: }
                    641:
                    642: int
                    643: window_push_zoom(struct window *w, int flag)
                    644: {
                    645:        log_debug("%s: @%u %d", __func__, w->id,
                    646:            flag && (w->flags & WINDOW_ZOOMED));
                    647:        if (flag && (w->flags & WINDOW_ZOOMED))
                    648:                w->flags |= WINDOW_WASZOOMED;
                    649:        else
                    650:                w->flags &= ~WINDOW_WASZOOMED;
                    651:        return (window_unzoom(w) == 0);
                    652: }
                    653:
                    654: int
                    655: window_pop_zoom(struct window *w)
                    656: {
                    657:        log_debug("%s: @%u %d", __func__, w->id,
                    658:            !!(w->flags & WINDOW_WASZOOMED));
                    659:        if (w->flags & WINDOW_WASZOOMED)
                    660:                return (window_zoom(w->active) == 0);
1.93      nicm      661:        return (0);
                    662: }
                    663:
1.1       nicm      664: struct window_pane *
1.226     nicm      665: window_add_pane(struct window *w, struct window_pane *other, u_int hlimit,
                    666:     int flags)
1.1       nicm      667: {
                    668:        struct window_pane      *wp;
                    669:
1.185     nicm      670:        if (other == NULL)
                    671:                other = w->active;
                    672:
1.14      nicm      673:        wp = window_pane_create(w, w->sx, w->sy, hlimit);
1.186     nicm      674:        if (TAILQ_EMPTY(&w->panes)) {
                    675:                log_debug("%s: @%u at start", __func__, w->id);
1.1       nicm      676:                TAILQ_INSERT_HEAD(&w->panes, wp, entry);
1.226     nicm      677:        } else if (flags & SPAWN_BEFORE) {
1.186     nicm      678:                log_debug("%s: @%u before %%%u", __func__, w->id, wp->id);
1.226     nicm      679:                if (flags & SPAWN_FULLSIZE)
1.208     nicm      680:                        TAILQ_INSERT_HEAD(&w->panes, wp, entry);
                    681:                else
                    682:                        TAILQ_INSERT_BEFORE(other, wp, entry);
1.186     nicm      683:        } else {
                    684:                log_debug("%s: @%u after %%%u", __func__, w->id, wp->id);
1.226     nicm      685:                if (flags & SPAWN_FULLSIZE)
1.208     nicm      686:                        TAILQ_INSERT_TAIL(&w->panes, wp, entry);
                    687:                else
                    688:                        TAILQ_INSERT_AFTER(&w->panes, other, wp, entry);
1.186     nicm      689:        }
1.1       nicm      690:        return (wp);
                    691: }
                    692:
                    693: void
1.105     nicm      694: window_lost_pane(struct window *w, struct window_pane *wp)
1.1       nicm      695: {
1.205     nicm      696:        log_debug("%s: @%u pane %%%u", __func__, w->id, wp->id);
                    697:
1.152     nicm      698:        if (wp == marked_pane.wp)
1.132     nicm      699:                server_clear_marked();
                    700:
1.57      nicm      701:        if (wp == w->active) {
1.58      nicm      702:                w->active = w->last;
                    703:                w->last = NULL;
                    704:                if (w->active == NULL) {
                    705:                        w->active = TAILQ_PREV(wp, window_panes, entry);
                    706:                        if (w->active == NULL)
                    707:                                w->active = TAILQ_NEXT(wp, entry);
                    708:                }
1.193     nicm      709:                if (w->active != NULL) {
1.151     nicm      710:                        w->active->flags |= PANE_CHANGED;
1.193     nicm      711:                        notify_window("window-pane-changed", w);
                    712:                }
1.58      nicm      713:        } else if (wp == w->last)
                    714:                w->last = NULL;
1.105     nicm      715: }
                    716:
                    717: void
                    718: window_remove_pane(struct window *w, struct window_pane *wp)
                    719: {
                    720:        window_lost_pane(w, wp);
1.1       nicm      721:
                    722:        TAILQ_REMOVE(&w->panes, wp, entry);
                    723:        window_pane_destroy(wp);
                    724: }
                    725:
                    726: struct window_pane *
                    727: window_pane_at_index(struct window *w, u_int idx)
                    728: {
                    729:        struct window_pane      *wp;
                    730:        u_int                    n;
                    731:
1.146     nicm      732:        n = options_get_number(w->options, "pane-base-index");
1.1       nicm      733:        TAILQ_FOREACH(wp, &w->panes, entry) {
                    734:                if (n == idx)
                    735:                        return (wp);
                    736:                n++;
                    737:        }
                    738:        return (NULL);
1.53      nicm      739: }
                    740:
                    741: struct window_pane *
                    742: window_pane_next_by_number(struct window *w, struct window_pane *wp, u_int n)
                    743: {
                    744:        for (; n > 0; n--) {
                    745:                if ((wp = TAILQ_NEXT(wp, entry)) == NULL)
                    746:                        wp = TAILQ_FIRST(&w->panes);
                    747:        }
                    748:
                    749:        return (wp);
                    750: }
                    751:
                    752: struct window_pane *
                    753: window_pane_previous_by_number(struct window *w, struct window_pane *wp,
                    754:     u_int n)
                    755: {
                    756:        for (; n > 0; n--) {
                    757:                if ((wp = TAILQ_PREV(wp, window_panes, entry)) == NULL)
                    758:                        wp = TAILQ_LAST(&w->panes, window_panes);
                    759:        }
                    760:
                    761:        return (wp);
1.13      nicm      762: }
                    763:
1.69      nicm      764: int
                    765: window_pane_index(struct window_pane *wp, u_int *i)
1.13      nicm      766: {
                    767:        struct window_pane      *wq;
1.69      nicm      768:        struct window           *w = wp->window;
1.13      nicm      769:
1.146     nicm      770:        *i = options_get_number(w->options, "pane-base-index");
1.13      nicm      771:        TAILQ_FOREACH(wq, &w->panes, entry) {
1.69      nicm      772:                if (wp == wq) {
                    773:                        return (0);
                    774:                }
                    775:                (*i)++;
1.13      nicm      776:        }
1.69      nicm      777:
                    778:        return (-1);
1.1       nicm      779: }
                    780:
                    781: u_int
                    782: window_count_panes(struct window *w)
                    783: {
                    784:        struct window_pane      *wp;
                    785:        u_int                    n;
                    786:
                    787:        n = 0;
                    788:        TAILQ_FOREACH(wp, &w->panes, entry)
                    789:                n++;
                    790:        return (n);
                    791: }
                    792:
                    793: void
                    794: window_destroy_panes(struct window *w)
                    795: {
                    796:        struct window_pane      *wp;
                    797:
                    798:        while (!TAILQ_EMPTY(&w->panes)) {
                    799:                wp = TAILQ_FIRST(&w->panes);
                    800:                TAILQ_REMOVE(&w->panes, wp, entry);
                    801:                window_pane_destroy(wp);
                    802:        }
1.61      nicm      803: }
                    804:
1.188     nicm      805: const char *
1.189     nicm      806: window_printable_flags(struct winlink *wl)
1.61      nicm      807: {
1.189     nicm      808:        struct session  *s = wl->session;
                    809:        static char      flags[32];
                    810:        int              pos;
1.61      nicm      811:
                    812:        pos = 0;
                    813:        if (wl->flags & WINLINK_ACTIVITY)
                    814:                flags[pos++] = '#';
                    815:        if (wl->flags & WINLINK_BELL)
                    816:                flags[pos++] = '!';
                    817:        if (wl->flags & WINLINK_SILENCE)
                    818:                flags[pos++] = '~';
                    819:        if (wl == s->curw)
                    820:                flags[pos++] = '*';
                    821:        if (wl == TAILQ_FIRST(&s->lastw))
                    822:                flags[pos++] = '-';
1.152     nicm      823:        if (server_check_marked() && wl == marked_pane.wl)
1.132     nicm      824:                flags[pos++] = 'M';
1.93      nicm      825:        if (wl->window->flags & WINDOW_ZOOMED)
                    826:                flags[pos++] = 'Z';
1.61      nicm      827:        flags[pos] = '\0';
1.188     nicm      828:        return (flags);
1.1       nicm      829: }
                    830:
1.123     nicm      831: struct window_pane *
                    832: window_pane_find_by_id_str(const char *s)
                    833: {
                    834:        const char      *errstr;
                    835:        u_int            id;
                    836:
                    837:        if (*s != '%')
                    838:                return (NULL);
                    839:
                    840:        id = strtonum(s + 1, 0, UINT_MAX, &errstr);
                    841:        if (errstr != NULL)
                    842:                return (NULL);
                    843:        return (window_pane_find_by_id(id));
                    844: }
                    845:
1.64      nicm      846: struct window_pane *
                    847: window_pane_find_by_id(u_int id)
                    848: {
                    849:        struct window_pane      wp;
                    850:
                    851:        wp.id = id;
                    852:        return (RB_FIND(window_pane_tree, &all_window_panes, &wp));
                    853: }
                    854:
1.169     nicm      855: static struct window_pane *
1.1       nicm      856: window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit)
                    857: {
                    858:        struct window_pane      *wp;
1.140     nicm      859:        char                     host[HOST_NAME_MAX + 1];
1.1       nicm      860:
                    861:        wp = xcalloc(1, sizeof *wp);
                    862:        wp->window = w;
1.234     nicm      863:        wp->options = options_create(w->options);
                    864:        wp->flags = PANE_STYLECHANGED;
1.1       nicm      865:
1.71      nicm      866:        wp->id = next_window_pane_id++;
1.64      nicm      867:        RB_INSERT(window_pane_tree, &all_window_panes, wp);
                    868:
1.110     nicm      869:        wp->argc = 0;
                    870:        wp->argv = NULL;
1.23      nicm      871:        wp->shell = NULL;
1.147     nicm      872:        wp->cwd = NULL;
1.1       nicm      873:
                    874:        wp->fd = -1;
1.37      nicm      875:        wp->event = NULL;
1.1       nicm      876:
1.259     nicm      877:        wp->fg = 8;
                    878:        wp->bg = 8;
                    879:
1.218     nicm      880:        TAILQ_INIT(&wp->modes);
1.14      nicm      881:
                    882:        wp->layout_cell = NULL;
1.1       nicm      883:
                    884:        wp->xoff = 0;
1.42      nicm      885:        wp->yoff = 0;
1.1       nicm      886:
1.265     nicm      887:        wp->sx = sx;
                    888:        wp->sy = sy;
1.1       nicm      889:
1.32      nicm      890:        wp->pipe_fd = -1;
1.36      nicm      891:        wp->pipe_event = NULL;
1.32      nicm      892:
1.1       nicm      893:        screen_init(&wp->base, sx, sy, hlimit);
                    894:        wp->screen = &wp->base;
1.159     nicm      895:
                    896:        screen_init(&wp->status_screen, 1, 1, 0);
1.140     nicm      897:
                    898:        if (gethostname(host, sizeof host) == 0)
                    899:                screen_set_title(&wp->base, host);
1.1       nicm      900:
                    901:        return (wp);
                    902: }
                    903:
1.169     nicm      904: static void
1.1       nicm      905: window_pane_destroy(struct window_pane *wp)
                    906: {
1.218     nicm      907:        window_pane_reset_mode_all(wp);
1.194     nicm      908:        free(wp->searchstr);
1.55      nicm      909:
1.37      nicm      910:        if (wp->fd != -1) {
1.70      nicm      911:                bufferevent_free(wp->event);
1.1       nicm      912:                close(wp->fd);
1.37      nicm      913:        }
1.251     nicm      914:        if (wp->ictx != NULL)
                    915:                input_free(wp->ictx);
1.225     nicm      916:
                    917:        screen_free(&wp->status_screen);
1.1       nicm      918:
                    919:        screen_free(&wp->base);
                    920:
1.32      nicm      921:        if (wp->pipe_fd != -1) {
1.70      nicm      922:                bufferevent_free(wp->pipe_event);
1.32      nicm      923:                close(wp->pipe_fd);
                    924:        }
1.167     nicm      925:
                    926:        if (event_initialized(&wp->resize_timer))
                    927:                event_del(&wp->resize_timer);
1.265     nicm      928:        if (event_initialized(&wp->force_timer))
                    929:                event_del(&wp->force_timer);
1.32      nicm      930:
1.64      nicm      931:        RB_REMOVE(window_pane_tree, &all_window_panes, wp);
                    932:
1.234     nicm      933:        options_free(wp->options);
1.147     nicm      934:        free((void *)wp->cwd);
1.82      nicm      935:        free(wp->shell);
1.110     nicm      936:        cmd_free_argv(wp->argc, wp->argv);
1.177     nicm      937:        free(wp->palette);
1.82      nicm      938:        free(wp);
1.1       nicm      939: }
                    940:
1.166     nicm      941: static void
1.149     nicm      942: window_pane_read_callback(__unused struct bufferevent *bufev, void *data)
1.37      nicm      943: {
1.263     nicm      944:        struct window_pane              *wp = data;
                    945:        struct evbuffer                 *evb = wp->event->input;
                    946:        struct window_pane_offset       *wpo = &wp->pipe_offset;
                    947:        size_t                           size = EVBUFFER_LENGTH(evb);
                    948:        char                            *new_data;
                    949:        size_t                           new_size;
                    950:        struct client                   *c;
                    951:
                    952:        if (wp->pipe_fd != -1) {
                    953:                new_data = window_pane_get_new_data(wp, wpo, &new_size);
                    954:                if (new_size > 0) {
                    955:                        bufferevent_write(wp->pipe_event, new_data, new_size);
1.264     nicm      956:                        window_pane_update_used_data(wp, wpo, new_size);
1.263     nicm      957:                }
1.46      nicm      958:        }
                    959:
1.183     nicm      960:        log_debug("%%%u has %zu bytes", wp->id, size);
1.263     nicm      961:        TAILQ_FOREACH(c, &clients, entry) {
1.264     nicm      962:                if (c->session != NULL && (c->flags & CLIENT_CONTROL))
1.263     nicm      963:                        control_write_output(c, wp);
                    964:        }
1.250     nicm      965:        input_parse_pane(wp);
1.264     nicm      966:        bufferevent_disable(wp->event, EV_READ);
1.37      nicm      967: }
                    968:
1.166     nicm      969: static void
1.149     nicm      970: window_pane_error_callback(__unused struct bufferevent *bufev,
                    971:     __unused short what, void *data)
1.37      nicm      972: {
                    973:        struct window_pane *wp = data;
                    974:
1.200     nicm      975:        log_debug("%%%u error", wp->id);
1.201     nicm      976:        wp->flags |= PANE_EXITED;
1.200     nicm      977:
                    978:        if (window_pane_destroy_ready(wp))
                    979:                server_destroy_pane(wp, 1);
1.37      nicm      980: }
                    981:
                    982: void
1.226     nicm      983: window_pane_set_event(struct window_pane *wp)
                    984: {
                    985:        setblocking(wp->fd, 0);
                    986:
                    987:        wp->event = bufferevent_new(wp->fd, window_pane_read_callback,
                    988:            NULL, window_pane_error_callback, wp);
1.251     nicm      989:        wp->ictx = input_init(wp, wp->event);
1.226     nicm      990:
                    991:        bufferevent_enable(wp->event, EV_READ|EV_WRITE);
                    992: }
                    993:
                    994: void
1.1       nicm      995: window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
                    996: {
1.218     nicm      997:        struct window_mode_entry        *wme;
                    998:
1.1       nicm      999:        if (sx == wp->sx && sy == wp->sy)
1.15      nicm     1000:                return;
1.1       nicm     1001:        wp->sx = sx;
                   1002:        wp->sy = sy;
                   1003:
1.238     nicm     1004:        log_debug("%s: %%%u resize %ux%u", __func__, wp->id, sx, sy);
1.252     nicm     1005:        screen_resize(&wp->base, sx, sy, wp->base.saved_grid == NULL);
1.218     nicm     1006:
                   1007:        wme = TAILQ_FIRST(&wp->modes);
                   1008:        if (wme != NULL && wme->mode->resize != NULL)
                   1009:                wme->mode->resize(wme, sx, sy);
1.265     nicm     1010:
                   1011:        /*
                   1012:         * If the pane has already been resized, set the force flag and make
                   1013:         * the application resize twice to force it to redraw.
                   1014:         */
                   1015:        if (wp->flags & PANE_RESIZE)
                   1016:                wp->flags |= PANE_RESIZEFORCE;
                   1017:        wp->flags |= PANE_RESIZE;
1.177     nicm     1018: }
                   1019:
                   1020: void
                   1021: window_pane_set_palette(struct window_pane *wp, u_int n, int colour)
                   1022: {
                   1023:        if (n > 0xff)
                   1024:                return;
                   1025:
                   1026:        if (wp->palette == NULL)
                   1027:                wp->palette = xcalloc(0x100, sizeof *wp->palette);
                   1028:
                   1029:        wp->palette[n] = colour;
                   1030:        wp->flags |= PANE_REDRAW;
                   1031: }
                   1032:
                   1033: void
                   1034: window_pane_unset_palette(struct window_pane *wp, u_int n)
                   1035: {
                   1036:        if (n > 0xff || wp->palette == NULL)
                   1037:                return;
                   1038:
                   1039:        wp->palette[n] = 0;
                   1040:        wp->flags |= PANE_REDRAW;
                   1041: }
                   1042:
                   1043: void
                   1044: window_pane_reset_palette(struct window_pane *wp)
                   1045: {
                   1046:        if (wp->palette == NULL)
                   1047:                return;
                   1048:
                   1049:        free(wp->palette);
                   1050:        wp->palette = NULL;
1.44      nicm     1051:        wp->flags |= PANE_REDRAW;
1.1       nicm     1052: }
                   1053:
1.180     nicm     1054: int
1.220     nicm     1055: window_pane_get_palette(struct window_pane *wp, int c)
1.180     nicm     1056: {
                   1057:        int     new;
                   1058:
                   1059:        if (wp == NULL || wp->palette == NULL)
                   1060:                return (-1);
                   1061:
                   1062:        new = -1;
                   1063:        if (c < 8)
                   1064:                new = wp->palette[c];
                   1065:        else if (c >= 90 && c <= 97)
                   1066:                new = wp->palette[8 + c - 90];
                   1067:        else if (c & COLOUR_FLAG_256)
                   1068:                new = wp->palette[c & ~COLOUR_FLAG_256];
                   1069:        if (new == 0)
                   1070:                return (-1);
                   1071:        return (new);
                   1072: }
                   1073:
1.1       nicm     1074: int
1.255     nicm     1075: window_pane_set_mode(struct window_pane *wp, struct window_pane *swp,
                   1076:     const struct window_mode *mode, struct cmd_find_state *fs,
                   1077:     struct args *args)
1.1       nicm     1078: {
1.218     nicm     1079:        struct window_mode_entry        *wme;
1.1       nicm     1080:
1.218     nicm     1081:        if (!TAILQ_EMPTY(&wp->modes) && TAILQ_FIRST(&wp->modes)->mode == mode)
1.1       nicm     1082:                return (1);
1.217     nicm     1083:
1.218     nicm     1084:        TAILQ_FOREACH(wme, &wp->modes, entry) {
                   1085:                if (wme->mode == mode)
                   1086:                        break;
                   1087:        }
1.223     nicm     1088:        if (wme != NULL) {
1.218     nicm     1089:                TAILQ_REMOVE(&wp->modes, wme, entry);
1.223     nicm     1090:                TAILQ_INSERT_HEAD(&wp->modes, wme, entry);
                   1091:        } else {
1.218     nicm     1092:                wme = xcalloc(1, sizeof *wme);
                   1093:                wme->wp = wp;
1.255     nicm     1094:                wme->swp = swp;
1.218     nicm     1095:                wme->mode = mode;
                   1096:                wme->prefix = 1;
1.223     nicm     1097:                TAILQ_INSERT_HEAD(&wp->modes, wme, entry);
1.218     nicm     1098:                wme->screen = wme->mode->init(wme, fs, args);
                   1099:        }
1.162     nicm     1100:
1.218     nicm     1101:        wp->screen = wme->screen;
1.142     nicm     1102:        wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1.157     nicm     1103:
1.259     nicm     1104:        server_redraw_window_borders(wp->window);
1.157     nicm     1105:        server_status_window(wp->window);
1.193     nicm     1106:        notify_pane("pane-mode-changed", wp);
1.218     nicm     1107:
1.1       nicm     1108:        return (0);
                   1109: }
                   1110:
                   1111: void
                   1112: window_pane_reset_mode(struct window_pane *wp)
                   1113: {
1.218     nicm     1114:        struct window_mode_entry        *wme, *next;
                   1115:
                   1116:        if (TAILQ_EMPTY(&wp->modes))
1.1       nicm     1117:                return;
                   1118:
1.218     nicm     1119:        wme = TAILQ_FIRST(&wp->modes);
                   1120:        TAILQ_REMOVE(&wp->modes, wme, entry);
                   1121:        wme->mode->free(wme);
                   1122:        free(wme);
                   1123:
                   1124:        next = TAILQ_FIRST(&wp->modes);
                   1125:        if (next == NULL) {
                   1126:                log_debug("%s: no next mode", __func__);
                   1127:                wp->screen = &wp->base;
                   1128:        } else {
                   1129:                log_debug("%s: next mode is %s", __func__, next->mode->name);
                   1130:                wp->screen = next->screen;
1.230     nicm     1131:                if (next->mode->resize != NULL)
1.218     nicm     1132:                        next->mode->resize(next, wp->sx, wp->sy);
                   1133:        }
1.142     nicm     1134:        wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1.157     nicm     1135:
1.259     nicm     1136:        server_redraw_window_borders(wp->window);
1.157     nicm     1137:        server_status_window(wp->window);
1.193     nicm     1138:        notify_pane("pane-mode-changed", wp);
1.1       nicm     1139: }
                   1140:
                   1141: void
1.218     nicm     1142: window_pane_reset_mode_all(struct window_pane *wp)
                   1143: {
                   1144:        while (!TAILQ_EMPTY(&wp->modes))
                   1145:                window_pane_reset_mode(wp);
                   1146: }
                   1147:
1.247     nicm     1148: int
1.118     nicm     1149: window_pane_key(struct window_pane *wp, struct client *c, struct session *s,
1.216     nicm     1150:     struct winlink *wl, key_code key, struct mouse_event *m)
1.1       nicm     1151: {
1.218     nicm     1152:        struct window_mode_entry        *wme;
1.217     nicm     1153:        struct window_pane              *wp2;
1.3       nicm     1154:
1.118     nicm     1155:        if (KEYC_IS_MOUSE(key) && m == NULL)
1.247     nicm     1156:                return (-1);
1.118     nicm     1157:
1.218     nicm     1158:        wme = TAILQ_FIRST(&wp->modes);
1.217     nicm     1159:        if (wme != NULL) {
1.261     nicm     1160:                if (wme->mode->key != NULL && c != NULL) {
                   1161:                        key &= ~KEYC_MASK_FLAGS;
                   1162:                        wme->mode->key(wme, c, s, wl, key, m);
                   1163:                }
1.247     nicm     1164:                return (0);
1.30      nicm     1165:        }
1.27      nicm     1166:
1.113     nicm     1167:        if (wp->fd == -1 || wp->flags & PANE_INPUTOFF)
1.247     nicm     1168:                return (0);
1.113     nicm     1169:
1.250     nicm     1170:        if (input_key_pane(wp, key, m) != 0)
1.247     nicm     1171:                return (-1);
1.118     nicm     1172:
                   1173:        if (KEYC_IS_MOUSE(key))
1.247     nicm     1174:                return (0);
1.146     nicm     1175:        if (options_get_number(wp->window->options, "synchronize-panes")) {
1.27      nicm     1176:                TAILQ_FOREACH(wp2, &wp->window->panes, entry) {
1.213     nicm     1177:                        if (wp2 != wp &&
1.218     nicm     1178:                            TAILQ_EMPTY(&wp2->modes) &&
1.213     nicm     1179:                            wp2->fd != -1 &&
                   1180:                            (~wp2->flags & PANE_INPUTOFF) &&
                   1181:                            window_pane_visible(wp2))
1.250     nicm     1182:                                input_key_pane(wp2, key, NULL);
1.27      nicm     1183:                }
                   1184:        }
1.247     nicm     1185:        return (0);
1.10      nicm     1186: }
                   1187:
                   1188: int
1.205     nicm     1189: window_pane_visible(struct window_pane *wp)
1.10      nicm     1190: {
1.213     nicm     1191:        if (~wp->window->flags & WINDOW_ZOOMED)
                   1192:                return (1);
                   1193:        return (wp == wp->window->active);
1.1       nicm     1194: }
                   1195:
1.195     nicm     1196: u_int
1.232     nicm     1197: window_pane_search(struct window_pane *wp, const char *term, int regex,
                   1198:     int ignore)
1.195     nicm     1199: {
                   1200:        struct screen   *s = &wp->base;
1.232     nicm     1201:        regex_t          r;
                   1202:        char            *new = NULL, *line;
1.195     nicm     1203:        u_int            i;
1.232     nicm     1204:        int              flags = 0, found;
1.236     nicm     1205:        size_t           n;
1.195     nicm     1206:
1.232     nicm     1207:        if (!regex) {
                   1208:                if (ignore)
                   1209:                        flags |= FNM_CASEFOLD;
                   1210:                xasprintf(&new, "*%s*", term);
                   1211:        } else {
                   1212:                if (ignore)
                   1213:                        flags |= REG_ICASE;
                   1214:                if (regcomp(&r, term, flags|REG_EXTENDED) != 0)
                   1215:                        return (0);
                   1216:        }
1.195     nicm     1217:
                   1218:        for (i = 0; i < screen_size_y(s); i++) {
                   1219:                line = grid_view_string_cells(s->grid, 0, i, screen_size_x(s));
1.236     nicm     1220:                for (n = strlen(line); n > 0; n--) {
                   1221:                        if (!isspace((u_char)line[n - 1]))
                   1222:                                break;
                   1223:                        line[n - 1] = '\0';
                   1224:                }
                   1225:                log_debug("%s: %s", __func__, line);
1.232     nicm     1226:                if (!regex)
1.254     nicm     1227:                        found = (fnmatch(new, line, flags) == 0);
1.232     nicm     1228:                else
                   1229:                        found = (regexec(&r, line, 0, NULL, 0) == 0);
                   1230:                free(line);
                   1231:                if (found)
1.195     nicm     1232:                        break;
                   1233:        }
1.232     nicm     1234:        if (!regex)
                   1235:                free(new);
                   1236:        else
                   1237:                regfree(&r);
1.195     nicm     1238:
                   1239:        if (i == screen_size_y(s))
                   1240:                return (0);
                   1241:        return (i + 1);
1.45      nicm     1242: }
                   1243:
1.109     nicm     1244: /* Get MRU pane from a list. */
1.166     nicm     1245: static struct window_pane *
1.126     nicm     1246: window_pane_choose_best(struct window_pane **list, u_int size)
1.109     nicm     1247: {
                   1248:        struct window_pane      *next, *best;
                   1249:        u_int                    i;
                   1250:
1.126     nicm     1251:        if (size == 0)
1.109     nicm     1252:                return (NULL);
                   1253:
1.126     nicm     1254:        best = list[0];
                   1255:        for (i = 1; i < size; i++) {
                   1256:                next = list[i];
1.109     nicm     1257:                if (next->active_point > best->active_point)
                   1258:                        best = next;
                   1259:        }
                   1260:        return (best);
                   1261: }
                   1262:
                   1263: /*
                   1264:  * Find the pane directly above another. We build a list of those adjacent to
                   1265:  * top edge and then choose the best.
                   1266:  */
1.45      nicm     1267: struct window_pane *
                   1268: window_pane_find_up(struct window_pane *wp)
                   1269: {
1.237     nicm     1270:        struct window           *w;
1.126     nicm     1271:        struct window_pane      *next, *best, **list;
                   1272:        u_int                    edge, left, right, end, size;
1.187     nicm     1273:        int                      status, found;
1.45      nicm     1274:
1.213     nicm     1275:        if (wp == NULL)
1.45      nicm     1276:                return (NULL);
1.237     nicm     1277:        w = wp->window;
                   1278:        status = options_get_number(w->options, "pane-border-status");
1.126     nicm     1279:
                   1280:        list = NULL;
                   1281:        size = 0;
1.109     nicm     1282:
                   1283:        edge = wp->yoff;
1.237     nicm     1284:        if (status == PANE_STATUS_TOP) {
                   1285:                if (edge == 1)
                   1286:                        edge = w->sy + 1;
                   1287:        } else if (status == PANE_STATUS_BOTTOM) {
                   1288:                if (edge == 0)
                   1289:                        edge = w->sy;
                   1290:        } else {
                   1291:                if (edge == 0)
                   1292:                        edge = w->sy + 1;
                   1293:        }
1.45      nicm     1294:
                   1295:        left = wp->xoff;
1.109     nicm     1296:        right = wp->xoff + wp->sx;
1.45      nicm     1297:
1.237     nicm     1298:        TAILQ_FOREACH(next, &w->panes, entry) {
1.213     nicm     1299:                if (next == wp)
1.45      nicm     1300:                        continue;
1.109     nicm     1301:                if (next->yoff + next->sy + 1 != edge)
1.45      nicm     1302:                        continue;
1.109     nicm     1303:                end = next->xoff + next->sx - 1;
                   1304:
                   1305:                found = 0;
                   1306:                if (next->xoff < left && end > right)
                   1307:                        found = 1;
                   1308:                else if (next->xoff >= left && next->xoff <= right)
                   1309:                        found = 1;
                   1310:                else if (end >= left && end <= right)
                   1311:                        found = 1;
1.126     nicm     1312:                if (!found)
                   1313:                        continue;
                   1314:                list = xreallocarray(list, size + 1, sizeof *list);
                   1315:                list[size++] = next;
1.109     nicm     1316:        }
                   1317:
1.126     nicm     1318:        best = window_pane_choose_best(list, size);
                   1319:        free(list);
1.109     nicm     1320:        return (best);
1.45      nicm     1321: }
                   1322:
                   1323: /* Find the pane directly below another. */
                   1324: struct window_pane *
                   1325: window_pane_find_down(struct window_pane *wp)
                   1326: {
1.237     nicm     1327:        struct window           *w;
1.126     nicm     1328:        struct window_pane      *next, *best, **list;
                   1329:        u_int                    edge, left, right, end, size;
1.187     nicm     1330:        int                      status, found;
1.45      nicm     1331:
1.213     nicm     1332:        if (wp == NULL)
1.45      nicm     1333:                return (NULL);
1.237     nicm     1334:        w = wp->window;
                   1335:        status = options_get_number(w->options, "pane-border-status");
1.126     nicm     1336:
                   1337:        list = NULL;
                   1338:        size = 0;
1.109     nicm     1339:
                   1340:        edge = wp->yoff + wp->sy + 1;
1.237     nicm     1341:        if (status == PANE_STATUS_TOP) {
                   1342:                if (edge >= w->sy)
                   1343:                        edge = 1;
                   1344:        } else if (status == PANE_STATUS_BOTTOM) {
                   1345:                if (edge >= w->sy - 1)
                   1346:                        edge = 0;
                   1347:        } else {
1.239     nicm     1348:                if (edge >= w->sy)
1.237     nicm     1349:                        edge = 0;
                   1350:        }
1.45      nicm     1351:
                   1352:        left = wp->xoff;
1.109     nicm     1353:        right = wp->xoff + wp->sx;
1.45      nicm     1354:
1.237     nicm     1355:        TAILQ_FOREACH(next, &w->panes, entry) {
1.213     nicm     1356:                if (next == wp)
1.45      nicm     1357:                        continue;
1.109     nicm     1358:                if (next->yoff != edge)
1.45      nicm     1359:                        continue;
1.109     nicm     1360:                end = next->xoff + next->sx - 1;
                   1361:
                   1362:                found = 0;
                   1363:                if (next->xoff < left && end > right)
                   1364:                        found = 1;
                   1365:                else if (next->xoff >= left && next->xoff <= right)
                   1366:                        found = 1;
                   1367:                else if (end >= left && end <= right)
                   1368:                        found = 1;
1.126     nicm     1369:                if (!found)
                   1370:                        continue;
                   1371:                list = xreallocarray(list, size + 1, sizeof *list);
                   1372:                list[size++] = next;
1.45      nicm     1373:        }
1.109     nicm     1374:
1.126     nicm     1375:        best = window_pane_choose_best(list, size);
                   1376:        free(list);
1.109     nicm     1377:        return (best);
1.45      nicm     1378: }
                   1379:
1.109     nicm     1380: /* Find the pane directly to the left of another. */
1.45      nicm     1381: struct window_pane *
                   1382: window_pane_find_left(struct window_pane *wp)
                   1383: {
1.237     nicm     1384:        struct window           *w;
1.126     nicm     1385:        struct window_pane      *next, *best, **list;
                   1386:        u_int                    edge, top, bottom, end, size;
1.109     nicm     1387:        int                      found;
1.45      nicm     1388:
1.213     nicm     1389:        if (wp == NULL)
1.45      nicm     1390:                return (NULL);
1.237     nicm     1391:        w = wp->window;
1.126     nicm     1392:
                   1393:        list = NULL;
                   1394:        size = 0;
1.109     nicm     1395:
                   1396:        edge = wp->xoff;
                   1397:        if (edge == 0)
1.237     nicm     1398:                edge = w->sx + 1;
1.45      nicm     1399:
                   1400:        top = wp->yoff;
1.109     nicm     1401:        bottom = wp->yoff + wp->sy;
1.45      nicm     1402:
1.237     nicm     1403:        TAILQ_FOREACH(next, &w->panes, entry) {
1.213     nicm     1404:                if (next == wp)
1.45      nicm     1405:                        continue;
1.109     nicm     1406:                if (next->xoff + next->sx + 1 != edge)
1.45      nicm     1407:                        continue;
1.109     nicm     1408:                end = next->yoff + next->sy - 1;
                   1409:
                   1410:                found = 0;
                   1411:                if (next->yoff < top && end > bottom)
                   1412:                        found = 1;
                   1413:                else if (next->yoff >= top && next->yoff <= bottom)
                   1414:                        found = 1;
                   1415:                else if (end >= top && end <= bottom)
                   1416:                        found = 1;
1.126     nicm     1417:                if (!found)
                   1418:                        continue;
                   1419:                list = xreallocarray(list, size + 1, sizeof *list);
                   1420:                list[size++] = next;
1.45      nicm     1421:        }
1.109     nicm     1422:
1.126     nicm     1423:        best = window_pane_choose_best(list, size);
                   1424:        free(list);
1.109     nicm     1425:        return (best);
1.45      nicm     1426: }
                   1427:
1.109     nicm     1428: /* Find the pane directly to the right of another. */
1.45      nicm     1429: struct window_pane *
                   1430: window_pane_find_right(struct window_pane *wp)
                   1431: {
1.237     nicm     1432:        struct window           *w;
1.126     nicm     1433:        struct window_pane      *next, *best, **list;
                   1434:        u_int                    edge, top, bottom, end, size;
1.109     nicm     1435:        int                      found;
1.45      nicm     1436:
1.213     nicm     1437:        if (wp == NULL)
1.45      nicm     1438:                return (NULL);
1.237     nicm     1439:        w = wp->window;
1.126     nicm     1440:
                   1441:        list = NULL;
                   1442:        size = 0;
1.109     nicm     1443:
                   1444:        edge = wp->xoff + wp->sx + 1;
1.237     nicm     1445:        if (edge >= w->sx)
1.109     nicm     1446:                edge = 0;
1.45      nicm     1447:
                   1448:        top = wp->yoff;
1.109     nicm     1449:        bottom = wp->yoff + wp->sy;
1.45      nicm     1450:
1.237     nicm     1451:        TAILQ_FOREACH(next, &w->panes, entry) {
1.213     nicm     1452:                if (next == wp)
1.45      nicm     1453:                        continue;
1.109     nicm     1454:                if (next->xoff != edge)
1.45      nicm     1455:                        continue;
1.109     nicm     1456:                end = next->yoff + next->sy - 1;
                   1457:
                   1458:                found = 0;
                   1459:                if (next->yoff < top && end > bottom)
                   1460:                        found = 1;
                   1461:                else if (next->yoff >= top && next->yoff <= bottom)
                   1462:                        found = 1;
                   1463:                else if (end >= top && end <= bottom)
                   1464:                        found = 1;
1.126     nicm     1465:                if (!found)
                   1466:                        continue;
                   1467:                list = xreallocarray(list, size + 1, sizeof *list);
                   1468:                list[size++] = next;
1.109     nicm     1469:        }
                   1470:
1.126     nicm     1471:        best = window_pane_choose_best(list, size);
                   1472:        free(list);
1.109     nicm     1473:        return (best);
1.81      nicm     1474: }
                   1475:
                   1476: /* Clear alert flags for a winlink */
                   1477: void
                   1478: winlink_clear_flags(struct winlink *wl)
                   1479: {
1.174     nicm     1480:        struct winlink  *loop;
1.81      nicm     1481:
1.174     nicm     1482:        wl->window->flags &= ~WINDOW_ALERTFLAGS;
                   1483:        TAILQ_FOREACH(loop, &wl->window->winlinks, wentry) {
                   1484:                if ((loop->flags & WINLINK_ALERTFLAGS) != 0) {
                   1485:                        loop->flags &= ~WINLINK_ALERTFLAGS;
                   1486:                        server_status_session(loop->session);
1.81      nicm     1487:                }
                   1488:        }
1.134     nicm     1489: }
                   1490:
1.184     nicm     1491: /* Shuffle window indexes up. */
1.134     nicm     1492: int
1.266   ! nicm     1493: winlink_shuffle_up(struct session *s, struct winlink *wl, int before)
1.134     nicm     1494: {
                   1495:        int      idx, last;
                   1496:
1.226     nicm     1497:        if (wl == NULL)
                   1498:                return (-1);
1.266   ! nicm     1499:        if (before)
        !          1500:                idx = wl->idx;
        !          1501:        else
        !          1502:                idx = wl->idx + 1;
1.134     nicm     1503:
                   1504:        /* Find the next free index. */
                   1505:        for (last = idx; last < INT_MAX; last++) {
                   1506:                if (winlink_find_by_index(&s->windows, last) == NULL)
                   1507:                        break;
                   1508:        }
                   1509:        if (last == INT_MAX)
                   1510:                return (-1);
                   1511:
                   1512:        /* Move everything from last - 1 to idx up a bit. */
                   1513:        for (; last > idx; last--) {
                   1514:                wl = winlink_find_by_index(&s->windows, last - 1);
1.266   ! nicm     1515:                RB_REMOVE(winlinks, &s->windows, wl);
        !          1516:                wl->idx++;
        !          1517:                RB_INSERT(winlinks, &s->windows, wl);
1.134     nicm     1518:        }
                   1519:
                   1520:        return (idx);
1.228     nicm     1521: }
                   1522:
                   1523: static void
1.246     nicm     1524: window_pane_input_callback(struct client *c, __unused const char *path,
                   1525:     int error, int closed, struct evbuffer *buffer, void *data)
1.228     nicm     1526: {
                   1527:        struct window_pane_input_data   *cdata = data;
                   1528:        struct window_pane              *wp;
1.246     nicm     1529:        u_char                          *buf = EVBUFFER_DATA(buffer);
                   1530:        size_t                           len = EVBUFFER_LENGTH(buffer);
1.228     nicm     1531:
                   1532:        wp = window_pane_find_by_id(cdata->wp);
1.246     nicm     1533:        if (wp == NULL || closed || error != 0 || c->flags & CLIENT_DEAD) {
1.243     nicm     1534:                if (wp == NULL)
                   1535:                        c->flags |= CLIENT_EXIT;
                   1536:
1.246     nicm     1537:                evbuffer_drain(buffer, len);
                   1538:                cmdq_continue(cdata->item);
                   1539:
1.228     nicm     1540:                server_client_unref(c);
                   1541:                free(cdata);
                   1542:                return;
                   1543:        }
1.229     nicm     1544:        input_parse_buffer(wp, buf, len);
1.246     nicm     1545:        evbuffer_drain(buffer, len);
1.228     nicm     1546: }
                   1547:
                   1548: int
                   1549: window_pane_start_input(struct window_pane *wp, struct cmdq_item *item,
                   1550:     char **cause)
                   1551: {
1.256     nicm     1552:        struct client                   *c = cmdq_get_client(item);
1.228     nicm     1553:        struct window_pane_input_data   *cdata;
                   1554:
                   1555:        if (~wp->flags & PANE_EMPTY) {
                   1556:                *cause = xstrdup("pane is not empty");
                   1557:                return (-1);
                   1558:        }
                   1559:
                   1560:        cdata = xmalloc(sizeof *cdata);
                   1561:        cdata->item = item;
                   1562:        cdata->wp = wp->id;
                   1563:
1.246     nicm     1564:        c->references++;
                   1565:        file_read(c, "-", window_pane_input_callback, cdata);
                   1566:
                   1567:        return (0);
1.263     nicm     1568: }
                   1569:
                   1570: void *
                   1571: window_pane_get_new_data(struct window_pane *wp,
                   1572:     struct window_pane_offset *wpo, size_t *size)
                   1573: {
                   1574:        size_t  used = wpo->used - wp->base_offset;
                   1575:
                   1576:        *size = EVBUFFER_LENGTH(wp->event->input) - used;
                   1577:        return (EVBUFFER_DATA(wp->event->input) + used);
                   1578: }
                   1579:
                   1580: void
                   1581: window_pane_update_used_data(struct window_pane *wp,
1.264     nicm     1582:     struct window_pane_offset *wpo, size_t size)
1.263     nicm     1583: {
                   1584:        size_t  used = wpo->used - wp->base_offset;
                   1585:
                   1586:        if (size > EVBUFFER_LENGTH(wp->event->input) - used)
                   1587:                size = EVBUFFER_LENGTH(wp->event->input) - used;
                   1588:        wpo->used += size;
1.1       nicm     1589: }