2008-06-04 16:46:23 +00:00
|
|
|
/* $Id: status.c,v 1.21 2008-06-04 16:46:23 nicm Exp $ */
|
2007-10-01 14:53:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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>
|
2008-06-04 05:40:35 +00:00
|
|
|
#include <sys/time.h>
|
2007-10-01 14:53:29 +00:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
2008-06-04 05:40:35 +00:00
|
|
|
#include <string.h>
|
2007-10-01 14:53:29 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2007-11-20 18:11:37 +00:00
|
|
|
void printflike3 status_print(struct buffer *, size_t *, const char *, ...);
|
2007-10-01 14:53:29 +00:00
|
|
|
|
|
|
|
void
|
2007-11-27 19:23:34 +00:00
|
|
|
status_write_client(struct client *c)
|
2007-10-01 14:53:29 +00:00
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen_redraw_ctx ctx;
|
|
|
|
struct winlink *wl;
|
2008-06-04 05:40:35 +00:00
|
|
|
char flag, *left, *right;
|
|
|
|
char lbuf[BUFSIZ], rbuf[BUFSIZ];
|
|
|
|
size_t llen, rlen;
|
2008-06-03 21:42:37 +00:00
|
|
|
u_char scolour;
|
|
|
|
u_int slines;
|
2007-10-01 14:53:29 +00:00
|
|
|
|
2008-06-03 21:42:37 +00:00
|
|
|
scolour = options_get_number(&c->session->options, "status-colour");
|
|
|
|
slines = options_get_number(&c->session->options, "status-lines");
|
|
|
|
if (slines == 0 || c->sy <= slines)
|
2007-11-27 19:23:34 +00:00
|
|
|
return;
|
|
|
|
|
2008-06-04 05:40:35 +00:00
|
|
|
if (clock_gettime(CLOCK_REALTIME, &c->status_ts) != 0)
|
|
|
|
fatal("clock_gettime");
|
|
|
|
|
|
|
|
left = options_get_string(&c->session->options, "status-left");
|
|
|
|
strftime(lbuf, sizeof lbuf, left, localtime(&(c->status_ts.tv_sec)));
|
|
|
|
llen = strlen(lbuf) + 1;
|
|
|
|
right = options_get_string(&c->session->options, "status-right");
|
|
|
|
strftime(rbuf, sizeof rbuf, right, localtime(&(c->status_ts.tv_sec)));
|
|
|
|
rlen = strlen(rbuf) + 1;
|
|
|
|
|
|
|
|
c->status_ts.tv_sec +=
|
|
|
|
options_get_number(&c->session->options, "status-interval");
|
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_redraw_start_client(&ctx, c);
|
2008-06-04 05:40:35 +00:00
|
|
|
screen_redraw_move_cursor(&ctx, llen, c->sy - slines);
|
2008-06-03 21:42:37 +00:00
|
|
|
screen_redraw_set_attributes(&ctx, 0, scolour);
|
2007-10-01 14:53:29 +00:00
|
|
|
|
2007-10-26 12:29:07 +00:00
|
|
|
RB_FOREACH(wl, winlinks, &c->session->windows) {
|
2007-10-12 12:37:48 +00:00
|
|
|
flag = ' ';
|
2007-10-26 12:29:07 +00:00
|
|
|
if (wl == c->session->lastw)
|
2007-10-12 12:37:48 +00:00
|
|
|
flag = '-';
|
2007-10-26 12:29:07 +00:00
|
|
|
if (wl == c->session->curw)
|
2007-10-12 12:37:48 +00:00
|
|
|
flag = '*';
|
2008-06-04 16:46:23 +00:00
|
|
|
if (session_alert_has(c->session, wl, WINDOW_ACTIVITY)) {
|
|
|
|
flag = '#';
|
|
|
|
screen_redraw_set_attributes(
|
|
|
|
&ctx, ATTR_REVERSE, scolour);
|
|
|
|
}
|
|
|
|
if (session_alert_has(c->session, wl, WINDOW_BELL)) {
|
2007-10-12 12:37:48 +00:00
|
|
|
flag = '!';
|
2008-06-04 16:46:23 +00:00
|
|
|
screen_redraw_set_attributes(
|
|
|
|
&ctx, ATTR_REVERSE, scolour);
|
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_redraw_write_string(
|
2008-06-04 16:46:23 +00:00
|
|
|
&ctx, "%d:%s%c", wl->idx, wl->window->name, flag);
|
|
|
|
if (flag == '!' || flag == '#')
|
|
|
|
screen_redraw_set_attributes(&ctx, 0, scolour);
|
|
|
|
screen_redraw_write_string(&ctx, " ");
|
|
|
|
|
2008-06-04 05:40:35 +00:00
|
|
|
if (ctx.s->cx > screen_size_x(ctx.s) - rlen)
|
2007-10-01 14:53:29 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-06-04 05:40:35 +00:00
|
|
|
while (ctx.s->cx < screen_size_x(ctx.s) - rlen) {
|
2008-01-03 21:32:11 +00:00
|
|
|
ctx.write(ctx.data, TTY_CHARACTER, ' ');
|
|
|
|
ctx.s->cx++;
|
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
|
2008-06-04 05:40:35 +00:00
|
|
|
screen_redraw_move_cursor(&ctx, 0, c->sy - slines);
|
|
|
|
screen_redraw_write_string(&ctx, "%s ", lbuf);
|
|
|
|
|
|
|
|
screen_redraw_move_cursor(
|
|
|
|
&ctx, screen_size_x(ctx.s) - rlen, c->sy - slines);
|
|
|
|
screen_redraw_write_string(&ctx, " %s", rbuf);
|
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_redraw_stop(&ctx);
|
2007-10-01 14:53:29 +00:00
|
|
|
}
|
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
void
|
|
|
|
status_write_window(struct window *w)
|
2007-10-01 14:53:29 +00:00
|
|
|
{
|
2007-11-27 19:23:34 +00:00
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
if (w->flags & WINDOW_HIDDEN)
|
2007-11-27 19:23:34 +00:00
|
|
|
return;
|
2007-10-01 14:53:29 +00:00
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session == NULL)
|
|
|
|
continue;
|
|
|
|
if (c->session->curw->window != w)
|
|
|
|
continue;
|
2007-10-01 14:53:29 +00:00
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
status_write_client(c);
|
2007-10-01 14:53:29 +00:00
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
}
|
2007-10-01 14:53:29 +00:00
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
void
|
|
|
|
status_write_session(struct session *s)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
2007-10-01 14:53:29 +00:00
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
if (s->flags & SESSION_UNATTACHED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session != s)
|
|
|
|
continue;
|
|
|
|
status_write_client(c);
|
|
|
|
}
|
2007-10-01 14:53:29 +00:00
|
|
|
}
|