[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.268

1.268   ! nicm        1: /* $OpenBSD: window.c,v 1.267 2020/12/15 08:31:50 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.268   ! nicm      806: window_printable_flags(struct winlink *wl, int escape)
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;
1.268   ! nicm      813:        if (wl->flags & WINLINK_ACTIVITY) {
1.61      nicm      814:                flags[pos++] = '#';
1.268   ! nicm      815:                if (escape)
        !           816:                        flags[pos++] = '#';
        !           817:        }
1.61      nicm      818:        if (wl->flags & WINLINK_BELL)
                    819:                flags[pos++] = '!';
                    820:        if (wl->flags & WINLINK_SILENCE)
                    821:                flags[pos++] = '~';
                    822:        if (wl == s->curw)
                    823:                flags[pos++] = '*';
                    824:        if (wl == TAILQ_FIRST(&s->lastw))
                    825:                flags[pos++] = '-';
1.152     nicm      826:        if (server_check_marked() && wl == marked_pane.wl)
1.132     nicm      827:                flags[pos++] = 'M';
1.93      nicm      828:        if (wl->window->flags & WINDOW_ZOOMED)
                    829:                flags[pos++] = 'Z';
1.61      nicm      830:        flags[pos] = '\0';
1.188     nicm      831:        return (flags);
1.1       nicm      832: }
                    833:
1.123     nicm      834: struct window_pane *
                    835: window_pane_find_by_id_str(const char *s)
                    836: {
                    837:        const char      *errstr;
                    838:        u_int            id;
                    839:
                    840:        if (*s != '%')
                    841:                return (NULL);
                    842:
                    843:        id = strtonum(s + 1, 0, UINT_MAX, &errstr);
                    844:        if (errstr != NULL)
                    845:                return (NULL);
                    846:        return (window_pane_find_by_id(id));
                    847: }
                    848:
1.64      nicm      849: struct window_pane *
                    850: window_pane_find_by_id(u_int id)
                    851: {
                    852:        struct window_pane      wp;
                    853:
                    854:        wp.id = id;
                    855:        return (RB_FIND(window_pane_tree, &all_window_panes, &wp));
                    856: }
                    857:
1.169     nicm      858: static struct window_pane *
1.1       nicm      859: window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit)
                    860: {
                    861:        struct window_pane      *wp;
1.140     nicm      862:        char                     host[HOST_NAME_MAX + 1];
1.1       nicm      863:
                    864:        wp = xcalloc(1, sizeof *wp);
                    865:        wp->window = w;
1.234     nicm      866:        wp->options = options_create(w->options);
                    867:        wp->flags = PANE_STYLECHANGED;
1.1       nicm      868:
1.71      nicm      869:        wp->id = next_window_pane_id++;
1.64      nicm      870:        RB_INSERT(window_pane_tree, &all_window_panes, wp);
                    871:
1.110     nicm      872:        wp->argc = 0;
                    873:        wp->argv = NULL;
1.23      nicm      874:        wp->shell = NULL;
1.147     nicm      875:        wp->cwd = NULL;
1.1       nicm      876:
                    877:        wp->fd = -1;
1.37      nicm      878:        wp->event = NULL;
1.1       nicm      879:
1.259     nicm      880:        wp->fg = 8;
                    881:        wp->bg = 8;
                    882:
1.218     nicm      883:        TAILQ_INIT(&wp->modes);
1.14      nicm      884:
                    885:        wp->layout_cell = NULL;
1.1       nicm      886:
                    887:        wp->xoff = 0;
1.42      nicm      888:        wp->yoff = 0;
1.1       nicm      889:
1.265     nicm      890:        wp->sx = sx;
                    891:        wp->sy = sy;
1.1       nicm      892:
1.32      nicm      893:        wp->pipe_fd = -1;
1.36      nicm      894:        wp->pipe_event = NULL;
1.32      nicm      895:
1.1       nicm      896:        screen_init(&wp->base, sx, sy, hlimit);
                    897:        wp->screen = &wp->base;
1.159     nicm      898:
                    899:        screen_init(&wp->status_screen, 1, 1, 0);
1.140     nicm      900:
                    901:        if (gethostname(host, sizeof host) == 0)
                    902:                screen_set_title(&wp->base, host);
1.1       nicm      903:
                    904:        return (wp);
                    905: }
                    906:
1.169     nicm      907: static void
1.1       nicm      908: window_pane_destroy(struct window_pane *wp)
                    909: {
1.218     nicm      910:        window_pane_reset_mode_all(wp);
1.194     nicm      911:        free(wp->searchstr);
1.55      nicm      912:
1.37      nicm      913:        if (wp->fd != -1) {
1.70      nicm      914:                bufferevent_free(wp->event);
1.1       nicm      915:                close(wp->fd);
1.37      nicm      916:        }
1.251     nicm      917:        if (wp->ictx != NULL)
                    918:                input_free(wp->ictx);
1.225     nicm      919:
                    920:        screen_free(&wp->status_screen);
1.1       nicm      921:
                    922:        screen_free(&wp->base);
                    923:
1.32      nicm      924:        if (wp->pipe_fd != -1) {
1.70      nicm      925:                bufferevent_free(wp->pipe_event);
1.32      nicm      926:                close(wp->pipe_fd);
                    927:        }
1.167     nicm      928:
                    929:        if (event_initialized(&wp->resize_timer))
                    930:                event_del(&wp->resize_timer);
1.265     nicm      931:        if (event_initialized(&wp->force_timer))
                    932:                event_del(&wp->force_timer);
1.32      nicm      933:
1.64      nicm      934:        RB_REMOVE(window_pane_tree, &all_window_panes, wp);
                    935:
1.234     nicm      936:        options_free(wp->options);
1.147     nicm      937:        free((void *)wp->cwd);
1.82      nicm      938:        free(wp->shell);
1.110     nicm      939:        cmd_free_argv(wp->argc, wp->argv);
1.177     nicm      940:        free(wp->palette);
1.82      nicm      941:        free(wp);
1.1       nicm      942: }
                    943:
1.166     nicm      944: static void
1.149     nicm      945: window_pane_read_callback(__unused struct bufferevent *bufev, void *data)
1.37      nicm      946: {
1.263     nicm      947:        struct window_pane              *wp = data;
                    948:        struct evbuffer                 *evb = wp->event->input;
                    949:        struct window_pane_offset       *wpo = &wp->pipe_offset;
                    950:        size_t                           size = EVBUFFER_LENGTH(evb);
                    951:        char                            *new_data;
                    952:        size_t                           new_size;
                    953:        struct client                   *c;
                    954:
                    955:        if (wp->pipe_fd != -1) {
                    956:                new_data = window_pane_get_new_data(wp, wpo, &new_size);
                    957:                if (new_size > 0) {
                    958:                        bufferevent_write(wp->pipe_event, new_data, new_size);
1.264     nicm      959:                        window_pane_update_used_data(wp, wpo, new_size);
1.263     nicm      960:                }
1.46      nicm      961:        }
                    962:
1.183     nicm      963:        log_debug("%%%u has %zu bytes", wp->id, size);
1.263     nicm      964:        TAILQ_FOREACH(c, &clients, entry) {
1.264     nicm      965:                if (c->session != NULL && (c->flags & CLIENT_CONTROL))
1.263     nicm      966:                        control_write_output(c, wp);
                    967:        }
1.250     nicm      968:        input_parse_pane(wp);
1.264     nicm      969:        bufferevent_disable(wp->event, EV_READ);
1.37      nicm      970: }
                    971:
1.166     nicm      972: static void
1.149     nicm      973: window_pane_error_callback(__unused struct bufferevent *bufev,
                    974:     __unused short what, void *data)
1.37      nicm      975: {
                    976:        struct window_pane *wp = data;
                    977:
1.200     nicm      978:        log_debug("%%%u error", wp->id);
1.201     nicm      979:        wp->flags |= PANE_EXITED;
1.200     nicm      980:
                    981:        if (window_pane_destroy_ready(wp))
                    982:                server_destroy_pane(wp, 1);
1.37      nicm      983: }
                    984:
                    985: void
1.226     nicm      986: window_pane_set_event(struct window_pane *wp)
                    987: {
                    988:        setblocking(wp->fd, 0);
                    989:
                    990:        wp->event = bufferevent_new(wp->fd, window_pane_read_callback,
                    991:            NULL, window_pane_error_callback, wp);
1.251     nicm      992:        wp->ictx = input_init(wp, wp->event);
1.226     nicm      993:
                    994:        bufferevent_enable(wp->event, EV_READ|EV_WRITE);
                    995: }
                    996:
                    997: void
1.1       nicm      998: window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
                    999: {
1.218     nicm     1000:        struct window_mode_entry        *wme;
                   1001:
1.1       nicm     1002:        if (sx == wp->sx && sy == wp->sy)
1.15      nicm     1003:                return;
1.1       nicm     1004:        wp->sx = sx;
                   1005:        wp->sy = sy;
                   1006:
1.238     nicm     1007:        log_debug("%s: %%%u resize %ux%u", __func__, wp->id, sx, sy);
1.252     nicm     1008:        screen_resize(&wp->base, sx, sy, wp->base.saved_grid == NULL);
1.218     nicm     1009:
                   1010:        wme = TAILQ_FIRST(&wp->modes);
                   1011:        if (wme != NULL && wme->mode->resize != NULL)
                   1012:                wme->mode->resize(wme, sx, sy);
1.265     nicm     1013:
                   1014:        /*
                   1015:         * If the pane has already been resized, set the force flag and make
                   1016:         * the application resize twice to force it to redraw.
                   1017:         */
                   1018:        if (wp->flags & PANE_RESIZE)
                   1019:                wp->flags |= PANE_RESIZEFORCE;
                   1020:        wp->flags |= PANE_RESIZE;
1.177     nicm     1021: }
                   1022:
                   1023: void
                   1024: window_pane_set_palette(struct window_pane *wp, u_int n, int colour)
                   1025: {
                   1026:        if (n > 0xff)
                   1027:                return;
                   1028:
                   1029:        if (wp->palette == NULL)
                   1030:                wp->palette = xcalloc(0x100, sizeof *wp->palette);
                   1031:
                   1032:        wp->palette[n] = colour;
                   1033:        wp->flags |= PANE_REDRAW;
                   1034: }
                   1035:
                   1036: void
                   1037: window_pane_unset_palette(struct window_pane *wp, u_int n)
                   1038: {
                   1039:        if (n > 0xff || wp->palette == NULL)
                   1040:                return;
                   1041:
                   1042:        wp->palette[n] = 0;
                   1043:        wp->flags |= PANE_REDRAW;
                   1044: }
                   1045:
                   1046: void
                   1047: window_pane_reset_palette(struct window_pane *wp)
                   1048: {
                   1049:        if (wp->palette == NULL)
                   1050:                return;
                   1051:
                   1052:        free(wp->palette);
                   1053:        wp->palette = NULL;
1.44      nicm     1054:        wp->flags |= PANE_REDRAW;
1.1       nicm     1055: }
                   1056:
1.180     nicm     1057: int
1.220     nicm     1058: window_pane_get_palette(struct window_pane *wp, int c)
1.180     nicm     1059: {
                   1060:        int     new;
                   1061:
                   1062:        if (wp == NULL || wp->palette == NULL)
                   1063:                return (-1);
                   1064:
                   1065:        new = -1;
                   1066:        if (c < 8)
                   1067:                new = wp->palette[c];
                   1068:        else if (c >= 90 && c <= 97)
                   1069:                new = wp->palette[8 + c - 90];
                   1070:        else if (c & COLOUR_FLAG_256)
                   1071:                new = wp->palette[c & ~COLOUR_FLAG_256];
                   1072:        if (new == 0)
                   1073:                return (-1);
                   1074:        return (new);
                   1075: }
                   1076:
1.1       nicm     1077: int
1.255     nicm     1078: window_pane_set_mode(struct window_pane *wp, struct window_pane *swp,
                   1079:     const struct window_mode *mode, struct cmd_find_state *fs,
                   1080:     struct args *args)
1.1       nicm     1081: {
1.218     nicm     1082:        struct window_mode_entry        *wme;
1.1       nicm     1083:
1.218     nicm     1084:        if (!TAILQ_EMPTY(&wp->modes) && TAILQ_FIRST(&wp->modes)->mode == mode)
1.1       nicm     1085:                return (1);
1.217     nicm     1086:
1.218     nicm     1087:        TAILQ_FOREACH(wme, &wp->modes, entry) {
                   1088:                if (wme->mode == mode)
                   1089:                        break;
                   1090:        }
1.223     nicm     1091:        if (wme != NULL) {
1.218     nicm     1092:                TAILQ_REMOVE(&wp->modes, wme, entry);
1.223     nicm     1093:                TAILQ_INSERT_HEAD(&wp->modes, wme, entry);
                   1094:        } else {
1.218     nicm     1095:                wme = xcalloc(1, sizeof *wme);
                   1096:                wme->wp = wp;
1.255     nicm     1097:                wme->swp = swp;
1.218     nicm     1098:                wme->mode = mode;
                   1099:                wme->prefix = 1;
1.223     nicm     1100:                TAILQ_INSERT_HEAD(&wp->modes, wme, entry);
1.218     nicm     1101:                wme->screen = wme->mode->init(wme, fs, args);
                   1102:        }
1.162     nicm     1103:
1.218     nicm     1104:        wp->screen = wme->screen;
1.142     nicm     1105:        wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1.157     nicm     1106:
1.259     nicm     1107:        server_redraw_window_borders(wp->window);
1.157     nicm     1108:        server_status_window(wp->window);
1.193     nicm     1109:        notify_pane("pane-mode-changed", wp);
1.218     nicm     1110:
1.1       nicm     1111:        return (0);
                   1112: }
                   1113:
                   1114: void
                   1115: window_pane_reset_mode(struct window_pane *wp)
                   1116: {
1.218     nicm     1117:        struct window_mode_entry        *wme, *next;
                   1118:
                   1119:        if (TAILQ_EMPTY(&wp->modes))
1.1       nicm     1120:                return;
                   1121:
1.218     nicm     1122:        wme = TAILQ_FIRST(&wp->modes);
                   1123:        TAILQ_REMOVE(&wp->modes, wme, entry);
                   1124:        wme->mode->free(wme);
                   1125:        free(wme);
                   1126:
                   1127:        next = TAILQ_FIRST(&wp->modes);
                   1128:        if (next == NULL) {
                   1129:                log_debug("%s: no next mode", __func__);
                   1130:                wp->screen = &wp->base;
                   1131:        } else {
                   1132:                log_debug("%s: next mode is %s", __func__, next->mode->name);
                   1133:                wp->screen = next->screen;
1.230     nicm     1134:                if (next->mode->resize != NULL)
1.218     nicm     1135:                        next->mode->resize(next, wp->sx, wp->sy);
                   1136:        }
1.142     nicm     1137:        wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1.157     nicm     1138:
1.259     nicm     1139:        server_redraw_window_borders(wp->window);
1.157     nicm     1140:        server_status_window(wp->window);
1.193     nicm     1141:        notify_pane("pane-mode-changed", wp);
1.1       nicm     1142: }
                   1143:
                   1144: void
