2012-03-17 22:35:09 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 George Nachman <tmux@georgester.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-07-13 06:27:41 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-03-17 22:35:09 +00:00
|
|
|
#include "tmux.h"
|
|
|
|
|
2012-07-13 06:27:41 +00:00
|
|
|
enum notify_type {
|
|
|
|
NOTIFY_WINDOW_LAYOUT_CHANGED,
|
|
|
|
NOTIFY_WINDOW_UNLINKED,
|
|
|
|
NOTIFY_WINDOW_LINKED,
|
|
|
|
NOTIFY_WINDOW_RENAMED,
|
|
|
|
NOTIFY_ATTACHED_SESSION_CHANGED,
|
|
|
|
NOTIFY_SESSION_RENAMED,
|
|
|
|
NOTIFY_SESSION_CREATED,
|
|
|
|
NOTIFY_SESSION_CLOSED
|
|
|
|
};
|
|
|
|
|
|
|
|
struct notify_entry {
|
|
|
|
enum notify_type type;
|
|
|
|
|
|
|
|
struct client *client;
|
|
|
|
struct session *session;
|
|
|
|
struct window *window;
|
|
|
|
|
|
|
|
TAILQ_ENTRY(notify_entry) entry;
|
|
|
|
};
|
|
|
|
TAILQ_HEAD(, notify_entry) notify_queue = TAILQ_HEAD_INITIALIZER(notify_queue);
|
|
|
|
int notify_enabled = 1;
|
|
|
|
|
|
|
|
void notify_drain(void);
|
|
|
|
void notify_add(enum notify_type, struct client *, struct session *,
|
|
|
|
struct window *);
|
|
|
|
|
|
|
|
void
|
|
|
|
notify_enable(void)
|
|
|
|
{
|
|
|
|
notify_enabled = 1;
|
|
|
|
notify_drain();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
notify_disable(void)
|
|
|
|
{
|
|
|
|
notify_enabled = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
notify_add(enum notify_type type, struct client *c, struct session *s,
|
|
|
|
struct window *w)
|
|
|
|
{
|
|
|
|
struct notify_entry *ne;
|
|
|
|
|
|
|
|
ne = xcalloc(1, sizeof *ne);
|
|
|
|
ne->type = type;
|
|
|
|
ne->client = c;
|
|
|
|
ne->session = s;
|
|
|
|
ne->window = w;
|
|
|
|
TAILQ_INSERT_TAIL(¬ify_queue, ne, entry);
|
|
|
|
|
|
|
|
if (c != NULL)
|
|
|
|
c->references++;
|
|
|
|
if (s != NULL)
|
|
|
|
s->references++;
|
|
|
|
if (w != NULL)
|
|
|
|
w->references++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
notify_drain(void)
|
|
|
|
{
|
|
|
|
struct notify_entry *ne, *ne1;
|
|
|
|
|
|
|
|
if (!notify_enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(ne, ¬ify_queue, entry, ne1) {
|
|
|
|
switch (ne->type) {
|
|
|
|
case NOTIFY_WINDOW_LAYOUT_CHANGED:
|
2012-09-03 09:32:38 +00:00
|
|
|
control_notify_window_layout_changed(ne->window);
|
2012-07-13 06:27:41 +00:00
|
|
|
break;
|
|
|
|
case NOTIFY_WINDOW_UNLINKED:
|
2012-09-03 09:32:38 +00:00
|
|
|
control_notify_window_unlinked(ne->session, ne->window);
|
2012-07-13 06:27:41 +00:00
|
|
|
break;
|
|
|
|
case NOTIFY_WINDOW_LINKED:
|
2012-09-03 09:32:38 +00:00
|
|
|
control_notify_window_linked(ne->session, ne->window);
|
2012-07-13 06:27:41 +00:00
|
|
|
break;
|
|
|
|
case NOTIFY_WINDOW_RENAMED:
|
2012-09-03 09:32:38 +00:00
|
|
|
control_notify_window_renamed(ne->window);
|
2012-07-13 06:27:41 +00:00
|
|
|
break;
|
|
|
|
case NOTIFY_ATTACHED_SESSION_CHANGED:
|
2012-09-03 09:32:38 +00:00
|
|
|
control_notify_attached_session_changed(ne->client);
|
2012-07-13 06:27:41 +00:00
|
|
|
break;
|
|
|
|
case NOTIFY_SESSION_RENAMED:
|
2012-09-03 09:32:38 +00:00
|
|
|
control_notify_session_renamed(ne->session);
|
2012-07-13 06:27:41 +00:00
|
|
|
break;
|
|
|
|
case NOTIFY_SESSION_CREATED:
|
2012-09-03 09:32:38 +00:00
|
|
|
control_notify_session_created(ne->session);
|
2012-07-13 06:27:41 +00:00
|
|
|
break;
|
|
|
|
case NOTIFY_SESSION_CLOSED:
|
2012-09-03 09:32:38 +00:00
|
|
|
control_notify_session_close(ne->session);
|
2012-07-13 06:27:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ne->client != NULL)
|
|
|
|
ne->client->references--;
|
|
|
|
if (ne->session != NULL)
|
|
|
|
ne->session->references--;
|
|
|
|
if (ne->window != NULL)
|
2012-08-21 10:00:33 +00:00
|
|
|
window_remove_ref(ne->window);
|
|
|
|
|
2012-07-13 06:27:41 +00:00
|
|
|
TAILQ_REMOVE(¬ify_queue, ne, entry);
|
|
|
|
free(ne);
|
2012-09-25 07:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
notify_input(struct window_pane *wp, struct evbuffer *input)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* notify_input() is not queued and only does anything when
|
|
|
|
* notifications are enabled.
|
|
|
|
*/
|
|
|
|
if (!notify_enabled)
|
|
|
|
return;
|
|
|
|
|
2015-04-24 23:17:11 +00:00
|
|
|
TAILQ_FOREACH(c, &clients, entry) {
|
|
|
|
if (c->flags & CLIENT_CONTROL)
|
2012-09-25 07:41:22 +00:00
|
|
|
control_notify_input(c, wp, input);
|
2012-07-13 06:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-17 22:35:09 +00:00
|
|
|
void
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_window_layout_changed(struct window *w)
|
2012-03-17 22:35:09 +00:00
|
|
|
{
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_add(NOTIFY_WINDOW_LAYOUT_CHANGED, NULL, NULL, w);
|
|
|
|
notify_drain();
|
2012-03-17 22:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_window_unlinked(struct session *s, struct window *w)
|
2012-03-17 22:35:09 +00:00
|
|
|
{
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_add(NOTIFY_WINDOW_UNLINKED, NULL, s, w);
|
|
|
|
notify_drain();
|
2012-03-17 22:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_window_linked(struct session *s, struct window *w)
|
2012-03-17 22:35:09 +00:00
|
|
|
{
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_add(NOTIFY_WINDOW_LINKED, NULL, s, w);
|
|
|
|
notify_drain();
|
2012-03-17 22:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_window_renamed(struct window *w)
|
2012-03-17 22:35:09 +00:00
|
|
|
{
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_add(NOTIFY_WINDOW_RENAMED, NULL, NULL, w);
|
|
|
|
notify_drain();
|
2012-03-17 22:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_attached_session_changed(struct client *c)
|
2012-03-17 22:35:09 +00:00
|
|
|
{
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_add(NOTIFY_ATTACHED_SESSION_CHANGED, c, NULL, NULL);
|
|
|
|
notify_drain();
|
2012-03-17 22:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_session_renamed(struct session *s)
|
2012-03-17 22:35:09 +00:00
|
|
|
{
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_add(NOTIFY_SESSION_RENAMED, NULL, s, NULL);
|
|
|
|
notify_drain();
|
2012-03-17 22:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_session_created(struct session *s)
|
2012-03-17 22:35:09 +00:00
|
|
|
{
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_add(NOTIFY_SESSION_CREATED, NULL, s, NULL);
|
|
|
|
notify_drain();
|
2012-03-17 22:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_session_closed(struct session *s)
|
2012-03-17 22:35:09 +00:00
|
|
|
{
|
2012-07-13 06:27:41 +00:00
|
|
|
notify_add(NOTIFY_SESSION_CLOSED, NULL, s, NULL);
|
|
|
|
notify_drain();
|
2012-03-17 22:35:09 +00:00
|
|
|
}
|