2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2015-11-12 11:09:11 +00:00
|
|
|
char *status_redraw_get_left(struct client *, time_t, struct grid_cell *,
|
|
|
|
size_t *);
|
|
|
|
char *status_redraw_get_right(struct client *, time_t, struct grid_cell *,
|
2015-02-06 17:21:08 +00:00
|
|
|
size_t *);
|
|
|
|
char *status_print(struct client *, struct winlink *, time_t,
|
|
|
|
struct grid_cell *);
|
|
|
|
char *status_replace(struct client *, struct winlink *, const char *, time_t);
|
2009-11-04 23:29:42 +00:00
|
|
|
void status_message_callback(int, short, void *);
|
2015-08-28 12:16:28 +00:00
|
|
|
void status_timer_callback(int, short, void *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2010-12-11 16:05:57 +00:00
|
|
|
const char *status_prompt_up_history(u_int *);
|
|
|
|
const char *status_prompt_down_history(u_int *);
|
|
|
|
void status_prompt_add_history(const char *);
|
2015-05-06 23:56:46 +00:00
|
|
|
|
|
|
|
const char **status_prompt_complete_list(u_int *, const char *);
|
|
|
|
char *status_prompt_complete_prefix(const char **, u_int);
|
|
|
|
char *status_prompt_complete(struct session *, const char *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-07-20 15:50:04 +00:00
|
|
|
char *status_prompt_find_history_file(void);
|
|
|
|
|
2010-12-11 16:05:57 +00:00
|
|
|
/* Status prompt history. */
|
2015-05-06 23:56:46 +00:00
|
|
|
#define PROMPT_HISTORY 100
|
|
|
|
char **status_prompt_hlist;
|
|
|
|
u_int status_prompt_hsize;
|
2010-12-11 16:05:57 +00:00
|
|
|
|
2015-07-20 15:50:04 +00:00
|
|
|
/* Find the history file to load/save from/to. */
|
|
|
|
char *
|
|
|
|
status_prompt_find_history_file(void)
|
|
|
|
{
|
|
|
|
const char *home, *history_file;
|
|
|
|
char *path;
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
history_file = options_get_string(global_options, "history-file");
|
2015-07-20 15:50:04 +00:00
|
|
|
if (*history_file == '\0')
|
|
|
|
return (NULL);
|
|
|
|
if (*history_file == '/')
|
|
|
|
return (xstrdup(history_file));
|
|
|
|
|
|
|
|
if (history_file[0] != '~' || history_file[1] != '/')
|
|
|
|
return (NULL);
|
|
|
|
if ((home = find_home()) == NULL)
|
|
|
|
return (NULL);
|
|
|
|
xasprintf(&path, "%s%s", home, history_file + 1);
|
|
|
|
return (path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load status prompt history from file. */
|
|
|
|
void
|
|
|
|
status_prompt_load_history(void)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
char *history_file, *line, *tmp;
|
|
|
|
size_t length;
|
|
|
|
|
|
|
|
if ((history_file = status_prompt_find_history_file()) == NULL)
|
|
|
|
return;
|
|
|
|
log_debug("loading history from %s", history_file);
|
|
|
|
|
|
|
|
f = fopen(history_file, "r");
|
|
|
|
if (f == NULL) {
|
|
|
|
log_debug("%s: %s", history_file, strerror(errno));
|
|
|
|
free(history_file);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
free(history_file);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if ((line = fgetln(f, &length)) == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (length > 0) {
|
|
|
|
if (line[length - 1] == '\n') {
|
|
|
|
line[length - 1] = '\0';
|
|
|
|
status_prompt_add_history(line);
|
|
|
|
} else {
|
|
|
|
tmp = xmalloc(length + 1);
|
|
|
|
memcpy(tmp, line, length);
|
|
|
|
tmp[length] = '\0';
|
|
|
|
status_prompt_add_history(tmp);
|
|
|
|
free(tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save status prompt history to file. */
|
|
|
|
void
|
|
|
|
status_prompt_save_history(void)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
u_int i;
|
|
|
|
char *history_file;
|
|
|
|
|
|
|
|
if ((history_file = status_prompt_find_history_file()) == NULL)
|
|
|
|
return;
|
|
|
|
log_debug("saving history to %s", history_file);
|
|
|
|
|
|
|
|
f = fopen(history_file, "w");
|
|
|
|
if (f == NULL) {
|
|
|
|
log_debug("%s: %s", history_file, strerror(errno));
|
|
|
|
free(history_file);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
free(history_file);
|
|
|
|
|
|
|
|
for (i = 0; i < status_prompt_hsize; i++) {
|
|
|
|
fputs(status_prompt_hlist[i], f);
|
|
|
|
fputc('\n', f);
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-08-28 12:16:28 +00:00
|
|
|
/* Status timer callback. */
|
|
|
|
void
|
2015-11-18 14:27:44 +00:00
|
|
|
status_timer_callback(__unused int fd, __unused short events, void *arg)
|
2015-08-28 12:16:28 +00:00
|
|
|
{
|
|
|
|
struct client *c = arg;
|
|
|
|
struct session *s = c->session;
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
evtimer_del(&c->status_timer);
|
|
|
|
|
|
|
|
if (s == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (c->message_string == NULL && c->prompt_string == NULL)
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
|
|
|
|
timerclear(&tv);
|
2015-10-27 15:58:42 +00:00
|
|
|
tv.tv_sec = options_get_number(s->options, "status-interval");
|
2015-08-28 12:16:28 +00:00
|
|
|
|
|
|
|
if (tv.tv_sec != 0)
|
|
|
|
evtimer_add(&c->status_timer, &tv);
|
2015-10-20 21:12:08 +00:00
|
|
|
log_debug("client %p, status interval %d", c, (int)tv.tv_sec);
|
2015-08-28 12:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Start status timer for client. */
|
|
|
|
void
|
|
|
|
status_timer_start(struct client *c)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
|
|
|
|
|
|
|
if (event_initialized(&c->status_timer))
|
|
|
|
evtimer_del(&c->status_timer);
|
|
|
|
else
|
|
|
|
evtimer_set(&c->status_timer, status_timer_callback, c);
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
if (s != NULL && options_get_number(s->options, "status"))
|
2015-08-28 12:16:28 +00:00
|
|
|
status_timer_callback(-1, 0, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start status timer for all clients. */
|
|
|
|
void
|
|
|
|
status_timer_start_all(void)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(c, &clients, entry)
|
|
|
|
status_timer_start(c);
|
|
|
|
}
|
|
|
|
|
2012-01-29 09:37:02 +00:00
|
|
|
/* Get screen line of status line. -1 means off. */
|
|
|
|
int
|
|
|
|
status_at_line(struct client *c)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
if (!options_get_number(s->options, "status"))
|
2012-01-29 09:37:02 +00:00
|
|
|
return (-1);
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
if (options_get_number(s->options, "status-position") == 0)
|
2012-01-29 09:37:02 +00:00
|
|
|
return (0);
|
|
|
|
return (c->tty.sy - 1);
|
|
|
|
}
|
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/* Retrieve options for left string. */
|
|
|
|
char *
|
2015-11-12 11:09:11 +00:00
|
|
|
status_redraw_get_left(struct client *c, time_t t, struct grid_cell *gc,
|
|
|
|
size_t *size)
|
2009-11-19 19:47:28 +00:00
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
2015-02-01 23:43:23 +00:00
|
|
|
const char *template;
|
2009-11-19 19:47:28 +00:00
|
|
|
char *left;
|
|
|
|
size_t leftlen;
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
style_apply_update(gc, s->options, "status-left-style");
|
2009-11-19 19:47:28 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
template = options_get_string(s->options, "status-left");
|
2015-02-06 17:21:08 +00:00
|
|
|
left = status_replace(c, NULL, template, t);
|
2009-11-19 19:47:28 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
*size = options_get_number(s->options, "status-left-length");
|
2015-11-12 11:09:11 +00:00
|
|
|
leftlen = screen_write_cstrlen("%s", left);
|
2009-11-19 19:47:28 +00:00
|
|
|
if (leftlen < *size)
|
|
|
|
*size = leftlen;
|
|
|
|
return (left);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retrieve options for right string. */
|
|
|
|
char *
|
2015-11-12 11:09:11 +00:00
|
|
|
status_redraw_get_right(struct client *c, time_t t, struct grid_cell *gc,
|
|
|
|
size_t *size)
|
2009-11-19 19:47:28 +00:00
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
2015-02-01 23:43:23 +00:00
|
|
|
const char *template;
|
2009-11-19 19:47:28 +00:00
|
|
|
char *right;
|
|
|
|
size_t rightlen;
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
style_apply_update(gc, s->options, "status-right-style");
|
2009-11-19 19:47:28 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
template = options_get_string(s->options, "status-right");
|
2015-02-06 17:21:08 +00:00
|
|
|
right = status_replace(c, NULL, template, t);
|
2009-11-19 19:47:28 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
*size = options_get_number(s->options, "status-right-length");
|
2015-11-12 11:09:11 +00:00
|
|
|
rightlen = screen_write_cstrlen("%s", right);
|
2009-11-19 19:47:28 +00:00
|
|
|
if (rightlen < *size)
|
|
|
|
*size = rightlen;
|
|
|
|
return (right);
|
|
|
|
}
|
|
|
|
|
2015-04-19 21:34:21 +00:00
|
|
|
/* Get window at window list position. */
|
|
|
|
struct window *
|
|
|
|
status_get_window_at(struct client *c, u_int x)
|
2011-04-18 19:49:05 +00:00
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
|
|
|
struct winlink *wl;
|
2014-10-02 10:39:43 +00:00
|
|
|
struct options *oo;
|
|
|
|
size_t len;
|
2011-04-18 19:49:05 +00:00
|
|
|
|
2012-03-03 08:55:56 +00:00
|
|
|
x += c->wlmouse;
|
2011-04-18 19:49:05 +00:00
|
|
|
RB_FOREACH(wl, winlinks, &s->windows) {
|
2015-10-27 15:58:42 +00:00
|
|
|
oo = wl->window->options;
|
2014-10-02 10:39:43 +00:00
|
|
|
len = strlen(options_get_string(oo, "window-status-separator"));
|
2015-04-19 21:34:21 +00:00
|
|
|
|
|
|
|
if (x < wl->status_width)
|
|
|
|
return (wl->window);
|
2014-10-02 10:39:43 +00:00
|
|
|
x -= wl->status_width + len;
|
2011-04-18 19:49:05 +00:00
|
|
|
}
|
2015-04-19 21:34:21 +00:00
|
|
|
return (NULL);
|
2011-04-18 19:49:05 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
/* Draw status for client on the last lines of given context. */
|
|
|
|
int
|
|
|
|
status_redraw(struct client *c)
|
|
|
|
{
|
2009-11-19 19:47:28 +00:00
|
|
|
struct screen_write_ctx ctx;
|
|
|
|
struct session *s = c->session;
|
|
|
|
struct winlink *wl;
|
|
|
|
struct screen old_status, window_list;
|
|
|
|
struct grid_cell stdgc, lgc, rgc, gc;
|
2012-04-23 22:23:14 +00:00
|
|
|
struct options *oo;
|
2009-11-19 19:47:28 +00:00
|
|
|
time_t t;
|
2012-04-23 22:23:14 +00:00
|
|
|
char *left, *right, *sep;
|
2009-11-19 19:47:28 +00:00
|
|
|
u_int offset, needed;
|
|
|
|
u_int wlstart, wlwidth, wlavailable, wloffset, wlsize;
|
2012-04-23 22:23:14 +00:00
|
|
|
size_t llen, rlen, seplen;
|
2015-11-12 11:09:11 +00:00
|
|
|
int larrow, rarrow;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-11-19 21:30:53 +00:00
|
|
|
/* No status line? */
|
2015-10-27 15:58:42 +00:00
|
|
|
if (c->tty.sy == 0 || !options_get_number(s->options, "status"))
|
2009-07-14 19:03:16 +00:00
|
|
|
return (1);
|
2009-11-19 19:47:28 +00:00
|
|
|
left = right = NULL;
|
2009-07-14 19:03:16 +00:00
|
|
|
larrow = rarrow = 0;
|
|
|
|
|
2015-08-28 12:16:28 +00:00
|
|
|
/* Store current time. */
|
|
|
|
t = time(NULL);
|
2009-11-19 19:47:28 +00:00
|
|
|
|
|
|
|
/* Set up default colour. */
|
2015-10-27 15:58:42 +00:00
|
|
|
style_apply(&stdgc, s->options, "status-style");
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/* Create the target screen. */
|
|
|
|
memcpy(&old_status, &c->status, sizeof old_status);
|
|
|
|
screen_init(&c->status, c->tty.sx, 1, 0);
|
|
|
|
screen_write_start(&ctx, NULL, &c->status);
|
|
|
|
for (offset = 0; offset < c->tty.sx; offset++)
|
|
|
|
screen_write_putc(&ctx, &stdgc, ' ');
|
|
|
|
screen_write_stop(&ctx);
|
|
|
|
|
|
|
|
/* If the height is one line, blank status line. */
|
|
|
|
if (c->tty.sy <= 1)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Work out left and right strings. */
|
|
|
|
memcpy(&lgc, &stdgc, sizeof lgc);
|
2015-11-12 11:09:11 +00:00
|
|
|
left = status_redraw_get_left(c, t, &lgc, &llen);
|
2009-11-19 19:47:28 +00:00
|
|
|
memcpy(&rgc, &stdgc, sizeof rgc);
|
2015-11-12 11:09:11 +00:00
|
|
|
right = status_redraw_get_right(c, t, &rgc, &rlen);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
/*
|
2009-11-19 19:47:28 +00:00
|
|
|
* Figure out how much space we have for the window list. If there
|
|
|
|
* isn't enough space, just show a blank status line.
|
2009-06-01 22:58:49 +00:00
|
|
|
*/
|
2009-12-03 22:50:09 +00:00
|
|
|
needed = 0;
|
2009-06-01 22:58:49 +00:00
|
|
|
if (llen != 0)
|
2014-11-05 23:15:11 +00:00
|
|
|
needed += llen;
|
2009-06-01 22:58:49 +00:00
|
|
|
if (rlen != 0)
|
2014-11-05 23:15:11 +00:00
|
|
|
needed += rlen;
|
2009-11-19 19:47:28 +00:00
|
|
|
if (c->tty.sx == 0 || c->tty.sx <= needed)
|
|
|
|
goto out;
|
|
|
|
wlavailable = c->tty.sx - needed;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/* Calculate the total size needed for the window list. */
|
|
|
|
wlstart = wloffset = wlwidth = 0;
|
2009-06-01 22:58:49 +00:00
|
|
|
RB_FOREACH(wl, winlinks, &s->windows) {
|
2012-07-10 11:53:01 +00:00
|
|
|
free(wl->status_text);
|
2009-11-19 19:47:28 +00:00
|
|
|
memcpy(&wl->status_cell, &stdgc, sizeof wl->status_cell);
|
|
|
|
wl->status_text = status_print(c, wl, t, &wl->status_cell);
|
2015-11-12 11:09:11 +00:00
|
|
|
wl->status_width = screen_write_cstrlen("%s", wl->status_text);
|
2009-11-19 19:47:28 +00:00
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
if (wl == s->curw)
|
2009-11-19 19:47:28 +00:00
|
|
|
wloffset = wlwidth;
|
2012-04-23 22:23:14 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
oo = wl->window->options;
|
2012-04-23 22:23:14 +00:00
|
|
|
sep = options_get_string(oo, "window-status-separator");
|
2015-11-12 11:09:11 +00:00
|
|
|
seplen = screen_write_strlen("%s", sep);
|
2012-04-23 22:23:14 +00:00
|
|
|
wlwidth += wl->status_width + seplen;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/* Create a new screen for the window list. */
|
|
|
|
screen_init(&window_list, wlwidth, 1, 0);
|
|
|
|
|
|
|
|
/* And draw the window list into it. */
|
|
|
|
screen_write_start(&ctx, NULL, &window_list);
|
|
|
|
RB_FOREACH(wl, winlinks, &s->windows) {
|
2015-11-12 11:09:11 +00:00
|
|
|
screen_write_cnputs(&ctx, -1, &wl->status_cell, "%s",
|
|
|
|
wl->status_text);
|
2012-04-23 22:23:14 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
oo = wl->window->options;
|
2012-04-23 22:23:14 +00:00
|
|
|
sep = options_get_string(oo, "window-status-separator");
|
2015-11-12 11:09:11 +00:00
|
|
|
screen_write_nputs(&ctx, -1, &stdgc, "%s", sep);
|
2009-11-19 19:47:28 +00:00
|
|
|
}
|
|
|
|
screen_write_stop(&ctx);
|
|
|
|
|
|
|
|
/* If there is enough space for the total width, skip to draw now. */
|
|
|
|
if (wlwidth <= wlavailable)
|
2009-06-01 22:58:49 +00:00
|
|
|
goto draw;
|
|
|
|
|
|
|
|
/* Find size of current window text. */
|
2009-11-19 19:47:28 +00:00
|
|
|
wlsize = s->curw->status_width;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
/*
|
2009-11-19 19:47:28 +00:00
|
|
|
* If the current window is already on screen, good to draw from the
|
2009-06-01 22:58:49 +00:00
|
|
|
* start and just leave off the end.
|
|
|
|
*/
|
2009-11-19 19:47:28 +00:00
|
|
|
if (wloffset + wlsize < wlavailable) {
|
|
|
|
if (wlavailable > 0) {
|
2009-06-01 22:58:49 +00:00
|
|
|
rarrow = 1;
|
2009-11-19 19:47:28 +00:00
|
|
|
wlavailable--;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2009-11-19 19:47:28 +00:00
|
|
|
wlwidth = wlavailable;
|
2009-06-01 22:58:49 +00:00
|
|
|
} else {
|
2009-11-19 19:47:28 +00:00
|
|
|
/*
|
|
|
|
* Work out how many characters we need to omit from the
|
|
|
|
* start. There are wlavailable characters to fill, and
|
|
|
|
* wloffset + wlsize must be the last. So, the start character
|
|
|
|
* is wloffset + wlsize - wlavailable.
|
|
|
|
*/
|
|
|
|
if (wlavailable > 0) {
|
|
|
|
larrow = 1;
|
|
|
|
wlavailable--;
|
|
|
|
}
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
wlstart = wloffset + wlsize - wlavailable;
|
|
|
|
if (wlavailable > 0 && wlwidth > wlstart + wlavailable + 1) {
|
|
|
|
rarrow = 1;
|
|
|
|
wlstart++;
|
|
|
|
wlavailable--;
|
|
|
|
}
|
|
|
|
wlwidth = wlavailable;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/* Bail if anything is now too small too. */
|
|
|
|
if (wlwidth == 0 || wlavailable == 0) {
|
|
|
|
screen_free(&window_list);
|
|
|
|
goto out;
|
2009-07-20 14:32:09 +00:00
|
|
|
}
|
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/*
|
|
|
|
* Now the start position is known, work out the state of the left and
|
|
|
|
* right arrows.
|
|
|
|
*/
|
2009-06-01 22:58:49 +00:00
|
|
|
offset = 0;
|
|
|
|
RB_FOREACH(wl, winlinks, &s->windows) {
|
2010-06-21 01:27:46 +00:00
|
|
|
if (wl->flags & WINLINK_ALERTFLAGS &&
|
|
|
|
larrow == 1 && offset < wlstart)
|
|
|
|
larrow = -1;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
offset += wl->status_width;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2010-06-21 01:27:46 +00:00
|
|
|
if (wl->flags & WINLINK_ALERTFLAGS &&
|
|
|
|
rarrow == 1 && offset > wlstart + wlwidth)
|
|
|
|
rarrow = -1;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
draw:
|
2009-12-03 22:50:09 +00:00
|
|
|
/* Begin drawing. */
|
2009-11-19 19:47:28 +00:00
|
|
|
screen_write_start(&ctx, NULL, &c->status);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/* Draw the left string and arrow. */
|
|
|
|
screen_write_cursormove(&ctx, 0, 0);
|
2014-11-05 23:15:11 +00:00
|
|
|
if (llen != 0)
|
2015-11-12 11:09:11 +00:00
|
|
|
screen_write_cnputs(&ctx, llen, &lgc, "%s", left);
|
2009-06-01 22:58:49 +00:00
|
|
|
if (larrow != 0) {
|
|
|
|
memcpy(&gc, &stdgc, sizeof gc);
|
|
|
|
if (larrow == -1)
|
|
|
|
gc.attr ^= GRID_ATTR_REVERSE;
|
|
|
|
screen_write_putc(&ctx, &gc, '<');
|
|
|
|
}
|
2009-11-19 19:47:28 +00:00
|
|
|
|
|
|
|
/* Draw the right string and arrow. */
|
2009-06-01 22:58:49 +00:00
|
|
|
if (rarrow != 0) {
|
2014-11-05 23:15:11 +00:00
|
|
|
screen_write_cursormove(&ctx, c->tty.sx - rlen - 1, 0);
|
2009-06-01 22:58:49 +00:00
|
|
|
memcpy(&gc, &stdgc, sizeof gc);
|
|
|
|
if (rarrow == -1)
|
|
|
|
gc.attr ^= GRID_ATTR_REVERSE;
|
|
|
|
screen_write_putc(&ctx, &gc, '>');
|
2009-11-19 19:47:28 +00:00
|
|
|
} else
|
2014-11-05 23:15:11 +00:00
|
|
|
screen_write_cursormove(&ctx, c->tty.sx - rlen, 0);
|
|
|
|
if (rlen != 0)
|
2015-11-12 11:09:11 +00:00
|
|
|
screen_write_cnputs(&ctx, rlen, &rgc, "%s", right);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/* Figure out the offset for the window list. */
|
2010-01-27 20:26:42 +00:00
|
|
|
if (llen != 0)
|
2014-11-05 23:15:11 +00:00
|
|
|
wloffset = llen;
|
2010-01-27 20:26:42 +00:00
|
|
|
else
|
|
|
|
wloffset = 0;
|
2009-11-19 19:47:28 +00:00
|
|
|
if (wlwidth < wlavailable) {
|
2015-10-27 15:58:42 +00:00
|
|
|
switch (options_get_number(s->options, "status-justify")) {
|
2015-01-20 10:57:10 +00:00
|
|
|
case 1: /* centred */
|
2010-01-27 20:26:42 +00:00
|
|
|
wloffset += (wlavailable - wlwidth) / 2;
|
2009-11-19 19:47:28 +00:00
|
|
|
break;
|
|
|
|
case 2: /* right */
|
2010-01-27 20:26:42 +00:00
|
|
|
wloffset += (wlavailable - wlwidth);
|
2009-11-19 19:47:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (larrow != 0)
|
|
|
|
wloffset++;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
/* Copy the window list. */
|
2012-03-03 08:55:56 +00:00
|
|
|
c->wlmouse = -wloffset + wlstart;
|
2009-11-19 19:47:28 +00:00
|
|
|
screen_write_cursormove(&ctx, wloffset, 0);
|
|
|
|
screen_write_copy(&ctx, &window_list, wlstart, 0, wlwidth, 1);
|
2009-12-03 22:50:09 +00:00
|
|
|
screen_free(&window_list);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
screen_write_stop(&ctx);
|
|
|
|
|
2009-11-19 19:47:28 +00:00
|
|
|
out:
|
2012-07-10 11:53:01 +00:00
|
|
|
free(left);
|
|
|
|
free(right);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
if (grid_compare(c->status.grid, old_status.grid) == 0) {
|
|
|
|
screen_free(&old_status);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
screen_free(&old_status);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2009-11-19 11:38:54 +00:00
|
|
|
/* Replace special sequences in fmt. */
|
|
|
|
char *
|
2015-02-06 17:21:08 +00:00
|
|
|
status_replace(struct client *c, struct winlink *wl, const char *fmt, time_t t)
|
2009-11-19 11:38:54 +00:00
|
|
|
{
|
2013-03-21 16:25:08 +00:00
|
|
|
struct format_tree *ft;
|
2015-05-27 13:28:04 +00:00
|
|
|
char *expanded;
|
2009-11-19 16:22:10 +00:00
|
|
|
|
2012-07-09 09:55:57 +00:00
|
|
|
if (fmt == NULL)
|
|
|
|
return (xstrdup(""));
|
|
|
|
|
2015-09-14 10:25:52 +00:00
|
|
|
if (c->flags & CLIENT_STATUSFORCE)
|
|
|
|
ft = format_create_flags(FORMAT_STATUS|FORMAT_FORCE);
|
|
|
|
else
|
|
|
|
ft = format_create_flags(FORMAT_STATUS);
|
2015-05-27 13:28:04 +00:00
|
|
|
format_defaults(ft, c, NULL, wl, NULL);
|
2009-11-19 11:38:54 +00:00
|
|
|
|
2015-05-27 13:28:04 +00:00
|
|
|
expanded = format_expand_time(ft, fmt, t);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2013-03-21 16:25:08 +00:00
|
|
|
format_free(ft);
|
|
|
|
return (expanded);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-11-19 11:38:54 +00:00
|
|
|
/* Return winlink status line entry and adjust gc as necessary. */
|
2009-06-01 22:58:49 +00:00
|
|
|
char *
|
2015-02-01 23:43:23 +00:00
|
|
|
status_print(struct client *c, struct winlink *wl, time_t t,
|
|
|
|
struct grid_cell *gc)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2015-10-27 15:58:42 +00:00
|
|
|
struct options *oo = wl->window->options;
|
2009-11-19 16:22:10 +00:00
|
|
|
struct session *s = c->session;
|
|
|
|
const char *fmt;
|
|
|
|
char *text;
|
2014-01-28 23:07:09 +00:00
|
|
|
|
|
|
|
style_apply_update(gc, oo, "window-status-style");
|
2009-11-19 16:22:10 +00:00
|
|
|
fmt = options_get_string(oo, "window-status-format");
|
2009-07-20 09:15:18 +00:00
|
|
|
if (wl == s->curw) {
|
2014-01-28 23:07:09 +00:00
|
|
|
style_apply_update(gc, oo, "window-status-current-style");
|
2009-11-19 16:22:10 +00:00
|
|
|
fmt = options_get_string(oo, "window-status-current-format");
|
2009-07-20 09:15:18 +00:00
|
|
|
}
|
2014-01-28 23:07:09 +00:00
|
|
|
if (wl == TAILQ_FIRST(&s->lastw))
|
|
|
|
style_apply_update(gc, oo, "window-status-last-style");
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2014-01-28 23:07:09 +00:00
|
|
|
if (wl->flags & WINLINK_BELL)
|
|
|
|
style_apply_update(gc, oo, "window-status-bell-style");
|
|
|
|
else if (wl->flags & (WINLINK_ACTIVITY|WINLINK_SILENCE))
|
|
|
|
style_apply_update(gc, oo, "window-status-activity-style");
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-02-06 17:21:08 +00:00
|
|
|
text = status_replace(c, wl, fmt, t);
|
2009-06-01 22:58:49 +00:00
|
|
|
return (text);
|
|
|
|
}
|
|
|
|
|
2009-11-19 11:38:54 +00:00
|
|
|
/* Set a status line message. */
|
2014-10-20 23:57:13 +00:00
|
|
|
void
|
2009-07-15 17:39:00 +00:00
|
|
|
status_message_set(struct client *c, const char *fmt, ...)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2009-11-18 13:16:33 +00:00
|
|
|
struct timeval tv;
|
2015-04-25 18:33:59 +00:00
|
|
|
struct message_entry *msg, *msg1;
|
2009-11-18 13:16:33 +00:00
|
|
|
va_list ap;
|
|
|
|
int delay;
|
2015-04-25 18:33:59 +00:00
|
|
|
u_int first, limit;
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
limit = options_get_number(global_options, "message-limit");
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-07-17 06:13:27 +00:00
|
|
|
status_prompt_clear(c);
|
|
|
|
status_message_clear(c);
|
|
|
|
|
2009-08-31 20:46:19 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
xvasprintf(&c->message_string, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
2015-04-25 18:33:59 +00:00
|
|
|
msg = xcalloc(1, sizeof *msg);
|
2009-11-18 13:16:33 +00:00
|
|
|
msg->msg_time = time(NULL);
|
2015-04-25 18:33:59 +00:00
|
|
|
msg->msg_num = c->message_next++;
|
2009-11-18 13:16:33 +00:00
|
|
|
msg->msg = xstrdup(c->message_string);
|
2015-04-25 18:33:59 +00:00
|
|
|
TAILQ_INSERT_TAIL(&c->message_log, msg, entry);
|
2009-11-18 13:16:33 +00:00
|
|
|
|
2015-04-25 18:33:59 +00:00
|
|
|
first = c->message_next - limit;
|
|
|
|
TAILQ_FOREACH_SAFE(msg, &c->message_log, entry, msg1) {
|
|
|
|
if (msg->msg_num >= first)
|
|
|
|
continue;
|
|
|
|
free(msg->msg);
|
|
|
|
TAILQ_REMOVE(&c->message_log, msg, entry);
|
|
|
|
free(msg);
|
2009-11-18 13:16:33 +00:00
|
|
|
}
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
delay = options_get_number(c->session->options, "display-time");
|
2009-06-01 22:58:49 +00:00
|
|
|
tv.tv_sec = delay / 1000;
|
|
|
|
tv.tv_usec = (delay % 1000) * 1000L;
|
2009-11-18 13:16:33 +00:00
|
|
|
|
2014-02-14 13:59:01 +00:00
|
|
|
if (event_initialized(&c->message_timer))
|
2012-03-17 18:24:07 +00:00
|
|
|
evtimer_del(&c->message_timer);
|
2009-11-04 23:29:42 +00:00
|
|
|
evtimer_set(&c->message_timer, status_message_callback, c);
|
|
|
|
evtimer_add(&c->message_timer, &tv);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
c->tty.flags |= (TTY_NOCURSOR|TTY_FREEZE);
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
|
2009-11-19 11:38:54 +00:00
|
|
|
/* Clear status line message. */
|
2009-06-01 22:58:49 +00:00
|
|
|
void
|
|
|
|
status_message_clear(struct client *c)
|
|
|
|
{
|
|
|
|
if (c->message_string == NULL)
|
|
|
|
return;
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->message_string);
|
2009-06-01 22:58:49 +00:00
|
|
|
c->message_string = NULL;
|
|
|
|
|
|
|
|
c->tty.flags &= ~(TTY_NOCURSOR|TTY_FREEZE);
|
2009-07-17 06:13:27 +00:00
|
|
|
c->flags |= CLIENT_REDRAW; /* screen was frozen and may have changed */
|
2009-07-14 19:03:16 +00:00
|
|
|
|
|
|
|
screen_reinit(&c->status);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-11-19 11:38:54 +00:00
|
|
|
/* Clear status line message after timer expires. */
|
2009-11-04 23:29:42 +00:00
|
|
|
void
|
2015-11-18 14:27:44 +00:00
|
|
|
status_message_callback(__unused int fd, __unused short event, void *data)
|
2009-11-04 23:29:42 +00:00
|
|
|
{
|
|
|
|
struct client *c = data;
|
|
|
|
|
|
|
|
status_message_clear(c);
|
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
/* Draw client message on status line of present else on last line. */
|
|
|
|
int
|
|
|
|
status_message_redraw(struct client *c)
|
|
|
|
{
|
|
|
|
struct screen_write_ctx ctx;
|
|
|
|
struct session *s = c->session;
|
|
|
|
struct screen old_status;
|
|
|
|
size_t len;
|
|
|
|
struct grid_cell gc;
|
|
|
|
|
|
|
|
if (c->tty.sx == 0 || c->tty.sy == 0)
|
|
|
|
return (0);
|
|
|
|
memcpy(&old_status, &c->status, sizeof old_status);
|
|
|
|
screen_init(&c->status, c->tty.sx, 1, 0);
|
|
|
|
|
2015-11-12 11:09:11 +00:00
|
|
|
len = screen_write_strlen("%s", c->message_string);
|
2009-06-01 22:58:49 +00:00
|
|
|
if (len > c->tty.sx)
|
|
|
|
len = c->tty.sx;
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
style_apply(&gc, s->options, "message-style");
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
screen_write_start(&ctx, NULL, &c->status);
|
|
|
|
|
|
|
|
screen_write_cursormove(&ctx, 0, 0);
|
2015-11-12 11:09:11 +00:00
|
|
|
screen_write_nputs(&ctx, len, &gc, "%s", c->message_string);
|
2009-06-01 22:58:49 +00:00
|
|
|
for (; len < c->tty.sx; len++)
|
|
|
|
screen_write_putc(&ctx, &gc, ' ');
|
|
|
|
|
|
|
|
screen_write_stop(&ctx);
|
|
|
|
|
|
|
|
if (grid_compare(c->status.grid, old_status.grid) == 0) {
|
|
|
|
screen_free(&old_status);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
screen_free(&old_status);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2009-11-19 11:38:54 +00:00
|
|
|
/* Enable status line prompt. */
|
2009-06-01 22:58:49 +00:00
|
|
|
void
|
2011-07-02 21:05:44 +00:00
|
|
|
status_prompt_set(struct client *c, const char *msg, const char *input,
|
2009-07-17 06:13:27 +00:00
|
|
|
int (*callbackfn)(void *, const char *), void (*freefn)(void *),
|
|
|
|
void *data, int flags)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2015-02-06 17:11:39 +00:00
|
|
|
struct format_tree *ft;
|
|
|
|
int keys;
|
|
|
|
time_t t;
|
|
|
|
|
|
|
|
ft = format_create();
|
|
|
|
format_defaults(ft, c, NULL, NULL, NULL);
|
|
|
|
t = time(NULL);
|
2009-07-27 19:29:35 +00:00
|
|
|
|
2009-07-17 06:13:27 +00:00
|
|
|
status_message_clear(c);
|
|
|
|
status_prompt_clear(c);
|
|
|
|
|
2015-02-06 23:28:52 +00:00
|
|
|
c->prompt_string = format_expand_time(ft, msg, t);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-02-06 23:28:52 +00:00
|
|
|
c->prompt_buffer = format_expand_time(ft, input, t);
|
2011-07-02 21:05:44 +00:00
|
|
|
c->prompt_index = strlen(c->prompt_buffer);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-07-17 06:13:27 +00:00
|
|
|
c->prompt_callbackfn = callbackfn;
|
|
|
|
c->prompt_freefn = freefn;
|
2009-06-01 22:58:49 +00:00
|
|
|
c->prompt_data = data;
|
|
|
|
|
|
|
|
c->prompt_hindex = 0;
|
|
|
|
|
|
|
|
c->prompt_flags = flags;
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
keys = options_get_number(c->session->options, "status-keys");
|
2009-07-27 19:29:35 +00:00
|
|
|
if (keys == MODEKEY_EMACS)
|
2009-07-28 07:03:32 +00:00
|
|
|
mode_key_init(&c->prompt_mdata, &mode_key_tree_emacs_edit);
|
2009-07-27 19:29:35 +00:00
|
|
|
else
|
2009-07-28 07:03:32 +00:00
|
|
|
mode_key_init(&c->prompt_mdata, &mode_key_tree_vi_edit);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
c->tty.flags |= (TTY_NOCURSOR|TTY_FREEZE);
|
|
|
|
c->flags |= CLIENT_STATUS;
|
2015-02-06 17:11:39 +00:00
|
|
|
|
|
|
|
format_free(ft);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-11-19 11:38:54 +00:00
|
|
|
/* Remove status line prompt. */
|
2009-06-01 22:58:49 +00:00
|
|
|
void
|
|
|
|
status_prompt_clear(struct client *c)
|
|
|
|
{
|
2009-12-03 22:50:09 +00:00
|
|
|
if (c->prompt_string == NULL)
|
2009-06-01 22:58:49 +00:00
|
|
|
return;
|
|
|
|
|
2009-07-17 06:13:27 +00:00
|
|
|
if (c->prompt_freefn != NULL && c->prompt_data != NULL)
|
|
|
|
c->prompt_freefn(c->prompt_data);
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->prompt_string);
|
2009-06-01 22:58:49 +00:00
|
|
|
c->prompt_string = NULL;
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->prompt_buffer);
|
2009-06-01 22:58:49 +00:00
|
|
|
c->prompt_buffer = NULL;
|
|
|
|
|
|
|
|
c->tty.flags &= ~(TTY_NOCURSOR|TTY_FREEZE);
|
2009-07-17 06:13:27 +00:00
|
|
|
c->flags |= CLIENT_REDRAW; /* screen was frozen and may have changed */
|
2009-07-14 19:03:16 +00:00
|
|
|
|
|
|
|
screen_reinit(&c->status);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-11-19 11:38:54 +00:00
|
|
|
/* Update status line prompt with a new prompt string. */
|
2009-08-19 10:39:50 +00:00
|
|
|
void
|
2011-07-02 21:05:44 +00:00
|
|
|
status_prompt_update(struct client *c, const char *msg, const char *input)
|
2009-08-19 10:39:50 +00:00
|
|
|
{
|
2015-02-06 17:11:39 +00:00
|
|
|
struct format_tree *ft;
|
|
|
|
time_t t;
|
|
|
|
|
|
|
|
ft = format_create();
|
|
|
|
format_defaults(ft, c, NULL, NULL, NULL);
|
|
|
|
t = time(NULL);
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->prompt_string);
|
2015-02-06 23:28:52 +00:00
|
|
|
c->prompt_string = format_expand_time(ft, msg, t);
|
2009-08-19 10:39:50 +00:00
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->prompt_buffer);
|
2015-02-06 23:28:52 +00:00
|
|
|
c->prompt_buffer = format_expand_time(ft, input, t);
|
2011-07-02 21:05:44 +00:00
|
|
|
c->prompt_index = strlen(c->prompt_buffer);
|
2009-08-19 10:39:50 +00:00
|
|
|
|
|
|
|
c->prompt_hindex = 0;
|
|
|
|
|
|
|
|
c->flags |= CLIENT_STATUS;
|
2015-02-06 17:11:39 +00:00
|
|
|
|
|
|
|
format_free(ft);
|
2009-08-19 10:39:50 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
/* Draw client prompt on status line of present else on last line. */
|
|
|
|
int
|
|
|
|
status_prompt_redraw(struct client *c)
|
|
|
|
{
|
2009-11-20 07:01:12 +00:00
|
|
|
struct screen_write_ctx ctx;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct session *s = c->session;
|
|
|
|
struct screen old_status;
|
2009-09-01 09:11:05 +00:00
|
|
|
size_t i, size, left, len, off;
|
2015-11-13 08:09:28 +00:00
|
|
|
struct grid_cell gc;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
if (c->tty.sx == 0 || c->tty.sy == 0)
|
|
|
|
return (0);
|
|
|
|
memcpy(&old_status, &c->status, sizeof old_status);
|
|
|
|
screen_init(&c->status, c->tty.sx, 1, 0);
|
|
|
|
|
2015-11-12 11:09:11 +00:00
|
|
|
len = screen_write_strlen("%s", c->prompt_string);
|
2009-06-01 22:58:49 +00:00
|
|
|
if (len > c->tty.sx)
|
|
|
|
len = c->tty.sx;
|
2009-11-20 07:01:12 +00:00
|
|
|
off = 0;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-11-05 09:06:31 +00:00
|
|
|
/* Change colours for command mode. */
|
2014-01-28 23:07:09 +00:00
|
|
|
if (c->prompt_mdata.mode == 1)
|
2015-10-27 15:58:42 +00:00
|
|
|
style_apply(&gc, s->options, "message-command-style");
|
2014-01-28 23:07:09 +00:00
|
|
|
else
|
2015-10-27 15:58:42 +00:00
|
|
|
style_apply(&gc, s->options, "message-style");
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
screen_write_start(&ctx, NULL, &c->status);
|
|
|
|
|
|
|
|
screen_write_cursormove(&ctx, 0, 0);
|
2015-11-12 11:09:11 +00:00
|
|
|
screen_write_nputs(&ctx, len, &gc, "%s", c->prompt_string);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
left = c->tty.sx - len;
|
|
|
|
if (left != 0) {
|
2015-11-12 11:09:11 +00:00
|
|
|
size = screen_write_strlen("%s", c->prompt_buffer);
|
2009-11-20 07:01:12 +00:00
|
|
|
if (c->prompt_index >= left) {
|
2009-07-26 21:13:47 +00:00
|
|
|
off = c->prompt_index - left + 1;
|
2009-11-20 07:01:12 +00:00
|
|
|
if (c->prompt_index == size)
|
2009-06-01 22:58:49 +00:00
|
|
|
left--;
|
|
|
|
size = left;
|
|
|
|
}
|
2015-11-12 11:09:11 +00:00
|
|
|
screen_write_nputs(&ctx, left, &gc, "%s", c->prompt_buffer +
|
|
|
|
off);
|
2009-11-20 07:01:12 +00:00
|
|
|
|
2009-12-03 22:50:09 +00:00
|
|
|
for (i = len + size; i < c->tty.sx; i++)
|
|
|
|
screen_write_putc(&ctx, &gc, ' ');
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
screen_write_stop(&ctx);
|
|
|
|
|
2009-11-20 07:01:12 +00:00
|
|
|
/* Apply fake cursor. */
|
|
|
|
off = len + c->prompt_index - off;
|
2015-11-13 08:09:28 +00:00
|
|
|
grid_view_get_cell(c->status.grid, off, 0, &gc);
|
|
|
|
gc.attr ^= GRID_ATTR_REVERSE;
|
|
|
|
grid_view_set_cell(c->status.grid, off, 0, &gc);
|
2009-11-20 07:01:12 +00:00
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
if (grid_compare(c->status.grid, old_status.grid) == 0) {
|
|
|
|
screen_free(&old_status);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
screen_free(&old_status);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle keys in prompt. */
|
|
|
|
void
|
2015-11-12 11:05:34 +00:00
|
|
|
status_prompt_key(struct client *c, key_code key)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2011-11-15 23:34:12 +00:00
|
|
|
struct session *sess = c->session;
|
2015-10-27 15:58:42 +00:00
|
|
|
struct options *oo = sess->options;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct paste_buffer *pb;
|
2011-11-15 23:34:12 +00:00
|
|
|
char *s, *first, *last, word[64], swapc;
|
2015-08-29 09:25:00 +00:00
|
|
|
const char *histstr, *bufdata, *wsep = NULL;
|
2009-11-26 22:28:24 +00:00
|
|
|
u_char ch;
|
2015-08-29 09:25:00 +00:00
|
|
|
size_t size, n, off, idx, bufsize;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
size = strlen(c->prompt_buffer);
|
2013-03-22 15:55:22 +00:00
|
|
|
switch (mode_key_lookup(&c->prompt_mdata, key, NULL)) {
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_CURSORLEFT:
|
2009-06-01 22:58:49 +00:00
|
|
|
if (c->prompt_index > 0) {
|
|
|
|
c->prompt_index--;
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
break;
|
2011-11-05 09:06:31 +00:00
|
|
|
case MODEKEYEDIT_SWITCHMODE:
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_SWITCHMODEAPPEND:
|
2011-11-05 09:06:31 +00:00
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
/* FALLTHROUGH */
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_CURSORRIGHT:
|
2009-06-01 22:58:49 +00:00
|
|
|
if (c->prompt_index < size) {
|
|
|
|
c->prompt_index++;
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
break;
|
2012-03-04 07:38:11 +00:00
|
|
|
case MODEKEYEDIT_SWITCHMODEBEGINLINE:
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
/* FALLTHROUGH */
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_STARTOFLINE:
|
2009-06-01 22:58:49 +00:00
|
|
|
if (c->prompt_index != 0) {
|
|
|
|
c->prompt_index = 0;
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
break;
|
2012-03-04 07:38:11 +00:00
|
|
|
case MODEKEYEDIT_SWITCHMODEAPPENDLINE:
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
/* FALLTHROUGH */
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_ENDOFLINE:
|
2009-06-01 22:58:49 +00:00
|
|
|
if (c->prompt_index != size) {
|
|
|
|
c->prompt_index = size;
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_COMPLETE:
|
2009-06-01 22:58:49 +00:00
|
|
|
if (*c->prompt_buffer == '\0')
|
|
|
|
break;
|
|
|
|
|
|
|
|
idx = c->prompt_index;
|
|
|
|
if (idx != 0)
|
|
|
|
idx--;
|
|
|
|
|
|
|
|
/* Find the word we are in. */
|
|
|
|
first = c->prompt_buffer + idx;
|
|
|
|
while (first > c->prompt_buffer && *first != ' ')
|
|
|
|
first--;
|
|
|
|
while (*first == ' ')
|
|
|
|
first++;
|
|
|
|
last = c->prompt_buffer + idx;
|
|
|
|
while (*last != '\0' && *last != ' ')
|
|
|
|
last++;
|
|
|
|
while (*last == ' ')
|
|
|
|
last--;
|
|
|
|
if (*last != '\0')
|
|
|
|
last++;
|
|
|
|
if (last <= first ||
|
|
|
|
((size_t) (last - first)) > (sizeof word) - 1)
|
|
|
|
break;
|
|
|
|
memcpy(word, first, last - first);
|
|
|
|
word[last - first] = '\0';
|
|
|
|
|
|
|
|
/* And try to complete it. */
|
2015-05-06 23:56:46 +00:00
|
|
|
if ((s = status_prompt_complete(sess, word)) == NULL)
|
2009-06-01 22:58:49 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Trim out word. */
|
|
|
|
n = size - (last - c->prompt_buffer) + 1; /* with \0 */
|
|
|
|
memmove(first, last, n);
|
|
|
|
size -= last - first;
|
|
|
|
|
|
|
|
/* Insert the new word. */
|
2009-12-03 22:50:09 +00:00
|
|
|
size += strlen(s);
|
2009-06-01 22:58:49 +00:00
|
|
|
off = first - c->prompt_buffer;
|
2014-10-08 17:35:58 +00:00
|
|
|
c->prompt_buffer = xrealloc(c->prompt_buffer, size + 1);
|
2009-06-01 22:58:49 +00:00
|
|
|
first = c->prompt_buffer + off;
|
2009-12-03 22:50:09 +00:00
|
|
|
memmove(first + strlen(s), first, n);
|
|
|
|
memcpy(first, s, strlen(s));
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
c->prompt_index = (first - c->prompt_buffer) + strlen(s);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(s);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_BACKSPACE:
|
2009-06-01 22:58:49 +00:00
|
|
|
if (c->prompt_index != 0) {
|
|
|
|
if (c->prompt_index == size)
|
|
|
|
c->prompt_buffer[--c->prompt_index] = '\0';
|
|
|
|
else {
|
|
|
|
memmove(c->prompt_buffer + c->prompt_index - 1,
|
|
|
|
c->prompt_buffer + c->prompt_index,
|
|
|
|
size + 1 - c->prompt_index);
|
|
|
|
c->prompt_index--;
|
|
|
|
}
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
break;
|
2009-12-03 22:50:09 +00:00
|
|
|
case MODEKEYEDIT_DELETE:
|
2013-07-05 14:44:06 +00:00
|
|
|
case MODEKEYEDIT_SWITCHMODESUBSTITUTE:
|
2009-06-01 22:58:49 +00:00
|
|
|
if (c->prompt_index != size) {
|
|
|
|
memmove(c->prompt_buffer + c->prompt_index,
|
|
|
|
c->prompt_buffer + c->prompt_index + 1,
|
|
|
|
size + 1 - c->prompt_index);
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
break;
|
2009-08-18 07:23:43 +00:00
|
|
|
case MODEKEYEDIT_DELETELINE:
|
2013-07-05 14:44:06 +00:00
|
|
|
case MODEKEYEDIT_SWITCHMODESUBSTITUTELINE:
|
2009-08-18 07:23:43 +00:00
|
|
|
*c->prompt_buffer = '\0';
|
|
|
|
c->prompt_index = 0;
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_DELETETOENDOFLINE:
|
2013-07-05 14:44:06 +00:00
|
|
|
case MODEKEYEDIT_SWITCHMODECHANGELINE:
|
2009-07-27 12:11:11 +00:00
|
|
|
if (c->prompt_index < size) {
|
|
|
|
c->prompt_buffer[c->prompt_index] = '\0';
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
break;
|
2011-11-15 23:34:12 +00:00
|
|
|
case MODEKEYEDIT_DELETEWORD:
|
|
|
|
wsep = options_get_string(oo, "word-separators");
|
|
|
|
idx = c->prompt_index;
|
|
|
|
|
|
|
|
/* Find a non-separator. */
|
|
|
|
while (idx != 0) {
|
|
|
|
idx--;
|
|
|
|
if (!strchr(wsep, c->prompt_buffer[idx]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the separator at the beginning of the word. */
|
|
|
|
while (idx != 0) {
|
|
|
|
idx--;
|
|
|
|
if (strchr(wsep, c->prompt_buffer[idx])) {
|
|
|
|
/* Go back to the word. */
|
|
|
|
idx++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memmove(c->prompt_buffer + idx,
|
|
|
|
c->prompt_buffer + c->prompt_index,
|
|
|
|
size + 1 - c->prompt_index);
|
|
|
|
memset(c->prompt_buffer + size - (c->prompt_index - idx),
|
|
|
|
'\0', c->prompt_index - idx);
|
|
|
|
c->prompt_index = idx;
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2012-01-20 19:10:29 +00:00
|
|
|
case MODEKEYEDIT_NEXTSPACE:
|
|
|
|
wsep = " ";
|
|
|
|
/* FALLTHROUGH */
|
2011-11-15 23:34:12 +00:00
|
|
|
case MODEKEYEDIT_NEXTWORD:
|
2012-01-20 19:10:29 +00:00
|
|
|
if (wsep == NULL)
|
|
|
|
wsep = options_get_string(oo, "word-separators");
|
2011-11-15 23:34:12 +00:00
|
|
|
|
|
|
|
/* Find a separator. */
|
|
|
|
while (c->prompt_index != size) {
|
|
|
|
c->prompt_index++;
|
|
|
|
if (strchr(wsep, c->prompt_buffer[c->prompt_index]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the word right after the separation. */
|
|
|
|
while (c->prompt_index != size) {
|
|
|
|
c->prompt_index++;
|
|
|
|
if (!strchr(wsep, c->prompt_buffer[c->prompt_index]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2012-01-20 19:10:29 +00:00
|
|
|
case MODEKEYEDIT_NEXTSPACEEND:
|
|
|
|
wsep = " ";
|
|
|
|
/* FALLTHROUGH */
|
2011-11-15 23:34:12 +00:00
|
|
|
case MODEKEYEDIT_NEXTWORDEND:
|
2012-01-20 19:10:29 +00:00
|
|
|
if (wsep == NULL)
|
|
|
|
wsep = options_get_string(oo, "word-separators");
|
2011-11-15 23:34:12 +00:00
|
|
|
|
|
|
|
/* Find a word. */
|
|
|
|
while (c->prompt_index != size) {
|
|
|
|
c->prompt_index++;
|
|
|
|
if (!strchr(wsep, c->prompt_buffer[c->prompt_index]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the separator at the end of the word. */
|
|
|
|
while (c->prompt_index != size) {
|
|
|
|
c->prompt_index++;
|
2011-12-01 20:42:31 +00:00
|
|
|
if (strchr(wsep, c->prompt_buffer[c->prompt_index]))
|
2011-11-15 23:34:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-07-05 14:44:06 +00:00
|
|
|
/* Back up to the end-of-word like vi. */
|
|
|
|
if (options_get_number(oo, "status-keys") == MODEKEY_VI &&
|
|
|
|
c->prompt_index != 0)
|
|
|
|
c->prompt_index--;
|
|
|
|
|
2011-11-15 23:34:12 +00:00
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2012-01-20 19:10:29 +00:00
|
|
|
case MODEKEYEDIT_PREVIOUSSPACE:
|
|
|
|
wsep = " ";
|
|
|
|
/* FALLTHROUGH */
|
2011-11-15 23:34:12 +00:00
|
|
|
case MODEKEYEDIT_PREVIOUSWORD:
|
2012-01-20 19:10:29 +00:00
|
|
|
if (wsep == NULL)
|
|
|
|
wsep = options_get_string(oo, "word-separators");
|
2011-11-15 23:34:12 +00:00
|
|
|
|
|
|
|
/* Find a non-separator. */
|
|
|
|
while (c->prompt_index != 0) {
|
|
|
|
c->prompt_index--;
|
|
|
|
if (!strchr(wsep, c->prompt_buffer[c->prompt_index]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the separator at the beginning of the word. */
|
|
|
|
while (c->prompt_index != 0) {
|
|
|
|
c->prompt_index--;
|
|
|
|
if (strchr(wsep, c->prompt_buffer[c->prompt_index])) {
|
|
|
|
/* Go back to the word. */
|
|
|
|
c->prompt_index++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_HISTORYUP:
|
2010-12-11 16:13:15 +00:00
|
|
|
histstr = status_prompt_up_history(&c->prompt_hindex);
|
|
|
|
if (histstr == NULL)
|
2009-06-01 22:58:49 +00:00
|
|
|
break;
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->prompt_buffer);
|
2010-12-11 16:13:15 +00:00
|
|
|
c->prompt_buffer = xstrdup(histstr);
|
2009-06-01 22:58:49 +00:00
|
|
|
c->prompt_index = strlen(c->prompt_buffer);
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_HISTORYDOWN:
|
2010-12-11 16:13:15 +00:00
|
|
|
histstr = status_prompt_down_history(&c->prompt_hindex);
|
|
|
|
if (histstr == NULL)
|
2010-12-11 16:05:57 +00:00
|
|
|
break;
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->prompt_buffer);
|
2010-12-11 16:13:15 +00:00
|
|
|
c->prompt_buffer = xstrdup(histstr);
|
2009-06-01 22:58:49 +00:00
|
|
|
c->prompt_index = strlen(c->prompt_buffer);
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_PASTE:
|
2015-08-29 09:25:00 +00:00
|
|
|
if ((pb = paste_get_top(NULL)) == NULL)
|
2009-06-01 22:58:49 +00:00
|
|
|
break;
|
2015-08-29 09:25:00 +00:00
|
|
|
bufdata = paste_buffer_data(pb, &bufsize);
|
|
|
|
for (n = 0; n < bufsize; n++) {
|
|
|
|
ch = (u_char)bufdata[n];
|
2009-11-26 22:28:24 +00:00
|
|
|
if (ch < 32 || ch == 127)
|
2009-09-07 18:50:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2014-10-08 17:35:58 +00:00
|
|
|
c->prompt_buffer = xrealloc(c->prompt_buffer, size + n + 1);
|
2009-06-01 22:58:49 +00:00
|
|
|
if (c->prompt_index == size) {
|
2015-08-29 09:25:00 +00:00
|
|
|
memcpy(c->prompt_buffer + c->prompt_index, bufdata, n);
|
2009-06-01 22:58:49 +00:00
|
|
|
c->prompt_index += n;
|
|
|
|
c->prompt_buffer[c->prompt_index] = '\0';
|
|
|
|
} else {
|
|
|
|
memmove(c->prompt_buffer + c->prompt_index + n,
|
|
|
|
c->prompt_buffer + c->prompt_index,
|
|
|
|
size + 1 - c->prompt_index);
|
2015-08-29 09:25:00 +00:00
|
|
|
memcpy(c->prompt_buffer + c->prompt_index, bufdata, n);
|
2009-06-01 22:58:49 +00:00
|
|
|
c->prompt_index += n;
|
|
|
|
}
|
|
|
|
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
2009-09-02 06:33:20 +00:00
|
|
|
case MODEKEYEDIT_TRANSPOSECHARS:
|
|
|
|
idx = c->prompt_index;
|
|
|
|
if (idx < size)
|
|
|
|
idx++;
|
|
|
|
if (idx >= 2) {
|
|
|
|
swapc = c->prompt_buffer[idx - 2];
|
|
|
|
c->prompt_buffer[idx - 2] = c->prompt_buffer[idx - 1];
|
|
|
|
c->prompt_buffer[idx - 1] = swapc;
|
|
|
|
c->prompt_index = idx;
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
break;
|
2009-12-03 22:50:09 +00:00
|
|
|
case MODEKEYEDIT_ENTER:
|
2009-08-13 23:44:18 +00:00
|
|
|
if (*c->prompt_buffer != '\0')
|
2010-12-11 16:05:57 +00:00
|
|
|
status_prompt_add_history(c->prompt_buffer);
|
2009-08-13 23:44:18 +00:00
|
|
|
if (c->prompt_callbackfn(c->prompt_data, c->prompt_buffer) == 0)
|
|
|
|
status_prompt_clear(c);
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEYEDIT_CANCEL:
|
2009-07-17 06:13:27 +00:00
|
|
|
if (c->prompt_callbackfn(c->prompt_data, NULL) == 0)
|
2009-06-01 22:58:49 +00:00
|
|
|
status_prompt_clear(c);
|
|
|
|
break;
|
2009-07-27 19:29:35 +00:00
|
|
|
case MODEKEY_OTHER:
|
2015-11-12 11:05:34 +00:00
|
|
|
if (key <= 0x1f || key >= 0x7f)
|
2009-06-01 22:58:49 +00:00
|
|
|
break;
|
2014-10-08 17:35:58 +00:00
|
|
|
c->prompt_buffer = xrealloc(c->prompt_buffer, size + 2);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
if (c->prompt_index == size) {
|
|
|
|
c->prompt_buffer[c->prompt_index++] = key;
|
|
|
|
c->prompt_buffer[c->prompt_index] = '\0';
|
|
|
|
} else {
|
|
|
|
memmove(c->prompt_buffer + c->prompt_index + 1,
|
|
|
|
c->prompt_buffer + c->prompt_index,
|
|
|
|
size + 1 - c->prompt_index);
|
|
|
|
c->prompt_buffer[c->prompt_index++] = key;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c->prompt_flags & PROMPT_SINGLE) {
|
2009-07-17 06:13:27 +00:00
|
|
|
if (c->prompt_callbackfn(
|
2009-06-01 22:58:49 +00:00
|
|
|
c->prompt_data, c->prompt_buffer) == 0)
|
|
|
|
status_prompt_clear(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-11 16:05:57 +00:00
|
|
|
/* Get previous line from the history. */
|
|
|
|
const char *
|
|
|
|
status_prompt_up_history(u_int *idx)
|
|
|
|
{
|
|
|
|
/*
|
2015-05-06 23:56:46 +00:00
|
|
|
* History runs from 0 to size - 1. Index is from 0 to size. Zero is
|
|
|
|
* empty.
|
2010-12-11 16:05:57 +00:00
|
|
|
*/
|
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
if (status_prompt_hsize == 0 || *idx == status_prompt_hsize)
|
2010-12-11 16:05:57 +00:00
|
|
|
return (NULL);
|
|
|
|
(*idx)++;
|
2015-05-06 23:56:46 +00:00
|
|
|
return (status_prompt_hlist[status_prompt_hsize - *idx]);
|
2010-12-11 16:05:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get next line from the history. */
|
|
|
|
const char *
|
|
|
|
status_prompt_down_history(u_int *idx)
|
|
|
|
{
|
2015-05-06 23:56:46 +00:00
|
|
|
if (status_prompt_hsize == 0 || *idx == 0)
|
2010-12-11 16:05:57 +00:00
|
|
|
return ("");
|
|
|
|
(*idx)--;
|
|
|
|
if (*idx == 0)
|
|
|
|
return ("");
|
2015-05-06 23:56:46 +00:00
|
|
|
return (status_prompt_hlist[status_prompt_hsize - *idx]);
|
2010-12-11 16:05:57 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
/* Add line to the history. */
|
|
|
|
void
|
2010-12-11 16:05:57 +00:00
|
|
|
status_prompt_add_history(const char *line)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2015-05-06 23:56:46 +00:00
|
|
|
size_t size;
|
2010-12-11 16:05:57 +00:00
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
if (status_prompt_hsize > 0 &&
|
|
|
|
strcmp(status_prompt_hlist[status_prompt_hsize - 1], line) == 0)
|
2009-06-01 22:58:49 +00:00
|
|
|
return;
|
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
if (status_prompt_hsize == PROMPT_HISTORY) {
|
|
|
|
free(status_prompt_hlist[0]);
|
|
|
|
|
|
|
|
size = (PROMPT_HISTORY - 1) * sizeof *status_prompt_hlist;
|
|
|
|
memmove(&status_prompt_hlist[0], &status_prompt_hlist[1], size);
|
|
|
|
|
|
|
|
status_prompt_hlist[status_prompt_hsize - 1] = xstrdup(line);
|
|
|
|
return;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
status_prompt_hlist = xreallocarray(status_prompt_hlist,
|
|
|
|
status_prompt_hsize + 1, sizeof *status_prompt_hlist);
|
|
|
|
status_prompt_hlist[status_prompt_hsize++] = xstrdup(line);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
/* Build completion list. */
|
|
|
|
const char **
|
|
|
|
status_prompt_complete_list(u_int *size, const char *s)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2015-05-06 23:56:46 +00:00
|
|
|
const char **list = NULL, **layout;
|
|
|
|
const struct cmd_entry **cmdent;
|
|
|
|
const struct options_table_entry *oe;
|
|
|
|
const char *layouts[] = {
|
|
|
|
"even-horizontal", "even-vertical", "main-horizontal",
|
|
|
|
"main-vertical", "tiled", NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
*size = 0;
|
2009-06-01 22:58:49 +00:00
|
|
|
for (cmdent = cmd_table; *cmdent != NULL; cmdent++) {
|
2015-05-06 23:56:46 +00:00
|
|
|
if (strncmp((*cmdent)->name, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, (*size) + 1, sizeof *list);
|
|
|
|
list[(*size)++] = (*cmdent)->name;
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2011-01-01 16:51:21 +00:00
|
|
|
for (oe = server_options_table; oe->name != NULL; oe++) {
|
2015-05-06 23:56:46 +00:00
|
|
|
if (strncmp(oe->name, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, (*size) + 1, sizeof *list);
|
|
|
|
list[(*size)++] = oe->name;
|
|
|
|
}
|
2009-12-14 10:47:11 +00:00
|
|
|
}
|
2011-01-01 16:51:21 +00:00
|
|
|
for (oe = session_options_table; oe->name != NULL; oe++) {
|
2015-05-06 23:56:46 +00:00
|
|
|
if (strncmp(oe->name, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, (*size) + 1, sizeof *list);
|
|
|
|
list[(*size)++] = oe->name;
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2011-01-01 16:51:21 +00:00
|
|
|
for (oe = window_options_table; oe->name != NULL; oe++) {
|
2015-05-06 23:56:46 +00:00
|
|
|
if (strncmp(oe->name, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, (*size) + 1, sizeof *list);
|
|
|
|
list[(*size)++] = oe->name;
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2015-05-06 23:56:46 +00:00
|
|
|
for (layout = layouts; *layout != NULL; layout++) {
|
|
|
|
if (strncmp(*layout, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, (*size) + 1, sizeof *list);
|
|
|
|
list[(*size)++] = *layout;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (list);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
/* Find longest prefix. */
|
|
|
|
char *
|
|
|
|
status_prompt_complete_prefix(const char **list, u_int size)
|
|
|
|
{
|
|
|
|
char *out;
|
|
|
|
u_int i;
|
|
|
|
size_t j;
|
|
|
|
|
|
|
|
out = xstrdup(list[0]);
|
|
|
|
for (i = 1; i < size; i++) {
|
|
|
|
j = strlen(list[i]);
|
|
|
|
if (j > strlen(out))
|
|
|
|
j = strlen(out);
|
|
|
|
for (; j > 0; j--) {
|
|
|
|
if (out[j - 1] != list[i][j - 1])
|
|
|
|
out[j - 1] = '\0';
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2015-05-06 23:56:46 +00:00
|
|
|
return (out);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
/* Complete word. */
|
|
|
|
char *
|
|
|
|
status_prompt_complete(struct session *sess, const char *s)
|
|
|
|
{
|
|
|
|
const char **list = NULL, *colon;
|
|
|
|
u_int size = 0, i;
|
|
|
|
struct session *s_loop;
|
|
|
|
struct winlink *wl;
|
|
|
|
struct window *w;
|
|
|
|
char *copy, *out, *tmp;
|
|
|
|
|
|
|
|
if (*s == '\0')
|
|
|
|
return (NULL);
|
|
|
|
out = NULL;
|
|
|
|
|
|
|
|
if (strncmp(s, "-t", 2) != 0 && strncmp(s, "-s", 2) != 0) {
|
|
|
|
list = status_prompt_complete_list(&size, s);
|
|
|
|
if (size == 0)
|
|
|
|
out = NULL;
|
|
|
|
else if (size == 1)
|
|
|
|
xasprintf(&out, "%s ", list[0]);
|
|
|
|
else
|
|
|
|
out = status_prompt_complete_prefix(list, size);
|
|
|
|
free(list);
|
|
|
|
return (out);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2015-05-06 23:56:46 +00:00
|
|
|
copy = xstrdup(s);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
colon = ":";
|
|
|
|
if (copy[strlen(copy) - 1] == ':')
|
|
|
|
copy[strlen(copy) - 1] = '\0';
|
|
|
|
else
|
|
|
|
colon = "";
|
|
|
|
s = copy + 2;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
RB_FOREACH(s_loop, sessions, &sessions) {
|
|
|
|
if (strncmp(s_loop->name, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, size + 2, sizeof *list);
|
|
|
|
list[size++] = s_loop->name;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-06 23:56:46 +00:00
|
|
|
if (size == 1) {
|
|
|
|
out = xstrdup(list[0]);
|
|
|
|
if (session_find(list[0]) != NULL)
|
|
|
|
colon = ":";
|
|
|
|
} else if (size != 0)
|
|
|
|
out = status_prompt_complete_prefix(list, size);
|
|
|
|
if (out != NULL) {
|
|
|
|
xasprintf(&tmp, "-%c%s%s", copy[1], out, colon);
|
|
|
|
out = tmp;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
|
|
|
|
colon = "";
|
|
|
|
if (*s == ':') {
|
|
|
|
RB_FOREACH(wl, winlinks, &sess->windows) {
|
|
|
|
xasprintf(&tmp, ":%s", wl->window->name);
|
|
|
|
if (strncmp(tmp, s, strlen(s)) == 0){
|
|
|
|
list = xreallocarray(list, size + 1,
|
|
|
|
sizeof *list);
|
|
|
|
list[size++] = tmp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(tmp);
|
|
|
|
|
|
|
|
xasprintf(&tmp, ":%d", wl->idx);
|
|
|
|
if (strncmp(tmp, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, size + 1,
|
|
|
|
sizeof *list);
|
|
|
|
list[size++] = tmp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(tmp);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
RB_FOREACH(s_loop, sessions, &sessions) {
|
|
|
|
RB_FOREACH(wl, winlinks, &s_loop->windows) {
|
|
|
|
w = wl->window;
|
|
|
|
|
|
|
|
xasprintf(&tmp, "%s:%s", s_loop->name, w->name);
|
|
|
|
if (strncmp(tmp, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, size + 1,
|
|
|
|
sizeof *list);
|
|
|
|
list[size++] = tmp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(tmp);
|
|
|
|
|
|
|
|
xasprintf(&tmp, "%s:%d", s_loop->name, wl->idx);
|
|
|
|
if (strncmp(tmp, s, strlen(s)) == 0) {
|
|
|
|
list = xreallocarray(list, size + 1,
|
|
|
|
sizeof *list);
|
|
|
|
list[size++] = tmp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (size == 1) {
|
|
|
|
out = xstrdup(list[0]);
|
|
|
|
colon = " ";
|
|
|
|
} else if (size != 0)
|
|
|
|
out = status_prompt_complete_prefix(list, size);
|
|
|
|
if (out != NULL) {
|
|
|
|
xasprintf(&tmp, "-%c%s%s", copy[1], out, colon);
|
|
|
|
out = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++)
|
|
|
|
free((void *)list[i]);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-05-06 23:56:46 +00:00
|
|
|
found:
|
|
|
|
free(copy);
|
|
|
|
free(list);
|
|
|
|
return (out);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|