4 * Copyright (c) 2009 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>
26 int server_window_backoff(struct window_pane
*);
27 int server_window_check_bell(struct session
*, struct winlink
*);
28 int server_window_check_activity(struct session
*, struct winlink
*);
29 int server_window_check_silence(struct session
*, struct winlink
*);
30 int server_window_check_content(
31 struct session
*, struct winlink
*, struct window_pane
*);
33 /* Window functions that need to happen every loop. */
35 server_window_loop(void)
39 struct window_pane
*wp
;
43 for (i
= 0; i
< ARRAY_LENGTH(&windows
); i
++) {
44 w
= ARRAY_ITEM(&windows
, i
);
48 for (j
= 0; j
< ARRAY_LENGTH(&sessions
); j
++) {
49 s
= ARRAY_ITEM(&sessions
, j
);
52 wl
= session_has(s
, w
);
56 if (server_window_check_bell(s
, wl
) ||
57 server_window_check_activity(s
, wl
) ||
58 server_window_check_silence(s
, wl
))
59 server_status_session(s
);
60 TAILQ_FOREACH(wp
, &w
->panes
, entry
)
61 server_window_check_content(s
, wl
, wp
);
63 w
->flags
&= ~(WINDOW_BELL
|WINDOW_ACTIVITY
);
67 /* Check for bell in window. */
69 server_window_check_bell(struct session
*s
, struct winlink
*wl
)
72 struct window
*w
= wl
->window
;
76 if (!(w
->flags
& WINDOW_BELL
) || wl
->flags
& WINLINK_BELL
)
79 wl
->flags
|= WINLINK_BELL
;
81 action
= options_get_number(&s
->options
, "bell-action");
84 if (s
->flags
& SESSION_UNATTACHED
)
86 visual
= options_get_number(&s
->options
, "visual-bell");
87 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
88 c
= ARRAY_ITEM(&clients
, i
);
89 if (c
== NULL
|| c
->session
!= s
)
92 tty_putcode(&c
->tty
, TTYC_BEL
);
95 if (c
->session
->curw
->window
== w
) {
96 status_message_set(c
, "Bell in current window");
99 status_message_set(c
, "Bell in window %u",
100 winlink_find_by_window(&s
->windows
, w
)->idx
);
104 if (s
->flags
& SESSION_UNATTACHED
)
106 visual
= options_get_number(&s
->options
, "visual-bell");
107 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
108 c
= ARRAY_ITEM(&clients
, i
);
109 if (c
== NULL
|| c
->session
!= s
)
111 if (c
->session
->curw
->window
!= w
)
114 tty_putcode(&c
->tty
, TTYC_BEL
);
117 status_message_set(c
, "Bell in current window");
125 /* Check for activity in window. */
127 server_window_check_activity(struct session
*s
, struct winlink
*wl
)
130 struct window
*w
= wl
->window
;
133 if (!(w
->flags
& WINDOW_ACTIVITY
) || wl
->flags
& WINLINK_ACTIVITY
)
138 if (!options_get_number(&w
->options
, "monitor-activity"))
141 wl
->flags
|= WINLINK_ACTIVITY
;
143 if (options_get_number(&s
->options
, "visual-activity")) {
144 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
145 c
= ARRAY_ITEM(&clients
, i
);
146 if (c
== NULL
|| c
->session
!= s
)
148 status_message_set(c
, "Activity in window %u",
149 winlink_find_by_window(&s
->windows
, w
)->idx
);
156 /* Check for silence in window. */
158 server_window_check_silence(struct session
*s
, struct winlink
*wl
)
161 struct window
*w
= wl
->window
;
162 struct timeval timer
;
164 int silence_interval
, timer_difference
;
166 if (!(w
->flags
& WINDOW_SILENCE
) || wl
->flags
& WINLINK_SILENCE
)
171 * Reset the timer for this window if we've focused it. We
172 * don't want the timer tripping as soon as we've switched away
175 if (gettimeofday(&w
->silence_timer
, NULL
) != 0)
176 fatal("gettimeofday failed.");
181 silence_interval
= options_get_number(&w
->options
, "monitor-silence");
182 if (silence_interval
== 0)
185 if (gettimeofday(&timer
, NULL
) != 0)
186 fatal("gettimeofday");
187 timer_difference
= timer
.tv_sec
- w
->silence_timer
.tv_sec
;
188 if (timer_difference
<= silence_interval
)
190 wl
->flags
|= WINLINK_SILENCE
;
192 if (options_get_number(&s
->options
, "visual-silence")) {
193 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
194 c
= ARRAY_ITEM(&clients
, i
);
195 if (c
== NULL
|| c
->session
!= s
)
197 status_message_set(c
, "Silence in window %u",
198 winlink_find_by_window(&s
->windows
, w
)->idx
);
205 /* Check for content change in window. */
207 server_window_check_content(
208 struct session
*s
, struct winlink
*wl
, struct window_pane
*wp
)
211 struct window
*w
= wl
->window
;
215 /* Activity flag must be set for new content. */
216 if (!(w
->flags
& WINDOW_ACTIVITY
) || wl
->flags
& WINLINK_CONTENT
)
221 ptr
= options_get_string(&w
->options
, "monitor-content");
222 if (ptr
== NULL
|| *ptr
== '\0')
224 if ((found
= window_pane_search(wp
, ptr
, NULL
)) == NULL
)
228 wl
->flags
|= WINLINK_CONTENT
;
230 if (options_get_number(&s
->options
, "visual-content")) {
231 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
232 c
= ARRAY_ITEM(&clients
, i
);
233 if (c
== NULL
|| c
->session
!= s
)
235 status_message_set(c
, "Content in window %u",
236 winlink_find_by_window(&s
->windows
, w
)->idx
);