1.218     nicm     1145: window_pane_reset_mode_all(struct window_pane *wp)
                   1146: {
                   1147:        while (!TAILQ_EMPTY(&wp->modes))
                   1148:                window_pane_reset_mode(wp);
                   1149: }
                   1150:
1.267     nicm     1151: static void
                   1152: window_pane_copy_key(struct window_pane *wp, key_code key)
                   1153: {
                   1154:        struct window_pane      *loop;
                   1155:
                   1156:        TAILQ_FOREACH(loop, &wp->window->panes, entry) {
                   1157:                if (loop != wp &&
                   1158:                    TAILQ_EMPTY(&loop->modes) &&
                   1159:                    loop->fd != -1 &&
                   1160:                    (~loop->flags & PANE_INPUTOFF) &&
                   1161:                    window_pane_visible(loop) &&
                   1162:                    options_get_number(loop->options, "synchronize-panes"))
                   1163:                        input_key_pane(loop, key, NULL);
                   1164:        }
                   1165: }
                   1166:
1.247     nicm     1167: int
1.118     nicm     1168: window_pane_key(struct window_pane *wp, struct client *c, struct session *s,
1.216     nicm     1169:     struct winlink *wl, key_code key, struct mouse_event *m)
1.1       nicm     1170: {
1.218     nicm     1171:        struct window_mode_entry        *wme;
1.3       nicm     1172:
1.118     nicm     1173:        if (KEYC_IS_MOUSE(key) && m == NULL)
1.247     nicm     1174:                return (-1);
1.118     nicm     1175:
1.218     nicm     1176:        wme = TAILQ_FIRST(&wp->modes);
1.217     nicm     1177:        if (wme != NULL) {
1.261     nicm     1178:                if (wme->mode->key != NULL && c != NULL) {
                   1179:                        key &= ~KEYC_MASK_FLAGS;
                   1180:                        wme->mode->key(wme, c, s, wl, key, m);
                   1181:                }
1.247     nicm     1182:                return (0);
1.30      nicm     1183:        }
1.27      nicm     1184:
1.113     nicm     1185:        if (wp->fd == -1 || wp->flags & PANE_INPUTOFF)
1.247     nicm     1186:                return (0);
1.113     nicm     1187:
1.250     nicm     1188:        if (input_key_pane(wp, key, m) != 0)
1.247     nicm     1189:                return (-1);
1.118     nicm     1190:
                   1191:        if (KEYC_IS_MOUSE(key))
1.247     nicm     1192:                return (0);
1.267     nicm     1193:        if (options_get_number(wp->options, "synchronize-panes"))
                   1194:                window_pane_copy_key(wp, key);
1.247     nicm     1195:        return (0);
1.10      nicm     1196: }
                   1197:
                   1198: int
