[BACK]Return to notify.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/notify.c, Revision 1.33

1.33    ! nicm        1: /* $OpenBSD: notify.c,v 1.32 2020/04/13 13:32:09 nicm Exp $ */
1.1       nicm        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:
1.2       nicm       19: #include <sys/types.h>
                     20: #include <sys/queue.h>
                     21:
                     22: #include <stdlib.h>
1.18      nicm       23: #include <string.h>
1.2       nicm       24:
1.1       nicm       25: #include "tmux.h"
                     26:
1.2       nicm       27: struct notify_entry {
1.18      nicm       28:        const char              *name;
1.2       nicm       29:
                     30:        struct client           *client;
                     31:        struct session          *session;
                     32:        struct window           *window;
1.18      nicm       33:        int                      pane;
                     34:
                     35:        struct cmd_find_state    fs;
1.2       nicm       36: };
                     37:
1.9       nicm       38: static void
1.27      nicm       39: notify_hook_formats(struct cmdq_item *item, struct session *s, struct window *w,
                     40:     int pane)
1.11      nicm       41: {
1.27      nicm       42:        if (s != NULL) {
                     43:                cmdq_format(item, "hook_session", "$%u", s->id);
                     44:                cmdq_format(item, "hook_session_name", "%s", s->name);
                     45:        }
                     46:        if (w != NULL) {
                     47:                cmdq_format(item, "hook_window", "@%u", w->id);
                     48:                cmdq_format(item, "hook_window_name", "%s", w->name);
                     49:        }
                     50:        if (pane != -1)
                     51:                cmdq_format(item, "hook_pane", "%%%d", pane);
                     52: }
                     53:
                     54: static void
                     55: notify_insert_hook(struct cmdq_item *item, struct notify_entry *ne)
                     56: {
                     57:        struct cmd_find_state            fs;
                     58:        struct options                  *oo;
                     59:        struct cmdq_item                *new_item;
                     60:        struct session                  *s = ne->session;
                     61:        struct window                   *w = ne->window;
                     62:        struct options_entry            *o;
                     63:        struct options_array_item       *a;
                     64:        struct cmd_list                 *cmdlist;
                     65:
                     66:        log_debug("%s: %s", __func__, ne->name);
1.11      nicm       67:
1.22      nicm       68:        cmd_find_clear_state(&fs, 0);
1.18      nicm       69:        if (cmd_find_empty_state(&ne->fs) || !cmd_find_valid_state(&ne->fs))
1.25      nicm       70:                cmd_find_from_nothing(&fs, 0);
1.15      nicm       71:        else
1.18      nicm       72:                cmd_find_copy_state(&fs, &ne->fs);
1.11      nicm       73:
1.27      nicm       74:        if (fs.s == NULL)
                     75:                oo = global_s_options;
                     76:        else
                     77:                oo = fs.s->options;
                     78:        o = options_get(oo, ne->name);
1.30      nicm       79:        if (o == NULL && fs.wp != NULL) {
                     80:                oo = fs.wp->options;
                     81:                o = options_get(oo, ne->name);
                     82:        }
                     83:        if (o == NULL && fs.wl != NULL) {
                     84:                oo = fs.wl->window->options;
                     85:                o = options_get(oo, ne->name);
                     86:        }
1.27      nicm       87:        if (o == NULL)
1.11      nicm       88:                return;
                     89:
1.27      nicm       90:        a = options_array_first(o);
                     91:        while (a != NULL) {
                     92:                cmdlist = options_array_item_value(a)->cmdlist;
                     93:                if (cmdlist == NULL) {
                     94:                        a = options_array_next(a);
                     95:                        continue;
                     96:                }
                     97:
1.32      nicm       98:                new_item = cmdq_get_command(cmdlist, &fs, NULL,
1.33    ! nicm       99:                    CMDQ_STATE_NOHOOKS);
1.27      nicm      100:                cmdq_format(new_item, "hook", "%s", ne->name);
                    101:                notify_hook_formats(new_item, s, w, ne->pane);
1.29      nicm      102:                item = cmdq_insert_after(item, new_item);
1.17      nicm      103:
1.27      nicm      104:                a = options_array_next(a);
1.17      nicm      105:        }
1.15      nicm      106: }
                    107:
                    108: static enum cmd_retval
                    109: notify_callback(struct cmdq_item *item, void *data)
                    110: {
                    111:        struct notify_entry     *ne = data;
1.20      nicm      112:
                    113:        log_debug("%s: %s", __func__, ne->name);
1.15      nicm      114:
1.24      nicm      115:        if (strcmp(ne->name, "pane-mode-changed") == 0)
                    116:                control_notify_pane_mode_changed(ne->pane);
1.18      nicm      117:        if (strcmp(ne->name, "window-layout-changed") == 0)
1.15      nicm      118:                control_notify_window_layout_changed(ne->window);
1.24      nicm      119:        if (strcmp(ne->name, "window-pane-changed") == 0)
                    120:                control_notify_window_pane_changed(ne->window);
1.18      nicm      121:        if (strcmp(ne->name, "window-unlinked") == 0)
1.15      nicm      122:                control_notify_window_unlinked(ne->session, ne->window);
1.18      nicm      123:        if (strcmp(ne->name, "window-linked") == 0)
1.15      nicm      124:                control_notify_window_linked(ne->session, ne->window);
1.18      nicm      125:        if (strcmp(ne->name, "window-renamed") == 0)
1.15      nicm      126:                control_notify_window_renamed(ne->window);
1.18      nicm      127:        if (strcmp(ne->name, "client-session-changed") == 0)
                    128:                control_notify_client_session_changed(ne->client);
                    129:        if (strcmp(ne->name, "session-renamed") == 0)
1.15      nicm      130:                control_notify_session_renamed(ne->session);
1.18      nicm      131:        if (strcmp(ne->name, "session-created") == 0)
1.15      nicm      132:                control_notify_session_created(ne->session);
1.18      nicm      133:        if (strcmp(ne->name, "session-closed") == 0)
1.15      nicm      134:                control_notify_session_closed(ne->session);
1.24      nicm      135:        if (strcmp(ne->name, "session-window-changed") == 0)
                    136:                control_notify_session_window_changed(ne->session);
1.18      nicm      137:
1.27      nicm      138:        notify_insert_hook(item, ne);
1.15      nicm      139:
                    140:        if (ne->client != NULL)
                    141:                server_client_unref(ne->client);
                    142:        if (ne->session != NULL)
1.23      nicm      143:                session_remove_ref(ne->session, __func__);
1.15      nicm      144:        if (ne->window != NULL)
1.23      nicm      145:                window_remove_ref(ne->window, __func__);
1.18      nicm      146:
                    147:        if (ne->fs.s != NULL)
1.23      nicm      148:                session_remove_ref(ne->fs.s, __func__);
1.18      nicm      149:
                    150:        free((void *)ne->name);
1.15      nicm      151:        free(ne);
                    152:
                    153:        return (CMD_RETURN_NORMAL);
1.11      nicm      154: }
                    155:
                    156: static void
