summaryrefslogtreecommitdiffstats
path: root/tty-write.c
blob: a58f1b2e39ce43d4987b1c727d5b6a1ebdbf35ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* $Id: tty-write.c,v 1.2 2007-12-06 09:46:23 nicm Exp $ */

/*
 * 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 "tmux.h"

void
tty_write_client(void *ptr, int cmd, ...)
{
	struct client	*c = ptr;
	va_list		 ap;

	va_start(ap, cmd);
	tty_vwrite_client(c, cmd, ap);
	va_end(ap);
}

void
tty_vwrite_client(void *ptr, int cmd, va_list ap)
{
	struct client	*c = ptr;
	struct screen	*s = c->session->curw->window->screen;

	tty_vwrite(&c->tty, s, cmd, ap);
}

void
tty_write_window(void *ptr, int cmd, ...)
{
	va_list	ap;

	va_start(ap, cmd);
	tty_vwrite_window(ptr, cmd, ap);
	va_end(ap);
}

void
tty_vwrite_window(void *ptr, int cmd, va_list ap)
{
	struct window	*w = ptr;
	struct client	*c;
	va_list		 aq;
	u_int		 i;

	if (w->flags & WINDOW_HIDDEN)
		return;

	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;

		va_copy(aq, ap);
		tty_vwrite_client(c, cmd, aq);
		va_end(aq);
	}
}

void
tty_write_session(void *ptr, int cmd, ...)
{
	va_list	ap;

	va_start(ap, cmd);
	tty_vwrite_session(ptr, cmd, ap);
	va_end(ap);
}

void
tty_vwrite_session(void *ptr, int cmd, va_list ap)
{
	struct session	*s = ptr;
	struct client	*c;
	va_list		 aq;
	u_int		 i;

	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;

		va_copy(aq, ap);
		tty_vwrite_client(c, cmd, aq);
		va_end(aq);
	}
}