4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
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>
38 * Each window is attached to a number of panes, each of which is a pty. This
39 * file contains code to handle them.
41 * A pane has two buffers attached, these are filled and emptied by the main
42 * server poll loop. Output data is received from pty's in screen format,
43 * translated and returned as a series of escape sequences and strings via
44 * input_parse (in input.c). Input data is received as key codes and written
45 * directly via input_key.
47 * Each pane also has a "virtual" screen (screen.c) which contains the current
48 * state and is redisplayed when the window is reattached to a client.
50 * Windows are stored directly on a global array and wrapped in any number of
51 * winlink structs to be linked onto local session RB trees. A reference count
52 * is maintained and a window removed from the global list and destroyed when
56 /* Global window list. */
57 struct windows windows
;
59 void window_pane_read_callback(struct bufferevent
*, void *);
60 void window_pane_error_callback(struct bufferevent
*, short, void *);
62 RB_GENERATE(winlinks
, winlink
, entry
, winlink_cmp
);
65 winlink_cmp(struct winlink
*wl1
, struct winlink
*wl2
)
67 return (wl1
->idx
- wl2
->idx
);
71 winlink_find_by_window(struct winlinks
*wwl
, struct window
*w
)
75 RB_FOREACH(wl
, winlinks
, wwl
) {
84 winlink_find_by_index(struct winlinks
*wwl
, int idx
)
92 return (RB_FIND(winlinks
, wwl
, &wl
));
96 winlink_next_index(struct winlinks
*wwl
, int idx
)
102 if (winlink_find_by_index(wwl
, i
) == NULL
)
113 winlink_count(struct winlinks
*wwl
)
119 RB_FOREACH(wl
, winlinks
, wwl
)
126 winlink_add(struct winlinks
*wwl
, struct window
*w
, int idx
)
131 if ((idx
= winlink_next_index(wwl
, -idx
- 1)) == -1)
133 } else if (winlink_find_by_index(wwl
, idx
) != NULL
)
136 wl
= xcalloc(1, sizeof *wl
);
139 RB_INSERT(winlinks
, wwl
, wl
);
147 winlink_remove(struct winlinks
*wwl
, struct winlink
*wl
)
149 struct window
*w
= wl
->window
;
151 RB_REMOVE(winlinks
, wwl
, wl
);
152 if (wl
->status_text
!= NULL
)
153 xfree(wl
->status_text
);
156 if (w
->references
== 0)
157 fatal("bad reference count");
159 if (w
->references
== 0)
164 winlink_next(struct winlink
*wl
)
166 return (RB_NEXT(winlinks
, wwl
, wl
));
170 winlink_previous(struct winlink
*wl
)
172 return (RB_PREV(winlinks
, wwl
, wl
));
176 winlink_next_by_number(struct winlink
*wl
, struct session
*s
, int n
)
179 if ((wl
= RB_NEXT(winlinks
, wwl
, wl
)) == NULL
)
180 wl
= RB_MIN(winlinks
, &s
->windows
);
187 winlink_previous_by_number(struct winlink
*wl
, struct session
*s
, int n
)
190 if ((wl
= RB_PREV(winlinks
, wwl
, wl
)) == NULL
)
191 wl
= RB_MAX(winlinks
, &s
->windows
);
198 winlink_stack_push(struct winlink_stack
*stack
, struct winlink
*wl
)
203 winlink_stack_remove(stack
, wl
);
204 TAILQ_INSERT_HEAD(stack
, wl
, sentry
);
208 winlink_stack_remove(struct winlink_stack
*stack
, struct winlink
*wl
)
215 TAILQ_FOREACH(wl2
, stack
, sentry
) {
217 TAILQ_REMOVE(stack
, wl
, sentry
);
224 window_index(struct window
*s
, u_int
*i
)
226 for (*i
= 0; *i
< ARRAY_LENGTH(&windows
); (*i
)++) {
227 if (s
== ARRAY_ITEM(&windows
, *i
))
234 window_create1(u_int sx
, u_int sy
)
239 w
= xcalloc(1, sizeof *w
);
243 TAILQ_INIT(&w
->panes
);
247 w
->layout_root
= NULL
;
252 queue_window_name(w
);
254 options_init(&w
->options
, &global_w_options
);
256 for (i
= 0; i
< ARRAY_LENGTH(&windows
); i
++) {
257 if (ARRAY_ITEM(&windows
, i
) == NULL
) {
258 ARRAY_SET(&windows
, i
, w
);
262 if (i
== ARRAY_LENGTH(&windows
))
263 ARRAY_ADD(&windows
, w
);
270 window_create(const char *name
, const char *cmd
, const char *shell
,
271 const char *cwd
, struct environ
*env
, struct termios
*tio
,
272 u_int sx
, u_int sy
, u_int hlimit
,char **cause
)
275 struct window_pane
*wp
;
277 w
= window_create1(sx
, sy
);
278 wp
= window_add_pane(w
, hlimit
);
280 if (window_pane_spawn(wp
, cmd
, shell
, cwd
, env
, tio
, cause
) != 0) {
284 w
->active
= TAILQ_FIRST(&w
->panes
);
286 w
->name
= xstrdup(name
);
287 options_set_number(&w
->options
, "automatic-rename", 0);
289 w
->name
= default_window_name(w
);
294 window_destroy(struct window
*w
)
298 if (window_index(w
, &i
) != 0)
299 fatalx("index not found");
300 ARRAY_SET(&windows
, i
, NULL
);
301 while (!ARRAY_EMPTY(&windows
) && ARRAY_LAST(&windows
) == NULL
)
302 ARRAY_TRUNC(&windows
, 1);
304 if (w
->layout_root
!= NULL
)
307 evtimer_del(&w
->name_timer
);
309 options_free(&w
->options
);
311 window_destroy_panes(w
);
319 window_resize(struct window
*w
, u_int sx
, u_int sy
)
326 window_set_active_pane(struct window
*w
, struct window_pane
*wp
)
329 while (!window_pane_visible(w
->active
)) {
330 w
->active
= TAILQ_PREV(w
->active
, window_panes
, entry
);
331 if (w
->active
== NULL
)
332 w
->active
= TAILQ_LAST(&w
->panes
, window_panes
);
339 window_set_active_at(struct window
*w
, u_int x
, u_int y
)
341 struct window_pane
*wp
;
343 TAILQ_FOREACH(wp
, &w
->panes
, entry
) {
344 if (!window_pane_visible(wp
))
346 if (x
< wp
->xoff
|| x
>= wp
->xoff
+ wp
->sx
)
348 if (y
< wp
->yoff
|| y
>= wp
->yoff
+ wp
->sy
)
350 window_set_active_pane(w
, wp
);
356 window_add_pane(struct window
*w
, u_int hlimit
)
358 struct window_pane
*wp
;
360 wp
= window_pane_create(w
, w
->sx
, w
->sy
, hlimit
);
361 if (TAILQ_EMPTY(&w
->panes
))
362 TAILQ_INSERT_HEAD(&w
->panes
, wp
, entry
);
364 TAILQ_INSERT_AFTER(&w
->panes
, w
->active
, wp
, entry
);
369 window_remove_pane(struct window
*w
, struct window_pane
*wp
)
371 w
->active
= TAILQ_PREV(wp
, window_panes
, entry
);
372 if (w
->active
== NULL
)
373 w
->active
= TAILQ_NEXT(wp
, entry
);
375 TAILQ_REMOVE(&w
->panes
, wp
, entry
);
376 window_pane_destroy(wp
);
380 window_pane_at_index(struct window
*w
, u_int idx
)
382 struct window_pane
*wp
;
386 TAILQ_FOREACH(wp
, &w
->panes
, entry
) {
395 window_pane_next_by_number(struct window
*w
, struct window_pane
*wp
, u_int n
)
398 if ((wp
= TAILQ_NEXT(wp
, entry
)) == NULL
)
399 wp
= TAILQ_FIRST(&w
->panes
);
406 window_pane_previous_by_number(struct window
*w
, struct window_pane
*wp
,
410 if ((wp
= TAILQ_PREV(wp
, window_panes
, entry
)) == NULL
)
411 wp
= TAILQ_LAST(&w
->panes
, window_panes
);
418 window_pane_index(struct window
*w
, struct window_pane
*wp
)
420 struct window_pane
*wq
;
424 TAILQ_FOREACH(wq
, &w
->panes
, entry
) {
433 window_count_panes(struct window
*w
)
435 struct window_pane
*wp
;
439 TAILQ_FOREACH(wp
, &w
->panes
, entry
)
445 window_destroy_panes(struct window
*w
)
447 struct window_pane
*wp
;
449 while (!TAILQ_EMPTY(&w
->panes
)) {
450 wp
= TAILQ_FIRST(&w
->panes
);
451 TAILQ_REMOVE(&w
->panes
, wp
, entry
);
452 window_pane_destroy(wp
);
457 window_pane_create(struct window
*w
, u_int sx
, u_int sy
, u_int hlimit
)
459 struct window_pane
*wp
;
461 wp
= xcalloc(1, sizeof *wp
);
473 wp
->layout_cell
= NULL
;
483 wp
->pipe_event
= NULL
;
485 wp
->saved_grid
= NULL
;
487 screen_init(&wp
->base
, sx
, sy
, hlimit
);
488 wp
->screen
= &wp
->base
;
496 window_pane_destroy(struct window_pane
*wp
)
498 window_pane_reset_mode(wp
);
502 bufferevent_free(wp
->event
);
507 screen_free(&wp
->base
);
508 if (wp
->saved_grid
!= NULL
)
509 grid_destroy(wp
->saved_grid
);
511 if (wp
->pipe_fd
!= -1) {
513 bufferevent_free(wp
->pipe_event
);
518 if (wp
->shell
!= NULL
)
526 window_pane_spawn(struct window_pane
*wp
, const char *cmd
, const char *shell
,
527 const char *cwd
, struct environ
*env
, struct termios
*tio
, char **cause
)
537 bufferevent_free(wp
->event
);
542 wp
->cmd
= xstrdup(cmd
);
545 if (wp
->shell
!= NULL
)
547 wp
->shell
= xstrdup(shell
);
552 wp
->cwd
= xstrdup(cwd
);
555 memset(&ws
, 0, sizeof ws
);
556 ws
.ws_col
= screen_size_x(&wp
->base
);
557 ws
.ws_row
= screen_size_y(&wp
->base
);
559 switch (wp
->pid
= forkpty(&wp
->fd
, wp
->tty
, NULL
, &ws
)) {
562 xasprintf(cause
, "%s: %s", cmd
, strerror(errno
));
565 if (chdir(wp
->cwd
) != 0)
568 if (tcgetattr(STDIN_FILENO
, &tio2
) != 0)
569 fatal("tcgetattr failed");
571 memcpy(tio2
.c_cc
, tio
->c_cc
, sizeof tio2
.c_cc
);
572 tio2
.c_cc
[VERASE
] = '\177';
573 if (tcsetattr(STDIN_FILENO
, TCSANOW
, &tio2
) != 0)
574 fatal("tcgetattr failed");
576 closefrom(STDERR_FILENO
+ 1);
583 if (*wp
->cmd
!= '\0') {
584 /* Set SHELL but only if it is currently not useful. */
585 shell
= getenv("SHELL");
586 if (shell
== NULL
|| *shell
== '\0' || areshell(shell
))
587 setenv("SHELL", wp
->shell
, 1);
589 execl(_PATH_BSHELL
, "sh", "-c", wp
->cmd
, (char *) NULL
);
590 fatal("execl failed");
593 /* No command; fork a login shell. */
594 ptr
= strrchr(wp
->shell
, '/');
595 if (ptr
!= NULL
&& *(ptr
+ 1) != '\0')
596 xasprintf(&argv0
, "-%s", ptr
+ 1);
598 xasprintf(&argv0
, "-%s", wp
->shell
);
599 setenv("SHELL", wp
->shell
, 1);
600 execl(wp
->shell
, argv0
, (char *) NULL
);
601 fatal("execl failed");
604 if ((mode
= fcntl(wp
->fd
, F_GETFL
)) == -1)
605 fatal("fcntl failed");
606 if (fcntl(wp
->fd
, F_SETFL
, mode
|O_NONBLOCK
) == -1)
607 fatal("fcntl failed");
608 wp
->event
= bufferevent_new(wp
->fd
,
609 window_pane_read_callback
, NULL
, window_pane_error_callback
, wp
);
610 bufferevent_enable(wp
->event
, EV_READ
|EV_WRITE
);
617 window_pane_read_callback(unused
struct bufferevent
*bufev
, void *data
)
619 struct window_pane
*wp
= data
;
623 new_size
= EVBUFFER_LENGTH(wp
->event
->input
) - wp
->pipe_off
;
624 if (wp
->pipe_fd
!= -1 && new_size
> 0) {
625 new_data
= EVBUFFER_DATA(wp
->event
->input
);
626 bufferevent_write(wp
->pipe_event
, new_data
, new_size
);
631 wp
->pipe_off
= EVBUFFER_LENGTH(wp
->event
->input
);
636 window_pane_error_callback(
637 unused
struct bufferevent
*bufev
, unused
short what
, void *data
)
639 struct window_pane
*wp
= data
;
641 server_destroy_pane(wp
);
645 window_pane_resize(struct window_pane
*wp
, u_int sx
, u_int sy
)
649 if (sx
== wp
->sx
&& sy
== wp
->sy
)
654 memset(&ws
, 0, sizeof ws
);
658 screen_resize(&wp
->base
, sx
, sy
);
659 if (wp
->mode
!= NULL
)
660 wp
->mode
->resize(wp
, sx
, sy
);
662 if (wp
->fd
!= -1 && ioctl(wp
->fd
, TIOCSWINSZ
, &ws
) == -1)
663 fatal("ioctl failed");
667 * Enter alternative screen mode. A copy of the visible screen is saved and the
668 * history is not updated
671 window_pane_alternate_on(struct window_pane
*wp
, struct grid_cell
*gc
)
673 struct screen
*s
= &wp
->base
;
676 if (wp
->saved_grid
!= NULL
)
678 if (!options_get_number(&wp
->window
->options
, "alternate-screen"))
680 sx
= screen_size_x(s
);
681 sy
= screen_size_y(s
);
683 wp
->saved_grid
= grid_create(sx
, sy
, 0);
684 grid_duplicate_lines(wp
->saved_grid
, 0, s
->grid
, screen_hsize(s
), sy
);
685 wp
->saved_cx
= s
->cx
;
686 wp
->saved_cy
= s
->cy
;
687 memcpy(&wp
->saved_cell
, gc
, sizeof wp
->saved_cell
);
689 grid_view_clear(s
->grid
, 0, 0, sx
, sy
);
691 wp
->base
.grid
->flags
&= ~GRID_HISTORY
;
693 wp
->flags
|= PANE_REDRAW
;
696 /* Exit alternate screen mode and restore the copied grid. */
698 window_pane_alternate_off(struct window_pane
*wp
, struct grid_cell
*gc
)
700 struct screen
*s
= &wp
->base
;
703 if (wp
->saved_grid
== NULL
)
705 if (!options_get_number(&wp
->window
->options
, "alternate-screen"))
707 sx
= screen_size_x(s
);
708 sy
= screen_size_y(s
);
711 * If the current size is bigger, temporarily resize to the old size
712 * before copying back.
714 if (sy
> wp
->saved_grid
->sy
)
715 screen_resize(s
, sx
, wp
->saved_grid
->sy
);
717 /* Restore the grid, cursor position and cell. */
718 grid_duplicate_lines(s
->grid
, screen_hsize(s
), wp
->saved_grid
, 0, sy
);
719 s
->cx
= wp
->saved_cx
;
720 if (s
->cx
> screen_size_x(s
) - 1)
721 s
->cx
= screen_size_x(s
) - 1;
722 s
->cy
= wp
->saved_cy
;
723 if (s
->cy
> screen_size_y(s
) - 1)
724 s
->cy
= screen_size_y(s
) - 1;
725 memcpy(gc
, &wp
->saved_cell
, sizeof *gc
);
728 * Turn history back on (so resize can use it) and then resize back to
731 wp
->base
.grid
->flags
|= GRID_HISTORY
;
732 if (sy
> wp
->saved_grid
->sy
)
733 screen_resize(s
, sx
, sy
);
735 grid_destroy(wp
->saved_grid
);
736 wp
->saved_grid
= NULL
;
738 wp
->flags
|= PANE_REDRAW
;
742 window_pane_set_mode(struct window_pane
*wp
, const struct window_mode
*mode
)
746 if (wp
->mode
!= NULL
)
750 if ((s
= wp
->mode
->init(wp
)) != NULL
)
752 wp
->flags
|= PANE_REDRAW
;
757 window_pane_reset_mode(struct window_pane
*wp
)
759 if (wp
->mode
== NULL
)
765 wp
->screen
= &wp
->base
;
766 wp
->flags
|= PANE_REDRAW
;
770 window_pane_key(struct window_pane
*wp
, struct session
*sess
, int key
)
772 struct window_pane
*wp2
;
774 if (!window_pane_visible(wp
))
777 if (wp
->mode
!= NULL
) {
778 if (wp
->mode
->key
!= NULL
)
779 wp
->mode
->key(wp
, sess
, key
);
786 if (options_get_number(&wp
->window
->options
, "synchronize-panes")) {
787 TAILQ_FOREACH(wp2
, &wp
->window
->panes
, entry
) {
788 if (wp2
== wp
|| wp2
->mode
!= NULL
)
790 if (wp2
->fd
!= -1 && window_pane_visible(wp2
))
798 struct window_pane
*wp
, struct session
*sess
, struct mouse_event
*m
)
800 if (!window_pane_visible(wp
))
803 if (m
->x
< wp
->xoff
|| m
->x
>= wp
->xoff
+ wp
->sx
)
805 if (m
->y
< wp
->yoff
|| m
->y
>= wp
->yoff
+ wp
->sy
)
810 if (wp
->mode
!= NULL
) {
811 if (wp
->mode
->mouse
!= NULL
)
812 wp
->mode
->mouse(wp
, sess
, m
);
813 } else if (wp
->fd
!= -1)
818 window_pane_visible(struct window_pane
*wp
)
820 struct window
*w
= wp
->window
;
822 if (wp
->xoff
>= w
->sx
|| wp
->yoff
>= w
->sy
)
824 if (wp
->xoff
+ wp
->sx
> w
->sx
|| wp
->yoff
+ wp
->sy
> w
->sy
)
830 window_pane_search(struct window_pane
*wp
, const char *searchstr
, u_int
*lineno
)
832 struct screen
*s
= &wp
->base
;
833 char *newsearchstr
, *line
, *msg
;
837 xasprintf(&newsearchstr
, "*%s*", searchstr
);
839 for (i
= 0; i
< screen_size_y(s
); i
++) {
840 line
= grid_view_string_cells(s
->grid
, 0, i
, screen_size_x(s
));
841 if (fnmatch(newsearchstr
, line
, 0) == 0) {
854 /* Find the pane directly above another. */
856 window_pane_find_up(struct window_pane
*wp
)
858 struct window_pane
*wp2
;
861 if (wp
== NULL
|| !window_pane_visible(wp
))
866 top
= wp
->window
->sy
+ 1;
869 TAILQ_FOREACH(wp2
, &wp
->window
->panes
, entry
) {
870 if (!window_pane_visible(wp2
))
872 if (wp2
->yoff
+ wp2
->sy
+ 1 != top
)
874 if (left
>= wp2
->xoff
&& left
<= wp2
->xoff
+ wp2
->sx
)
880 /* Find the pane directly below another. */
882 window_pane_find_down(struct window_pane
*wp
)
884 struct window_pane
*wp2
;
887 if (wp
== NULL
|| !window_pane_visible(wp
))
890 bottom
= wp
->yoff
+ wp
->sy
+ 1;
891 if (bottom
>= wp
->window
->sy
)
895 TAILQ_FOREACH(wp2
, &wp
->window
->panes
, entry
) {
896 if (!window_pane_visible(wp2
))
898 if (wp2
->yoff
!= bottom
)
900 if (left
>= wp2
->xoff
&& left
<= wp2
->xoff
+ wp2
->sx
)
907 * Find the pane directly to the left of another, adjacent to the left side and
908 * containing the top edge.
911 window_pane_find_left(struct window_pane
*wp
)
913 struct window_pane
*wp2
;
916 if (wp
== NULL
|| !window_pane_visible(wp
))
921 left
= wp
->window
->sx
+ 1;
924 TAILQ_FOREACH(wp2
, &wp
->window
->panes
, entry
) {
925 if (!window_pane_visible(wp2
))
927 if (wp2
->xoff
+ wp2
->sx
+ 1 != left
)
929 if (top
>= wp2
->yoff
&& top
<= wp2
->yoff
+ wp2
->sy
)
936 * Find the pane directly to the right of another, that is adjacent to the
937 * right edge and including the top edge.
940 window_pane_find_right(struct window_pane
*wp
)
942 struct window_pane
*wp2
;
945 if (wp
== NULL
|| !window_pane_visible(wp
))
948 right
= wp
->xoff
+ wp
->sx
+ 1;
949 if (right
>= wp
->window
->sx
)
953 TAILQ_FOREACH(wp2
, &wp
->window
->panes
, entry
) {
954 if (!window_pane_visible(wp2
))
956 if (wp2
->xoff
!= right
)
958 if (top
>= wp2
->yoff
&& top
<= wp2
->yoff
+ wp2
->sy
)