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>
32 char *status_redraw_get_left(
33 struct client
*, time_t, int, struct grid_cell
*, size_t *);
34 char *status_redraw_get_right(
35 struct client
*, time_t, int, struct grid_cell
*, size_t *);
36 char *status_find_job(struct client
*, char **);
37 void status_job_free(void *);
38 void status_job_callback(struct job
*);
40 struct client
*, struct winlink
*, time_t, struct grid_cell
*);
41 void status_replace1(struct client
*, struct session
*, struct winlink
*,
42 struct window_pane
*, char **, char **, char *, size_t, int);
43 void status_message_callback(int, short, void *);
45 const char *status_prompt_up_history(u_int
*);
46 const char *status_prompt_down_history(u_int
*);
47 void status_prompt_add_history(const char *);
48 char *status_prompt_complete(const char *);
50 /* Status prompt history. */
51 ARRAY_DECL(, char *) status_prompt_history
= ARRAY_INITIALIZER
;
53 /* Status output tree. */
54 RB_GENERATE(status_out_tree
, status_out
, entry
, status_out_cmp
);
56 /* Output tree comparison function. */
58 status_out_cmp(struct status_out
*so1
, struct status_out
*so2
)
60 return (strcmp(so1
->cmd
, so2
->cmd
));
63 /* Retrieve options for left string. */
65 status_redraw_get_left(struct client
*c
,
66 time_t t
, int utf8flag
, struct grid_cell
*gc
, size_t *size
)
68 struct session
*s
= c
->session
;
73 fg
= options_get_number(&s
->options
, "status-left-fg");
75 colour_set_fg(gc
, fg
);
76 bg
= options_get_number(&s
->options
, "status-left-bg");
78 colour_set_bg(gc
, bg
);
79 attr
= options_get_number(&s
->options
, "status-left-attr");
83 left
= status_replace(c
, NULL
,
84 NULL
, NULL
, options_get_string(&s
->options
, "status-left"), t
, 1);
86 *size
= options_get_number(&s
->options
, "status-left-length");
87 leftlen
= screen_write_cstrlen(utf8flag
, "%s", left
);
93 /* Retrieve options for right string. */
95 status_redraw_get_right(struct client
*c
,
96 time_t t
, int utf8flag
, struct grid_cell
*gc
, size_t *size
)
98 struct session
*s
= c
->session
;
103 fg
= options_get_number(&s
->options
, "status-right-fg");
105 colour_set_fg(gc
, fg
);
106 bg
= options_get_number(&s
->options
, "status-right-bg");
108 colour_set_bg(gc
, bg
);
109 attr
= options_get_number(&s
->options
, "status-right-attr");
113 right
= status_replace(c
, NULL
,
114 NULL
, NULL
, options_get_string(&s
->options
, "status-right"), t
, 1);
116 *size
= options_get_number(&s
->options
, "status-right-length");
117 rightlen
= screen_write_cstrlen(utf8flag
, "%s", right
);
118 if (rightlen
< *size
)
123 /* Set window at window list position. */
125 status_set_window_at(struct client
*c
, u_int x
)
127 struct session
*s
= c
->session
;
131 RB_FOREACH(wl
, winlinks
, &s
->windows
) {
132 if (x
< wl
->status_width
&&
133 session_select(s
, wl
->idx
) == 0) {
134 server_redraw_session(s
);
136 x
-= wl
->status_width
+ 1;
140 /* Draw status for client on the last lines of given context. */
142 status_redraw(struct client
*c
)
144 struct screen_write_ctx ctx
;
145 struct session
*s
= c
->session
;
147 struct screen old_status
, window_list
;
148 struct grid_cell stdgc
, lgc
, rgc
, gc
;
151 u_int offset
, needed
;
152 u_int wlstart
, wlwidth
, wlavailable
, wloffset
, wlsize
;
154 int larrow
, rarrow
, utf8flag
;
156 /* No status line? */
157 if (c
->tty
.sy
== 0 || !options_get_number(&s
->options
, "status"))
162 /* Update status timer. */
163 if (gettimeofday(&c
->status_timer
, NULL
) != 0)
164 fatal("gettimeofday failed");
165 t
= c
->status_timer
.tv_sec
;
167 /* Set up default colour. */
168 memcpy(&stdgc
, &grid_default_cell
, sizeof gc
);
169 colour_set_fg(&stdgc
, options_get_number(&s
->options
, "status-fg"));
170 colour_set_bg(&stdgc
, options_get_number(&s
->options
, "status-bg"));
171 stdgc
.attr
|= options_get_number(&s
->options
, "status-attr");
173 /* Create the target screen. */
174 memcpy(&old_status
, &c
->status
, sizeof old_status
);
175 screen_init(&c
->status
, c
->tty
.sx
, 1, 0);
176 screen_write_start(&ctx
, NULL
, &c
->status
);
177 for (offset
= 0; offset
< c
->tty
.sx
; offset
++)
178 screen_write_putc(&ctx
, &stdgc
, ' ');
179 screen_write_stop(&ctx
);
181 /* If the height is one line, blank status line. */
185 /* Get UTF-8 flag. */
186 utf8flag
= options_get_number(&s
->options
, "status-utf8");
188 /* Work out left and right strings. */
189 memcpy(&lgc
, &stdgc
, sizeof lgc
);
190 left
= status_redraw_get_left(c
, t
, utf8flag
, &lgc
, &llen
);
191 memcpy(&rgc
, &stdgc
, sizeof rgc
);
192 right
= status_redraw_get_right(c
, t
, utf8flag
, &rgc
, &rlen
);
195 * Figure out how much space we have for the window list. If there
196 * isn't enough space, just show a blank status line.
203 if (c
->tty
.sx
== 0 || c
->tty
.sx
<= needed
)
205 wlavailable
= c
->tty
.sx
- needed
;
207 /* Calculate the total size needed for the window list. */
208 wlstart
= wloffset
= wlwidth
= 0;
209 RB_FOREACH(wl
, winlinks
, &s
->windows
) {
210 if (wl
->status_text
!= NULL
)
211 xfree(wl
->status_text
);
212 memcpy(&wl
->status_cell
, &stdgc
, sizeof wl
->status_cell
);
213 wl
->status_text
= status_print(c
, wl
, t
, &wl
->status_cell
);
215 screen_write_cstrlen(utf8flag
, "%s", wl
->status_text
);
219 wlwidth
+= wl
->status_width
+ 1;
222 /* Create a new screen for the window list. */
223 screen_init(&window_list
, wlwidth
, 1, 0);
225 /* And draw the window list into it. */
226 screen_write_start(&ctx
, NULL
, &window_list
);
227 RB_FOREACH(wl
, winlinks
, &s
->windows
) {
228 screen_write_cnputs(&ctx
,
229 -1, &wl
->status_cell
, utf8flag
, "%s", wl
->status_text
);
230 screen_write_putc(&ctx
, &stdgc
, ' ');
232 screen_write_stop(&ctx
);
234 /* If there is enough space for the total width, skip to draw now. */
235 if (wlwidth
<= wlavailable
)
238 /* Find size of current window text. */
239 wlsize
= s
->curw
->status_width
;
242 * If the current window is already on screen, good to draw from the
243 * start and just leave off the end.
245 if (wloffset
+ wlsize
< wlavailable
) {
246 if (wlavailable
> 0) {
250 wlwidth
= wlavailable
;
253 * Work out how many characters we need to omit from the
254 * start. There are wlavailable characters to fill, and
255 * wloffset + wlsize must be the last. So, the start character
256 * is wloffset + wlsize - wlavailable.
258 if (wlavailable
> 0) {
263 wlstart
= wloffset
+ wlsize
- wlavailable
;
264 if (wlavailable
> 0 && wlwidth
> wlstart
+ wlavailable
+ 1) {
269 wlwidth
= wlavailable
;
272 /* Bail if anything is now too small too. */
273 if (wlwidth
== 0 || wlavailable
== 0) {
274 screen_free(&window_list
);
279 * Now the start position is known, work out the state of the left and
283 RB_FOREACH(wl
, winlinks
, &s
->windows
) {
284 if (wl
->flags
& WINLINK_ALERTFLAGS
&&
285 larrow
== 1 && offset
< wlstart
)
288 offset
+= wl
->status_width
;
290 if (wl
->flags
& WINLINK_ALERTFLAGS
&&
291 rarrow
== 1 && offset
> wlstart
+ wlwidth
)
297 screen_write_start(&ctx
, NULL
, &c
->status
);
299 /* Draw the left string and arrow. */
300 screen_write_cursormove(&ctx
, 0, 0);
302 screen_write_cnputs(&ctx
, llen
, &lgc
, utf8flag
, "%s", left
);
303 screen_write_putc(&ctx
, &stdgc
, ' ');
306 memcpy(&gc
, &stdgc
, sizeof gc
);
308 gc
.attr
^= GRID_ATTR_REVERSE
;
309 screen_write_putc(&ctx
, &gc
, '<');
312 /* Draw the right string and arrow. */
314 screen_write_cursormove(&ctx
, c
->tty
.sx
- rlen
- 2, 0);
315 memcpy(&gc
, &stdgc
, sizeof gc
);
317 gc
.attr
^= GRID_ATTR_REVERSE
;
318 screen_write_putc(&ctx
, &gc
, '>');
320 screen_write_cursormove(&ctx
, c
->tty
.sx
- rlen
- 1, 0);
322 screen_write_putc(&ctx
, &stdgc
, ' ');
323 screen_write_cnputs(&ctx
, rlen
, &rgc
, utf8flag
, "%s", right
);
326 /* Figure out the offset for the window list. */
331 if (wlwidth
< wlavailable
) {
332 switch (options_get_number(&s
->options
, "status-justify")) {
333 case 1: /* centered */
334 wloffset
+= (wlavailable
- wlwidth
) / 2;
337 wloffset
+= (wlavailable
- wlwidth
);
344 /* Copy the window list. */
345 s
->wlmouse
= -wloffset
+ wlstart
;
346 screen_write_cursormove(&ctx
, wloffset
, 0);
347 screen_write_copy(&ctx
, &window_list
, wlstart
, 0, wlwidth
, 1);
348 screen_free(&window_list
);
350 screen_write_stop(&ctx
);
358 if (grid_compare(c
->status
.grid
, old_status
.grid
) == 0) {
359 screen_free(&old_status
);
362 screen_free(&old_status
);
366 /* Replace a single special sequence (prefixed by #). */
368 status_replace1(struct client
*c
, struct session
*s
, struct winlink
*wl
,
369 struct window_pane
*wp
, char **iptr
, char **optr
, char *out
,
370 size_t outsize
, int jobsflag
)
372 char ch
, tmp
[256], *ptr
, *endptr
, *freeptr
;
381 wp
= wl
->window
->active
;
384 limit
= strtol(*iptr
, &endptr
, 10);
385 if ((limit
== 0 && errno
!= EINVAL
) ||
386 (limit
== LONG_MIN
&& errno
!= ERANGE
) ||
387 (limit
== LONG_MAX
&& errno
!= ERANGE
) ||
395 switch (*(*iptr
)++) {
401 if ((ptr
= status_find_job(c
, iptr
)) == NULL
)
405 xsnprintf(tmp
, sizeof tmp
, "%%%u", wp
->id
);
409 if (gethostname(tmp
, sizeof tmp
) != 0)
410 fatal("gethostname failed");
414 if (gethostname(tmp
, sizeof tmp
) != 0)
415 fatal("gethostname failed");
416 if ((ptr
= strchr(tmp
, '.')) != NULL
)
421 xsnprintf(tmp
, sizeof tmp
, "%d", wl
->idx
);
426 tmp
, sizeof tmp
, "%u", window_pane_index(wl
->window
, wp
));
433 ptr
= wp
->base
.title
;
436 ptr
= wl
->window
->name
;
439 ptr
= window_printable_flags(s
, wl
);
444 * Embedded style, handled at display time. Leave present and
445 * skip input until ].
457 ptrlen
= strlen(ptr
);
458 if ((size_t) limit
< ptrlen
)
461 if (*optr
+ ptrlen
>= out
+ outsize
- 1)
463 while (ptrlen
> 0 && *ptr
!= '\0') {
475 (*iptr
)--; /* include ch */
476 while (**iptr
!= ch
&& **iptr
!= '\0') {
477 if (*optr
>= out
+ outsize
- 1)
479 *(*optr
)++ = *(*iptr
)++;
483 /* Replace special sequences in fmt. */
485 status_replace(struct client
*c
, struct session
*s
, struct winlink
*wl
,
486 struct window_pane
*wp
, const char *fmt
, time_t t
, int jobsflag
)
488 static char out
[BUFSIZ
];
489 char in
[BUFSIZ
], ch
, *iptr
, *optr
;
491 strftime(in
, sizeof in
, fmt
, localtime(&t
));
492 in
[(sizeof in
) - 1] = '\0';
497 while (*iptr
!= '\0') {
498 if (optr
>= out
+ (sizeof out
) - 1)
502 if (ch
!= '#' || *iptr
== '\0') {
507 c
, s
, wl
, wp
, &iptr
, &optr
, out
, sizeof out
, jobsflag
);
511 return (xstrdup(out
));
514 /* Figure out job name and get its result, starting it off if necessary. */
516 status_find_job(struct client
*c
, char **iptr
)
518 struct status_out
*so
, so_find
;
525 if (**iptr
== ')') { /* no command given */
530 cmd
= xmalloc(strlen(*iptr
) + 1);
534 for (; **iptr
!= '\0'; (*iptr
)++) {
535 if (!lastesc
&& **iptr
== ')')
536 break; /* unescaped ) is the end */
537 if (!lastesc
&& **iptr
== '\\') {
539 continue; /* skip \ if not escaped */
544 if (**iptr
== '\0') /* no terminating ) */ {
548 (*iptr
)++; /* skip final ) */
551 /* First try in the new tree. */
553 so
= RB_FIND(status_out_tree
, &c
->status_new
, &so_find
);
554 if (so
!= NULL
&& so
->out
!= NULL
)
557 /* If not found at all, start the job and add to the tree. */
559 job_run(cmd
, status_job_callback
, status_job_free
, c
);
562 so
= xmalloc(sizeof *so
);
563 so
->cmd
= xstrdup(cmd
);
565 RB_INSERT(status_out_tree
, &c
->status_new
, so
);
568 /* Lookup in the old tree. */
570 so
= RB_FIND(status_out_tree
, &c
->status_old
, &so_find
);
579 status_free_jobs(struct status_out_tree
*sotree
)
581 struct status_out
*so
, *so_next
;
583 so_next
= RB_MIN(status_out_tree
, sotree
);
584 while (so_next
!= NULL
) {
586 so_next
= RB_NEXT(status_out_tree
, sotree
, so
);
588 RB_REMOVE(status_out_tree
, sotree
, so
);
596 /* Update jobs on status interval. */
598 status_update_jobs(struct client
*c
)
600 /* Free the old tree. */
601 status_free_jobs(&c
->status_old
);
603 /* Move the new to old. */
604 memcpy(&c
->status_old
, &c
->status_new
, sizeof c
->status_old
);
605 RB_INIT(&c
->status_new
);
608 /* Free status job. */
610 status_job_free(void *data
)
612 struct client
*c
= data
;
617 /* Job has finished: save its result. */
619 status_job_callback(struct job
*job
)
621 struct client
*c
= job
->data
;
622 struct status_out
*so
, so_find
;
626 if (c
->flags
& CLIENT_DEAD
)
629 so_find
.cmd
= job
->cmd
;
630 so
= RB_FIND(status_out_tree
, &c
->status_new
, &so_find
);
631 if (so
== NULL
|| so
->out
!= NULL
)
635 if ((line
= evbuffer_readline(job
->event
->input
)) == NULL
) {
636 len
= EVBUFFER_LENGTH(job
->event
->input
);
637 buf
= xmalloc(len
+ 1);
639 memcpy(buf
, EVBUFFER_DATA(job
->event
->input
), len
);
645 server_status_client(c
);
648 /* Return winlink status line entry and adjust gc as necessary. */
651 struct client
*c
, struct winlink
*wl
, time_t t
, struct grid_cell
*gc
)
653 struct options
*oo
= &wl
->window
->options
;
654 struct session
*s
= c
->session
;
659 fg
= options_get_number(oo
, "window-status-fg");
661 colour_set_fg(gc
, fg
);
662 bg
= options_get_number(oo
, "window-status-bg");
664 colour_set_bg(gc
, bg
);
665 attr
= options_get_number(oo
, "window-status-attr");
668 fmt
= options_get_string(oo
, "window-status-format");
670 fg
= options_get_number(oo
, "window-status-current-fg");
672 colour_set_fg(gc
, fg
);
673 bg
= options_get_number(oo
, "window-status-current-bg");
675 colour_set_bg(gc
, bg
);
676 attr
= options_get_number(oo
, "window-status-current-attr");
679 fmt
= options_get_string(oo
, "window-status-current-format");
682 if (wl
->flags
& WINLINK_ALERTFLAGS
) {
683 fg
= options_get_number(oo
, "window-status-alert-fg");
685 colour_set_fg(gc
, fg
);
686 bg
= options_get_number(oo
, "window-status-alert-bg");
688 colour_set_bg(gc
, bg
);
689 attr
= options_get_number(oo
, "window-status-alert-attr");
694 text
= status_replace(c
, NULL
, wl
, NULL
, fmt
, t
, 1);
698 /* Set a status line message. */
700 status_message_set(struct client
*c
, const char *fmt
, ...)
703 struct session
*s
= c
->session
;
704 struct message_entry
*msg
;
709 status_prompt_clear(c
);
710 status_message_clear(c
);
713 xvasprintf(&c
->message_string
, fmt
, ap
);
716 ARRAY_EXPAND(&c
->message_log
, 1);
717 msg
= &ARRAY_LAST(&c
->message_log
);
718 msg
->msg_time
= time(NULL
);
719 msg
->msg
= xstrdup(c
->message_string
);
724 limit
= options_get_number(&s
->options
, "message-limit");
725 if (ARRAY_LENGTH(&c
->message_log
) > limit
) {
726 limit
= ARRAY_LENGTH(&c
->message_log
) - limit
;
727 for (i
= 0; i
< limit
; i
++) {
728 msg
= &ARRAY_FIRST(&c
->message_log
);
730 ARRAY_REMOVE(&c
->message_log
, 0);
734 delay
= options_get_number(&c
->session
->options
, "display-time");
735 tv
.tv_sec
= delay
/ 1000;
736 tv
.tv_usec
= (delay
% 1000) * 1000L;
738 evtimer_del(&c
->message_timer
);
739 evtimer_set(&c
->message_timer
, status_message_callback
, c
);
740 evtimer_add(&c
->message_timer
, &tv
);
742 c
->tty
.flags
|= (TTY_NOCURSOR
|TTY_FREEZE
);
743 c
->flags
|= CLIENT_STATUS
;
746 /* Clear status line message. */
748 status_message_clear(struct client
*c
)
750 if (c
->message_string
== NULL
)
753 xfree(c
->message_string
);
754 c
->message_string
= NULL
;
756 c
->tty
.flags
&= ~(TTY_NOCURSOR
|TTY_FREEZE
);
757 c
->flags
|= CLIENT_REDRAW
; /* screen was frozen and may have changed */
759 screen_reinit(&c
->status
);
762 /* Clear status line message after timer expires. */
765 status_message_callback(unused
int fd
, unused
short event
, void *data
)
767 struct client
*c
= data
;
769 status_message_clear(c
);
772 /* Draw client message on status line of present else on last line. */
774 status_message_redraw(struct client
*c
)
776 struct screen_write_ctx ctx
;
777 struct session
*s
= c
->session
;
778 struct screen old_status
;
783 if (c
->tty
.sx
== 0 || c
->tty
.sy
== 0)
785 memcpy(&old_status
, &c
->status
, sizeof old_status
);
786 screen_init(&c
->status
, c
->tty
.sx
, 1, 0);
788 utf8flag
= options_get_number(&s
->options
, "status-utf8");
790 len
= screen_write_strlen(utf8flag
, "%s", c
->message_string
);
794 memcpy(&gc
, &grid_default_cell
, sizeof gc
);
795 colour_set_fg(&gc
, options_get_number(&s
->options
, "message-fg"));
796 colour_set_bg(&gc
, options_get_number(&s
->options
, "message-bg"));
797 gc
.attr
|= options_get_number(&s
->options
, "message-attr");
799 screen_write_start(&ctx
, NULL
, &c
->status
);
801 screen_write_cursormove(&ctx
, 0, 0);
802 screen_write_nputs(&ctx
, len
, &gc
, utf8flag
, "%s", c
->message_string
);
803 for (; len
< c
->tty
.sx
; len
++)
804 screen_write_putc(&ctx
, &gc
, ' ');
806 screen_write_stop(&ctx
);
808 if (grid_compare(c
->status
.grid
, old_status
.grid
) == 0) {
809 screen_free(&old_status
);
812 screen_free(&old_status
);
816 /* Enable status line prompt. */
818 status_prompt_set(struct client
*c
, const char *msg
, const char *input
,
819 int (*callbackfn
)(void *, const char *), void (*freefn
)(void *),
820 void *data
, int flags
)
824 status_message_clear(c
);
825 status_prompt_clear(c
);
827 c
->prompt_string
= xstrdup(msg
);
830 c
->prompt_buffer
= xstrdup(input
);
832 c
->prompt_buffer
= xstrdup("");
833 c
->prompt_index
= strlen(c
->prompt_buffer
);
835 c
->prompt_callbackfn
= callbackfn
;
836 c
->prompt_freefn
= freefn
;
837 c
->prompt_data
= data
;
839 c
->prompt_hindex
= 0;
841 c
->prompt_flags
= flags
;
843 keys
= options_get_number(&c
->session
->options
, "status-keys");
844 if (keys
== MODEKEY_EMACS
)
845 mode_key_init(&c
->prompt_mdata
, &mode_key_tree_emacs_edit
);
847 mode_key_init(&c
->prompt_mdata
, &mode_key_tree_vi_edit
);
849 c
->tty
.flags
|= (TTY_NOCURSOR
|TTY_FREEZE
);
850 c
->flags
|= CLIENT_STATUS
;
853 /* Remove status line prompt. */
855 status_prompt_clear(struct client
*c
)
857 if (c
->prompt_string
== NULL
)
860 if (c
->prompt_freefn
!= NULL
&& c
->prompt_data
!= NULL
)
861 c
->prompt_freefn(c
->prompt_data
);
863 xfree(c
->prompt_string
);
864 c
->prompt_string
= NULL
;
866 xfree(c
->prompt_buffer
);
867 c
->prompt_buffer
= NULL
;
869 c
->tty
.flags
&= ~(TTY_NOCURSOR
|TTY_FREEZE
);
870 c
->flags
|= CLIENT_REDRAW
; /* screen was frozen and may have changed */
872 screen_reinit(&c
->status
);
875 /* Update status line prompt with a new prompt string. */
877 status_prompt_update(struct client
*c
, const char *msg
, const char *input
)
879 xfree(c
->prompt_string
);
880 c
->prompt_string
= xstrdup(msg
);
882 xfree(c
->prompt_buffer
);
884 c
->prompt_buffer
= xstrdup(input
);
886 c
->prompt_buffer
= xstrdup("");
887 c
->prompt_index
= strlen(c
->prompt_buffer
);
889 c
->prompt_hindex
= 0;
891 c
->flags
|= CLIENT_STATUS
;
894 /* Draw client prompt on status line of present else on last line. */
896 status_prompt_redraw(struct client
*c
)
898 struct screen_write_ctx ctx
;
899 struct session
*s
= c
->session
;
900 struct screen old_status
;
901 size_t i
, size
, left
, len
, off
;
902 struct grid_cell gc
, *gcp
;
905 if (c
->tty
.sx
== 0 || c
->tty
.sy
== 0)
907 memcpy(&old_status
, &c
->status
, sizeof old_status
);
908 screen_init(&c
->status
, c
->tty
.sx
, 1, 0);
910 utf8flag
= options_get_number(&s
->options
, "status-utf8");
912 len
= screen_write_strlen(utf8flag
, "%s", c
->prompt_string
);
917 memcpy(&gc
, &grid_default_cell
, sizeof gc
);
918 colour_set_fg(&gc
, options_get_number(&s
->options
, "message-fg"));
919 colour_set_bg(&gc
, options_get_number(&s
->options
, "message-bg"));
920 gc
.attr
|= options_get_number(&s
->options
, "message-attr");
922 screen_write_start(&ctx
, NULL
, &c
->status
);
924 screen_write_cursormove(&ctx
, 0, 0);
925 screen_write_nputs(&ctx
, len
, &gc
, utf8flag
, "%s", c
->prompt_string
);
927 left
= c
->tty
.sx
- len
;
929 size
= screen_write_strlen(utf8flag
, "%s", c
->prompt_buffer
);
930 if (c
->prompt_index
>= left
) {
931 off
= c
->prompt_index
- left
+ 1;
932 if (c
->prompt_index
== size
)
937 &ctx
, left
, &gc
, utf8flag
, "%s", c
->prompt_buffer
+ off
);
939 for (i
= len
+ size
; i
< c
->tty
.sx
; i
++)
940 screen_write_putc(&ctx
, &gc
, ' ');
943 screen_write_stop(&ctx
);
945 /* Apply fake cursor. */
946 off
= len
+ c
->prompt_index
- off
;
947 gcp
= grid_view_get_cell(c
->status
.grid
, off
, 0);
948 gcp
->attr
^= GRID_ATTR_REVERSE
;
950 if (grid_compare(c
->status
.grid
, old_status
.grid
) == 0) {
951 screen_free(&old_status
);
954 screen_free(&old_status
);
958 /* Handle keys in prompt. */
960 status_prompt_key(struct client
*c
, int key
)
962 struct paste_buffer
*pb
;
963 char *s
, *first
, *last
, word
[64], swapc
;
966 size_t size
, n
, off
, idx
;
968 size
= strlen(c
->prompt_buffer
);
969 switch (mode_key_lookup(&c
->prompt_mdata
, key
)) {
970 case MODEKEYEDIT_CURSORLEFT
:
971 if (c
->prompt_index
> 0) {
973 c
->flags
|= CLIENT_STATUS
;
976 case MODEKEYEDIT_SWITCHMODEAPPEND
:
977 case MODEKEYEDIT_CURSORRIGHT
:
978 if (c
->prompt_index
< size
) {
980 c
->flags
|= CLIENT_STATUS
;
983 case MODEKEYEDIT_STARTOFLINE
:
984 if (c
->prompt_index
!= 0) {
986 c
->flags
|= CLIENT_STATUS
;
989 case MODEKEYEDIT_ENDOFLINE
:
990 if (c
->prompt_index
!= size
) {
991 c
->prompt_index
= size
;
992 c
->flags
|= CLIENT_STATUS
;
995 case MODEKEYEDIT_COMPLETE
:
996 if (*c
->prompt_buffer
== '\0')
999 idx
= c
->prompt_index
;
1003 /* Find the word we are in. */
1004 first
= c
->prompt_buffer
+ idx
;
1005 while (first
> c
->prompt_buffer
&& *first
!= ' ')
1007 while (*first
== ' ')
1009 last
= c
->prompt_buffer
+ idx
;
1010 while (*last
!= '\0' && *last
!= ' ')
1012 while (*last
== ' ')
1016 if (last
<= first
||
1017 ((size_t) (last
- first
)) > (sizeof word
) - 1)
1019 memcpy(word
, first
, last
- first
);
1020 word
[last
- first
] = '\0';
1022 /* And try to complete it. */
1023 if ((s
= status_prompt_complete(word
)) == NULL
)
1026 /* Trim out word. */
1027 n
= size
- (last
- c
->prompt_buffer
) + 1; /* with \0 */
1028 memmove(first
, last
, n
);
1029 size
-= last
- first
;
1031 /* Insert the new word. */
1033 off
= first
- c
->prompt_buffer
;
1034 c
->prompt_buffer
= xrealloc(c
->prompt_buffer
, 1, size
+ 1);
1035 first
= c
->prompt_buffer
+ off
;
1036 memmove(first
+ strlen(s
), first
, n
);
1037 memcpy(first
, s
, strlen(s
));
1039 c
->prompt_index
= (first
- c
->prompt_buffer
) + strlen(s
);
1042 c
->flags
|= CLIENT_STATUS
;
1044 case MODEKEYEDIT_BACKSPACE
:
1045 if (c
->prompt_index
!= 0) {
1046 if (c
->prompt_index
== size
)
1047 c
->prompt_buffer
[--c
->prompt_index
] = '\0';
1049 memmove(c
->prompt_buffer
+ c
->prompt_index
- 1,
1050 c
->prompt_buffer
+ c
->prompt_index
,
1051 size
+ 1 - c
->prompt_index
);
1054 c
->flags
|= CLIENT_STATUS
;
1057 case MODEKEYEDIT_DELETE
:
1058 if (c
->prompt_index
!= size
) {
1059 memmove(c
->prompt_buffer
+ c
->prompt_index
,
1060 c
->prompt_buffer
+ c
->prompt_index
+ 1,
1061 size
+ 1 - c
->prompt_index
);
1062 c
->flags
|= CLIENT_STATUS
;
1065 case MODEKEYEDIT_DELETELINE
:
1066 *c
->prompt_buffer
= '\0';
1067 c
->prompt_index
= 0;
1068 c
->flags
|= CLIENT_STATUS
;
1070 case MODEKEYEDIT_DELETETOENDOFLINE
:
1071 if (c
->prompt_index
< size
) {
1072 c
->prompt_buffer
[c
->prompt_index
] = '\0';
1073 c
->flags
|= CLIENT_STATUS
;
1076 case MODEKEYEDIT_HISTORYUP
:
1077 histstr
= status_prompt_up_history(&c
->prompt_hindex
);
1078 if (histstr
== NULL
)
1080 xfree(c
->prompt_buffer
);
1081 c
->prompt_buffer
= xstrdup(histstr
);
1082 c
->prompt_index
= strlen(c
->prompt_buffer
);
1083 c
->flags
|= CLIENT_STATUS
;
1085 case MODEKEYEDIT_HISTORYDOWN
:
1086 histstr
= status_prompt_down_history(&c
->prompt_hindex
);
1087 if (histstr
== NULL
)
1089 xfree(c
->prompt_buffer
);
1090 c
->prompt_buffer
= xstrdup(histstr
);
1091 c
->prompt_index
= strlen(c
->prompt_buffer
);
1092 c
->flags
|= CLIENT_STATUS
;
1094 case MODEKEYEDIT_PASTE
:
1095 if ((pb
= paste_get_top(&global_buffers
)) == NULL
)
1097 for (n
= 0; n
< pb
->size
; n
++) {
1098 ch
= (u_char
) pb
->data
[n
];
1099 if (ch
< 32 || ch
== 127)
1103 c
->prompt_buffer
= xrealloc(c
->prompt_buffer
, 1, size
+ n
+ 1);
1104 if (c
->prompt_index
== size
) {
1105 memcpy(c
->prompt_buffer
+ c
->prompt_index
, pb
->data
, n
);
1106 c
->prompt_index
+= n
;
1107 c
->prompt_buffer
[c
->prompt_index
] = '\0';
1109 memmove(c
->prompt_buffer
+ c
->prompt_index
+ n
,
1110 c
->prompt_buffer
+ c
->prompt_index
,
1111 size
+ 1 - c
->prompt_index
);
1112 memcpy(c
->prompt_buffer
+ c
->prompt_index
, pb
->data
, n
);
1113 c
->prompt_index
+= n
;
1116 c
->flags
|= CLIENT_STATUS
;
1118 case MODEKEYEDIT_TRANSPOSECHARS
:
1119 idx
= c
->prompt_index
;
1123 swapc
= c
->prompt_buffer
[idx
- 2];
1124 c
->prompt_buffer
[idx
- 2] = c
->prompt_buffer
[idx
- 1];
1125 c
->prompt_buffer
[idx
- 1] = swapc
;
1126 c
->prompt_index
= idx
;
1127 c
->flags
|= CLIENT_STATUS
;
1130 case MODEKEYEDIT_ENTER
:
1131 if (*c
->prompt_buffer
!= '\0')
1132 status_prompt_add_history(c
->prompt_buffer
);
1133 if (c
->prompt_callbackfn(c
->prompt_data
, c
->prompt_buffer
) == 0)
1134 status_prompt_clear(c
);
1136 case MODEKEYEDIT_CANCEL
:
1137 if (c
->prompt_callbackfn(c
->prompt_data
, NULL
) == 0)
1138 status_prompt_clear(c
);
1141 if ((key
& 0xff00) != 0 || key
< 32 || key
== 127)
1143 c
->prompt_buffer
= xrealloc(c
->prompt_buffer
, 1, size
+ 2);
1145 if (c
->prompt_index
== size
) {
1146 c
->prompt_buffer
[c
->prompt_index
++] = key
;
1147 c
->prompt_buffer
[c
->prompt_index
] = '\0';
1149 memmove(c
->prompt_buffer
+ c
->prompt_index
+ 1,
1150 c
->prompt_buffer
+ c
->prompt_index
,
1151 size
+ 1 - c
->prompt_index
);
1152 c
->prompt_buffer
[c
->prompt_index
++] = key
;
1155 if (c
->prompt_flags
& PROMPT_SINGLE
) {
1156 if (c
->prompt_callbackfn(
1157 c
->prompt_data
, c
->prompt_buffer
) == 0)
1158 status_prompt_clear(c
);
1161 c
->flags
|= CLIENT_STATUS
;
1168 /* Get previous line from the history. */
1170 status_prompt_up_history(u_int
*idx
)
1175 * History runs from 0 to size - 1.
1177 * Index is from 0 to size. Zero is empty.
1180 size
= ARRAY_LENGTH(&status_prompt_history
);
1181 if (size
== 0 || *idx
== size
)
1184 return (ARRAY_ITEM(&status_prompt_history
, size
- *idx
));
1187 /* Get next line from the history. */
1189 status_prompt_down_history(u_int
*idx
)
1193 size
= ARRAY_LENGTH(&status_prompt_history
);
1194 if (size
== 0 || *idx
== 0)
1199 return (ARRAY_ITEM(&status_prompt_history
, size
- *idx
));
1202 /* Add line to the history. */
1204 status_prompt_add_history(const char *line
)
1208 size
= ARRAY_LENGTH(&status_prompt_history
);
1209 if (size
> 0 && strcmp(ARRAY_LAST(&status_prompt_history
), line
) == 0)
1212 if (size
== PROMPT_HISTORY
) {
1213 xfree(ARRAY_FIRST(&status_prompt_history
));
1214 ARRAY_REMOVE(&status_prompt_history
, 0);
1217 ARRAY_ADD(&status_prompt_history
, xstrdup(line
));
1220 /* Complete word. */
1222 status_prompt_complete(const char *s
)
1224 const struct cmd_entry
**cmdent
;
1225 const struct options_table_entry
*oe
;
1226 ARRAY_DECL(, const char *) list
;
1234 /* First, build a list of all the possible matches. */
1236 for (cmdent
= cmd_table
; *cmdent
!= NULL
; cmdent
++) {
1237 if (strncmp((*cmdent
)->name
, s
, strlen(s
)) == 0)
1238 ARRAY_ADD(&list
, (*cmdent
)->name
);
1240 for (oe
= server_options_table
; oe
->name
!= NULL
; oe
++) {
1241 if (strncmp(oe
->name
, s
, strlen(s
)) == 0)
1242 ARRAY_ADD(&list
, oe
->name
);
1244 for (oe
= session_options_table
; oe
->name
!= NULL
; oe
++) {
1245 if (strncmp(oe
->name
, s
, strlen(s
)) == 0)
1246 ARRAY_ADD(&list
, oe
->name
);
1248 for (oe
= window_options_table
; oe
->name
!= NULL
; oe
++) {
1249 if (strncmp(oe
->name
, s
, strlen(s
)) == 0)
1250 ARRAY_ADD(&list
, oe
->name
);
1253 /* If none, bail now. */
1254 if (ARRAY_LENGTH(&list
) == 0) {
1259 /* If an exact match, return it, with a trailing space. */
1260 if (ARRAY_LENGTH(&list
) == 1) {
1261 xasprintf(&s2
, "%s ", ARRAY_FIRST(&list
));
1266 /* Now loop through the list and find the longest common prefix. */
1267 prefix
= xstrdup(ARRAY_FIRST(&list
));
1268 for (i
= 1; i
< ARRAY_LENGTH(&list
); i
++) {
1269 s
= ARRAY_ITEM(&list
, i
);
1272 if (j
> strlen(prefix
))
1274 for (; j
> 0; j
--) {
1275 if (prefix
[j
- 1] != s
[j
- 1])
1276 prefix
[j
- 1] = '\0';