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

1.161   ! nicm        1: /* $OpenBSD: window.c,v 1.160 2016/05/30 09:50:21 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>
                     20:
                     21: #include <errno.h>
                     22: #include <fcntl.h>
1.5       nicm       23: #include <fnmatch.h>
1.1       nicm       24: #include <stdint.h>
                     25: #include <stdlib.h>
                     26: #include <string.h>
                     27: #include <termios.h>
                     28: #include <unistd.h>
                     29: #include <util.h>
                     30:
                     31: #include "tmux.h"
                     32:
                     33: /*
1.14      nicm       34:  * Each window is attached to a number of panes, each of which is a pty. This
1.1       nicm       35:  * file contains code to handle them.
                     36:  *
                     37:  * A pane has two buffers attached, these are filled and emptied by the main
                     38:  * server poll loop. Output data is received from pty's in screen format,
                     39:  * translated and returned as a series of escape sequences and strings via
                     40:  * input_parse (in input.c). Input data is received as key codes and written
                     41:  * directly via input_key.
                     42:  *
                     43:  * Each pane also has a "virtual" screen (screen.c) which contains the current
                     44:  * state and is redisplayed when the window is reattached to a client.
                     45:  *
                     46:  * Windows are stored directly on a global array and wrapped in any number of
                     47:  * winlink structs to be linked onto local session RB trees. A reference count
                     48:  * is maintained and a window removed from the global list and destroyed when
                     49:  * it reaches zero.
                     50:  */
1.124     nicm       51:
1.1       nicm       52: /* Global window list. */
                     53: struct windows windows;
                     54:
1.64      nicm       55: /* Global panes tree. */
                     56: struct window_pane_tree all_window_panes;
1.71      nicm       57: u_int  next_window_pane_id;
                     58: u_int  next_window_id;
1.109     nicm       59: u_int  next_active_point;
1.100     nicm       60:
1.131     nicm       61: void   window_pane_timer_callback(int, short, void *);
1.37      nicm       62: void   window_pane_read_callback(struct bufferevent *, void *);
                     63: void   window_pane_error_callback(struct bufferevent *, short, void *);
                     64:
1.126     nicm       65: struct window_pane *window_pane_choose_best(struct window_pane **, u_int);
1.109     nicm       66:
1.122     nicm       67: RB_GENERATE(windows, window, entry, window_cmp);
                     68:
                     69: int
                     70: window_cmp(struct window *w1, struct window *w2)
                     71: {
                     72:        return (w1->id - w2->id);
                     73: }
                     74:
1.1       nicm       75: RB_GENERATE(winlinks, winlink, entry, winlink_cmp);
                     76:
                     77: int
                     78: winlink_cmp(struct winlink *wl1, struct winlink *wl2)
                     79: {
                     80:        return (wl1->idx - wl2->idx);
1.12      nicm       81: }
                     82:
1.64      nicm       83: RB_GENERATE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
                     84:
                     85: int
                     86: window_pane_cmp(struct window_pane *wp1, struct window_pane *wp2)
                     87: {
                     88:        return (wp1->id - wp2->id);
                     89: }
                     90:
1.12      nicm       91: struct winlink *
                     92: winlink_find_by_window(struct winlinks *wwl, struct window *w)
                     93: {
                     94:        struct winlink  *wl;
                     95:
                     96:        RB_FOREACH(wl, winlinks, wwl) {
                     97:                if (wl->window == w)
                     98:                        return (wl);
                     99:        }
                    100:
                    101:        return (NULL);
1.1       nicm      102: }
                    103:
                    104: struct winlink *
                    105: winlink_find_by_index(struct winlinks *wwl, int idx)
                    106: {
                    107:        struct winlink  wl;
                    108:
                    109:        if (idx < 0)
                    110:                fatalx("bad index");
                    111:
                    112:        wl.idx = idx;
                    113:        return (RB_FIND(winlinks, wwl, &wl));
                    114: }
                    115:
1.71      nicm      116: struct winlink *
                    117: winlink_find_by_window_id(struct winlinks *wwl, u_int id)
                    118: {
                    119:        struct winlink *wl;
                    120:
                    121:        RB_FOREACH(wl, winlinks, wwl) {
                    122:                if (wl->window->id == id)
                    123:                        return (wl);
                    124:        }
1.78      nicm      125:        return (NULL);
1.71      nicm      126: }
                    127:
1.1       nicm      128: int
1.22      nicm      129: winlink_next_index(struct winlinks *wwl, int idx)
1.1       nicm      130: {
1.22      nicm      131:        int     i;
1.1       nicm      132:
1.22      nicm      133:        i = idx;
                    134:        do {
1.1       nicm      135:                if (winlink_find_by_index(wwl, i) == NULL)
                    136:                        return (i);
1.22      nicm      137:                if (i == INT_MAX)
                    138:                        i = 0;
                    139:                else
                    140:                        i++;
                    141:        } while (i != idx);
                    142:        return (-1);
1.1       nicm      143: }
                    144:
                    145: u_int
                    146: winlink_count(struct winlinks *wwl)
                    147: {
                    148:        struct winlink  *wl;
                    149:        u_int            n;
                    150:
                    151:        n = 0;
                    152:        RB_FOREACH(wl, winlinks, wwl)
                    153:                n++;
                    154:
                    155:        return (n);
                    156: }
                    157:
                    158: struct winlink *
1.63      nicm      159: winlink_add(struct winlinks *wwl, int idx)
1.1       nicm      160: {
                    161:        struct winlink  *wl;
                    162:
1.22      nicm      163:        if (idx < 0) {
                    164:                if ((idx = winlink_next_index(wwl, -idx - 1)) == -1)
                    165:                        return (NULL);
                    166:        } else if (winlink_find_by_index(wwl, idx) != NULL)
1.1       nicm      167:                return (NULL);
                    168:
                    169:        wl = xcalloc(1, sizeof *wl);
                    170:        wl->idx = idx;
                    171:        RB_INSERT(winlinks, wwl, wl);
                    172:
1.63      nicm      173:        return (wl);
                    174: }
                    175:
                    176: void
                    177: winlink_set_window(struct winlink *wl, struct window *w)
                    178: {
                    179:        wl->window = w;
1.1       nicm      180:        w->references++;
                    181: }
                    182:
                    183: void
                    184: winlink_remove(struct winlinks *wwl, struct winlink *wl)
                    185: {
                    186:        struct window   *w = wl->window;
                    187:
                    188:        RB_REMOVE(winlinks, wwl, wl);
1.82      nicm      189:        free(wl->status_text);
                    190:        free(wl);
1.1       nicm      191:
1.84      nicm      192:        if (w != NULL)
                    193:                window_remove_ref(w);
1.1       nicm      194: }
                    195:
                    196: struct winlink *
1.41      nicm      197: winlink_next(struct winlink *wl)
1.1       nicm      198: {
                    199:        return (RB_NEXT(winlinks, wwl, wl));
                    200: }
                    201:
                    202: struct winlink *
1.41      nicm      203: winlink_previous(struct winlink *wl)
1.1       nicm      204: {
                    205:        return (RB_PREV(winlinks, wwl, wl));
1.52      nicm      206: }
                    207:
                    208: struct winlink *
