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>
39 * Each window is attached to a number of panes, each of which is a pty. This
40 * file contains code to handle them.
42 * A pane has two buffers attached, these are filled and emptied by the main
43 * server poll loop. Output data is received from pty's in screen format,
44 * translated and returned as a series of escape sequences and strings via
45 * input_parse (in input.c). Input data is received as key codes and written
46 * directly via input_key.
48 * Each pane also has a "virtual" screen (screen.c) which contains the current
49 * state and is redisplayed when the window is reattached to a client.
51 * Windows are stored directly on a global array and wrapped in any number of
52 * winlink structs to be linked onto local session RB trees. A reference count
53 * is maintained and a window removed from the global list and destroyed when
57 /* Global window list. */
58 struct windows windows
;
60 /* Global panes tree. */
61 struct window_pane_tree all_window_panes
;
62 static u_int next_window_pane_id
;
63 static u_int next_window_id
;
64 static u_int next_active_point
;
66 struct window_pane_input_data
{
67 struct cmdq_item
*item
;
69 struct client_file
*file
;
72 static struct window_pane
*window_pane_create(struct window
*, u_int
, u_int
,
74 static void window_pane_destroy(struct window_pane
*);
76 RB_GENERATE(windows
, window
, entry
, window_cmp
);
77 RB_GENERATE(winlinks
, winlink
, entry
, winlink_cmp
);
78 RB_GENERATE(window_pane_tree
, window_pane
, tree_entry
, window_pane_cmp
);
81 window_cmp(struct window
*w1
, struct window
*w2
)
83 return (w1
->id
- w2
->id
);
87 winlink_cmp(struct winlink
*wl1
, struct winlink
*wl2
)
89 return (wl1
->idx
- wl2
->idx
);
93 window_pane_cmp(struct window_pane
*wp1
, struct window_pane
*wp2
)
95 return (wp1
->id
- wp2
->id
);
99 winlink_find_by_window(struct winlinks
*wwl
, struct window
*w
)
103 RB_FOREACH(wl
, winlinks
, wwl
) {
112 winlink_find_by_index(struct winlinks
*wwl
, int idx
)
120 return (RB_FIND(winlinks
, wwl
, &wl
));
124 winlink_find_by_window_id(struct winlinks
*wwl
, u_int id
)
128 RB_FOREACH(wl
, winlinks
, wwl
) {
129 if (wl
->window
->id
== id
)
136 winlink_next_index(struct winlinks
*wwl
, int idx
)
142 if (winlink_find_by_index(wwl
, i
) == NULL
)
153 winlink_count(struct winlinks
*wwl
)
159 RB_FOREACH(wl
, winlinks
, wwl
)
166 winlink_add(struct winlinks
*wwl
, int idx
)
171 if ((idx
= winlink_next_index(wwl
, -idx
- 1)) == -1)
173 } else if (winlink_find_by_index(wwl
, idx
) != NULL
)
176 wl
= xcalloc(1, sizeof *wl
);
178 RB_INSERT(winlinks
, wwl
, wl
);
184 winlink_set_window(struct winlink
*wl
, struct window
*w
)
186 if (wl
->window
!= NULL
) {
187 TAILQ_REMOVE(&wl
->window
->winlinks
, wl
, wentry
);
188 window_remove_ref(wl
->window
, __func__
);
190 TAILQ_INSERT_TAIL(&w
->winlinks
, wl
, wentry
);
192 window_add_ref(w
, __func__
);
196 winlink_remove(struct winlinks
*wwl
, struct winlink
*wl
)
198 struct window
*w
= wl
->window
;
201 TAILQ_REMOVE(&w
->winlinks
, wl
, wentry
);
202 window_remove_ref(w
, __func__
);
205 RB_REMOVE(winlinks
, wwl
, wl
);
210 winlink_next(struct winlink
*wl
)
212 return (RB_NEXT(winlinks
, wwl
, wl
));
216 winlink_previous(struct winlink
*wl
)
218 return (RB_PREV(winlinks
, wwl
, wl
));
222 winlink_next_by_number(struct winlink
*wl
, struct session
*s
, int n
)
225 if ((wl
= RB_NEXT(winlinks
, wwl
, wl
)) == NULL
)
226 wl
= RB_MIN(winlinks
, &s
->windows
);
233 winlink_previous_by_number(struct winlink
*wl
, struct session
*s
, int n
)
236 if ((wl
= RB_PREV(winlinks
, wwl
, wl
)) == NULL
)
237 wl
= RB_MAX(winlinks
, &s
->windows
);
244 winlink_stack_push(struct winlink_stack
*stack
, struct winlink
*wl
)
249 winlink_stack_remove(stack
, wl
);
250 TAILQ_INSERT_HEAD(stack
, wl
, sentry
);
251 wl
->flags
|= WINLINK_VISITED
;
255 winlink_stack_remove(struct winlink_stack
*stack
, struct winlink
*wl
)
257 if (wl
!= NULL
&& (wl
->flags
& WINLINK_VISITED
)) {
258 TAILQ_REMOVE(stack
, wl
, sentry
);
259 wl
->flags
&= ~WINLINK_VISITED
;
264 window_find_by_id_str(const char *s
)
272 id
= strtonum(s
+ 1, 0, UINT_MAX
, &errstr
);
275 return (window_find_by_id(id
));
279 window_find_by_id(u_int id
)
284 return (RB_FIND(windows
, &windows
, &w
));
288 window_update_activity(struct window
*w
)
290 gettimeofday(&w
->activity_time
, NULL
);
291 alerts_queue(w
, WINDOW_ACTIVITY
);
295 window_create(u_int sx
, u_int sy
, u_int xpixel
, u_int ypixel
)
300 xpixel
= DEFAULT_XPIXEL
;
302 ypixel
= DEFAULT_YPIXEL
;
304 w
= xcalloc(1, sizeof *w
);
305 w
->name
= xstrdup("");
308 TAILQ_INIT(&w
->panes
);
309 TAILQ_INIT(&w
->last_panes
);
313 w
->layout_root
= NULL
;
322 w
->options
= options_create(global_w_options
);
325 TAILQ_INIT(&w
->winlinks
);
327 w
->id
= next_window_id
++;
328 RB_INSERT(windows
, &windows
, w
);
330 window_set_fill_character(w
);
331 window_update_activity(w
);
333 log_debug("%s: @%u create %ux%u (%ux%u)", __func__
, w
->id
, sx
, sy
,
334 w
->xpixel
, w
->ypixel
);
339 window_destroy(struct window
*w
)
341 log_debug("window @%u destroyed (%d references)", w
->id
, w
->references
);
343 RB_REMOVE(windows
, &windows
, w
);
345 if (w
->layout_root
!= NULL
)
346 layout_free_cell(w
->layout_root
);
347 if (w
->saved_layout_root
!= NULL
)
348 layout_free_cell(w
->saved_layout_root
);
351 window_destroy_panes(w
);
353 if (event_initialized(&w
->name_event
))
354 evtimer_del(&w
->name_event
);
356 if (event_initialized(&w
->alerts_timer
))
357 evtimer_del(&w
->alerts_timer
);
358 if (event_initialized(&w
->offset_timer
))
359 event_del(&w
->offset_timer
);
361 options_free(w
->options
);
362 free(w
->fill_character
);
369 window_pane_destroy_ready(struct window_pane
*wp
)
373 if (wp
->pipe_fd
!= -1) {
374 if (EVBUFFER_LENGTH(wp
->pipe_event
->output
) != 0)
376 if (ioctl(wp
->fd
, FIONREAD
, &n
) != -1 && n
> 0)
380 if (~wp
->flags
& PANE_EXITED
)
386 window_add_ref(struct window
*w
, const char *from
)
389 log_debug("%s: @%u %s, now %d", __func__
, w
->id
, from
, w
->references
);
393 window_remove_ref(struct window
*w
, const char *from
)
396 log_debug("%s: @%u %s, now %d", __func__
, w
->id
, from
, w
->references
);
398 if (w
->references
== 0)
403 window_set_name(struct window
*w
, const char *new_name
)
406 utf8_stravis(&w
->name
, new_name
, VIS_OCTAL
|VIS_CSTYLE
|VIS_TAB
|VIS_NL
);
407 notify_window("window-renamed", w
);
411 window_resize(struct window
*w
, u_int sx
, u_int sy
, int xpixel
, int ypixel
)
414 xpixel
= DEFAULT_XPIXEL
;
416 ypixel
= DEFAULT_YPIXEL
;
418 log_debug("%s: @%u resize %ux%u (%ux%u)", __func__
, w
->id
, sx
, sy
,
419 xpixel
== -1 ? w
->xpixel
: (u_int
)xpixel
,
420 ypixel
== -1 ? w
->ypixel
: (u_int
)ypixel
);
430 window_pane_send_resize(struct window_pane
*wp
, u_int sx
, u_int sy
)
432 struct window
*w
= wp
->window
;
438 log_debug("%s: %%%u resize to %u,%u", __func__
, wp
->id
, sx
, sy
);
440 memset(&ws
, 0, sizeof ws
);
443 ws
.ws_xpixel
= w
->xpixel
* ws
.ws_col
;
444 ws
.ws_ypixel
= w
->ypixel
* ws
.ws_row
;
445 if (ioctl(wp
->fd
, TIOCSWINSZ
, &ws
) == -1)
446 fatal("ioctl failed");
450 window_has_pane(struct window
*w
, struct window_pane
*wp
)
452 struct window_pane
*wp1
;
454 TAILQ_FOREACH(wp1
, &w
->panes
, entry
) {
462 window_update_focus(struct window
*w
)
465 log_debug("%s: @%u", __func__
, w
->id
);
466 window_pane_update_focus(w
->active
);
471 window_pane_update_focus(struct window_pane
*wp
)
477 if (wp
!= wp
->window
->active
)
480 TAILQ_FOREACH(c
, &clients
, entry
) {
481 if (c
->session
!= NULL
&&
482 c
->session
->attached
!= 0 &&
483 (c
->flags
& CLIENT_FOCUSED
) &&
484 c
->session
->curw
->window
== wp
->window
) {
490 if (!focused
&& (wp
->flags
& PANE_FOCUSED
)) {
491 log_debug("%s: %%%u focus out", __func__
, wp
->id
);
492 if (wp
->base
.mode
& MODE_FOCUSON
)
493 bufferevent_write(wp
->event
, "\033[O", 3);
494 notify_pane("pane-focus-out", wp
);
495 wp
->flags
&= ~PANE_FOCUSED
;
496 } else if (focused
&& (~wp
->flags
& PANE_FOCUSED
)) {
497 log_debug("%s: %%%u focus in", __func__
, wp
->id
);
498 if (wp
->base
.mode
& MODE_FOCUSON
)
499 bufferevent_write(wp
->event
, "\033[I", 3);
500 notify_pane("pane-focus-in", wp
);
501 wp
->flags
|= PANE_FOCUSED
;
503 log_debug("%s: %%%u focus unchanged", __func__
, wp
->id
);
508 window_set_active_pane(struct window
*w
, struct window_pane
*wp
, int notify
)
510 struct window_pane
*lastwp
;
512 log_debug("%s: pane %%%u", __func__
, wp
->id
);
518 window_pane_stack_remove(&w
->last_panes
, wp
);
519 window_pane_stack_push(&w
->last_panes
, lastwp
);
522 w
->active
->active_point
= next_active_point
++;
523 w
->active
->flags
|= PANE_CHANGED
;
525 if (options_get_number(global_options
, "focus-events")) {
526 window_pane_update_focus(lastwp
);
527 window_pane_update_focus(w
->active
);
530 tty_update_window_offset(w
);
533 notify_window("window-pane-changed", w
);
538 window_pane_get_palette(struct window_pane
*wp
, int c
)
542 return (colour_palette_get(&wp
->palette
, c
));
546 window_redraw_active_switch(struct window
*w
, struct window_pane
*wp
)
548 struct grid_cell
*gc1
, *gc2
;
556 * If the active and inactive styles or palettes are different,
557 * need to redraw the panes.
559 gc1
= &wp
->cached_gc
;
560 gc2
= &wp
->cached_active_gc
;
561 if (!grid_cells_look_equal(gc1
, gc2
))
562 wp
->flags
|= PANE_REDRAW
;
564 c1
= window_pane_get_palette(wp
, gc1
->fg
);
565 c2
= window_pane_get_palette(wp
, gc2
->fg
);
567 wp
->flags
|= PANE_REDRAW
;
569 c1
= window_pane_get_palette(wp
, gc1
->bg
);
570 c2
= window_pane_get_palette(wp
, gc2
->bg
);
572 wp
->flags
|= PANE_REDRAW
;
582 window_get_active_at(struct window
*w
, u_int x
, u_int y
)
584 struct window_pane
*wp
;
586 TAILQ_FOREACH(wp
, &w
->panes
, entry
) {
587 if (!window_pane_visible(wp
))
589 if (x
< wp
->xoff
|| x
> wp
->xoff
+ wp
->sx
)
591 if (y
< wp
->yoff
|| y
> wp
->yoff
+ wp
->sy
)
599 window_find_string(struct window
*w
, const char *s
)
601 u_int x
, y
, top
= 0, bottom
= w
->sy
- 1;
607 status
= options_get_number(w
->options
, "pane-border-status");
608 if (status
== PANE_STATUS_TOP
)
610 else if (status
== PANE_STATUS_BOTTOM
)
613 if (strcasecmp(s
, "top") == 0)
615 else if (strcasecmp(s
, "bottom") == 0)
617 else if (strcasecmp(s
, "left") == 0)
619 else if (strcasecmp(s
, "right") == 0)
621 else if (strcasecmp(s
, "top-left") == 0) {
624 } else if (strcasecmp(s
, "top-right") == 0) {
627 } else if (strcasecmp(s
, "bottom-left") == 0) {
630 } else if (strcasecmp(s
, "bottom-right") == 0) {
636 return (window_get_active_at(w
, x
, y
));
640 window_zoom(struct window_pane
*wp
)
642 struct window
*w
= wp
->window
;
643 struct window_pane
*wp1
;
645 if (w
->flags
& WINDOW_ZOOMED
)
648 if (window_count_panes(w
) == 1)
652 window_set_active_pane(w
, wp
, 1);
654 TAILQ_FOREACH(wp1
, &w
->panes
, entry
) {
655 wp1
->saved_layout_cell
= wp1
->layout_cell
;
656 wp1
->layout_cell
= NULL
;
659 w
->saved_layout_root
= w
->layout_root
;
661 w
->flags
|= WINDOW_ZOOMED
;
662 notify_window("window-layout-changed", w
);
668 window_unzoom(struct window
*w
)
670 struct window_pane
*wp
;
672 if (!(w
->flags
& WINDOW_ZOOMED
))
675 w
->flags
&= ~WINDOW_ZOOMED
;
677 w
->layout_root
= w
->saved_layout_root
;
678 w
->saved_layout_root
= NULL
;
680 TAILQ_FOREACH(wp
, &w
->panes
, entry
) {
681 wp
->layout_cell
= wp
->saved_layout_cell
;
682 wp
->saved_layout_cell
= NULL
;
684 layout_fix_panes(w
, NULL
);
685 notify_window("window-layout-changed", w
);
691 window_push_zoom(struct window
*w
, int always
, int flag
)
693 log_debug("%s: @%u %d", __func__
, w
->id
,
694 flag
&& (w
->flags
& WINDOW_ZOOMED
));
695 if (flag
&& (always
|| (w
->flags
& WINDOW_ZOOMED
)))
696 w
->flags
|= WINDOW_WASZOOMED
;
698 w
->flags
&= ~WINDOW_WASZOOMED
;
699 return (window_unzoom(w
) == 0);
703 window_pop_zoom(struct window
*w
)
705 log_debug("%s: @%u %d", __func__
, w
->id
,
706 !!(w
->flags
& WINDOW_WASZOOMED
));
707 if (w
->flags
& WINDOW_WASZOOMED
)
708 return (window_zoom(w
->active
) == 0);
713 window_add_pane(struct window
*w
, struct window_pane
*other
, u_int hlimit
,
716 struct window_pane
*wp
;
721 wp
= window_pane_create(w
, w
->sx
, w
->sy
, hlimit
);
722 if (TAILQ_EMPTY(&w
->panes
)) {
723 log_debug("%s: @%u at start", __func__
, w
->id
);
724 TAILQ_INSERT_HEAD(&w
->panes
, wp
, entry
);
725 } else if (flags
& SPAWN_BEFORE
) {
726 log_debug("%s: @%u before %%%u", __func__
, w
->id
, wp
->id
);
727 if (flags
& SPAWN_FULLSIZE
)
728 TAILQ_INSERT_HEAD(&w
->panes
, wp
, entry
);
730 TAILQ_INSERT_BEFORE(other
, wp
, entry
);
732 log_debug("%s: @%u after %%%u", __func__
, w
->id
, wp
->id
);
733 if (flags
& SPAWN_FULLSIZE
)
734 TAILQ_INSERT_TAIL(&w
->panes
, wp
, entry
);
736 TAILQ_INSERT_AFTER(&w
->panes
, other
, wp
, entry
);
742 window_lost_pane(struct window
*w
, struct window_pane
*wp
)
744 log_debug("%s: @%u pane %%%u", __func__
, w
->id
, wp
->id
);
746 if (wp
== marked_pane
.wp
)
747 server_clear_marked();
749 window_pane_stack_remove(&w
->last_panes
, wp
);
750 if (wp
== w
->active
) {
751 w
->active
= TAILQ_FIRST(&w
->last_panes
);
752 if (w
->active
== NULL
) {
753 w
->active
= TAILQ_PREV(wp
, window_panes
, entry
);
754 if (w
->active
== NULL
)
755 w
->active
= TAILQ_NEXT(wp
, entry
);
757 if (w
->active
!= NULL
) {
758 window_pane_stack_remove(&w
->last_panes
, w
->active
);
759 w
->active
->flags
|= PANE_CHANGED
;
760 notify_window("window-pane-changed", w
);
761 window_update_focus(w
);
767 window_remove_pane(struct window
*w
, struct window_pane
*wp
)
769 window_lost_pane(w
, wp
);
771 TAILQ_REMOVE(&w
->panes
, wp
, entry
);
772 window_pane_destroy(wp
);
776 window_pane_at_index(struct window
*w
, u_int idx
)
778 struct window_pane
*wp
;
781 n
= options_get_number(w
->options
, "pane-base-index");
782 TAILQ_FOREACH(wp
, &w
->panes
, entry
) {
791 window_pane_next_by_number(struct window
*w
, struct window_pane
*wp
, u_int n
)
794 if ((wp
= TAILQ_NEXT(wp
, entry
)) == NULL
)
795 wp
= TAILQ_FIRST(&w
->panes
);
802 window_pane_previous_by_number(struct window
*w
, struct window_pane
*wp
,
806 if ((wp
= TAILQ_PREV(wp
, window_panes
, entry
)) == NULL
)
807 wp
= TAILQ_LAST(&w
->panes
, window_panes
);
814 window_pane_index(struct window_pane
*wp
, u_int
*i
)
816 struct window_pane
*wq
;
817 struct window
*w
= wp
->window
;
819 *i
= options_get_number(w
->options
, "pane-base-index");
820 TAILQ_FOREACH(wq
, &w
->panes
, entry
) {
831 window_count_panes(struct window
*w
)
833 struct window_pane
*wp
;
837 TAILQ_FOREACH(wp
, &w
->panes
, entry
)
843 window_destroy_panes(struct window
*w
)
845 struct window_pane
*wp
;
847 while (!TAILQ_EMPTY(&w
->last_panes
)) {
848 wp
= TAILQ_FIRST(&w
->last_panes
);
849 window_pane_stack_remove(&w
->last_panes
, wp
);
852 while (!TAILQ_EMPTY(&w
->panes
)) {
853 wp
= TAILQ_FIRST(&w
->panes
);
854 TAILQ_REMOVE(&w
->panes
, wp
, entry
);
855 window_pane_destroy(wp
);
860 window_printable_flags(struct winlink
*wl
, int escape
)
862 struct session
*s
= wl
->session
;
863 static char flags
[32];
867 if (wl
->flags
& WINLINK_ACTIVITY
) {
872 if (wl
->flags
& WINLINK_BELL
)
874 if (wl
->flags
& WINLINK_SILENCE
)
878 if (wl
== TAILQ_FIRST(&s
->lastw
))
880 if (server_check_marked() && wl
== marked_pane
.wl
)
882 if (wl
->window
->flags
& WINDOW_ZOOMED
)
889 window_pane_find_by_id_str(const char *s
)
897 id
= strtonum(s
+ 1, 0, UINT_MAX
, &errstr
);
900 return (window_pane_find_by_id(id
));
904 window_pane_find_by_id(u_int id
)
906 struct window_pane wp
;
909 return (RB_FIND(window_pane_tree
, &all_window_panes
, &wp
));
912 static struct window_pane
*
913 window_pane_create(struct window
*w
, u_int sx
, u_int sy
, u_int hlimit
)
915 struct window_pane
*wp
;
916 char host
[HOST_NAME_MAX
+ 1];
918 wp
= xcalloc(1, sizeof *wp
);
920 wp
->options
= options_create(w
->options
);
921 wp
->flags
= PANE_STYLECHANGED
;
923 wp
->id
= next_window_pane_id
++;
924 RB_INSERT(window_pane_tree
, &all_window_panes
, wp
);
928 TAILQ_INIT(&wp
->modes
);
930 TAILQ_INIT (&wp
->resize_queue
);
937 colour_palette_init(&wp
->palette
);
938 colour_palette_from_option(&wp
->palette
, wp
->options
);
940 screen_init(&wp
->base
, sx
, sy
, hlimit
);
941 wp
->screen
= &wp
->base
;
942 window_pane_default_cursor(wp
);
944 screen_init(&wp
->status_screen
, 1, 1, 0);
946 if (gethostname(host
, sizeof host
) == 0)
947 screen_set_title(&wp
->base
, host
);
953 window_pane_destroy(struct window_pane
*wp
)
955 struct window_pane_resize
*r
;
956 struct window_pane_resize
*r1
;
958 window_pane_reset_mode_all(wp
);
962 bufferevent_free(wp
->event
);
965 if (wp
->ictx
!= NULL
)
966 input_free(wp
->ictx
);
968 screen_free(&wp
->status_screen
);
970 screen_free(&wp
->base
);
972 if (wp
->pipe_fd
!= -1) {
973 bufferevent_free(wp
->pipe_event
);
977 if (event_initialized(&wp
->resize_timer
))
978 event_del(&wp
->resize_timer
);
979 TAILQ_FOREACH_SAFE(r
, &wp
->resize_queue
, entry
, r1
) {
980 TAILQ_REMOVE(&wp
->resize_queue
, r
, entry
);
984 RB_REMOVE(window_pane_tree
, &all_window_panes
, wp
);
986 options_free(wp
->options
);
987 free((void *)wp
->cwd
);
989 cmd_free_argv(wp
->argc
, wp
->argv
);
990 colour_palette_free(&wp
->palette
);
995 window_pane_read_callback(__unused
struct bufferevent
*bufev
, void *data
)
997 struct window_pane
*wp
= data
;
998 struct evbuffer
*evb
= wp
->event
->input
;
999 struct window_pane_offset
*wpo
= &wp
->pipe_offset
;
1000 size_t size
= EVBUFFER_LENGTH(evb
);
1005 if (wp
->pipe_fd
!= -1) {
1006 new_data
= window_pane_get_new_data(wp
, wpo
, &new_size
);
1008 bufferevent_write(wp
->pipe_event
, new_data
, new_size
);
1009 window_pane_update_used_data(wp
, wpo
, new_size
);
1013 log_debug("%%%u has %zu bytes", wp
->id
, size
);
1014 TAILQ_FOREACH(c
, &clients
, entry
) {
1015 if (c
->session
!= NULL
&& (c
->flags
& CLIENT_CONTROL
))
1016 control_write_output(c
, wp
);
1018 input_parse_pane(wp
);
1019 bufferevent_disable(wp
->event
, EV_READ
);
1023 window_pane_error_callback(__unused
struct bufferevent
*bufev
,
1024 __unused
short what
, void *data
)
1026 struct window_pane
*wp
= data
;
1028 log_debug("%%%u error", wp
->id
);
1029 wp
->flags
|= PANE_EXITED
;
1031 if (window_pane_destroy_ready(wp
))
1032 server_destroy_pane(wp
, 1);
1036 window_pane_set_event(struct window_pane
*wp
)
1038 setblocking(wp
->fd
, 0);
1040 wp
->event
= bufferevent_new(wp
->fd
, window_pane_read_callback
,
1041 NULL
, window_pane_error_callback
, wp
);
1042 if (wp
->event
== NULL
)
1043 fatalx("out of memory");
1044 wp
->ictx
= input_init(wp
, wp
->event
, &wp
->palette
);
1046 bufferevent_enable(wp
->event
, EV_READ
|EV_WRITE
);
1050 window_pane_resize(struct window_pane
*wp
, u_int sx
, u_int sy
)
1052 struct window_mode_entry
*wme
;
1053 struct window_pane_resize
*r
;
1055 if (sx
== wp
->sx
&& sy
== wp
->sy
)
1058 r
= xmalloc(sizeof *r
);
1063 TAILQ_INSERT_TAIL (&wp
->resize_queue
, r
, entry
);
1068 log_debug("%s: %%%u resize %ux%u", __func__
, wp
->id
, sx
, sy
);
1069 screen_resize(&wp
->base
, sx
, sy
, wp
->base
.saved_grid
== NULL
);
1071 wme
= TAILQ_FIRST(&wp
->modes
);
1072 if (wme
!= NULL
&& wme
->mode
->resize
!= NULL
)
1073 wme
->mode
->resize(wme
, sx
, sy
);
1077 window_pane_set_mode(struct window_pane
*wp
, struct window_pane
*swp
,
1078 const struct window_mode
*mode
, struct cmd_find_state
*fs
,
1081 struct window_mode_entry
*wme
;
1083 if (!TAILQ_EMPTY(&wp
->modes
) && TAILQ_FIRST(&wp
->modes
)->mode
== mode
)
1086 TAILQ_FOREACH(wme
, &wp
->modes
, entry
) {
1087 if (wme
->mode
== mode
)
1091 TAILQ_REMOVE(&wp
->modes
, wme
, entry
);
1092 TAILQ_INSERT_HEAD(&wp
->modes
, wme
, entry
);
1094 wme
= xcalloc(1, sizeof *wme
);
1099 TAILQ_INSERT_HEAD(&wp
->modes
, wme
, entry
);
1100 wme
->screen
= wme
->mode
->init(wme
, fs
, args
);
1103 wp
->screen
= wme
->screen
;
1104 wp
->flags
|= (PANE_REDRAW
|PANE_CHANGED
);
1106 server_redraw_window_borders(wp
->window
);
1107 server_status_window(wp
->window
);
1108 notify_pane("pane-mode-changed", wp
);
1114 window_pane_reset_mode(struct window_pane
*wp
)
1116 struct window_mode_entry
*wme
, *next
;
1118 if (TAILQ_EMPTY(&wp
->modes
))
1121 wme
= TAILQ_FIRST(&wp
->modes
);
1122 TAILQ_REMOVE(&wp
->modes
, wme
, entry
);
1123 wme
->mode
->free(wme
);
1126 next
= TAILQ_FIRST(&wp
->modes
);
1128 wp
->flags
&= ~PANE_UNSEENCHANGES
;
1129 log_debug("%s: no next mode", __func__
);
1130 wp
->screen
= &wp
->base
;
1132 log_debug("%s: next mode is %s", __func__
, next
->mode
->name
);
1133 wp
->screen
= next
->screen
;
1134 if (next
->mode
->resize
!= NULL
)
1135 next
->mode
->resize(next
, wp
->sx
, wp
->sy
);
1137 wp
->flags
|= (PANE_REDRAW
|PANE_CHANGED
);
1139 server_redraw_window_borders(wp
->window
);
1140 server_status_window(wp
->window
);
1141 notify_pane("pane-mode-changed", wp
);
1145 window_pane_reset_mode_all(struct window_pane
*wp
)
1147 while (!TAILQ_EMPTY(&wp
->modes
))
1148 window_pane_reset_mode(wp
);
1152 window_pane_copy_key(struct window_pane
*wp
, key_code key
)
1154 struct window_pane
*loop
;
1156 TAILQ_FOREACH(loop
, &wp
->window
->panes
, entry
) {
1158 TAILQ_EMPTY(&loop
->modes
) &&
1160 (~loop
->flags
& PANE_INPUTOFF
) &&
1161 window_pane_visible(loop
) &&
1162 options_get_number(loop
->options
, "synchronize-panes"))
1163 input_key_pane(loop
, key
, NULL
);
1168 window_pane_key(struct window_pane
*wp
, struct client
*c
, struct session
*s
,
1169 struct winlink
*wl
, key_code key
, struct mouse_event
*m
)
1171 struct window_mode_entry
*wme
;
1173 if (KEYC_IS_MOUSE(key
) && m
== NULL
)
1176 wme
= TAILQ_FIRST(&wp
->modes
);
1178 if (wme
->mode
->key
!= NULL
&& c
!= NULL
) {
1179 key
&= ~KEYC_MASK_FLAGS
;
1180 wme
->mode
->key(wme
, c
, s
, wl
, key
, m
);
1185 if (wp
->fd
== -1 || wp
->flags
& PANE_INPUTOFF
)
1188 if (input_key_pane(wp
, key
, m
) != 0)
1191 if (KEYC_IS_MOUSE(key
))
1193 if (options_get_number(wp
->options
, "synchronize-panes"))
1194 window_pane_copy_key(wp
, key
);
1199 window_pane_visible(struct window_pane
*wp
)
1201 if (~wp
->window
->flags
& WINDOW_ZOOMED
)
1203 return (wp
== wp
->window
->active
);
1207 window_pane_search(struct window_pane
*wp
, const char *term
, int regex
,
1210 struct screen
*s
= &wp
->base
;
1212 char *new = NULL
, *line
;
1214 int flags
= 0, found
;
1219 flags
|= FNM_CASEFOLD
;
1220 xasprintf(&new, "*%s*", term
);
1224 if (regcomp(&r
, term
, flags
|REG_EXTENDED
) != 0)
1228 for (i
= 0; i
< screen_size_y(s
); i
++) {
1229 line
= grid_view_string_cells(s
->grid
, 0, i
, screen_size_x(s
));
1230 for (n
= strlen(line
); n
> 0; n
--) {
1231 if (!isspace((u_char
)line
[n
- 1]))
1235 log_debug("%s: %s", __func__
, line
);
1237 found
= (fnmatch(new, line
, flags
) == 0);
1239 found
= (regexec(&r
, line
, 0, NULL
, 0) == 0);
1249 if (i
== screen_size_y(s
))
1254 /* Get MRU pane from a list. */
1255 static struct window_pane
*
1256 window_pane_choose_best(struct window_pane
**list
, u_int size
)
1258 struct window_pane
*next
, *best
;
1265 for (i
= 1; i
< size
; i
++) {
1267 if (next
->active_point
> best
->active_point
)
1274 * Find the pane directly above another. We build a list of those adjacent to
1275 * top edge and then choose the best.
1277 struct window_pane
*
1278 window_pane_find_up(struct window_pane
*wp
)
1281 struct window_pane
*next
, *best
, **list
;
1282 u_int edge
, left
, right
, end
, size
;
1288 status
= options_get_number(w
->options
, "pane-border-status");
1294 if (status
== PANE_STATUS_TOP
) {
1297 } else if (status
== PANE_STATUS_BOTTOM
) {
1306 right
= wp
->xoff
+ wp
->sx
;
1308 TAILQ_FOREACH(next
, &w
->panes
, entry
) {
1311 if (next
->yoff
+ next
->sy
+ 1 != edge
)
1313 end
= next
->xoff
+ next
->sx
- 1;
1316 if (next
->xoff
< left
&& end
> right
)
1318 else if (next
->xoff
>= left
&& next
->xoff
<= right
)
1320 else if (end
>= left
&& end
<= right
)
1324 list
= xreallocarray(list
, size
+ 1, sizeof *list
);
1325 list
[size
++] = next
;
1328 best
= window_pane_choose_best(list
, size
);
1333 /* Find the pane directly below another. */
1334 struct window_pane
*
1335 window_pane_find_down(struct window_pane
*wp
)
1338 struct window_pane
*next
, *best
, **list
;
1339 u_int edge
, left
, right
, end
, size
;
1345 status
= options_get_number(w
->options
, "pane-border-status");
1350 edge
= wp
->yoff
+ wp
->sy
+ 1;
1351 if (status
== PANE_STATUS_TOP
) {
1354 } else if (status
== PANE_STATUS_BOTTOM
) {
1355 if (edge
>= w
->sy
- 1)
1363 right
= wp
->xoff
+ wp
->sx
;
1365 TAILQ_FOREACH(next
, &w
->panes
, entry
) {
1368 if (next
->yoff
!= edge
)
1370 end
= next
->xoff
+ next
->sx
- 1;
1373 if (next
->xoff
< left
&& end
> right
)
1375 else if (next
->xoff
>= left
&& next
->xoff
<= right
)
1377 else if (end
>= left
&& end
<= right
)
1381 list
= xreallocarray(list
, size
+ 1, sizeof *list
);
1382 list
[size
++] = next
;
1385 best
= window_pane_choose_best(list
, size
);
1390 /* Find the pane directly to the left of another. */
1391 struct window_pane
*
1392 window_pane_find_left(struct window_pane
*wp
)
1395 struct window_pane
*next
, *best
, **list
;
1396 u_int edge
, top
, bottom
, end
, size
;
1411 bottom
= wp
->yoff
+ wp
->sy
;
1413 TAILQ_FOREACH(next
, &w
->panes
, entry
) {
1416 if (next
->xoff
+ next
->sx
+ 1 != edge
)
1418 end
= next
->yoff
+ next
->sy
- 1;
1421 if (next
->yoff
< top
&& end
> bottom
)
1423 else if (next
->yoff
>= top
&& next
->yoff
<= bottom
)
1425 else if (end
>= top
&& end
<= bottom
)
1429 list
= xreallocarray(list
, size
+ 1, sizeof *list
);
1430 list
[size
++] = next
;
1433 best
= window_pane_choose_best(list
, size
);
1438 /* Find the pane directly to the right of another. */
1439 struct window_pane
*
1440 window_pane_find_right(struct window_pane
*wp
)
1443 struct window_pane
*next
, *best
, **list
;
1444 u_int edge
, top
, bottom
, end
, size
;
1454 edge
= wp
->xoff
+ wp
->sx
+ 1;
1459 bottom
= wp
->yoff
+ wp
->sy
;
1461 TAILQ_FOREACH(next
, &w
->panes
, entry
) {
1464 if (next
->xoff
!= edge
)
1466 end
= next
->yoff
+ next
->sy
- 1;
1469 if (next
->yoff
< top
&& end
> bottom
)
1471 else if (next
->yoff
>= top
&& next
->yoff
<= bottom
)
1473 else if (end
>= top
&& end
<= bottom
)
1477 list
= xreallocarray(list
, size
+ 1, sizeof *list
);
1478 list
[size
++] = next
;
1481 best
= window_pane_choose_best(list
, size
);
1487 window_pane_stack_push(struct window_panes
*stack
, struct window_pane
*wp
)
1490 window_pane_stack_remove(stack
, wp
);
1491 TAILQ_INSERT_HEAD(stack
, wp
, sentry
);
1492 wp
->flags
|= PANE_VISITED
;
1497 window_pane_stack_remove(struct window_panes
*stack
, struct window_pane
*wp
)
1499 if (wp
!= NULL
&& (wp
->flags
& PANE_VISITED
)) {
1500 TAILQ_REMOVE(stack
, wp
, sentry
);
1501 wp
->flags
&= ~PANE_VISITED
;
1505 /* Clear alert flags for a winlink */
1507 winlink_clear_flags(struct winlink
*wl
)
1509 struct winlink
*loop
;
1511 wl
->window
->flags
&= ~WINDOW_ALERTFLAGS
;
1512 TAILQ_FOREACH(loop
, &wl
->window
->winlinks
, wentry
) {
1513 if ((loop
->flags
& WINLINK_ALERTFLAGS
) != 0) {
1514 loop
->flags
&= ~WINLINK_ALERTFLAGS
;
1515 server_status_session(loop
->session
);
1520 /* Shuffle window indexes up. */
1522 winlink_shuffle_up(struct session
*s
, struct winlink
*wl
, int before
)
1533 /* Find the next free index. */
1534 for (last
= idx
; last
< INT_MAX
; last
++) {
1535 if (winlink_find_by_index(&s
->windows
, last
) == NULL
)
1538 if (last
== INT_MAX
)
1541 /* Move everything from last - 1 to idx up a bit. */
1542 for (; last
> idx
; last
--) {
1543 wl
= winlink_find_by_index(&s
->windows
, last
- 1);
1544 RB_REMOVE(winlinks
, &s
->windows
, wl
);
1546 RB_INSERT(winlinks
, &s
->windows
, wl
);
1553 window_pane_input_callback(struct client
*c
, __unused
const char *path
,
1554 int error
, int closed
, struct evbuffer
*buffer
, void *data
)
1556 struct window_pane_input_data
*cdata
= data
;
1557 struct window_pane
*wp
;
1558 u_char
*buf
= EVBUFFER_DATA(buffer
);
1559 size_t len
= EVBUFFER_LENGTH(buffer
);
1561 wp
= window_pane_find_by_id(cdata
->wp
);
1562 if (cdata
->file
!= NULL
&& (wp
== NULL
|| c
->flags
& CLIENT_DEAD
)) {
1565 c
->flags
|= CLIENT_EXIT
;
1567 file_cancel(cdata
->file
);
1568 } else if (cdata
->file
== NULL
|| closed
|| error
!= 0) {
1569 cmdq_continue(cdata
->item
);
1570 server_client_unref(c
);
1573 input_parse_buffer(wp
, buf
, len
);
1574 evbuffer_drain(buffer
, len
);
1578 window_pane_start_input(struct window_pane
*wp
, struct cmdq_item
*item
,
1581 struct client
*c
= cmdq_get_client(item
);
1582 struct window_pane_input_data
*cdata
;
1584 if (~wp
->flags
& PANE_EMPTY
) {
1585 *cause
= xstrdup("pane is not empty");
1588 if (c
->flags
& (CLIENT_DEAD
|CLIENT_EXITED
))
1590 if (c
->session
!= NULL
)
1593 cdata
= xmalloc(sizeof *cdata
);
1596 cdata
->file
= file_read(c
, "-", window_pane_input_callback
, cdata
);
1603 window_pane_get_new_data(struct window_pane
*wp
,
1604 struct window_pane_offset
*wpo
, size_t *size
)
1606 size_t used
= wpo
->used
- wp
->base_offset
;
1608 *size
= EVBUFFER_LENGTH(wp
->event
->input
) - used
;
1609 return (EVBUFFER_DATA(wp
->event
->input
) + used
);
1613 window_pane_update_used_data(struct window_pane
*wp
,
1614 struct window_pane_offset
*wpo
, size_t size
)
1616 size_t used
= wpo
->used
- wp
->base_offset
;
1618 if (size
> EVBUFFER_LENGTH(wp
->event
->input
) - used
)
1619 size
= EVBUFFER_LENGTH(wp
->event
->input
) - used
;
1624 window_set_fill_character(struct window
*w
)
1627 struct utf8_data
*ud
;
1629 free(w
->fill_character
);
1630 w
->fill_character
= NULL
;
1632 value
= options_get_string(w
->options
, "fill-character");
1633 if (*value
!= '\0' && utf8_isvalid(value
)) {
1634 ud
= utf8_fromcstr(value
);
1635 if (ud
!= NULL
&& ud
[0].width
== 1)
1636 w
->fill_character
= ud
;
1641 window_pane_default_cursor(struct window_pane
*wp
)
1643 struct screen
*s
= wp
->screen
;
1646 c
= options_get_number(wp
->options
, "cursor-colour");
1647 s
->default_ccolour
= c
;
1649 c
= options_get_number(wp
->options
, "cursor-style");
1650 s
->default_mode
= 0;
1651 screen_set_cursor_style(c
, &s
->default_cstyle
, &s
->default_mode
);