Merge branch 'obsd-master'
[tmux.git] / window.c
blob7b0d9a4cc899337298e0e8367599ee16a76a2f70
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
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.
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.
19 #include <sys/types.h>
20 #include <sys/ioctl.h>
22 #include <ctype.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <fnmatch.h>
26 #include <regex.h>
27 #include <signal.h>
28 #include <stdint.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <time.h>
32 #include <unistd.h>
34 #include "tmux.h"
37 * Each window is attached to a number of panes, each of which is a pty. This
38 * file contains code to handle them.
40 * A pane has two buffers attached, these are filled and emptied by the main
41 * server poll loop. Output data is received from pty's in screen format,
42 * translated and returned as a series of escape sequences and strings via
43 * input_parse (in input.c). Input data is received as key codes and written
44 * directly via input_key.
46 * Each pane also has a "virtual" screen (screen.c) which contains the current
47 * state and is redisplayed when the window is reattached to a client.
49 * Windows are stored directly on a global array and wrapped in any number of
50 * winlink structs to be linked onto local session RB trees. A reference count
51 * is maintained and a window removed from the global list and destroyed when
52 * it reaches zero.
55 /* Global window list. */
56 struct windows windows;
58 /* Global panes tree. */
59 struct window_pane_tree all_window_panes;
60 static u_int next_window_pane_id;
61 static u_int next_window_id;
62 static u_int next_active_point;
64 struct window_pane_input_data {
65 struct cmdq_item *item;
66 u_int wp;
67 struct client_file *file;
70 static struct window_pane *window_pane_create(struct window *, u_int, u_int,
71 u_int);
72 static void window_pane_destroy(struct window_pane *);
74 RB_GENERATE(windows, window, entry, window_cmp);
75 RB_GENERATE(winlinks, winlink, entry, winlink_cmp);
76 RB_GENERATE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
78 int
79 window_cmp(struct window *w1, struct window *w2)
81 return (w1->id - w2->id);
84 int
85 winlink_cmp(struct winlink *wl1, struct winlink *wl2)
87 return (wl1->idx - wl2->idx);
90 int
91 window_pane_cmp(struct window_pane *wp1, struct window_pane *wp2)
93 return (wp1->id - wp2->id);
96 struct winlink *
97 winlink_find_by_window(struct winlinks *wwl, struct window *w)
99 struct winlink *wl;
101 RB_FOREACH(wl, winlinks, wwl) {
102 if (wl->window == w)
103 return (wl);
106 return (NULL);
109 struct winlink *
110 winlink_find_by_index(struct winlinks *wwl, int idx)
112 struct winlink wl;
114 if (idx < 0)
115 fatalx("bad index");
117 wl.idx = idx;
118 return (RB_FIND(winlinks, wwl, &wl));
121 struct winlink *
122 winlink_find_by_window_id(struct winlinks *wwl, u_int id)
124 struct winlink *wl;
126 RB_FOREACH(wl, winlinks, wwl) {
127 if (wl->window->id == id)
128 return (wl);
130 return (NULL);
133 static int
134 winlink_next_index(struct winlinks *wwl, int idx)
136 int i;
138 i = idx;
139 do {
140 if (winlink_find_by_index(wwl, i) == NULL)
141 return (i);
142 if (i == INT_MAX)
143 i = 0;
144 else
145 i++;
146 } while (i != idx);
147 return (-1);
150 u_int
151 winlink_count(struct winlinks *wwl)
153 struct winlink *wl;
154 u_int n;
156 n = 0;
157 RB_FOREACH(wl, winlinks, wwl)
158 n++;
160 return (n);
163 struct winlink *
164 winlink_add(struct winlinks *wwl, int idx)
166 struct winlink *wl;
168 if (idx < 0) {
169 if ((idx = winlink_next_index(wwl, -idx - 1)) == -1)
170 return (NULL);
171 } else if (winlink_find_by_index(wwl, idx) != NULL)
172 return (NULL);
174 wl = xcalloc(1, sizeof *wl);
175 wl->idx = idx;
176 RB_INSERT(winlinks, wwl, wl);
178 return (wl);
181 void
182 winlink_set_window(struct winlink *wl, struct window *w)
184 if (wl->window != NULL) {
185 TAILQ_REMOVE(&wl->window->winlinks, wl, wentry);
186 window_remove_ref(wl->window, __func__);
188 TAILQ_INSERT_TAIL(&w->winlinks, wl, wentry);
189 wl->window = w;
190 window_add_ref(w, __func__);
193 void
194 winlink_remove(struct winlinks *wwl, struct winlink *wl)
196 struct window *w = wl->window;
198 if (w != NULL) {
199 TAILQ_REMOVE(&w->winlinks, wl, wentry);
200 window_remove_ref(w, __func__);
203 RB_REMOVE(winlinks, wwl, wl);
204 free(wl);
207 struct winlink *
208 winlink_next(struct winlink *wl)
210 return (RB_NEXT(winlinks, wwl, wl));
213 struct winlink *
214 winlink_previous(struct winlink *wl)
216 return (RB_PREV(winlinks, wwl, wl));
219 struct winlink *
220 winlink_next_by_number(struct winlink *wl, struct session *s, int n)
222 for (; n > 0; n--) {
223 if ((wl = RB_NEXT(winlinks, wwl, wl)) == NULL)
224 wl = RB_MIN(winlinks, &s->windows);
227 return (wl);
230 struct winlink *
231 winlink_previous_by_number(struct winlink *wl, struct session *s, int n)
233 for (; n > 0; n--) {
234 if ((wl = RB_PREV(winlinks, wwl, wl)) == NULL)
235 wl = RB_MAX(winlinks, &s->windows);
238 return (wl);
241 void
242 winlink_stack_push(struct winlink_stack *stack, struct winlink *wl)
244 if (wl == NULL)
245 return;
247 winlink_stack_remove(stack, wl);
248 TAILQ_INSERT_HEAD(stack, wl, sentry);
249 wl->flags |= WINLINK_VISITED;
252 void
253 winlink_stack_remove(struct winlink_stack *stack, struct winlink *wl)
255 if (wl != NULL && (wl->flags & WINLINK_VISITED)) {
256 TAILQ_REMOVE(stack, wl, sentry);
257 wl->flags &= ~WINLINK_VISITED;
261 struct window *
262 window_find_by_id_str(const char *s)
264 const char *errstr;
265 u_int id;
267 if (*s != '@')
268 return (NULL);
270 id = strtonum(s + 1, 0, UINT_MAX, &errstr);
271 if (errstr != NULL)
272 return (NULL);
273 return (window_find_by_id(id));
276 struct window *
277 window_find_by_id(u_int id)
279 struct window w;
281 w.id = id;
282 return (RB_FIND(windows, &windows, &w));
285 void
286 window_update_activity(struct window *w)
288 gettimeofday(&w->activity_time, NULL);
289 alerts_queue(w, WINDOW_ACTIVITY);
292 struct window *
293 window_create(u_int sx, u_int sy, u_int xpixel, u_int ypixel)
295 struct window *w;
297 if (xpixel == 0)
298 xpixel = DEFAULT_XPIXEL;
299 if (ypixel == 0)
300 ypixel = DEFAULT_YPIXEL;
302 w = xcalloc(1, sizeof *w);
303 w->name = xstrdup("");
304 w->flags = 0;
306 TAILQ_INIT(&w->panes);
307 TAILQ_INIT(&w->last_panes);
308 w->active = NULL;
310 w->lastlayout = -1;
311 w->layout_root = NULL;
313 w->sx = sx;
314 w->sy = sy;
315 w->manual_sx = sx;
316 w->manual_sy = sy;
317 w->xpixel = xpixel;
318 w->ypixel = ypixel;
320 w->options = options_create(global_w_options);
322 w->references = 0;
323 TAILQ_INIT(&w->winlinks);
325 w->id = next_window_id++;
326 RB_INSERT(windows, &windows, w);
328 window_set_fill_character(w);
329 window_update_activity(w);
331 log_debug("%s: @%u create %ux%u (%ux%u)", __func__, w->id, sx, sy,
332 w->xpixel, w->ypixel);
333 return (w);
336 static void
337 window_destroy(struct window *w)
339 log_debug("window @%u destroyed (%d references)", w->id, w->references);
341 window_unzoom(w, 0);
342 RB_REMOVE(windows, &windows, w);
344 if (w->layout_root != NULL)
345 layout_free_cell(w->layout_root);
346 if (w->saved_layout_root != NULL)
347 layout_free_cell(w->saved_layout_root);
348 free(w->old_layout);
350 window_destroy_panes(w);
352 if (event_initialized(&w->name_event))
353 evtimer_del(&w->name_event);
355 if (event_initialized(&w->alerts_timer))
356 evtimer_del(&w->alerts_timer);
357 if (event_initialized(&w->offset_timer))
358 event_del(&w->offset_timer);
360 options_free(w->options);
361 free(w->fill_character);
363 free(w->name);
364 free(w);
368 window_pane_destroy_ready(struct window_pane *wp)
370 int n;
372 if (wp->pipe_fd != -1) {
373 if (EVBUFFER_LENGTH(wp->pipe_event->output) != 0)
374 return (0);
375 if (ioctl(wp->fd, FIONREAD, &n) != -1 && n > 0)
376 return (0);
379 if (~wp->flags & PANE_EXITED)
380 return (0);
381 return (1);
384 void
385 window_add_ref(struct window *w, const char *from)
387 w->references++;
388 log_debug("%s: @%u %s, now %d", __func__, w->id, from, w->references);
391 void
392 window_remove_ref(struct window *w, const char *from)
394 w->references--;
395 log_debug("%s: @%u %s, now %d", __func__, w->id, from, w->references);
397 if (w->references == 0)
398 window_destroy(w);
401 void
402 window_set_name(struct window *w, const char *new_name)
404 free(w->name);
405 utf8_stravis(&w->name, new_name, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);
406 notify_window("window-renamed", w);
409 void
410 window_resize(struct window *w, u_int sx, u_int sy, int xpixel, int ypixel)
412 if (xpixel == 0)
413 xpixel = DEFAULT_XPIXEL;
414 if (ypixel == 0)
415 ypixel = DEFAULT_YPIXEL;
417 log_debug("%s: @%u resize %ux%u (%ux%u)", __func__, w->id, sx, sy,
418 xpixel == -1 ? w->xpixel : (u_int)xpixel,
419 ypixel == -1 ? w->ypixel : (u_int)ypixel);
420 w->sx = sx;
421 w->sy = sy;
422 if (xpixel != -1)
423 w->xpixel = xpixel;
424 if (ypixel != -1)
425 w->ypixel = ypixel;
428 void
429 window_pane_send_resize(struct window_pane *wp, u_int sx, u_int sy)
431 struct window *w = wp->window;
432 struct winsize ws;
434 if (wp->fd == -1)
435 return;
437 log_debug("%s: %%%u resize to %u,%u", __func__, wp->id, sx, sy);
439 memset(&ws, 0, sizeof ws);
440 ws.ws_col = sx;
441 ws.ws_row = sy;
442 ws.ws_xpixel = w->xpixel * ws.ws_col;
443 ws.ws_ypixel = w->ypixel * ws.ws_row;
444 if (ioctl(wp->fd, TIOCSWINSZ, &ws) == -1)
445 #ifdef __sun
447 * Some versions of Solaris apparently can return an error when
448 * resizing; don't know why this happens, can't reproduce on
449 * other platforms and ignoring it doesn't seem to cause any
450 * issues.
452 if (errno != EINVAL && errno != ENXIO)
453 #endif
454 fatal("ioctl failed");
458 window_has_pane(struct window *w, struct window_pane *wp)
460 struct window_pane *wp1;
462 TAILQ_FOREACH(wp1, &w->panes, entry) {
463 if (wp1 == wp)
464 return (1);
466 return (0);
469 void
470 window_update_focus(struct window *w)
472 if (w != NULL) {
473 log_debug("%s: @%u", __func__, w->id);
474 window_pane_update_focus(w->active);
478 void
479 window_pane_update_focus(struct window_pane *wp)
481 struct client *c;
482 int focused = 0;
484 if (wp != NULL && (~wp->flags & PANE_EXITED)) {
485 if (wp != wp->window->active)
486 focused = 0;
487 else {
488 TAILQ_FOREACH(c, &clients, entry) {
489 if (c->session != NULL &&
490 c->session->attached != 0 &&
491 (c->flags & CLIENT_FOCUSED) &&
492 c->session->curw->window == wp->window) {
493 focused = 1;
494 break;
498 if (!focused && (wp->flags & PANE_FOCUSED)) {
499 log_debug("%s: %%%u focus out", __func__, wp->id);
500 if (wp->base.mode & MODE_FOCUSON)
501 bufferevent_write(wp->event, "\033[O", 3);
502 notify_pane("pane-focus-out", wp);
503 wp->flags &= ~PANE_FOCUSED;
504 } else if (focused && (~wp->flags & PANE_FOCUSED)) {
505 log_debug("%s: %%%u focus in", __func__, wp->id);
506 if (wp->base.mode & MODE_FOCUSON)
507 bufferevent_write(wp->event, "\033[I", 3);
508 notify_pane("pane-focus-in", wp);
509 wp->flags |= PANE_FOCUSED;
510 } else
511 log_debug("%s: %%%u focus unchanged", __func__, wp->id);
516 window_set_active_pane(struct window *w, struct window_pane *wp, int notify)
518 struct window_pane *lastwp;
520 log_debug("%s: pane %%%u", __func__, wp->id);
522 if (wp == w->active)
523 return (0);
524 lastwp = w->active;
526 window_pane_stack_remove(&w->last_panes, wp);
527 window_pane_stack_push(&w->last_panes, lastwp);
529 w->active = wp;
530 w->active->active_point = next_active_point++;
531 w->active->flags |= PANE_CHANGED;
533 if (options_get_number(global_options, "focus-events")) {
534 window_pane_update_focus(lastwp);
535 window_pane_update_focus(w->active);
538 tty_update_window_offset(w);
540 if (notify)
541 notify_window("window-pane-changed", w);
542 return (1);
545 static int
546 window_pane_get_palette(struct window_pane *wp, int c)
548 if (wp == NULL)
549 return (-1);
550 return (colour_palette_get(&wp->palette, c));
553 void
554 window_redraw_active_switch(struct window *w, struct window_pane *wp)
556 struct grid_cell *gc1, *gc2;
557 int c1, c2;
559 if (wp == w->active)
560 return;
562 for (;;) {
564 * If the active and inactive styles or palettes are different,
565 * need to redraw the panes.
567 gc1 = &wp->cached_gc;
568 gc2 = &wp->cached_active_gc;
569 if (!grid_cells_look_equal(gc1, gc2))
570 wp->flags |= PANE_REDRAW;
571 else {
572 c1 = window_pane_get_palette(wp, gc1->fg);
573 c2 = window_pane_get_palette(wp, gc2->fg);
574 if (c1 != c2)
575 wp->flags |= PANE_REDRAW;
576 else {
577 c1 = window_pane_get_palette(wp, gc1->bg);
578 c2 = window_pane_get_palette(wp, gc2->bg);
579 if (c1 != c2)
580 wp->flags |= PANE_REDRAW;
583 if (wp == w->active)
584 break;
585 wp = w->active;
589 struct window_pane *
590 window_get_active_at(struct window *w, u_int x, u_int y)
592 struct window_pane *wp;
594 TAILQ_FOREACH(wp, &w->panes, entry) {
595 if (!window_pane_visible(wp))
596 continue;
597 if (x < wp->xoff || x > wp->xoff + wp->sx)
598 continue;
599 if (y < wp->yoff || y > wp->yoff + wp->sy)
600 continue;
601 return (wp);
603 return (NULL);
606 struct window_pane *
607 window_find_string(struct window *w, const char *s)
609 u_int x, y, top = 0, bottom = w->sy - 1;
610 int status;
612 x = w->sx / 2;
613 y = w->sy / 2;
615 status = options_get_number(w->options, "pane-border-status");
616 if (status == PANE_STATUS_TOP)
617 top++;
618 else if (status == PANE_STATUS_BOTTOM)
619 bottom--;
621 if (strcasecmp(s, "top") == 0)
622 y = top;
623 else if (strcasecmp(s, "bottom") == 0)
624 y = bottom;
625 else if (strcasecmp(s, "left") == 0)
626 x = 0;
627 else if (strcasecmp(s, "right") == 0)
628 x = w->sx - 1;
629 else if (strcasecmp(s, "top-left") == 0) {
630 x = 0;
631 y = top;
632 } else if (strcasecmp(s, "top-right") == 0) {
633 x = w->sx - 1;
634 y = top;
635 } else if (strcasecmp(s, "bottom-left") == 0) {
636 x = 0;
637 y = bottom;
638 } else if (strcasecmp(s, "bottom-right") == 0) {
639 x = w->sx - 1;
640 y = bottom;
641 } else
642 return (NULL);
644 return (window_get_active_at(w, x, y));
648 window_zoom(struct window_pane *wp)
650 struct window *w = wp->window;
651 struct window_pane *wp1;
653 if (w->flags & WINDOW_ZOOMED)
654 return (-1);
656 if (window_count_panes(w) == 1)
657 return (-1);
659 if (w->active != wp)
660 window_set_active_pane(w, wp, 1);
662 TAILQ_FOREACH(wp1, &w->panes, entry) {
663 wp1->saved_layout_cell = wp1->layout_cell;
664 wp1->layout_cell = NULL;
667 w->saved_layout_root = w->layout_root;
668 layout_init(w, wp);
669 w->flags |= WINDOW_ZOOMED;
670 notify_window("window-layout-changed", w);
672 return (0);
676 window_unzoom(struct window *w, int notify)
678 struct window_pane *wp;
680 if (!(w->flags & WINDOW_ZOOMED))
681 return (-1);
683 w->flags &= ~WINDOW_ZOOMED;
684 layout_free(w);
685 w->layout_root = w->saved_layout_root;
686 w->saved_layout_root = NULL;
688 TAILQ_FOREACH(wp, &w->panes, entry) {
689 wp->layout_cell = wp->saved_layout_cell;
690 wp->saved_layout_cell = NULL;
692 layout_fix_panes(w, NULL);
694 if (notify)
695 notify_window("window-layout-changed", w);
697 return (0);
701 window_push_zoom(struct window *w, int always, int flag)
703 log_debug("%s: @%u %d", __func__, w->id,
704 flag && (w->flags & WINDOW_ZOOMED));
705 if (flag && (always || (w->flags & WINDOW_ZOOMED)))
706 w->flags |= WINDOW_WASZOOMED;
707 else
708 w->flags &= ~WINDOW_WASZOOMED;
709 return (window_unzoom(w, 1) == 0);
713 window_pop_zoom(struct window *w)
715 log_debug("%s: @%u %d", __func__, w->id,
716 !!(w->flags & WINDOW_WASZOOMED));
717 if (w->flags & WINDOW_WASZOOMED)
718 return (window_zoom(w->active) == 0);
719 return (0);
722 struct window_pane *
723 window_add_pane(struct window *w, struct window_pane *other, u_int hlimit,
724 int flags)
726 struct window_pane *wp;
728 if (other == NULL)
729 other = w->active;
731 wp = window_pane_create(w, w->sx, w->sy, hlimit);
732 if (TAILQ_EMPTY(&w->panes)) {
733 log_debug("%s: @%u at start", __func__, w->id);
734 TAILQ_INSERT_HEAD(&w->panes, wp, entry);
735 } else if (flags & SPAWN_BEFORE) {
736 log_debug("%s: @%u before %%%u", __func__, w->id, wp->id);
737 if (flags & SPAWN_FULLSIZE)
738 TAILQ_INSERT_HEAD(&w->panes, wp, entry);
739 else
740 TAILQ_INSERT_BEFORE(other, wp, entry);
741 } else {
742 log_debug("%s: @%u after %%%u", __func__, w->id, wp->id);
743 if (flags & SPAWN_FULLSIZE)
744 TAILQ_INSERT_TAIL(&w->panes, wp, entry);
745 else
746 TAILQ_INSERT_AFTER(&w->panes, other, wp, entry);
748 return (wp);
751 void
752 window_lost_pane(struct window *w, struct window_pane *wp)
754 log_debug("%s: @%u pane %%%u", __func__, w->id, wp->id);
756 if (wp == marked_pane.wp)
757 server_clear_marked();
759 window_pane_stack_remove(&w->last_panes, wp);
760 if (wp == w->active) {
761 w->active = TAILQ_FIRST(&w->last_panes);
762 if (w->active == NULL) {
763 w->active = TAILQ_PREV(wp, window_panes, entry);
764 if (w->active == NULL)
765 w->active = TAILQ_NEXT(wp, entry);
767 if (w->active != NULL) {
768 window_pane_stack_remove(&w->last_panes, w->active);
769 w->active->flags |= PANE_CHANGED;
770 notify_window("window-pane-changed", w);
771 window_update_focus(w);
776 void
777 window_remove_pane(struct window *w, struct window_pane *wp)
779 window_lost_pane(w, wp);
781 TAILQ_REMOVE(&w->panes, wp, entry);
782 window_pane_destroy(wp);
785 struct window_pane *
786 window_pane_at_index(struct window *w, u_int idx)
788 struct window_pane *wp;
789 u_int n;
791 n = options_get_number(w->options, "pane-base-index");
792 TAILQ_FOREACH(wp, &w->panes, entry) {
793 if (n == idx)
794 return (wp);
795 n++;
797 return (NULL);
800 struct window_pane *
801 window_pane_next_by_number(struct window *w, struct window_pane *wp, u_int n)
803 for (; n > 0; n--) {
804 if ((wp = TAILQ_NEXT(wp, entry)) == NULL)
805 wp = TAILQ_FIRST(&w->panes);
808 return (wp);
811 struct window_pane *
812 window_pane_previous_by_number(struct window *w, struct window_pane *wp,
813 u_int n)
815 for (; n > 0; n--) {
816 if ((wp = TAILQ_PREV(wp, window_panes, entry)) == NULL)
817 wp = TAILQ_LAST(&w->panes, window_panes);
820 return (wp);
824 window_pane_index(struct window_pane *wp, u_int *i)
826 struct window_pane *wq;
827 struct window *w = wp->window;
829 *i = options_get_number(w->options, "pane-base-index");
830 TAILQ_FOREACH(wq, &w->panes, entry) {
831 if (wp == wq) {
832 return (0);
834 (*i)++;
837 return (-1);
840 u_int
841 window_count_panes(struct window *w)
843 struct window_pane *wp;
844 u_int n;
846 n = 0;
847 TAILQ_FOREACH(wp, &w->panes, entry)
848 n++;
849 return (n);
852 void
853 window_destroy_panes(struct window *w)
855 struct window_pane *wp;
857 while (!TAILQ_EMPTY(&w->last_panes)) {
858 wp = TAILQ_FIRST(&w->last_panes);
859 window_pane_stack_remove(&w->last_panes, wp);
862 while (!TAILQ_EMPTY(&w->panes)) {
863 wp = TAILQ_FIRST(&w->panes);
864 TAILQ_REMOVE(&w->panes, wp, entry);
865 window_pane_destroy(wp);
869 const char *
870 window_printable_flags(struct winlink *wl, int escape)
872 struct session *s = wl->session;
873 static char flags[32];
874 int pos;
876 pos = 0;
877 if (wl->flags & WINLINK_ACTIVITY) {
878 flags[pos++] = '#';
879 if (escape)
880 flags[pos++] = '#';
882 if (wl->flags & WINLINK_BELL)
883 flags[pos++] = '!';
884 if (wl->flags & WINLINK_SILENCE)
885 flags[pos++] = '~';
886 if (wl == s->curw)
887 flags[pos++] = '*';
888 if (wl == TAILQ_FIRST(&s->lastw))
889 flags[pos++] = '-';
890 if (server_check_marked() && wl == marked_pane.wl)
891 flags[pos++] = 'M';
892 if (wl->window->flags & WINDOW_ZOOMED)
893 flags[pos++] = 'Z';
894 flags[pos] = '\0';
895 return (flags);
898 struct window_pane *
899 window_pane_find_by_id_str(const char *s)
901 const char *errstr;
902 u_int id;
904 if (*s != '%')
905 return (NULL);
907 id = strtonum(s + 1, 0, UINT_MAX, &errstr);
908 if (errstr != NULL)
909 return (NULL);
910 return (window_pane_find_by_id(id));
913 struct window_pane *
914 window_pane_find_by_id(u_int id)
916 struct window_pane wp;
918 wp.id = id;
919 return (RB_FIND(window_pane_tree, &all_window_panes, &wp));
922 static struct window_pane *
923 window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit)
925 struct window_pane *wp;
926 char host[HOST_NAME_MAX + 1];
928 wp = xcalloc(1, sizeof *wp);
929 wp->window = w;
930 wp->options = options_create(w->options);
931 wp->flags = PANE_STYLECHANGED;
933 wp->id = next_window_pane_id++;
934 RB_INSERT(window_pane_tree, &all_window_panes, wp);
936 wp->fd = -1;
938 TAILQ_INIT(&wp->modes);
940 TAILQ_INIT (&wp->resize_queue);
942 wp->sx = sx;
943 wp->sy = sy;
945 wp->pipe_fd = -1;
947 colour_palette_init(&wp->palette);
948 colour_palette_from_option(&wp->palette, wp->options);
950 screen_init(&wp->base, sx, sy, hlimit);
951 wp->screen = &wp->base;
952 window_pane_default_cursor(wp);
954 screen_init(&wp->status_screen, 1, 1, 0);
956 if (gethostname(host, sizeof host) == 0)
957 screen_set_title(&wp->base, host);
959 return (wp);
962 static void
963 window_pane_destroy(struct window_pane *wp)
965 struct window_pane_resize *r;
966 struct window_pane_resize *r1;
968 window_pane_reset_mode_all(wp);
969 free(wp->searchstr);
971 if (wp->fd != -1) {
972 #ifdef HAVE_UTEMPTER
973 utempter_remove_record(wp->fd);
974 #endif
975 bufferevent_free(wp->event);
976 close(wp->fd);
978 if (wp->ictx != NULL)
979 input_free(wp->ictx);
981 screen_free(&wp->status_screen);
983 screen_free(&wp->base);
985 if (wp->pipe_fd != -1) {
986 bufferevent_free(wp->pipe_event);
987 close(wp->pipe_fd);
990 if (event_initialized(&wp->resize_timer))
991 event_del(&wp->resize_timer);
992 TAILQ_FOREACH_SAFE(r, &wp->resize_queue, entry, r1) {
993 TAILQ_REMOVE(&wp->resize_queue, r, entry);
994 free(r);
997 RB_REMOVE(window_pane_tree, &all_window_panes, wp);
999 options_free(wp->options);
1000 free((void *)wp->cwd);
1001 free(wp->shell);
1002 cmd_free_argv(wp->argc, wp->argv);
1003 colour_palette_free(&wp->palette);
1004 free(wp);
1007 static void
1008 window_pane_read_callback(__unused struct bufferevent *bufev, void *data)
1010 struct window_pane *wp = data;
1011 struct evbuffer *evb = wp->event->input;
1012 struct window_pane_offset *wpo = &wp->pipe_offset;
1013 size_t size = EVBUFFER_LENGTH(evb);
1014 char *new_data;
1015 size_t new_size;
1016 struct client *c;
1018 if (wp->pipe_fd != -1) {
1019 new_data = window_pane_get_new_data(wp, wpo, &new_size);
1020 if (new_size > 0) {
1021 bufferevent_write(wp->pipe_event, new_data, new_size);
1022 window_pane_update_used_data(wp, wpo, new_size);
1026 log_debug("%%%u has %zu bytes", wp->id, size);
1027 TAILQ_FOREACH(c, &clients, entry) {
1028 if (c->session != NULL && (c->flags & CLIENT_CONTROL))
1029 control_write_output(c, wp);
1031 input_parse_pane(wp);
1032 bufferevent_disable(wp->event, EV_READ);
1035 static void
1036 window_pane_error_callback(__unused struct bufferevent *bufev,
1037 __unused short what, void *data)
1039 struct window_pane *wp = data;
1041 log_debug("%%%u error", wp->id);
1042 wp->flags |= PANE_EXITED;
1044 if (window_pane_destroy_ready(wp))
1045 server_destroy_pane(wp, 1);
1048 void
1049 window_pane_set_event(struct window_pane *wp)
1051 setblocking(wp->fd, 0);
1053 wp->event = bufferevent_new(wp->fd, window_pane_read_callback,
1054 NULL, window_pane_error_callback, wp);
1055 if (wp->event == NULL)
1056 fatalx("out of memory");
1057 wp->ictx = input_init(wp, wp->event, &wp->palette);
1059 bufferevent_enable(wp->event, EV_READ|EV_WRITE);
1062 void
1063 window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
1065 struct window_mode_entry *wme;
1066 struct window_pane_resize *r;
1068 if (sx == wp->sx && sy == wp->sy)
1069 return;
1071 r = xmalloc(sizeof *r);
1072 r->sx = sx;
1073 r->sy = sy;
1074 r->osx = wp->sx;
1075 r->osy = wp->sy;
1076 TAILQ_INSERT_TAIL (&wp->resize_queue, r, entry);
1078 wp->sx = sx;
1079 wp->sy = sy;
1081 log_debug("%s: %%%u resize %ux%u", __func__, wp->id, sx, sy);
1082 screen_resize(&wp->base, sx, sy, wp->base.saved_grid == NULL);
1084 wme = TAILQ_FIRST(&wp->modes);
1085 if (wme != NULL && wme->mode->resize != NULL)
1086 wme->mode->resize(wme, sx, sy);
1090 window_pane_set_mode(struct window_pane *wp, struct window_pane *swp,
1091 const struct window_mode *mode, struct cmd_find_state *fs,
1092 struct args *args)
1094 struct window_mode_entry *wme;
1096 if (!TAILQ_EMPTY(&wp->modes) && TAILQ_FIRST(&wp->modes)->mode == mode)
1097 return (1);
1099 TAILQ_FOREACH(wme, &wp->modes, entry) {
1100 if (wme->mode == mode)
1101 break;
1103 if (wme != NULL) {
1104 TAILQ_REMOVE(&wp->modes, wme, entry);
1105 TAILQ_INSERT_HEAD(&wp->modes, wme, entry);
1106 } else {
1107 wme = xcalloc(1, sizeof *wme);
1108 wme->wp = wp;
1109 wme->swp = swp;
1110 wme->mode = mode;
1111 wme->prefix = 1;
1112 TAILQ_INSERT_HEAD(&wp->modes, wme, entry);
1113 wme->screen = wme->mode->init(wme, fs, args);
1116 wp->screen = wme->screen;
1117 wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1119 server_redraw_window_borders(wp->window);
1120 server_status_window(wp->window);
1121 notify_pane("pane-mode-changed", wp);
1123 return (0);
1126 void
1127 window_pane_reset_mode(struct window_pane *wp)
1129 struct window_mode_entry *wme, *next;
1131 if (TAILQ_EMPTY(&wp->modes))
1132 return;
1134 wme = TAILQ_FIRST(&wp->modes);
1135 TAILQ_REMOVE(&wp->modes, wme, entry);
1136 wme->mode->free(wme);
1137 free(wme);
1139 next = TAILQ_FIRST(&wp->modes);
1140 if (next == NULL) {
1141 wp->flags &= ~PANE_UNSEENCHANGES;
1142 log_debug("%s: no next mode", __func__);
1143 wp->screen = &wp->base;
1144 } else {
1145 log_debug("%s: next mode is %s", __func__, next->mode->name);
1146 wp->screen = next->screen;
1147 if (next->mode->resize != NULL)
1148 next->mode->resize(next, wp->sx, wp->sy);
1150 wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1152 server_redraw_window_borders(wp->window);
1153 server_status_window(wp->window);
1154 notify_pane("pane-mode-changed", wp);
1157 void
1158 window_pane_reset_mode_all(struct window_pane *wp)
1160 while (!TAILQ_EMPTY(&wp->modes))
1161 window_pane_reset_mode(wp);
1164 static void
1165 window_pane_copy_key(struct window_pane *wp, key_code key)
1167 struct window_pane *loop;
1169 TAILQ_FOREACH(loop, &wp->window->panes, entry) {
1170 if (loop != wp &&
1171 TAILQ_EMPTY(&loop->modes) &&
1172 loop->fd != -1 &&
1173 (~loop->flags & PANE_INPUTOFF) &&
1174 window_pane_visible(loop) &&
1175 options_get_number(loop->options, "synchronize-panes"))
1176 input_key_pane(loop, key, NULL);
1181 window_pane_key(struct window_pane *wp, struct client *c, struct session *s,
1182 struct winlink *wl, key_code key, struct mouse_event *m)
1184 struct window_mode_entry *wme;
1186 if (KEYC_IS_MOUSE(key) && m == NULL)
1187 return (-1);
1189 wme = TAILQ_FIRST(&wp->modes);
1190 if (wme != NULL) {
1191 if (wme->mode->key != NULL && c != NULL) {
1192 key &= ~KEYC_MASK_FLAGS;
1193 wme->mode->key(wme, c, s, wl, key, m);
1195 return (0);
1198 if (wp->fd == -1 || wp->flags & PANE_INPUTOFF)
1199 return (0);
1201 if (input_key_pane(wp, key, m) != 0)
1202 return (-1);
1204 if (KEYC_IS_MOUSE(key))
1205 return (0);
1206 if (options_get_number(wp->options, "synchronize-panes"))
1207 window_pane_copy_key(wp, key);
1208 return (0);
1212 window_pane_visible(struct window_pane *wp)
1214 if (~wp->window->flags & WINDOW_ZOOMED)
1215 return (1);
1216 return (wp == wp->window->active);
1220 window_pane_exited(struct window_pane *wp)
1222 return (wp->fd == -1 || (wp->flags & PANE_EXITED));
1225 u_int
1226 window_pane_search(struct window_pane *wp, const char *term, int regex,
1227 int ignore)
1229 struct screen *s = &wp->base;
1230 regex_t r;
1231 char *new = NULL, *line;
1232 u_int i;
1233 int flags = 0, found;
1234 size_t n;
1236 if (!regex) {
1237 if (ignore)
1238 flags |= FNM_CASEFOLD;
1239 xasprintf(&new, "*%s*", term);
1240 } else {
1241 if (ignore)
1242 flags |= REG_ICASE;
1243 if (regcomp(&r, term, flags|REG_EXTENDED) != 0)
1244 return (0);
1247 for (i = 0; i < screen_size_y(s); i++) {
1248 line = grid_view_string_cells(s->grid, 0, i, screen_size_x(s));
1249 for (n = strlen(line); n > 0; n--) {
1250 if (!isspace((u_char)line[n - 1]))
1251 break;
1252 line[n - 1] = '\0';
1254 log_debug("%s: %s", __func__, line);
1255 if (!regex)
1256 found = (fnmatch(new, line, flags) == 0);
1257 else
1258 found = (regexec(&r, line, 0, NULL, 0) == 0);
1259 free(line);
1260 if (found)
1261 break;
1263 if (!regex)
1264 free(new);
1265 else
1266 regfree(&r);
1268 if (i == screen_size_y(s))
1269 return (0);
1270 return (i + 1);
1273 /* Get MRU pane from a list. */
1274 static struct window_pane *
1275 window_pane_choose_best(struct window_pane **list, u_int size)
1277 struct window_pane *next, *best;
1278 u_int i;
1280 if (size == 0)
1281 return (NULL);
1283 best = list[0];
1284 for (i = 1; i < size; i++) {
1285 next = list[i];
1286 if (next->active_point > best->active_point)
1287 best = next;
1289 return (best);
1293 * Find the pane directly above another. We build a list of those adjacent to
1294 * top edge and then choose the best.
1296 struct window_pane *
1297 window_pane_find_up(struct window_pane *wp)
1299 struct window *w;
1300 struct window_pane *next, *best, **list;
1301 u_int edge, left, right, end, size;
1302 int status, found;
1304 if (wp == NULL)
1305 return (NULL);
1306 w = wp->window;
1307 status = options_get_number(w->options, "pane-border-status");
1309 list = NULL;
1310 size = 0;
1312 edge = wp->yoff;
1313 if (status == PANE_STATUS_TOP) {
1314 if (edge == 1)
1315 edge = w->sy + 1;
1316 } else if (status == PANE_STATUS_BOTTOM) {
1317 if (edge == 0)
1318 edge = w->sy;
1319 } else {
1320 if (edge == 0)
1321 edge = w->sy + 1;
1324 left = wp->xoff;
1325 right = wp->xoff + wp->sx;
1327 TAILQ_FOREACH(next, &w->panes, entry) {
1328 if (next == wp)
1329 continue;
1330 if (next->yoff + next->sy + 1 != edge)
1331 continue;
1332 end = next->xoff + next->sx - 1;
1334 found = 0;
1335 if (next->xoff < left && end > right)
1336 found = 1;
1337 else if (next->xoff >= left && next->xoff <= right)
1338 found = 1;
1339 else if (end >= left && end <= right)
1340 found = 1;
1341 if (!found)
1342 continue;
1343 list = xreallocarray(list, size + 1, sizeof *list);
1344 list[size++] = next;
1347 best = window_pane_choose_best(list, size);
1348 free(list);
1349 return (best);
1352 /* Find the pane directly below another. */
1353 struct window_pane *
1354 window_pane_find_down(struct window_pane *wp)
1356 struct window *w;
1357 struct window_pane *next, *best, **list;
1358 u_int edge, left, right, end, size;
1359 int status, found;
1361 if (wp == NULL)
1362 return (NULL);
1363 w = wp->window;
1364 status = options_get_number(w->options, "pane-border-status");
1366 list = NULL;
1367 size = 0;
1369 edge = wp->yoff + wp->sy + 1;
1370 if (status == PANE_STATUS_TOP) {
1371 if (edge >= w->sy)
1372 edge = 1;
1373 } else if (status == PANE_STATUS_BOTTOM) {
1374 if (edge >= w->sy - 1)
1375 edge = 0;
1376 } else {
1377 if (edge >= w->sy)
1378 edge = 0;
1381 left = wp->xoff;
1382 right = wp->xoff + wp->sx;
1384 TAILQ_FOREACH(next, &w->panes, entry) {
1385 if (next == wp)
1386 continue;
1387 if (next->yoff != edge)
1388 continue;
1389 end = next->xoff + next->sx - 1;
1391 found = 0;
1392 if (next->xoff < left && end > right)
1393 found = 1;
1394 else if (next->xoff >= left && next->xoff <= right)
1395 found = 1;
1396 else if (end >= left && end <= right)
1397 found = 1;
1398 if (!found)
1399 continue;
1400 list = xreallocarray(list, size + 1, sizeof *list);
1401 list[size++] = next;
1404 best = window_pane_choose_best(list, size);
1405 free(list);
1406 return (best);
1409 /* Find the pane directly to the left of another. */
1410 struct window_pane *
1411 window_pane_find_left(struct window_pane *wp)
1413 struct window *w;
1414 struct window_pane *next, *best, **list;
1415 u_int edge, top, bottom, end, size;
1416 int found;
1418 if (wp == NULL)
1419 return (NULL);
1420 w = wp->window;
1422 list = NULL;
1423 size = 0;
1425 edge = wp->xoff;
1426 if (edge == 0)
1427 edge = w->sx + 1;
1429 top = wp->yoff;
1430 bottom = wp->yoff + wp->sy;
1432 TAILQ_FOREACH(next, &w->panes, entry) {
1433 if (next == wp)
1434 continue;
1435 if (next->xoff + next->sx + 1 != edge)
1436 continue;
1437 end = next->yoff + next->sy - 1;
1439 found = 0;
1440 if (next->yoff < top && end > bottom)
1441 found = 1;
1442 else if (next->yoff >= top && next->yoff <= bottom)
1443 found = 1;
1444 else if (end >= top && end <= bottom)
1445 found = 1;
1446 if (!found)
1447 continue;
1448 list = xreallocarray(list, size + 1, sizeof *list);
1449 list[size++] = next;
1452 best = window_pane_choose_best(list, size);
1453 free(list);
1454 return (best);
1457 /* Find the pane directly to the right of another. */
1458 struct window_pane *
1459 window_pane_find_right(struct window_pane *wp)
1461 struct window *w;
1462 struct window_pane *next, *best, **list;
1463 u_int edge, top, bottom, end, size;
1464 int found;
1466 if (wp == NULL)
1467 return (NULL);
1468 w = wp->window;
1470 list = NULL;
1471 size = 0;
1473 edge = wp->xoff + wp->sx + 1;
1474 if (edge >= w->sx)
1475 edge = 0;
1477 top = wp->yoff;
1478 bottom = wp->yoff + wp->sy;
1480 TAILQ_FOREACH(next, &w->panes, entry) {
1481 if (next == wp)
1482 continue;
1483 if (next->xoff != edge)
1484 continue;
1485 end = next->yoff + next->sy - 1;
1487 found = 0;
1488 if (next->yoff < top && end > bottom)
1489 found = 1;
1490 else if (next->yoff >= top && next->yoff <= bottom)
1491 found = 1;
1492 else if (end >= top && end <= bottom)
1493 found = 1;
1494 if (!found)
1495 continue;
1496 list = xreallocarray(list, size + 1, sizeof *list);
1497 list[size++] = next;
1500 best = window_pane_choose_best(list, size);
1501 free(list);
1502 return (best);
1505 void
1506 window_pane_stack_push(struct window_panes *stack, struct window_pane *wp)
1508 if (wp != NULL) {
1509 window_pane_stack_remove(stack, wp);
1510 TAILQ_INSERT_HEAD(stack, wp, sentry);
1511 wp->flags |= PANE_VISITED;
1515 void
1516 window_pane_stack_remove(struct window_panes *stack, struct window_pane *wp)
1518 if (wp != NULL && (wp->flags & PANE_VISITED)) {
1519 TAILQ_REMOVE(stack, wp, sentry);
1520 wp->flags &= ~PANE_VISITED;
1524 /* Clear alert flags for a winlink */
1525 void
1526 winlink_clear_flags(struct winlink *wl)
1528 struct winlink *loop;
1530 wl->window->flags &= ~WINDOW_ALERTFLAGS;
1531 TAILQ_FOREACH(loop, &wl->window->winlinks, wentry) {
1532 if ((loop->flags & WINLINK_ALERTFLAGS) != 0) {
1533 loop->flags &= ~WINLINK_ALERTFLAGS;
1534 server_status_session(loop->session);
1539 /* Shuffle window indexes up. */
1541 winlink_shuffle_up(struct session *s, struct winlink *wl, int before)
1543 int idx, last;
1545 if (wl == NULL)
1546 return (-1);
1547 if (before)
1548 idx = wl->idx;
1549 else
1550 idx = wl->idx + 1;
1552 /* Find the next free index. */
1553 for (last = idx; last < INT_MAX; last++) {
1554 if (winlink_find_by_index(&s->windows, last) == NULL)
1555 break;
1557 if (last == INT_MAX)
1558 return (-1);
1560 /* Move everything from last - 1 to idx up a bit. */
1561 for (; last > idx; last--) {
1562 wl = winlink_find_by_index(&s->windows, last - 1);
1563 RB_REMOVE(winlinks, &s->windows, wl);
1564 wl->idx++;
1565 RB_INSERT(winlinks, &s->windows, wl);
1568 return (idx);
1571 static void
1572 window_pane_input_callback(struct client *c, __unused const char *path,
1573 int error, int closed, struct evbuffer *buffer, void *data)
1575 struct window_pane_input_data *cdata = data;
1576 struct window_pane *wp;
1577 u_char *buf = EVBUFFER_DATA(buffer);
1578 size_t len = EVBUFFER_LENGTH(buffer);
1580 wp = window_pane_find_by_id(cdata->wp);
1581 if (cdata->file != NULL && (wp == NULL || c->flags & CLIENT_DEAD)) {
1582 if (wp == NULL) {
1583 c->retval = 1;
1584 c->flags |= CLIENT_EXIT;
1586 file_cancel(cdata->file);
1587 } else if (cdata->file == NULL || closed || error != 0) {
1588 cmdq_continue(cdata->item);
1589 server_client_unref(c);
1590 free(cdata);
1591 } else
1592 input_parse_buffer(wp, buf, len);
1593 evbuffer_drain(buffer, len);
1597 window_pane_start_input(struct window_pane *wp, struct cmdq_item *item,
1598 char **cause)
1600 struct client *c = cmdq_get_client(item);
1601 struct window_pane_input_data *cdata;
1603 if (~wp->flags & PANE_EMPTY) {
1604 *cause = xstrdup("pane is not empty");
1605 return (-1);
1607 if (c->flags & (CLIENT_DEAD|CLIENT_EXITED))
1608 return (1);
1609 if (c->session != NULL)
1610 return (1);
1612 cdata = xmalloc(sizeof *cdata);
1613 cdata->item = item;
1614 cdata->wp = wp->id;
1615 cdata->file = file_read(c, "-", window_pane_input_callback, cdata);
1616 c->references++;
1618 return (0);
1621 void *
1622 window_pane_get_new_data(struct window_pane *wp,
1623 struct window_pane_offset *wpo, size_t *size)
1625 size_t used = wpo->used - wp->base_offset;
1627 *size = EVBUFFER_LENGTH(wp->event->input) - used;
1628 return (EVBUFFER_DATA(wp->event->input) + used);
1631 void
1632 window_pane_update_used_data(struct window_pane *wp,
1633 struct window_pane_offset *wpo, size_t size)
1635 size_t used = wpo->used - wp->base_offset;
1637 if (size > EVBUFFER_LENGTH(wp->event->input) - used)
1638 size = EVBUFFER_LENGTH(wp->event->input) - used;
1639 wpo->used += size;
1642 void
1643 window_set_fill_character(struct window *w)
1645 const char *value;
1646 struct utf8_data *ud;
1648 free(w->fill_character);
1649 w->fill_character = NULL;
1651 value = options_get_string(w->options, "fill-character");
1652 if (*value != '\0' && utf8_isvalid(value)) {
1653 ud = utf8_fromcstr(value);
1654 if (ud != NULL && ud[0].width == 1)
1655 w->fill_character = ud;
1659 void
1660 window_pane_default_cursor(struct window_pane *wp)
1662 struct screen *s = wp->screen;
1663 int c;
1665 c = options_get_number(wp->options, "cursor-colour");
1666 s->default_ccolour = c;
1668 c = options_get_number(wp->options, "cursor-style");
1669 s->default_mode = 0;
1670 screen_set_cursor_style(c, &s->default_cstyle, &s->default_mode);