1.53      nicm      209: winlink_next_by_number(struct winlink *wl, struct session *s, int n)
1.52      nicm      210: {
                    211:        for (; n > 0; n--) {
                    212:                if ((wl = RB_NEXT(winlinks, wwl, wl)) == NULL)
1.53      nicm      213:                        wl = RB_MIN(winlinks, &s->windows);
1.52      nicm      214:        }
                    215:
                    216:        return (wl);
                    217: }
                    218:
                    219: struct winlink *
1.53      nicm      220: winlink_previous_by_number(struct winlink *wl, struct session *s, int n)
1.52      nicm      221: {
                    222:        for (; n > 0; n--) {
                    223:                if ((wl = RB_PREV(winlinks, wwl, wl)) == NULL)
1.53      nicm      224:                        wl = RB_MAX(winlinks, &s->windows);
1.52      nicm      225:        }
                    226:
                    227:        return (wl);
1.1       nicm      228: }
                    229:
                    230: void
                    231: winlink_stack_push(struct winlink_stack *stack, struct winlink *wl)
                    232: {
                    233:        if (wl == NULL)
                    234:                return;
                    235:
                    236:        winlink_stack_remove(stack, wl);
1.28      nicm      237:        TAILQ_INSERT_HEAD(stack, wl, sentry);
1.1       nicm      238: }
                    239:
                    240: void
                    241: winlink_stack_remove(struct winlink_stack *stack, struct winlink *wl)
                    242: {
                    243:        struct winlink  *wl2;
                    244:
                    245:        if (wl == NULL)
                    246:                return;
1.42      nicm      247:
1.28      nicm      248:        TAILQ_FOREACH(wl2, stack, sentry) {
1.1       nicm      249:                if (wl2 == wl) {
1.28      nicm      250:                        TAILQ_REMOVE(stack, wl, sentry);
1.1       nicm      251:                        return;
                    252:                }
                    253:        }
                    254: }
                    255:
                    256: struct window *
1.125     nicm      257: window_find_by_id_str(const char *s)
1.123     nicm      258: {
                    259:        const char      *errstr;
                    260:        u_int            id;
                    261:
                    262:        if (*s != '@')
                    263:                return (NULL);
                    264:
                    265:        id = strtonum(s + 1, 0, UINT_MAX, &errstr);
                    266:        if (errstr != NULL)
                    267:                return (NULL);
                    268:        return (window_find_by_id(id));
                    269: }
                    270:
                    271: struct window *
1.71      nicm      272: window_find_by_id(u_int id)
                    273: {
1.122     nicm      274:        struct window   w;
1.71      nicm      275:
1.122     nicm      276:        w.id = id;
                    277:        return (RB_FIND(windows, &windows, &w));
1.71      nicm      278: }
                    279:
1.143     nicm      280: void
                    281: window_update_activity(struct window *w)
                    282: {
                    283:        gettimeofday(&w->activity_time, NULL);
                    284:        alerts_queue(w, WINDOW_ACTIVITY);
                    285: }
                    286:
1.71      nicm      287: struct window *
1.1       nicm      288: window_create1(u_int sx, u_int sy)
                    289: {
                    290:        struct window   *w;
                    291:
1.38      nicm      292:        w = xcalloc(1, sizeof *w);
1.1       nicm      293:        w->name = NULL;
1.160     nicm      294:        w->flags = WINDOW_STYLECHANGED;
1.1       nicm      295:
                    296:        TAILQ_INIT(&w->panes);
                    297:        w->active = NULL;
1.14      nicm      298:
1.17      nicm      299:        w->lastlayout = -1;
1.14      nicm      300:        w->layout_root = NULL;
1.42      nicm      301:
1.1       nicm      302:        w->sx = sx;
                    303:        w->sy = sy;
1.133     nicm      304:
1.146     nicm      305:        w->options = options_create(global_w_options);
1.1       nicm      306:
                    307:        w->references = 0;
                    308:
1.122     nicm      309:        w->id = next_window_id++;
1.129     nicm      310:        RB_INSERT(windows, &windows, w);
1.122     nicm      311:
1.143     nicm      312:        window_update_activity(w);
                    313:
1.1       nicm      314:        return (w);
                    315: }
                    316:
                    317: struct window *
1.110     nicm      318: window_create(const char *name, int argc, char **argv, const char *path,
1.147     nicm      319:     const char *shell, const char *cwd, struct environ *env,
                    320:     struct termios *tio, u_int sx, u_int sy, u_int hlimit, char **cause)
1.1       nicm      321: {
1.14      nicm      322:        struct window           *w;
                    323:        struct window_pane      *wp;
1.1       nicm      324:
                    325:        w = window_create1(sx, sy);
1.161   ! nicm      326:        wp = window_add_pane(w, NULL, hlimit);
1.93      nicm      327:        layout_init(w, wp);
1.91      nicm      328:
1.110     nicm      329:        if (window_pane_spawn(wp, argc, argv, path, shell, cwd, env, tio,
1.107     nicm      330:            cause) != 0) {
1.1       nicm      331:                window_destroy(w);
                    332:                return (NULL);
                    333:        }
1.91      nicm      334:
1.1       nicm      335:        w->active = TAILQ_FIRST(&w->panes);
                    336:        if (name != NULL) {
                    337:                w->name = xstrdup(name);
1.146     nicm      338:                options_set_number(w->options, "automatic-rename", 0);
1.1       nicm      339:        } else
                    340:                w->name = default_window_name(w);
1.91      nicm      341:
1.1       nicm      342:        return (w);
                    343: }
                    344:
                    345: void
                    346: window_destroy(struct window *w)
                    347: {
1.122     nicm      348:        RB_REMOVE(windows, &windows, w);
1.1       nicm      349:
1.14      nicm      350:        if (w->layout_root != NULL)
1.135     nicm      351:                layout_free_cell(w->layout_root);
                    352:        if (w->saved_layout_root != NULL)
                    353:                layout_free_cell(w->saved_layout_root);
1.127     nicm      354:        free(w->old_layout);
1.139     nicm      355:
1.141     nicm      356:        if (event_initialized(&w->name_event))
                    357:                evtimer_del(&w->name_event);
1.38      nicm      358:
1.143     nicm      359:        if (event_initialized(&w->alerts_timer))
                    360:                evtimer_del(&w->alerts_timer);
                    361:
1.146     nicm      362:        options_free(w->options);
1.1       nicm      363:
                    364:        window_destroy_panes(w);
                    365:
1.82      nicm      366:        free(w->name);
                    367:        free(w);
1.84      nicm      368: }
                    369:
                    370: void
                    371: window_remove_ref(struct window *w)
                    372: {
                    373:        if (w->references == 0)
                    374:                fatal("bad reference count");
                    375:        w->references--;
                    376:        if (w->references == 0)
                    377:                window_destroy(w);
1.72      nicm      378: }
                    379:
                    380: void
                    381: window_set_name(struct window *w, const char *new_name)
                    382: {
1.82      nicm      383:        free(w->name);
1.72      nicm      384:        w->name = xstrdup(new_name);
1.74      nicm      385:        notify_window_renamed(w);
1.1       nicm      386: }
                    387:
1.15      nicm      388: void
1.1       nicm      389: window_resize(struct window *w, u_int sx, u_int sy)
                    390: {
                    391:        w->sx = sx;
                    392:        w->sy = sy;
                    393: }
                    394:
1.114     nicm      395: int
1.118     nicm      396: window_has_pane(struct window *w, struct window_pane *wp)
                    397: {
                    398:        struct window_pane      *wp1;
                    399:
                    400:        TAILQ_FOREACH(wp1, &w->panes, entry) {
                    401:                if (wp1 == wp)
                    402:                        return (1);
                    403:        }
                    404:        return (0);
                    405: }
                    406:
                    407: int