1.19      nicm      157: notify_add(const char *name, struct cmd_find_state *fs, struct client *c,
                    158:     struct session *s, struct window *w, struct window_pane *wp)
1.2       nicm      159: {
                    160:        struct notify_entry     *ne;
1.15      nicm      161:        struct cmdq_item        *new_item;
1.2       nicm      162:
                    163:        ne = xcalloc(1, sizeof *ne);
1.18      nicm      164:        ne->name = xstrdup(name);
                    165:
1.2       nicm      166:        ne->client = c;
                    167:        ne->session = s;
                    168:        ne->window = w;
                    169:
1.18      nicm      170:        if (wp != NULL)
                    171:                ne->pane = wp->id;
                    172:        else
                    173:                ne->pane = -1;
                    174:
1.2       nicm      175:        if (c != NULL)
                    176:                c->references++;
                    177:        if (s != NULL)
1.23      nicm      178:                session_add_ref(s, __func__);
1.2       nicm      179:        if (w != NULL)
1.23      nicm      180:                window_add_ref(w, __func__);
1.2       nicm      181:
1.19      nicm      182:        cmd_find_copy_state(&ne->fs, fs);
1.23      nicm      183:        if (ne->fs.s != NULL) /* cmd_find_valid_state needs session */
                    184:                session_add_ref(ne->fs.s, __func__);
1.18      nicm      185:
1.15      nicm      186:        new_item = cmdq_get_callback(notify_callback, ne);
                    187:        cmdq_append(NULL, new_item);
1.26      nicm      188: }
                    189:
                    190: void
                    191: notify_hook(struct cmdq_item *item, const char *name)
                    192: {
1.31      nicm      193:        struct cmd_find_state   *target = cmdq_get_target(item);
                    194:        struct notify_entry      ne;
1.26      nicm      195:
                    196:        memset(&ne, 0, sizeof ne);
                    197:
                    198:        ne.name = name;
1.31      nicm      199:        cmd_find_copy_state(&ne.fs, target);
1.26      nicm      200:
1.31      nicm      201:        ne.client = cmdq_get_client(item);
                    202:        ne.session = target->s;
                    203:        ne.window = target->w;
                    204:        ne.pane = target->wp->id;
1.26      nicm      205:
1.27      nicm      206:        notify_insert_hook(item, &ne);
1.5       nicm      207: }
                    208:
                    209: void