1.205     nicm     1199: window_pane_visible(struct window_pane *wp)
1.10      nicm     1200: {
1.213     nicm     1201:        if (~wp->window->flags & WINDOW_ZOOMED)
                   1202:                return (1);
                   1203:        return (wp == wp->window->active);
1.1       nicm     1204: }
                   1205:
1.195     nicm     1206: u_int
1.232     nicm     1207: window_pane_search(struct window_pane *wp, const char *term, int regex,
                   1208:     int ignore)
1.195     nicm     1209: {
                   1210:        struct screen   *s = &wp->base;
1.232     nicm     1211:        regex_t          r;
                   1212:        char            *new = NULL, *line;
1.195     nicm     1213:        u_int            i;
1.232     nicm     1214:        int              flags = 0, found;
1.236     nicm     1215:        size_t           n;
1.195     nicm     1216:
1.232     nicm     1217:        if (!regex) {
                   1218:                if (ignore)
                   1219:                        flags |= FNM_CASEFOLD;
                   1220:                xasprintf(&new, "*%s*", term);
                   1221:        } else {
                   1222:                if (ignore)
                   1223:                        flags |= REG_ICASE;
                   1224:                if (regcomp(&r, term, flags|REG_EXTENDED) != 0)
                   1225:                        return (0);
                   1226:        }
1.195     nicm     1227:
                   1228:        for (i = 0; i < screen_size_y(s); i++) {
                   1229:                line = grid_view_string_cells(s->grid, 0, i, screen_size_x(s));
1.236     nicm     1230:                for (n = strlen(line); n > 0; n--) {
                   1231:                        if (!isspace((u_char)line[n - 1]))
                   1232:                                break;
                   1233:                        line[n - 1] = '\0';
                   1234:                }
                   1235:                log_debug("%s: %s", __func__, line);
1.232     nicm     1236:                if (!regex)
1.254     nicm     1237:                        found = (fnmatch(new, line, flags) == 0);
1.232     nicm     1238:                else
                   1239:                        found = (regexec(&r, line, 0, NULL, 0) == 0);
                   1240:                free(line);
                   1241:                if (found)
1.195     nicm     1242:                        break;
                   1243:        }
1.232     nicm     1244:        if (!regex)
                   1245:                free(new);
                   1246:        else
                   1247:                regfree(&r);
1.195     nicm     1248:
                   1249:        if (i == screen_size_y(s))
                   1250:                return (0);
                   1251:        return (i + 1);
1.45      nicm     1252: }
                   1253:
1.109     nicm     1254: /* Get MRU pane from a list. */
1.166     nicm     1255: static struct window_pane *
1.126     nicm     1256: window_pane_choose_best(struct window_pane **list, u_int size)
1.109     nicm     1257: {
                   1258:        struct window_pane      *next, *best;
                   1259:        u_int                    i;
                   1260:
1.126     nicm     1261:        if (size == 0)
1.109     nicm     1262:                return (NULL);
                   1263:
1.126     nicm     1264:        best = list[0];
                   1265:        for (i = 1; i < size; i++) {
                   1266:                next = list[i];
1.109     nicm     1267:                if (next->active_point > best->active_point)
                   1268:                        best = next;
                   1269:        }
                   1270:        return (best);
                   1271: }
                   1272:
                   1273: /*
                   1274:  * Find the pane directly above another. We build a list of those adjacent to
                   1275:  * top edge and then choose the best.
                   1276:  */
1.45      nicm     1277: struct window_pane *
                   1278: window_pane_find_up(struct window_pane *wp)
                   1279: {
1.237     nicm     1280:        struct window           *w;
1.126     nicm     1281:        struct window_pane      *next, *best, **list;
                   1282:        u_int                    edge, left, right, end, size;
1.187     nicm     1283:        int                      status, found;
1.45      nicm     1284:
1.213     nicm     1285:        if (wp == NULL)
1.45      nicm     1286:                return (NULL);
1.237     nicm     1287:        w = wp->window;
                   1288:        status = options_get_number(w->options, "pane-border-status");
1.126     nicm     1289:
                   1290:        list = NULL;
                   1291:        size = 0;
1.109     nicm     1292:
                   1293:        edge = wp->yoff;
1.237     nicm     1294:        if (status == PANE_STATUS_TOP) {
                   1295:                if (edge == 1)
                   1296:                        edge = w->sy + 1;
                   1297:        } else if (status == PANE_STATUS_BOTTOM) {
                   1298:                if (edge == 0)
                   1299:                        edge = w->sy;
                   1300:        } else {
                   1301:                if (edge == 0)
                   1302:                        edge = w->sy + 1;
                   1303:        }
1.45      nicm     1304:
                   1305:        left = wp->xoff;
1.109     nicm     1306:        right = wp->xoff + wp->sx;
1.45      nicm     1307:
1.237     nicm     1308:        TAILQ_FOREACH(next, &w->panes, entry) {
1.213     nicm     1309:                if (next == wp)
1.45      nicm     1310:                        continue;
1.109     nicm     1311:                if (next->yoff + next->sy + 1 != edge)
1.45      nicm     1312:                        continue;
1.109     nicm     1313:                end = next->xoff + next->sx - 1;
                   1314:
                   1315:                found = 0;
                   1316:                if (next->xoff < left && end > right)
                   1317:                        found = 1;
                   1318:                else if (next->xoff >= left && next->xoff <= right)
                   1319:                        found = 1;
                   1320:                else if (end >= left && end <= right)
                   1321:                        found = 1;
1.126     nicm     1322:                if (!found)
                   1323:                        continue;
                   1324:                list = xreallocarray(list, size + 1, sizeof *list);
                   1325:                list[size++] = next;
1.109     nicm     1326:        }
                   1327:
1.126     nicm     1328:        best = window_pane_choose_best(list, size);
                   1329:        free(list);
1.109     nicm     1330:        return (best);
1.45      nicm     1331: }
                   1332:
                   1333: /* Find the pane directly below another. */
                   1334: struct window_pane *
                   1335: window_pane_find_down(struct window_pane *wp)
                   1336: {
1.237     nicm     1337:        struct window           *w;
1.126     nicm     1338:        struct window_pane      *next, *best, **list;
                   1339:        u_int                    edge, left, right, end, size;
1.187     nicm     1340:        int                      status, found;
1.45      nicm     1341:
1.213     nicm     1342:        if (wp == NULL)
1.45      nicm     1343:                return (NULL);
1.237     nicm     1344:        w = wp->window;
                   1345:        status = options_get_number(w->options, "pane-border-status");
1.126     nicm     1346:
                   1347:        list = NULL;
                   1348:        size = 0;
1.109     nicm     1349:
                   1350:        edge = wp->yoff + wp->sy + 1;
1.237     nicm     1351:        if (status == PANE_STATUS_TOP) {
                   1352:                if (edge >= w->sy)
                   1353:                        edge = 1;
                   1354:        } else if (status == PANE_STATUS_BOTTOM) {
                   1355:                if (edge >= w->sy - 1)
                   1356:                        edge = 0;
                   1357:        } else {
1.239     nicm     1358:                if (edge >= w->sy)
1.237     nicm     1359:                        edge = 0;
                   1360:        }
1.45      nicm     1361:
                   1362:        left = wp->xoff;
1.109     nicm     1363:        right = wp->xoff + wp->sx;
1.45      nicm     1364:
1.237     nicm     1365:        TAILQ_FOREACH(next, &w->panes, entry) {
1.213     nicm     1366:                if (next == wp)
1.45      nicm     1367:                        continue;
1.109     nicm     1368:                if (next->yoff != edge)
1.45      nicm     1369:                        continue;
1.109     nicm     1370:                end = next->xoff + next->sx - 1;
                   1371:
                   1372:                found = 0;
                   1373:                if (next->xoff < left && end > right)
                   1374:                        found = 1;
                   1375:                else if (next->xoff >= left && next->xoff <= right)
                   1376:                        found = 1;
                   1377:                else if (end >= left && end <= right)
                   1378:                        found = 1;
1.126     nicm     1379:                if (!found)
                   1380:                        continue;
                   1381:                list = xreallocarray(list, size + 1, sizeof *list);
                   1382:                list[size++] = next;
1.45      nicm     1383:        }
1.109     nicm     1384:
1.126     nicm     1385:        best = window_pane_choose_best(list, size);
                   1386:        free(list);
1.109     nicm     1387:        return (best);
1.45      nicm     1388: }
                   1389:
1.109     nicm     1390: /* Find the pane directly to the left of another. */
1.45      nicm     1391: struct window_pane *
                   1392: window_pane_find_left(struct window_pane *wp)
                   1393: {
1.237     nicm     1394:        struct window           *w;
1.126     nicm     1395:        struct window_pane      *next, *best, **list;
                   1396:        u_int                    edge, top, bottom, end, size;
1.109     nicm     1397:        int                      found;
1.45      nicm     1398:
1.213     nicm     1399:        if (wp == NULL)
1.45      nicm     1400:                return (NULL);
1.237     nicm     1401:        w = wp->window;
1.126     nicm     1402:
                   1403:        list = NULL;
                   1404:        size = 0;
1.109     nicm     1405:
                   1406:        edge = wp->xoff;
                   1407:        if (edge == 0)
1.237     nicm     1408:                edge = w->sx + 1;
1.45      nicm     1409:
                   1410:        top = wp->yoff;
1.109     nicm     1411:        bottom = wp->yoff + wp->sy;
1.45      nicm     1412:
1.237     nicm     1413:        TAILQ_FOREACH(next, &w->panes, entry) {
1.213     nicm     1414:                if (next == wp)
1.45      nicm     1415:                        continue;
1.109     nicm     1416:                if (next->xoff + next->sx + 1 != edge)
1.45      nicm     1417:                        continue;
1.109     nicm     1418:                end = next->yoff + next->sy - 1;
                   1419:
                   1420:                found = 0;
                   1421:                if (next->yoff < top && end > bottom)
                   1422:                        found = 1;
                   1423:                else if (next->yoff >= top && next->yoff <= bottom)
                   1424:                        found = 1;
                   1425:                else if (end >= top && end <= bottom)
                   1426:                        found = 1;
1.126     nicm     1427:                if (!found)
                   1428:                        continue;
                   1429:                list = xreallocarray(list, size + 1, sizeof *list);
                   1430:                list[size++] = next;
1.45      nicm     1431:        }
1.109     nicm     1432:
1.126     nicm     1433:        best = window_pane_choose_best(list, size);
                   1434:        free(list);
1.109     nicm     1435:        return (best);
1.45      nicm     1436: }
                   1437:
1.109     nicm     1438: /* Find the pane directly to the right of another. */
1.45      nicm     1439: struct window_pane *
                   1440: window_pane_find_right(struct window_pane *wp)
                   1441: {
1.237     nicm     1442:        struct window           *w;
1.126     nicm     1443:        struct window_pane      *next, *best, **list;
                   1444:        u_int                    edge, top, bottom, end, size;
1.109     nicm     1445:        int                      found;
1.45      nicm     1446:
1.213     nicm     1447:        if (wp == NULL)
1.45      nicm     1448:                return (NULL);
1.237     nicm     1449:        w = wp->window;
1.126     nicm     1450:
                   1451:        list = NULL;
                   1452:        size = 0;
1.109     nicm     1453:
                   1454:        edge = wp->xoff + wp->sx + 1;
1.237     nicm     1455:        if (edge >= w->sx)
1.109     nicm     1456:                edge = 0;
1.45      nicm     1457:
                   1458:        top = wp->yoff;
1.109     nicm     1459:        bottom = wp->yoff + wp->sy;
1.45      nicm     1460:
1.237     nicm     1461:        TAILQ_FOREACH(next, &w->panes, entry) {
1.213     nicm     1462:                if (next == wp)
1.45      nicm     1463:                        continue;
1.109     nicm     1464:                if (next->xoff != edge)
1.45      nicm     1465:                        continue;
1.109     nicm     1466:                end = next->yoff + next->sy - 1;
                   1467:
                   1468:                found = 0;
                   1469:                if (next->yoff < top && end > bottom)
                   1470:                        found = 1;
                   1471:                else if (next->yoff >= top && next->yoff <= bottom)
                   1472:                        found = 1;
                   1473:                else if (end >= top && end <= bottom)
                   1474:                        found = 1;
1.126     nicm     1475:                if (!found)
                   1476:                        continue;
                   1477:                list = xreallocarray(list, size + 1, sizeof *list);
                   1478:                list[size++] = next;
1.109     nicm     1479:        }
                   1480:
1.126     nicm     1481:        best = window_pane_choose_best(list, size);
                   1482:        free(list);
1.109     nicm     1483:        return (best);
1.81      nicm     1484: }
                   1485:
                   1486: /* Clear alert flags for a winlink */
                   1487: void
                   1488: winlink_clear_flags(struct winlink *wl)
                   1489: {
1.174     nicm     1490:        struct winlink  *loop;
1.81      nicm     1491:
1.174     nicm     1492:        wl->window->flags &= ~WINDOW_ALERTFLAGS;
                   1493:        TAILQ_FOREACH(loop, &wl->window->winlinks, wentry) {
                   1494:                if ((loop->flags & WINLINK_ALERTFLAGS) != 0) {
                   1495:                        loop->flags &= ~WINLINK_ALERTFLAGS;
                   1496:                        server_status_session(loop->session);
1.81      nicm     1497:                }
                   1498:        }
1.134     nicm     1499: }
                   1500:
1.184     nicm     1501: /* Shuffle window indexes up. */
1.134     nicm     1502: int
1.266     nicm     1503: winlink_shuffle_up(struct session *s, struct winlink *wl, int before)
1.134     nicm     1504: {
                   1505:        int      idx, last;
                   1506:
1.226     nicm     1507:        if (wl == NULL)
                   1508:                return (-1);
1.266     nicm     1509:        if (before)
                   1510:                idx = wl->idx;
                   1511:        else
                   1512:                idx = wl->idx + 1;
1.134     nicm     1513:
                   1514:        /* Find the next free index. */
                   1515:        for (last = idx; last < INT_MAX; last++) {
                   1516:                if (winlink_find_by_index(&s->windows, last) == NULL)
                   1517:                        break;
                   1518:        }
                   1519:        if (last == INT_MAX)
                   1520:                return (-1);
                   1521:
                   1522:        /* Move everything from last - 1 to idx up a bit. */
                   1523:        for (; last > idx; last--) {
                   1524:                wl = winlink_find_by_index(&s->windows, last - 1);
1.266     nicm     1525:                RB_REMOVE(winlinks, &s->windows, wl);
                   1526:                wl->idx++;
                   1527:                RB_INSERT(winlinks, &s->windows, wl);
1.134     nicm     1528:        }
                   1529:
                   1530:        return (idx);
1.228     nicm     1531: }
                   1532:
                   1533: static void
1.246     nicm     1534: window_pane_input_callback(struct client *c, __unused const char *path,
                   1535:     int error, int closed, struct evbuffer *buffer, void *data)
1.228     nicm     1536: {
                   1537:        struct window_pane_input_data   *cdata = data;
                   1538:        struct window_pane              *wp;
1.246     nicm     1539:        u_char                          *buf = EVBUFFER_DATA(buffer);
                   1540:        size_t                           len = EVBUFFER_LENGTH(buffer);
1.228     nicm     1541:
                   1542:        wp = window_pane_find_by_id(cdata->wp);
1.246     nicm     1543:        if (wp == NULL || closed || error != 0 || c->flags & CLIENT_DEAD) {
1.243     nicm     1544:                if (wp == NULL)
                   1545:                        c->flags |= CLIENT_EXIT;
                   1546:
1.246     nicm     1547:                evbuffer_drain(buffer, len);
                   1548:                cmdq_continue(cdata->item);
                   1549:
1.228     nicm     1550:                server_client_unref(c);
                   1551:                free(cdata);
                   1552:                return;
                   1553:        }
1.229     nicm     1554:        input_parse_buffer(wp, buf, len);
1.246     nicm     1555:        evbuffer_drain(buffer, len);
1.228     nicm     1556: }
                   1557:
                   1558: int
                   1559: window_pane_start_input(struct window_pane *wp, struct cmdq_item *item,
                   1560:     char **cause)
                   1561: {
1.256     nicm     1562:        struct client                   *c = cmdq_get_client(item);
1.228     nicm     1563:        struct window_pane_input_data   *cdata;
                   1564:
                   1565:        if (~wp->flags & PANE_EMPTY) {
                   1566:                *cause = xstrdup("pane is not empty");
                   1567:                return (-1);
                   1568:        }
                   1569:
                   1570:        cdata = xmalloc(sizeof *cdata);
                   1571:        cdata->item = item;
                   1572:        cdata->wp = wp->id;
                   1573:
1.246     nicm     1574:        c->references++;
                   1575:        file_read(c, "-", window_pane_input_callback, cdata);
                   1576:
                   1577:        return (0);
1.263     nicm     1578: }
                   1579:
                   1580: void *
                   1581: window_pane_get_new_data(struct window_pane *wp,
                   1582:     struct window_pane_offset *wpo, size_t *size)
                   1583: {
                   1584:        size_t  used = wpo->used - wp->base_offset;
                   1585:
                   1586:        *size = EVBUFFER_LENGTH(wp->event->input) - used;
                   1587:        return (EVBUFFER_DATA(wp->event->input) + used);
                   1588: }
                   1589:
                   1590: void
                   1591: window_pane_update_used_data(struct window_pane *wp,
1.264     nicm     1592:     struct window_pane_offset *wpo, size_t size)
1.263     nicm     1593: {
                   1594:        size_t  used = wpo->used - wp->base_offset;
                   1595:
                   1596:        if (size > EVBUFFER_LENGTH(wp->event->input) - used)
                   1597:                size = EVBUFFER_LENGTH(wp->event->input) - used;
                   1598:        wpo->used += size;
1.1       nicm     1599: }