1.1       nicm      408: window_set_active_pane(struct window *w, struct window_pane *wp)
                    409: {
1.59      nicm      410:        if (wp == w->active)
1.114     nicm      411:                return (0);
1.58      nicm      412:        w->last = w->active;
1.1       nicm      413:        w->active = wp;
1.10      nicm      414:        while (!window_pane_visible(w->active)) {
1.1       nicm      415:                w->active = TAILQ_PREV(w->active, window_panes, entry);
1.10      nicm      416:                if (w->active == NULL)
                    417:                        w->active = TAILQ_LAST(&w->panes, window_panes);
                    418:                if (w->active == wp)
1.114     nicm      419:                        return (1);
1.29      nicm      420:        }
1.109     nicm      421:        w->active->active_point = next_active_point++;
1.136     nicm      422:        w->active->flags |= PANE_CHANGED;
1.114     nicm      423:        return (1);
1.145     nicm      424: }
                    425:
                    426: void
                    427: window_redraw_active_switch(struct window *w, struct window_pane *wp)
                    428: {
                    429:        const struct grid_cell  *agc, *wgc;
                    430:
                    431:        if (wp == w->active)
                    432:                return;
                    433:
                    434:        /*
                    435:         * If window-style and window-active-style are the same, we don't need
                    436:         * to redraw panes when switching active panes. Otherwise, if the
                    437:         * active or inactive pane do not have a custom style, they will need
                    438:         * to be redrawn.
                    439:         */
1.146     nicm      440:        agc = options_get_style(w->options, "window-active-style");
                    441:        wgc = options_get_style(w->options, "window-style");
1.145     nicm      442:        if (style_equal(agc, wgc))
                    443:                return;
                    444:        if (style_equal(&grid_default_cell, &w->active->colgc))
                    445:                w->active->flags |= PANE_REDRAW;
                    446:        if (style_equal(&grid_default_cell, &wp->colgc))
                    447:                wp->flags |= PANE_REDRAW;
1.29      nicm      448: }
                    449:
1.66      nicm      450: struct window_pane *
                    451: window_get_active_at(struct window *w, u_int x, u_int y)
1.29      nicm      452: {
                    453:        struct window_pane      *wp;
                    454:
                    455:        TAILQ_FOREACH(wp, &w->panes, entry) {
1.66      nicm      456:                if (!window_pane_visible(wp))
1.29      nicm      457:                        continue;
1.66      nicm      458:                if (x < wp->xoff || x > wp->xoff + wp->sx)
1.29      nicm      459:                        continue;
1.66      nicm      460:                if (y < wp->yoff || y > wp->yoff + wp->sy)
1.29      nicm      461:                        continue;
1.66      nicm      462:                return (wp);
                    463:        }
                    464:        return (NULL);
                    465: }
                    466:
                    467: struct window_pane *
                    468: window_find_string(struct window *w, const char *s)
                    469: {
                    470:        u_int   x, y;
                    471:
                    472:        x = w->sx / 2;
                    473:        y = w->sy / 2;
                    474:
                    475:        if (strcasecmp(s, "top") == 0)
                    476:                y = 0;
                    477:        else if (strcasecmp(s, "bottom") == 0)
                    478:                y = w->sy - 1;
                    479:        else if (strcasecmp(s, "left") == 0)
                    480:                x = 0;
                    481:        else if (strcasecmp(s, "right") == 0)
                    482:                x = w->sx - 1;
                    483:        else if (strcasecmp(s, "top-left") == 0) {
                    484:                x = 0;
                    485:                y = 0;
                    486:        } else if (strcasecmp(s, "top-right") == 0) {
                    487:                x = w->sx - 1;
                    488:                y = 0;
                    489:        } else if (strcasecmp(s, "bottom-left") == 0) {
                    490:                x = 0;
                    491:                y = w->sy - 1;
                    492:        } else if (strcasecmp(s, "bottom-right") == 0) {
                    493:                x = w->sx - 1;
                    494:                y = w->sy - 1;
                    495:        } else
                    496:                return (NULL);
                    497:
                    498:        return (window_get_active_at(w, x, y));
1.1       nicm      499: }
                    500:
1.93      nicm      501: int
                    502: window_zoom(struct window_pane *wp)
                    503: {
                    504:        struct window           *w = wp->window;
                    505:        struct window_pane      *wp1;
                    506:
                    507:        if (w->flags & WINDOW_ZOOMED)
                    508:                return (-1);
                    509:
                    510:        if (!window_pane_visible(wp))
                    511:                return (-1);
1.94      nicm      512:
                    513:        if (window_count_panes(w) == 1)
                    514:                return (-1);
                    515:
1.93      nicm      516:        if (w->active != wp)
                    517:                window_set_active_pane(w, wp);
                    518:
                    519:        TAILQ_FOREACH(wp1, &w->panes, entry) {
                    520:                wp1->saved_layout_cell = wp1->layout_cell;
                    521:                wp1->layout_cell = NULL;
                    522:        }
                    523:
                    524:        w->saved_layout_root = w->layout_root;
                    525:        layout_init(w, wp);
                    526:        w->flags |= WINDOW_ZOOMED;
1.115     nicm      527:        notify_window_layout_changed(w);
1.93      nicm      528:
                    529:        return (0);
                    530: }
                    531:
                    532: int
                    533: window_unzoom(struct window *w)
                    534: {
1.97      nicm      535:        struct window_pane      *wp;
1.93      nicm      536:
                    537:        if (!(w->flags & WINDOW_ZOOMED))
                    538:                return (-1);
                    539:
                    540:        w->flags &= ~WINDOW_ZOOMED;
                    541:        layout_free(w);
                    542:        w->layout_root = w->saved_layout_root;
1.120     nicm      543:        w->saved_layout_root = NULL;
1.93      nicm      544:
1.97      nicm      545:        TAILQ_FOREACH(wp, &w->panes, entry) {
                    546:                wp->layout_cell = wp->saved_layout_cell;
                    547:                wp->saved_layout_cell = NULL;
1.93      nicm      548:        }
                    549:        layout_fix_panes(w, w->sx, w->sy);
1.115     nicm      550:        notify_window_layout_changed(w);
1.93      nicm      551:
                    552:        return (0);
                    553: }
                    554:
1.1       nicm      555: struct window_pane *
1.161   ! nicm      556: window_add_pane(struct window *w, struct window_pane *after, u_int hlimit)
1.1       nicm      557: {
                    558:        struct window_pane      *wp;
                    559:
1.14      nicm      560:        wp = window_pane_create(w, w->sx, w->sy, hlimit);
1.1       nicm      561:        if (TAILQ_EMPTY(&w->panes))
                    562:                TAILQ_INSERT_HEAD(&w->panes, wp, entry);
1.161   ! nicm      563:        else {
        !           564:                if (after == NULL)
        !           565:                        TAILQ_INSERT_AFTER(&w->panes, w->active, wp, entry);
        !           566:                else
        !           567:                        TAILQ_INSERT_AFTER(&w->panes, after, wp, entry);
        !           568:        }
1.1       nicm      569:        return (wp);
                    570: }
                    571:
                    572: void
