Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 1 | /* $OpenBSD$ */ |
| 2 | |
| 3 | /* |
| 4 | * Copyright (c) 2012 George Nachman <tmux@georgester.com> |
| 5 | * |
| 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. |
| 9 | * |
| 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. |
| 17 | */ |
| 18 | |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 19 | #include <sys/types.h> |
| 20 | #include <sys/queue.h> |
| 21 | |
| 22 | #include <stdlib.h> |
| 23 | |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 24 | #include "tmux.h" |
| 25 | |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 26 | enum notify_type { |
| 27 | NOTIFY_WINDOW_LAYOUT_CHANGED, |
| 28 | NOTIFY_WINDOW_UNLINKED, |
| 29 | NOTIFY_WINDOW_LINKED, |
| 30 | NOTIFY_WINDOW_RENAMED, |
| 31 | NOTIFY_ATTACHED_SESSION_CHANGED, |
| 32 | NOTIFY_SESSION_RENAMED, |
| 33 | NOTIFY_SESSION_CREATED, |
| 34 | NOTIFY_SESSION_CLOSED |
| 35 | }; |
| 36 | |
| 37 | struct notify_entry { |
| 38 | enum notify_type type; |
| 39 | |
| 40 | struct client *client; |
| 41 | struct session *session; |
| 42 | struct window *window; |
| 43 | |
| 44 | TAILQ_ENTRY(notify_entry) entry; |
| 45 | }; |
| 46 | TAILQ_HEAD(, notify_entry) notify_queue = TAILQ_HEAD_INITIALIZER(notify_queue); |
| 47 | int notify_enabled = 1; |
| 48 | |
| 49 | void notify_drain(void); |
| 50 | void notify_add(enum notify_type, struct client *, struct session *, |
| 51 | struct window *); |
| 52 | |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 53 | void |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 54 | notify_enable(void) |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 55 | { |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 56 | notify_enabled = 1; |
| 57 | notify_drain(); |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | void |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 61 | notify_disable(void) |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 62 | { |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 63 | notify_enabled = 0; |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | void |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 67 | notify_add(enum notify_type type, struct client *c, struct session *s, |
| 68 | struct window *w) |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 69 | { |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 70 | struct notify_entry *ne; |
| 71 | |
| 72 | ne = xcalloc(1, sizeof *ne); |
| 73 | ne->type = type; |
| 74 | ne->client = c; |
| 75 | ne->session = s; |
| 76 | ne->window = w; |
| 77 | TAILQ_INSERT_TAIL(¬ify_queue, ne, entry); |
| 78 | |
| 79 | if (c != NULL) |
| 80 | c->references++; |
| 81 | if (s != NULL) |
| 82 | s->references++; |
| 83 | if (w != NULL) |
| 84 | w->references++; |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | void |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 88 | notify_drain(void) |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 89 | { |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 90 | struct notify_entry *ne, *ne1; |
| 91 | |
| 92 | if (!notify_enabled) |
| 93 | return; |
| 94 | |
| 95 | TAILQ_FOREACH_SAFE(ne, ¬ify_queue, entry, ne1) { |
| 96 | switch (ne->type) { |
| 97 | case NOTIFY_WINDOW_LAYOUT_CHANGED: |
Nicholas Marriott | 9247c90 | 2012-09-03 09:32:38 +0000 | [diff] [blame] | 98 | control_notify_window_layout_changed(ne->window); |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 99 | break; |
| 100 | case NOTIFY_WINDOW_UNLINKED: |
Nicholas Marriott | 9247c90 | 2012-09-03 09:32:38 +0000 | [diff] [blame] | 101 | control_notify_window_unlinked(ne->session, ne->window); |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 102 | break; |
| 103 | case NOTIFY_WINDOW_LINKED: |
Nicholas Marriott | 9247c90 | 2012-09-03 09:32:38 +0000 | [diff] [blame] | 104 | control_notify_window_linked(ne->session, ne->window); |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 105 | break; |
| 106 | case NOTIFY_WINDOW_RENAMED: |
Nicholas Marriott | 9247c90 | 2012-09-03 09:32:38 +0000 | [diff] [blame] | 107 | control_notify_window_renamed(ne->window); |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 108 | break; |
| 109 | case NOTIFY_ATTACHED_SESSION_CHANGED: |
Nicholas Marriott | 9247c90 | 2012-09-03 09:32:38 +0000 | [diff] [blame] | 110 | control_notify_attached_session_changed(ne->client); |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 111 | break; |
| 112 | case NOTIFY_SESSION_RENAMED: |
Nicholas Marriott | 9247c90 | 2012-09-03 09:32:38 +0000 | [diff] [blame] | 113 | control_notify_session_renamed(ne->session); |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 114 | break; |
| 115 | case NOTIFY_SESSION_CREATED: |
Nicholas Marriott | 9247c90 | 2012-09-03 09:32:38 +0000 | [diff] [blame] | 116 | control_notify_session_created(ne->session); |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 117 | break; |
| 118 | case NOTIFY_SESSION_CLOSED: |
Nicholas Marriott | 9247c90 | 2012-09-03 09:32:38 +0000 | [diff] [blame] | 119 | control_notify_session_close(ne->session); |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 120 | break; |
| 121 | } |
| 122 | |
| 123 | if (ne->client != NULL) |
| 124 | ne->client->references--; |
| 125 | if (ne->session != NULL) |
| 126 | ne->session->references--; |
| 127 | if (ne->window != NULL) |
Nicholas Marriott | 58e8e0e | 2012-08-21 10:00:33 +0000 | [diff] [blame] | 128 | window_remove_ref(ne->window); |
| 129 | |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 130 | TAILQ_REMOVE(¬ify_queue, ne, entry); |
| 131 | free(ne); |
| 132 | } |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | void |
Nicholas Marriott | 17bbf90 | 2012-09-25 07:41:22 +0000 | [diff] [blame] | 136 | notify_input(struct window_pane *wp, struct evbuffer *input) |
| 137 | { |
| 138 | struct client *c; |
| 139 | u_int i; |
| 140 | |
| 141 | /* |
| 142 | * notify_input() is not queued and only does anything when |
| 143 | * notifications are enabled. |
| 144 | */ |
| 145 | if (!notify_enabled) |
| 146 | return; |
| 147 | |
| 148 | for (i = 0; i < ARRAY_LENGTH(&clients); i++) { |
| 149 | c = ARRAY_ITEM(&clients, i); |
| 150 | if (c != NULL && (c->flags & CLIENT_CONTROL)) |
| 151 | control_notify_input(c, wp, input); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | void |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 156 | notify_window_layout_changed(struct window *w) |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 157 | { |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 158 | notify_add(NOTIFY_WINDOW_LAYOUT_CHANGED, NULL, NULL, w); |
| 159 | notify_drain(); |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | void |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 163 | notify_window_unlinked(struct session *s, struct window *w) |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 164 | { |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 165 | notify_add(NOTIFY_WINDOW_UNLINKED, NULL, s, w); |
| 166 | notify_drain(); |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | void |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 170 | notify_window_linked(struct session *s, struct window *w) |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 171 | { |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 172 | notify_add(NOTIFY_WINDOW_LINKED, NULL, s, w); |
| 173 | notify_drain(); |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | void |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 177 | notify_window_renamed(struct window *w) |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 178 | { |
Nicholas Marriott | 5385a9b | 2012-07-13 06:27:41 +0000 | [diff] [blame] | 179 | notify_add(NOTIFY_WINDOW_RENAMED, NULL, NULL, w); |
| 180 | notify_drain(); |
| 181 | } |
| 182 | |
| 183 | void |
| 184 | notify_attached_session_changed(struct client *c) |
| 185 | { |
| 186 | notify_add(NOTIFY_ATTACHED_SESSION_CHANGED, c, NULL, NULL); |
| 187 | notify_drain(); |
| 188 | } |
| 189 | |
| 190 | void |
| 191 | notify_session_renamed(struct session *s) |
| 192 | { |
| 193 | notify_add(NOTIFY_SESSION_RENAMED, NULL, s, NULL); |
| 194 | notify_drain(); |
| 195 | } |
| 196 | |
| 197 | void |
| 198 | notify_session_created(struct session *s) |
| 199 | { |
| 200 | notify_add(NOTIFY_SESSION_CREATED, NULL, s, NULL); |
| 201 | notify_drain(); |
| 202 | } |
| 203 | |
| 204 | void |
| 205 | notify_session_closed(struct session *s) |
| 206 | { |
| 207 | notify_add(NOTIFY_SESSION_CLOSED, NULL, s, NULL); |
| 208 | notify_drain(); |
Nicholas Marriott | 4621034 | 2012-03-17 22:35:09 +0000 | [diff] [blame] | 209 | } |