1.28      nicm      210: notify_input(struct window_pane *wp, const u_char *buf, size_t len)
1.5       nicm      211: {
                    212:        struct client   *c;
                    213:
1.6       nicm      214:        TAILQ_FOREACH(c, &clients, entry) {
                    215:                if (c->flags & CLIENT_CONTROL)
1.28      nicm      216:                        control_notify_input(c, wp, buf, len);
1.2       nicm      217:        }
                    218: }
                    219:
1.1       nicm      220: void
1.18      nicm      221: notify_client(const char *name, struct client *c)
1.1       nicm      222: {
1.19      nicm      223:        struct cmd_find_state   fs;
                    224:
1.25      nicm      225:        cmd_find_from_client(&fs, c, 0);
1.19      nicm      226:        notify_add(name, &fs, c, NULL, NULL, NULL);
1.1       nicm      227: }
                    228:
                    229: void
1.18      nicm      230: notify_session(const char *name, struct session *s)
1.1       nicm      231: {
1.19      nicm      232:        struct cmd_find_state   fs;
                    233:
                    234:        if (session_alive(s))
1.25      nicm      235:                cmd_find_from_session(&fs, s, 0);
1.19      nicm      236:        else
1.25      nicm      237:                cmd_find_from_nothing(&fs, 0);
1.19      nicm      238:        notify_add(name, &fs, NULL, s, NULL, NULL);
                    239: }
                    240:
                    241: void
1.21      nicm      242: notify_winlink(const char *name, struct winlink *wl)
1.19      nicm      243: {
                    244:        struct cmd_find_state   fs;
                    245:
1.25      nicm      246:        cmd_find_from_winlink(&fs, wl, 0);
1.21      nicm      247:        notify_add(name, &fs, NULL, wl->session, wl->window, NULL);
1.1       nicm      248: }
                    249:
                    250: void
1.18      nicm      251: notify_session_window(const char *name, struct session *s, struct window *w)
1.1       nicm      252: {
1.19      nicm      253:        struct cmd_find_state   fs;
                    254:
1.25      nicm      255:        cmd_find_from_session_window(&fs, s, w, 0);
1.19      nicm      256:        notify_add(name, &fs, NULL, s, w, NULL);
1.1       nicm      257: }
                    258:
                    259: void
1.18      nicm      260: notify_window(const char *name, struct window *w)
1.1       nicm      261: {
1.19      nicm      262:        struct cmd_find_state   fs;
                    263:
1.25      nicm      264:        cmd_find_from_window(&fs, w, 0);
1.19      nicm      265:        notify_add(name, &fs, NULL, NULL, w, NULL);
1.1       nicm      266: }
                    267:
                    268: void
1.18      nicm      269: notify_pane(const char *name, struct window_pane *wp)
1.1       nicm      270: {
1.19      nicm      271:        struct cmd_find_state   fs;
                    272:
1.25      nicm      273:        cmd_find_from_pane(&fs, wp, 0);
1.19      nicm      274:        notify_add(name, &fs, NULL, NULL, NULL, wp);
1.1       nicm      275: }