tmux/server-fn.c

217 lines
4.8 KiB
C
Raw Normal View History

2008-06-03 21:42:37 +00:00
/* $Id: server-fn.c,v 1.38 2008-06-03 21:42:37 nicm Exp $ */
2007-09-26 10:35:24 +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>
#include <string.h>
#include <unistd.h>
2007-09-26 10:35:24 +00:00
#include "tmux.h"
void
2007-09-29 09:53:25 +00:00
server_write_client(
struct client *c, enum hdrtype type, const void *buf, size_t len)
2007-09-26 10:35:24 +00:00
{
struct hdr hdr;
log_debug("writing %d to client %d", type, c->fd);
hdr.type = type;
2007-09-26 10:35:24 +00:00
hdr.size = len;
buffer_write(c->out, &hdr, sizeof hdr);
if (buf != NULL)
buffer_write(c->out, buf, len);
}
void
server_write_session(
struct session *s, enum hdrtype type, const void *buf, size_t len)
2007-09-26 10:35:24 +00:00
{
struct client *c;
u_int i;
2007-09-26 10:35:24 +00:00
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
c = ARRAY_ITEM(&clients, i);
if (c != NULL && c->session == s)
server_write_client(c, type, buf, len);
}
2007-09-26 10:35:24 +00:00
}
void
server_write_window(
2007-09-29 09:53:25 +00:00
struct window *w, enum hdrtype type, const void *buf, size_t len)
2007-09-26 10:35:24 +00:00
{
struct client *c;
u_int i;
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
c = ARRAY_ITEM(&clients, i);
2007-11-21 20:04:37 +00:00
if (c == NULL || c->session == NULL)
continue;
if (c->session->curw->window == w)
server_write_client(c, type, buf, len);
2007-09-26 10:35:24 +00:00
}
}
2007-10-19 10:21:36 +00:00
void
server_clear_client(struct client *c)
2007-10-19 10:21:36 +00:00
{
struct screen_redraw_ctx ctx;
2007-10-19 10:21:36 +00:00
screen_redraw_start_client(&ctx, c);
screen_redraw_set_attributes(&ctx, SCREEN_DEFATTR, SCREEN_DEFCOLR);
screen_redraw_clear_screen(&ctx);
screen_redraw_stop(&ctx);
status_write_client(c);
2007-10-19 10:21:36 +00:00
}
2007-09-26 10:35:24 +00:00
void
server_redraw_client(struct client *c)
{
struct screen_redraw_ctx ctx;
screen_redraw_start_client(&ctx, c);
screen_redraw_lines(&ctx, 0, screen_size_y(ctx.s));
screen_redraw_stop(&ctx);
status_write_client(c);
}
void
server_status_client(struct client *c)
2007-09-26 10:35:24 +00:00
{
status_write_client(c);
2007-10-04 19:03:52 +00:00
}
void
server_clear_session(struct session *s)
2007-10-04 19:03:52 +00:00
{
struct screen_redraw_ctx ctx;
2007-09-26 10:35:24 +00:00
screen_redraw_start_session(&ctx, s);
screen_redraw_set_attributes(&ctx, SCREEN_DEFATTR, SCREEN_DEFCOLR);
screen_redraw_clear_screen(&ctx);
screen_redraw_stop(&ctx);
2007-10-01 14:53:29 +00:00
status_write_session(s);
2007-10-01 14:53:29 +00:00
}
void
server_redraw_session(struct session *s)
2007-10-01 14:53:29 +00:00
{
struct screen_redraw_ctx ctx;
2007-10-01 14:53:29 +00:00
screen_redraw_start_session(&ctx, s);
screen_redraw_lines(&ctx, 0, screen_size_y(ctx.s));
screen_redraw_stop(&ctx);
status_write_session(s);
2007-09-26 10:35:24 +00:00
}
void
server_status_session(struct session *s)
{
status_write_session(s);
}
2007-10-04 19:03:52 +00:00
void
server_clear_window(struct window *w)
2007-10-04 19:03:52 +00:00
{
struct screen_redraw_ctx ctx;
2007-10-04 19:03:52 +00:00
screen_redraw_start_window(&ctx, w);
screen_redraw_set_attributes(&ctx, SCREEN_DEFATTR, SCREEN_DEFCOLR);
screen_redraw_clear_screen(&ctx);
screen_redraw_stop(&ctx);
2007-10-19 10:21:36 +00:00
status_write_window(w);
2007-10-19 10:21:36 +00:00
}
void
server_redraw_window(struct window *w)
{
struct screen_redraw_ctx ctx;
2007-09-26 10:35:24 +00:00
screen_redraw_start_window(&ctx, w);
screen_redraw_lines(&ctx, 0, screen_size_y(ctx.s));
screen_redraw_stop(&ctx);
2007-10-19 10:21:36 +00:00
status_write_window(w);
2007-10-19 10:21:36 +00:00
}
void
server_status_window(struct window *w)
2007-10-19 10:21:36 +00:00
{
struct session *s;
2007-10-19 10:21:36 +00:00
u_int i;
/*
* This is slightly different. We want to redraw the status line of any
* clients containing this window rather than any where it is the
* current window.
*/
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
s = ARRAY_ITEM(&sessions, i);
if (s != NULL && session_has(s, w))
server_status_session(s);
}
}
void printflike2
server_write_message(struct client *c, const char *fmt, ...)
2007-09-26 10:35:24 +00:00
{
struct screen_redraw_ctx ctx;
va_list ap;
char *msg;
size_t size;
2008-06-03 21:42:37 +00:00
u_int slines;
slines = options_get_number(&c->session->options, "status-lines");
2007-09-26 10:35:24 +00:00
screen_redraw_start_client(&ctx, c);
screen_redraw_move_cursor(&ctx, 0, c->sy - 1);
screen_redraw_set_attributes(&ctx, ATTR_REVERSE, 0x88);
2007-09-26 10:35:24 +00:00
va_start(ap, fmt);
xvasprintf(&msg, fmt, ap);
va_end(ap);
size = strlen(msg);
if (size < c->sx - 1) {
msg = xrealloc(msg, 1, c->sx);
2007-10-03 12:34:16 +00:00
msg[c->sx - 1] = '\0';
memset(msg + size, SCREEN_DEFDATA, (c->sx - 1) - size);
}
screen_redraw_write_string(&ctx, "%s", msg);
2007-09-26 10:35:24 +00:00
xfree(msg);
buffer_flush(c->tty.fd, c->tty.in, c->tty.out);
usleep(750000);
2007-09-26 10:35:24 +00:00
2008-06-03 21:42:37 +00:00
if (slines == 0) {
screen_redraw_lines(&ctx, c->sy - 1, 1);
screen_redraw_stop(&ctx);
} else {
screen_redraw_stop(&ctx);
status_write_client(c);
}
2007-09-26 10:35:24 +00:00
}