1.105     nicm      573: window_lost_pane(struct window *w, struct window_pane *wp)
1.1       nicm      574: {
1.152     nicm      575:        if (wp == marked_pane.wp)
1.132     nicm      576:                server_clear_marked();
                    577:
1.57      nicm      578:        if (wp == w->active) {
1.58      nicm      579:                w->active = w->last;
                    580:                w->last = NULL;
                    581:                if (w->active == NULL) {
                    582:                        w->active = TAILQ_PREV(wp, window_panes, entry);
                    583:                        if (w->active == NULL)
                    584:                                w->active = TAILQ_NEXT(wp, entry);
                    585:                }
1.151     nicm      586:                if (w->active != NULL)
                    587:                        w->active->flags |= PANE_CHANGED;
1.58      nicm      588:        } else if (wp == w->last)
                    589:                w->last = NULL;
1.105     nicm      590: }
                    591:
                    592: void
                    593: window_remove_pane(struct window *w, struct window_pane *wp)
                    594: {
                    595:        window_lost_pane(w, wp);
1.1       nicm      596:
                    597:        TAILQ_REMOVE(&w->panes, wp, entry);
                    598:        window_pane_destroy(wp);
                    599: }
                    600:
                    601: struct window_pane *
                    602: window_pane_at_index(struct window *w, u_int idx)
                    603: {
                    604:        struct window_pane      *wp;
                    605:        u_int                    n;
                    606:
1.146     nicm      607:        n = options_get_number(w->options, "pane-base-index");
1.1       nicm      608:        TAILQ_FOREACH(wp, &w->panes, entry) {
                    609:                if (n == idx)
                    610:                        return (wp);
                    611:                n++;
                    612:        }
                    613:        return (NULL);
1.53      nicm      614: }
                    615:
                    616: struct window_pane *
                    617: window_pane_next_by_number(struct window *w, struct window_pane *wp, u_int n)
                    618: {
                    619:        for (; n > 0; n--) {
                    620:                if ((wp = TAILQ_NEXT(wp, entry)) == NULL)
                    621:                        wp = TAILQ_FIRST(&w->panes);
                    622:        }
                    623:
                    624:        return (wp);
                    625: }
                    626:
                    627: struct window_pane *
                    628: window_pane_previous_by_number(struct window *w, struct window_pane *wp,
                    629:     u_int n)
                    630: {
                    631:        for (; n > 0; n--) {
                    632:                if ((wp = TAILQ_PREV(wp, window_panes, entry)) == NULL)
                    633:                        wp = TAILQ_LAST(&w->panes, window_panes);
                    634:        }
                    635:
                    636:        return (wp);
1.13      nicm      637: }
                    638:
1.69      nicm      639: int
                    640: window_pane_index(struct window_pane *wp, u_int *i)
1.13      nicm      641: {
                    642:        struct window_pane      *wq;
1.69      nicm      643:        struct window           *w = wp->window;
1.13      nicm      644:
1.146     nicm      645:        *i = options_get_number(w->options, "pane-base-index");
1.13      nicm      646:        TAILQ_FOREACH(wq, &w->panes, entry) {
1.69      nicm      647:                if (wp == wq) {
                    648:                        return (0);
                    649:                }
                    650:                (*i)++;
1.13      nicm      651:        }
1.69      nicm      652:
                    653:        return (-1);
1.1       nicm      654: }
                    655:
                    656: u_int
                    657: window_count_panes(struct window *w)
                    658: {
                    659:        struct window_pane      *wp;
                    660:        u_int                    n;
                    661:
                    662:        n = 0;
                    663:        TAILQ_FOREACH(wp, &w->panes, entry)
                    664:                n++;
                    665:        return (n);
                    666: }
                    667:
                    668: void
                    669: window_destroy_panes(struct window *w)
                    670: {
                    671:        struct window_pane      *wp;
                    672:
                    673:        while (!TAILQ_EMPTY(&w->panes)) {
                    674:                wp = TAILQ_FIRST(&w->panes);
                    675:                TAILQ_REMOVE(&w->panes, wp, entry);
                    676:                window_pane_destroy(wp);
                    677:        }
1.61      nicm      678: }
                    679:
1.128     nicm      680: /* Retuns the printable flags on a window, empty string if no flags set. */
1.61      nicm      681: char *
                    682: window_printable_flags(struct session *s, struct winlink *wl)
                    683: {
1.119     nicm      684:        char    flags[32];
1.61      nicm      685:        int     pos;
                    686:
                    687:        pos = 0;
                    688:        if (wl->flags & WINLINK_ACTIVITY)
                    689:                flags[pos++] = '#';
                    690:        if (wl->flags & WINLINK_BELL)
                    691:                flags[pos++] = '!';
                    692:        if (wl->flags & WINLINK_SILENCE)
                    693:                flags[pos++] = '~';
                    694:        if (wl == s->curw)
                    695:                flags[pos++] = '*';
                    696:        if (wl == TAILQ_FIRST(&s->lastw))
                    697:                flags[pos++] = '-';
1.152     nicm      698:        if (server_check_marked() && wl == marked_pane.wl)
1.132     nicm      699:                flags[pos++] = 'M';
1.93      nicm      700:        if (wl->window->flags & WINDOW_ZOOMED)
                    701:                flags[pos++] = 'Z';
1.61      nicm      702:        flags[pos] = '\0';
                    703:        return (xstrdup(flags));
1.1       nicm      704: }
                    705:
1.123     nicm      706: struct window_pane *
                    707: window_pane_find_by_id_str(const char *s)
                    708: {
                    709:        const char      *errstr;
                    710:        u_int            id;
                    711:
                    712:        if (*s != '%')
                    713:                return (NULL);
                    714:
                    715:        id = strtonum(s + 1, 0, UINT_MAX, &errstr);
                    716:        if (errstr != NULL)
                    717:                return (NULL);
                    718:        return (window_pane_find_by_id(id));
                    719: }
                    720:
1.64      nicm      721: struct window_pane *
                    722: window_pane_find_by_id(u_int id)
                    723: {
                    724:        struct window_pane      wp;
                    725:
                    726:        wp.id = id;
                    727:        return (RB_FIND(window_pane_tree, &all_window_panes, &wp));
                    728: }
                    729:
1.1       nicm      730: struct window_pane *
                    731: window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit)
                    732: {
                    733:        struct window_pane      *wp;
1.140     nicm      734:        char                     host[HOST_NAME_MAX + 1];
1.1       nicm      735:
                    736:        wp = xcalloc(1, sizeof *wp);
                    737:        wp->window = w;
                    738:
1.71      nicm      739:        wp->id = next_window_pane_id++;
1.64      nicm      740:        RB_INSERT(window_pane_tree, &all_window_panes, wp);
                    741:
1.110     nicm      742:        wp->argc = 0;
                    743:        wp->argv = NULL;
1.23      nicm      744:        wp->shell = NULL;
1.147     nicm      745:        wp->cwd = NULL;
1.1       nicm      746:
                    747:        wp->fd = -1;
1.37      nicm      748:        wp->event = NULL;
1.1       nicm      749:
                    750:        wp->mode = NULL;
1.14      nicm      751:
                    752:        wp->layout_cell = NULL;
1.1       nicm      753:
                    754:        wp->xoff = 0;
1.42      nicm      755:        wp->yoff = 0;
1.1       nicm      756:
                    757:        wp->sx = sx;
                    758:        wp->sy = sy;
                    759:
1.32      nicm      760:        wp->pipe_fd = -1;
                    761:        wp->pipe_off = 0;
1.36      nicm      762:        wp->pipe_event = NULL;
1.32      nicm      763:
1.9       nicm      764:        wp->saved_grid = NULL;
1.117     nicm      765:
                    766:        memcpy(&wp->colgc, &grid_default_cell, sizeof wp->colgc);
1.9       nicm      767:
1.1       nicm      768:        screen_init(&wp->base, sx, sy, hlimit);
                    769:        wp->screen = &wp->base;
1.159     nicm      770:
                    771:        screen_init(&wp->status_screen, 1, 1, 0);
1.140     nicm      772:
                    773:        if (gethostname(host, sizeof host) == 0)
                    774:                screen_set_title(&wp->base, host);
1.1       nicm      775:
                    776:        input_init(wp);
                    777:
                    778:        return (wp);
                    779: }
                    780:
                    781: void
                    782: window_pane_destroy(struct window_pane *wp)
                    783: {
1.55      nicm      784:        window_pane_reset_mode(wp);
                    785:
1.37      nicm      786:        if (wp->fd != -1) {
1.70      nicm      787:                bufferevent_free(wp->event);
1.1       nicm      788:                close(wp->fd);
1.37      nicm      789:        }
1.1       nicm      790:
                    791:        input_free(wp);
                    792:
                    793:        screen_free(&wp->base);
1.9       nicm      794:        if (wp->saved_grid != NULL)
                    795:                grid_destroy(wp->saved_grid);
1.1       nicm      796:
1.32      nicm      797:        if (wp->pipe_fd != -1) {
1.70      nicm      798:                bufferevent_free(wp->pipe_event);
1.32      nicm      799:                close(wp->pipe_fd);
                    800:        }
                    801:
1.64      nicm      802:        RB_REMOVE(window_pane_tree, &all_window_panes, wp);
                    803:
1.147     nicm      804:        free((void *)wp->cwd);
1.82      nicm      805:        free(wp->shell);
1.110     nicm      806:        cmd_free_argv(wp->argc, wp->argv);
1.82      nicm      807:        free(wp);
1.1       nicm      808: }
                    809:
                    810: int
1.110     nicm      811: window_pane_spawn(struct window_pane *wp, int argc, char **argv,
1.147     nicm      812:     const char *path, const char *shell, const char *cwd, struct environ *env,
1.110     nicm      813:     struct termios *tio, char **cause)
1.1       nicm      814: {
1.47      nicm      815:        struct winsize   ws;
1.150     nicm      816:        char            *argv0, *cmd, **argvp;
1.147     nicm      817:        const char      *ptr, *first, *home;
1.47      nicm      818:        struct termios   tio2;
1.110     nicm      819:        int              i;
1.1       nicm      820:
1.37      nicm      821:        if (wp->fd != -1) {
1.70      nicm      822:                bufferevent_free(wp->event);
1.1       nicm      823:                close(wp->fd);
1.37      nicm      824:        }
1.110     nicm      825:        if (argc > 0) {
                    826:                cmd_free_argv(wp->argc, wp->argv);
                    827:                wp->argc = argc;
                    828:                wp->argv = cmd_copy_argv(argc, argv);
1.1       nicm      829:        }
1.23      nicm      830:        if (shell != NULL) {
1.82      nicm      831:                free(wp->shell);
1.23      nicm      832:                wp->shell = xstrdup(shell);
                    833:        }
1.147     nicm      834:        if (cwd != NULL) {
                    835:                free((void *)wp->cwd);
                    836:                wp->cwd = xstrdup(cwd);
1.1       nicm      837:        }
1.91      nicm      838:
1.110     nicm      839:        cmd = cmd_stringify_argv(wp->argc, wp->argv);
                    840:        log_debug("spawn: %s -- %s", wp->shell, cmd);
                    841:        for (i = 0; i < wp->argc; i++)
                    842:                log_debug("spawn: argv[%d] = %s", i, wp->argv[i]);
1.1       nicm      843:
                    844:        memset(&ws, 0, sizeof ws);
                    845:        ws.ws_col = screen_size_x(&wp->base);
                    846:        ws.ws_row = screen_size_y(&wp->base);
                    847:
1.42      nicm      848:        switch (wp->pid = forkpty(&wp->fd, wp->tty, NULL, &ws)) {
1.1       nicm      849:        case -1:
                    850:                wp->fd = -1;
                    851:                xasprintf(cause, "%s: %s", cmd, strerror(errno));
1.110     nicm      852:                free(cmd);
1.1       nicm      853:                return (-1);
                    854:        case 0:
1.147     nicm      855:                if (chdir(wp->cwd) != 0) {
                    856:                        if ((home = find_home()) == NULL || chdir(home) != 0)
                    857:                                chdir("/");
                    858:                }
1.25      nicm      859:
                    860:                if (tcgetattr(STDIN_FILENO, &tio2) != 0)
                    861:                        fatal("tcgetattr failed");
                    862:                if (tio != NULL)
                    863:                        memcpy(tio2.c_cc, tio->c_cc, sizeof tio2.c_cc);
                    864:                tio2.c_cc[VERASE] = '\177';
                    865:                if (tcsetattr(STDIN_FILENO, TCSANOW, &tio2) != 0)
                    866:                        fatal("tcgetattr failed");
1.18      nicm      867:
1.56      nicm      868:                closefrom(STDERR_FILENO + 1);
                    869:
1.107     nicm      870:                if (path != NULL)
1.150     nicm      871:                        environ_set(env, "PATH", "%s", path);
                    872:                environ_set(env, "TMUX_PANE", "%%%u", wp->id);
1.47      nicm      873:                environ_push(env);
1.18      nicm      874:
1.54      nicm      875:                clear_signals(1);
1.1       nicm      876:                log_close();
                    877:
1.80      nicm      878:                setenv("SHELL", wp->shell, 1);
                    879:                ptr = strrchr(wp->shell, '/');
                    880:
1.110     nicm      881:                /*
                    882:                 * If given one argument, assume it should be passed to sh -c;
                    883:                 * with more than one argument, use execvp(). If there is no
                    884:                 * arguments, create a login shell.
                    885:                 */
                    886:                if (wp->argc > 0) {
                    887:                        if (wp->argc != 1) {
                    888:                                /* Copy to ensure argv ends in NULL. */
                    889:                                argvp = cmd_copy_argv(wp->argc, wp->argv);
                    890:                                execvp(argvp[0], argvp);
                    891:                                fatal("execvp failed");
                    892:                        }
                    893:                        first = wp->argv[0];
                    894:
1.80      nicm      895:                        if (ptr != NULL && *(ptr + 1) != '\0')
                    896:                                xasprintf(&argv0, "%s", ptr + 1);
                    897:                        else
                    898:                                xasprintf(&argv0, "%s", wp->shell);
1.110     nicm      899:                        execl(wp->shell, argv0, "-c", first, (char *)NULL);
1.8       nicm      900:                        fatal("execl failed");
                    901:                }
1.23      nicm      902:                if (ptr != NULL && *(ptr + 1) != '\0')
1.8       nicm      903:                        xasprintf(&argv0, "-%s", ptr + 1);
                    904:                else
1.23      nicm      905:                        xasprintf(&argv0, "-%s", wp->shell);
1.110     nicm      906:                execl(wp->shell, argv0, (char *)NULL);
1.1       nicm      907:                fatal("execl failed");
                    908:        }
                    909:
1.62      nicm      910:        setblocking(wp->fd, 0);
                    911:
1.110     nicm      912:        wp->event = bufferevent_new(wp->fd, window_pane_read_callback, NULL,
                    913:            window_pane_error_callback, wp);
1.131     nicm      914:
                    915:        bufferevent_setwatermark(wp->event, EV_READ, 0, READ_SIZE);
1.37      nicm      916:        bufferevent_enable(wp->event, EV_READ|EV_WRITE);
1.1       nicm      917:
1.110     nicm      918:        free(cmd);
1.1       nicm      919:        return (0);
                    920: }
                    921:
1.15      nicm      922: void
1.149     nicm      923: window_pane_read_callback(__unused struct bufferevent *bufev, void *data)
1.37      nicm      924: {
1.131     nicm      925:        struct window_pane      *wp = data;
                    926:        struct evbuffer         *evb = wp->event->input;
                    927:        char                    *new_data;
1.158     nicm      928:        size_t                   new_size;
1.131     nicm      929:
1.158     nicm      930:        log_debug("%%%u has %zu bytes (of %zu)", wp->id, EVBUFFER_LENGTH(evb),
                    931:            (size_t)READ_SIZE);
1.131     nicm      932:
                    933:        new_size = EVBUFFER_LENGTH(evb) - wp->pipe_off;
1.46      nicm      934:        if (wp->pipe_fd != -1 && new_size > 0) {
1.155     nicm      935:                new_data = EVBUFFER_DATA(evb) + wp->pipe_off;
1.46      nicm      936:                bufferevent_write(wp->pipe_event, new_data, new_size);
                    937:        }
                    938:
                    939:        input_parse(wp);
1.37      nicm      940:
1.131     nicm      941:        wp->pipe_off = EVBUFFER_LENGTH(evb);
1.37      nicm      942: }
                    943:
                    944: void
1.149     nicm      945: window_pane_error_callback(__unused struct bufferevent *bufev,
                    946:     __unused short what, void *data)
1.37      nicm      947: {
                    948:        struct window_pane *wp = data;
                    949:
1.153     nicm      950:        server_destroy_pane(wp, 1);
1.37      nicm      951: }
                    952:
                    953: void
1.1       nicm      954: window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
                    955: {
                    956:        if (sx == wp->sx && sy == wp->sy)
1.15      nicm      957:                return;
1.1       nicm      958:        wp->sx = sx;
                    959:        wp->sy = sy;
                    960:
1.89      nicm      961:        screen_resize(&wp->base, sx, sy, wp->saved_grid == NULL);
1.1       nicm      962:        if (wp->mode != NULL)
                    963:                wp->mode->resize(wp, sx, sy);
1.95      nicm      964:
                    965:        wp->flags |= PANE_RESIZE;
1.44      nicm      966: }
                    967:
                    968: /*
                    969:  * Enter alternative screen mode. A copy of the visible screen is saved and the
                    970:  * history is not updated
                    971:  */
                    972: void
1.87      nicm      973: window_pane_alternate_on(struct window_pane *wp, struct grid_cell *gc,
                    974:     int cursor)
1.44      nicm      975: {
                    976:        struct screen   *s = &wp->base;
                    977:        u_int            sx, sy;
                    978:
                    979:        if (wp->saved_grid != NULL)
                    980:                return;
1.146     nicm      981:        if (!options_get_number(wp->window->options, "alternate-screen"))
1.44      nicm      982:                return;
                    983:        sx = screen_size_x(s);
                    984:        sy = screen_size_y(s);
                    985:
                    986:        wp->saved_grid = grid_create(sx, sy, 0);
                    987:        grid_duplicate_lines(wp->saved_grid, 0, s->grid, screen_hsize(s), sy);
1.87      nicm      988:        if (cursor) {
                    989:                wp->saved_cx = s->cx;
                    990:                wp->saved_cy = s->cy;
                    991:        }
1.44      nicm      992:        memcpy(&wp->saved_cell, gc, sizeof wp->saved_cell);
                    993:
                    994:        grid_view_clear(s->grid, 0, 0, sx, sy);
                    995:
                    996:        wp->base.grid->flags &= ~GRID_HISTORY;
                    997:
                    998:        wp->flags |= PANE_REDRAW;
                    999: }
                   1000:
                   1001: /* Exit alternate screen mode and restore the copied grid. */
                   1002: void
1.87      nicm     1003: window_pane_alternate_off(struct window_pane *wp, struct grid_cell *gc,
                   1004:     int cursor)
1.44      nicm     1005: {
                   1006:        struct screen   *s = &wp->base;
                   1007:        u_int            sx, sy;
                   1008:
                   1009:        if (wp->saved_grid == NULL)
                   1010:                return;
1.146     nicm     1011:        if (!options_get_number(wp->window->options, "alternate-screen"))
1.44      nicm     1012:                return;
                   1013:        sx = screen_size_x(s);
                   1014:        sy = screen_size_y(s);
                   1015:
                   1016:        /*
                   1017:         * If the current size is bigger, temporarily resize to the old size
                   1018:         * before copying back.
                   1019:         */
                   1020:        if (sy > wp->saved_grid->sy)
1.89      nicm     1021:                screen_resize(s, sx, wp->saved_grid->sy, 1);
1.44      nicm     1022:
                   1023:        /* Restore the grid, cursor position and cell. */
                   1024:        grid_duplicate_lines(s->grid, screen_hsize(s), wp->saved_grid, 0, sy);
1.87      nicm     1025:        if (cursor)
                   1026:                s->cx = wp->saved_cx;
1.44      nicm     1027:        if (s->cx > screen_size_x(s) - 1)
                   1028:                s->cx = screen_size_x(s) - 1;
1.87      nicm     1029:        if (cursor)
                   1030:                s->cy = wp->saved_cy;
1.44      nicm     1031:        if (s->cy > screen_size_y(s) - 1)
                   1032:                s->cy = screen_size_y(s) - 1;
                   1033:        memcpy(gc, &wp->saved_cell, sizeof *gc);
                   1034:
                   1035:        /*
                   1036:         * Turn history back on (so resize can use it) and then resize back to
                   1037:         * the current size.
                   1038:         */
                   1039:        wp->base.grid->flags |= GRID_HISTORY;
1.89      nicm     1040:        if (sy > wp->saved_grid->sy || sx != wp->saved_grid->sx)
                   1041:                screen_resize(s, sx, sy, 1);
1.44      nicm     1042:
                   1043:        grid_destroy(wp->saved_grid);
                   1044:        wp->saved_grid = NULL;
                   1045:
                   1046:        wp->flags |= PANE_REDRAW;
1.1       nicm     1047: }
                   1048:
                   1049: int
                   1050: window_pane_set_mode(struct window_pane *wp, const struct window_mode *mode)
                   1051: {
                   1052:        struct screen   *s;
                   1053:
1.15      nicm     1054:        if (wp->mode != NULL)
1.1       nicm     1055:                return (1);
                   1056:        wp->mode = mode;
                   1057:
                   1058:        if ((s = wp->mode->init(wp)) != NULL)
                   1059:                wp->screen = s;
1.142     nicm     1060:        wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1.157     nicm     1061:
                   1062:        server_status_window(wp->window);
1.1       nicm     1063:        return (0);
                   1064: }
                   1065:
                   1066: void
                   1067: window_pane_reset_mode(struct window_pane *wp)
                   1068: {
                   1069:        if (wp->mode == NULL)
                   1070:                return;
                   1071:
                   1072:        wp->mode->free(wp);
                   1073:        wp->mode = NULL;
                   1074:
                   1075:        wp->screen = &wp->base;
1.142     nicm     1076:        wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1.157     nicm     1077:
                   1078:        server_status_window(wp->window);
1.1       nicm     1079: }
                   1080:
                   1081: void
1.118     nicm     1082: window_pane_key(struct window_pane *wp, struct client *c, struct session *s,
1.148     nicm     1083:     key_code key, struct mouse_event *m)
1.1       nicm     1084: {
1.27      nicm     1085:        struct window_pane      *wp2;
1.3       nicm     1086:
1.118     nicm     1087:        if (KEYC_IS_MOUSE(key) && m == NULL)
                   1088:                return;
                   1089:
1.1       nicm     1090:        if (wp->mode != NULL) {
                   1091:                if (wp->mode->key != NULL)
1.118     nicm     1092:                        wp->mode->key(wp, c, s, key, m);
1.27      nicm     1093:                return;
1.30      nicm     1094:        }
1.27      nicm     1095:
1.113     nicm     1096:        if (wp->fd == -1 || wp->flags & PANE_INPUTOFF)
1.30      nicm     1097:                return;
1.113     nicm     1098:
1.118     nicm     1099:        input_key(wp, key, m);
                   1100:
                   1101:        if (KEYC_IS_MOUSE(key))
                   1102:                return;
1.146     nicm     1103:        if (options_get_number(wp->window->options, "synchronize-panes")) {
1.27      nicm     1104:                TAILQ_FOREACH(wp2, &wp->window->panes, entry) {
                   1105:                        if (wp2 == wp || wp2->mode != NULL)
                   1106:                                continue;
1.154     nicm     1107:                        if (wp2->fd == -1 || wp2->flags & PANE_INPUTOFF)
                   1108:                                continue;
                   1109:                        if (window_pane_visible(wp2))
1.118     nicm     1110:                                input_key(wp2, key, NULL);
1.27      nicm     1111:                }
                   1112:        }
1.10      nicm     1113: }
                   1114:
                   1115: int
                   1116: window_pane_visible(struct window_pane *wp)
                   1117: {
                   1118:        struct window   *w = wp->window;
                   1119:
1.93      nicm     1120:        if (wp->layout_cell == NULL)
                   1121:                return (0);
1.10      nicm     1122:        if (wp->xoff >= w->sx || wp->yoff >= w->sy)
                   1123:                return (0);
                   1124:        if (wp->xoff + wp->sx > w->sx || wp->yoff + wp->sy > w->sy)
                   1125:                return (0);
                   1126:        return (1);
1.1       nicm     1127: }
                   1128:
                   1129: char *
1.108     nicm     1130: window_pane_search(struct window_pane *wp, const char *searchstr,
                   1131:     u_int *lineno)
1.1       nicm     1132: {
1.4       nicm     1133:        struct screen   *s = &wp->base;
1.5       nicm     1134:        char            *newsearchstr, *line, *msg;
1.4       nicm     1135:        u_int            i;
                   1136:
1.5       nicm     1137:        msg = NULL;
                   1138:        xasprintf(&newsearchstr, "*%s*", searchstr);
                   1139:
1.4       nicm     1140:        for (i = 0; i < screen_size_y(s); i++) {
                   1141:                line = grid_view_string_cells(s->grid, 0, i, screen_size_x(s));
1.5       nicm     1142:                if (fnmatch(newsearchstr, line, 0) == 0) {
                   1143:                        msg = line;
                   1144:                        if (lineno != NULL)
                   1145:                                *lineno = i;
                   1146:                        break;
                   1147:                }
1.82      nicm     1148:                free(line);
1.4       nicm     1149:        }
1.5       nicm     1150:
1.82      nicm     1151:        free(newsearchstr);
1.5       nicm     1152:        return (msg);
1.45      nicm     1153: }
                   1154:
1.109     nicm     1155: /* Get MRU pane from a list. */
                   1156: struct window_pane *
1.126     nicm     1157: window_pane_choose_best(struct window_pane **list, u_int size)
1.109     nicm     1158: {
                   1159:        struct window_pane      *next, *best;
                   1160:        u_int                    i;
                   1161:
1.126     nicm     1162:        if (size == 0)
1.109     nicm     1163:                return (NULL);
                   1164:
1.126     nicm     1165:        best = list[0];
                   1166:        for (i = 1; i < size; i++) {
                   1167:                next = list[i];
1.109     nicm     1168:                if (next->active_point > best->active_point)
                   1169:                        best = next;
                   1170:        }
                   1171:        return (best);
                   1172: }
                   1173:
                   1174: /*
                   1175:  * Find the pane directly above another. We build a list of those adjacent to
                   1176:  * top edge and then choose the best.
                   1177:  */
1.45      nicm     1178: struct window_pane *
                   1179: window_pane_find_up(struct window_pane *wp)
                   1180: {
1.126     nicm     1181:        struct window_pane      *next, *best, **list;
                   1182:        u_int                    edge, left, right, end, size;
1.109     nicm     1183:        int                      found;
1.45      nicm     1184:
                   1185:        if (wp == NULL || !window_pane_visible(wp))
                   1186:                return (NULL);
1.126     nicm     1187:
                   1188:        list = NULL;
                   1189:        size = 0;
1.109     nicm     1190:
                   1191:        edge = wp->yoff;
                   1192:        if (edge == 0)
                   1193:                edge = wp->window->sy + 1;
1.45      nicm     1194:
                   1195:        left = wp->xoff;
1.109     nicm     1196:        right = wp->xoff + wp->sx;
1.45      nicm     1197:
1.109     nicm     1198:        TAILQ_FOREACH(next, &wp->window->panes, entry) {
                   1199:                if (next == wp || !window_pane_visible(next))
1.45      nicm     1200:                        continue;
1.109     nicm     1201:                if (next->yoff + next->sy + 1 != edge)
1.45      nicm     1202:                        continue;
1.109     nicm     1203:                end = next->xoff + next->sx - 1;
                   1204:
                   1205:                found = 0;
                   1206:                if (next->xoff < left && end > right)
                   1207:                        found = 1;
                   1208:                else if (next->xoff >= left && next->xoff <= right)
                   1209:                        found = 1;
                   1210:                else if (end >= left && end <= right)
                   1211:                        found = 1;
1.126     nicm     1212:                if (!found)
                   1213:                        continue;
                   1214:                list = xreallocarray(list, size + 1, sizeof *list);
                   1215:                list[size++] = next;
1.109     nicm     1216:        }
                   1217:
1.126     nicm     1218:        best = window_pane_choose_best(list, size);
                   1219:        free(list);
1.109     nicm     1220:        return (best);
1.45      nicm     1221: }
                   1222:
                   1223: /* Find the pane directly below another. */
                   1224: struct window_pane *
                   1225: window_pane_find_down(struct window_pane *wp)
                   1226: {
1.126     nicm     1227:        struct window_pane      *next, *best, **list;
                   1228:        u_int                    edge, left, right, end, size;
1.109     nicm     1229:        int                      found;
1.45      nicm     1230:
                   1231:        if (wp == NULL || !window_pane_visible(wp))
                   1232:                return (NULL);
1.126     nicm     1233:
                   1234:        list = NULL;
                   1235:        size = 0;
1.109     nicm     1236:
                   1237:        edge = wp->yoff + wp->sy + 1;
                   1238:        if (edge >= wp->window->sy)
                   1239:                edge = 0;
1.45      nicm     1240:
                   1241:        left = wp->xoff;
1.109     nicm     1242:        right = wp->xoff + wp->sx;
1.45      nicm     1243:
1.109     nicm     1244:        TAILQ_FOREACH(next, &wp->window->panes, entry) {
                   1245:                if (next == wp || !window_pane_visible(next))
1.45      nicm     1246:                        continue;
1.109     nicm     1247:                if (next->yoff != edge)
1.45      nicm     1248:                        continue;
1.109     nicm     1249:                end = next->xoff + next->sx - 1;
                   1250:
                   1251:                found = 0;
                   1252:                if (next->xoff < left && end > right)
                   1253:                        found = 1;
                   1254:                else if (next->xoff >= left && next->xoff <= right)
                   1255:                        found = 1;
                   1256:                else if (end >= left && end <= right)
                   1257:                        found = 1;
1.126     nicm     1258:                if (!found)
                   1259:                        continue;
                   1260:                list = xreallocarray(list, size + 1, sizeof *list);
                   1261:                list[size++] = next;
1.45      nicm     1262:        }
1.109     nicm     1263:
1.126     nicm     1264:        best = window_pane_choose_best(list, size);
                   1265:        free(list);
1.109     nicm     1266:        return (best);
1.45      nicm     1267: }
                   1268:
1.109     nicm     1269: /* Find the pane directly to the left of another. */
1.45      nicm     1270: struct window_pane *
                   1271: window_pane_find_left(struct window_pane *wp)
                   1272: {
1.126     nicm     1273:        struct window_pane      *next, *best, **list;
                   1274:        u_int                    edge, top, bottom, end, size;
1.109     nicm     1275:        int                      found;
1.45      nicm     1276:
                   1277:        if (wp == NULL || !window_pane_visible(wp))
                   1278:                return (NULL);
1.126     nicm     1279:
                   1280:        list = NULL;
                   1281:        size = 0;
1.109     nicm     1282:
                   1283:        edge = wp->xoff;
                   1284:        if (edge == 0)
                   1285:                edge = wp->window->sx + 1;
1.45      nicm     1286:
                   1287:        top = wp->yoff;
1.109     nicm     1288:        bottom = wp->yoff + wp->sy;
1.45      nicm     1289:
1.109     nicm     1290:        TAILQ_FOREACH(next, &wp->window->panes, entry) {
                   1291:                if (next == wp || !window_pane_visible(next))
1.45      nicm     1292:                        continue;
1.109     nicm     1293:                if (next->xoff + next->sx + 1 != edge)
1.45      nicm     1294:                        continue;
1.109     nicm     1295:                end = next->yoff + next->sy - 1;
                   1296:
                   1297:                found = 0;
                   1298:                if (next->yoff < top && end > bottom)
                   1299:                        found = 1;
                   1300:                else if (next->yoff >= top && next->yoff <= bottom)
                   1301:                        found = 1;
                   1302:                else if (end >= top && end <= bottom)
                   1303:                        found = 1;
1.126     nicm     1304:                if (!found)
                   1305:                        continue;
                   1306:                list = xreallocarray(list, size + 1, sizeof *list);
                   1307:                list[size++] = next;
1.45      nicm     1308:        }
1.109     nicm     1309:
1.126     nicm     1310:        best = window_pane_choose_best(list, size);
                   1311:        free(list);
1.109     nicm     1312:        return (best);
1.45      nicm     1313: }
                   1314:
1.109     nicm     1315: /* Find the pane directly to the right of another. */
1.45      nicm     1316: struct window_pane *
                   1317: window_pane_find_right(struct window_pane *wp)
                   1318: {
1.126     nicm     1319:        struct window_pane      *next, *best, **list;
                   1320:        u_int                    edge, top, bottom, end, size;
1.109     nicm     1321:        int                      found;
1.45      nicm     1322:
                   1323:        if (wp == NULL || !window_pane_visible(wp))
                   1324:                return (NULL);
1.126     nicm     1325:
                   1326:        list = NULL;
                   1327:        size = 0;
1.109     nicm     1328:
                   1329:        edge = wp->xoff + wp->sx + 1;
                   1330:        if (edge >= wp->window->sx)
                   1331:                edge = 0;
1.45      nicm     1332:
                   1333:        top = wp->yoff;
1.109     nicm     1334:        bottom = wp->yoff + wp->sy;
1.45      nicm     1335:
1.109     nicm     1336:        TAILQ_FOREACH(next, &wp->window->panes, entry) {
                   1337:                if (next == wp || !window_pane_visible(next))
1.45      nicm     1338:                        continue;
1.109     nicm     1339:                if (next->xoff != edge)
1.45      nicm     1340:                        continue;
1.109     nicm     1341:                end = next->yoff + next->sy - 1;
                   1342:
                   1343:                found = 0;
                   1344:                if (next->yoff < top && end > bottom)
                   1345:                        found = 1;
                   1346:                else if (next->yoff >= top && next->yoff <= bottom)
                   1347:                        found = 1;
                   1348:                else if (end >= top && end <= bottom)
                   1349:                        found = 1;
1.126     nicm     1350:                if (!found)
                   1351:                        continue;
                   1352:                list = xreallocarray(list, size + 1, sizeof *list);
                   1353:                list[size++] = next;
1.109     nicm     1354:        }
                   1355:
1.126     nicm     1356:        best = window_pane_choose_best(list, size);
                   1357:        free(list);
1.109     nicm     1358:        return (best);
1.81      nicm     1359: }
                   1360:
                   1361: /* Clear alert flags for a winlink */
                   1362: void
                   1363: winlink_clear_flags(struct winlink *wl)
                   1364: {
                   1365:        struct session  *s;
1.122     nicm     1366:        struct winlink  *wl_loop;
1.81      nicm     1367:
1.122     nicm     1368:        RB_FOREACH(s, sessions, &sessions) {
                   1369:                RB_FOREACH(wl_loop, winlinks, &s->windows) {
                   1370:                        if (wl_loop->window != wl->window)
1.81      nicm     1371:                                continue;
1.122     nicm     1372:                        if ((wl_loop->flags & WINLINK_ALERTFLAGS) == 0)
1.81      nicm     1373:                                continue;
                   1374:
1.122     nicm     1375:                        wl_loop->flags &= ~WINLINK_ALERTFLAGS;
                   1376:                        wl_loop->window->flags &= ~WINDOW_ALERTFLAGS;
1.81      nicm     1377:                        server_status_session(s);
                   1378:                }
                   1379:        }
1.134     nicm     1380: }
                   1381:
                   1382: int
                   1383: winlink_shuffle_up(struct session *s, struct winlink *wl)
                   1384: {
                   1385:        int      idx, last;
                   1386:
                   1387:        idx = wl->idx + 1;
                   1388:
                   1389:        /* Find the next free index. */
                   1390:        for (last = idx; last < INT_MAX; last++) {
                   1391:                if (winlink_find_by_index(&s->windows, last) == NULL)
                   1392:                        break;
                   1393:        }
                   1394:        if (last == INT_MAX)
                   1395:                return (-1);
                   1396:
                   1397:        /* Move everything from last - 1 to idx up a bit. */
                   1398:        for (; last > idx; last--) {
                   1399:                wl = winlink_find_by_index(&s->windows, last - 1);
                   1400:                server_link_window(s, wl, s, last, 0, 0, NULL);
                   1401:                server_unlink_window(s, wl);
                   1402:        }
                   1403:
                   1404:        return (idx);
1.1       nicm     1405: }