mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Provide a way for hooks to tag formats onto the commands they fire so
that the user can get at additional information - now used for the "hook" format, more to come.
This commit is contained in:
25
cmd-queue.c
25
cmd-queue.c
@ -102,7 +102,8 @@ cmdq_insert_after(struct cmdq_item *after, struct cmdq_item *item)
|
|||||||
static void
|
static void
|
||||||
cmdq_remove(struct cmdq_item *item)
|
cmdq_remove(struct cmdq_item *item)
|
||||||
{
|
{
|
||||||
free((void *)item->hook);
|
if (item->formats != NULL)
|
||||||
|
format_free(item->formats);
|
||||||
|
|
||||||
if (item->client != NULL)
|
if (item->client != NULL)
|
||||||
server_client_unref(item->client);
|
server_client_unref(item->client);
|
||||||
@ -241,6 +242,28 @@ cmdq_fire_callback(struct cmdq_item *item)
|
|||||||
return (item->cb(item, item->data));
|
return (item->cb(item, item->data));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Add a format to command queue. */
|
||||||
|
void
|
||||||
|
cmdq_format(struct cmdq_item *item, const char *key, const char *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list ap;
|
||||||
|
struct cmdq_item *loop;
|
||||||
|
char *value;
|
||||||
|
|
||||||
|
va_start(ap, fmt);
|
||||||
|
xvasprintf(&value, fmt, ap);
|
||||||
|
va_end(ap);
|
||||||
|
|
||||||
|
for (loop = item; loop != NULL; loop = item->next) {
|
||||||
|
if (loop->formats == NULL)
|
||||||
|
loop->formats = format_create(NULL, 0);
|
||||||
|
format_add(loop->formats, key, "%s", value);
|
||||||
|
}
|
||||||
|
|
||||||
|
free(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Process next item on command queue. */
|
/* Process next item on command queue. */
|
||||||
u_int
|
u_int
|
||||||
cmdq_next(struct client *c)
|
cmdq_next(struct client *c)
|
||||||
|
17
format.c
17
format.c
@ -468,6 +468,19 @@ format_cb_pane_tabs(struct format_tree *ft, struct format_entry *fe)
|
|||||||
evbuffer_free(buffer);
|
evbuffer_free(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Merge a format tree. */
|
||||||
|
static void
|
||||||
|
format_merge(struct format_tree *ft, struct format_tree *from)
|
||||||
|
{
|
||||||
|
struct format_entry *fe;
|
||||||
|
|
||||||
|
RB_FOREACH(fe, format_entry_tree, &from->tree) {
|
||||||
|
if (fe->value != NULL)
|
||||||
|
format_add(ft, fe->key, "%s", fe->value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/* Create a new tree. */
|
/* Create a new tree. */
|
||||||
struct format_tree *
|
struct format_tree *
|
||||||
format_create(struct cmdq_item *item, int flags)
|
format_create(struct cmdq_item *item, int flags)
|
||||||
@ -491,8 +504,8 @@ format_create(struct cmdq_item *item, int flags)
|
|||||||
|
|
||||||
if (item != NULL && item->cmd != NULL)
|
if (item != NULL && item->cmd != NULL)
|
||||||
format_add(ft, "command", "%s", item->cmd->entry->name);
|
format_add(ft, "command", "%s", item->cmd->entry->name);
|
||||||
if (item != NULL && item->hook != NULL)
|
if (item != NULL && item->formats != NULL)
|
||||||
format_add(ft, "hook", "%s", item->hook);
|
format_merge(ft, item->formats);
|
||||||
|
|
||||||
return (ft);
|
return (ft);
|
||||||
}
|
}
|
||||||
|
20
hooks.c
20
hooks.c
@ -146,7 +146,7 @@ hooks_run(struct hooks *hooks, struct client *c, struct cmd_find_state *fs,
|
|||||||
struct hook *hook;
|
struct hook *hook;
|
||||||
va_list ap;
|
va_list ap;
|
||||||
char *name;
|
char *name;
|
||||||
struct cmdq_item *new_item, *loop;
|
struct cmdq_item *new_item;
|
||||||
|
|
||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
xvasprintf(&name, fmt, ap);
|
xvasprintf(&name, fmt, ap);
|
||||||
@ -160,12 +160,10 @@ hooks_run(struct hooks *hooks, struct client *c, struct cmd_find_state *fs,
|
|||||||
log_debug("running hook %s", name);
|
log_debug("running hook %s", name);
|
||||||
|
|
||||||
new_item = cmdq_get_command(hook->cmdlist, fs, NULL, CMDQ_NOHOOKS);
|
new_item = cmdq_get_command(hook->cmdlist, fs, NULL, CMDQ_NOHOOKS);
|
||||||
|
cmdq_format(new_item, "hook", "%s", name);
|
||||||
for (loop = new_item; loop != NULL; loop = loop->next)
|
|
||||||
loop->hook = xstrdup(name);
|
|
||||||
free(name);
|
|
||||||
|
|
||||||
cmdq_append(c, new_item);
|
cmdq_append(c, new_item);
|
||||||
|
|
||||||
|
free(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -175,7 +173,7 @@ hooks_insert(struct hooks *hooks, struct cmdq_item *item,
|
|||||||
struct hook *hook;
|
struct hook *hook;
|
||||||
va_list ap;
|
va_list ap;
|
||||||
char *name;
|
char *name;
|
||||||
struct cmdq_item *new_item, *loop;
|
struct cmdq_item *new_item;
|
||||||
|
|
||||||
if (item->flags & CMDQ_NOHOOKS)
|
if (item->flags & CMDQ_NOHOOKS)
|
||||||
return;
|
return;
|
||||||
@ -192,13 +190,11 @@ hooks_insert(struct hooks *hooks, struct cmdq_item *item,
|
|||||||
log_debug("running hook %s (parent %p)", name, item);
|
log_debug("running hook %s (parent %p)", name, item);
|
||||||
|
|
||||||
new_item = cmdq_get_command(hook->cmdlist, fs, NULL, CMDQ_NOHOOKS);
|
new_item = cmdq_get_command(hook->cmdlist, fs, NULL, CMDQ_NOHOOKS);
|
||||||
|
cmdq_format(new_item, "hook", "%s", name);
|
||||||
for (loop = new_item; loop != NULL; loop = loop->next)
|
|
||||||
loop->hook = xstrdup(name);
|
|
||||||
free(name);
|
|
||||||
|
|
||||||
if (item != NULL)
|
if (item != NULL)
|
||||||
cmdq_insert_after(item, new_item);
|
cmdq_insert_after(item, new_item);
|
||||||
else
|
else
|
||||||
cmdq_append(NULL, new_item);
|
cmdq_append(NULL, new_item);
|
||||||
|
|
||||||
|
free(name);
|
||||||
}
|
}
|
||||||
|
7
notify.c
7
notify.c
@ -59,7 +59,7 @@ notify_hook(struct cmdq_item *item, struct notify_entry *ne)
|
|||||||
const char *name;
|
const char *name;
|
||||||
struct cmd_find_state fs;
|
struct cmd_find_state fs;
|
||||||
struct hook *hook;
|
struct hook *hook;
|
||||||
struct cmdq_item *new_item, *loop;
|
struct cmdq_item *new_item;
|
||||||
|
|
||||||
name = notify_hooks[ne->type];
|
name = notify_hooks[ne->type];
|
||||||
if (name == NULL)
|
if (name == NULL)
|
||||||
@ -83,10 +83,7 @@ notify_hook(struct cmdq_item *item, struct notify_entry *ne)
|
|||||||
log_debug("notify hook %s", name);
|
log_debug("notify hook %s", name);
|
||||||
|
|
||||||
new_item = cmdq_get_command(hook->cmdlist, &fs, NULL, CMDQ_NOHOOKS);
|
new_item = cmdq_get_command(hook->cmdlist, &fs, NULL, CMDQ_NOHOOKS);
|
||||||
|
cmdq_format(new_item, "hook", "%s", name);
|
||||||
for (loop = new_item; loop != NULL; loop = loop->next)
|
|
||||||
loop->hook = xstrdup(name);
|
|
||||||
|
|
||||||
cmdq_insert_after(item, new_item);
|
cmdq_insert_after(item, new_item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
5
tmux.h
5
tmux.h
@ -1250,7 +1250,8 @@ struct cmdq_item {
|
|||||||
u_int number;
|
u_int number;
|
||||||
time_t time;
|
time_t time;
|
||||||
|
|
||||||
const char *hook;
|
struct format_tree *formats;
|
||||||
|
|
||||||
int flags;
|
int flags;
|
||||||
#define CMDQ_FIRED 0x1
|
#define CMDQ_FIRED 0x1
|
||||||
#define CMDQ_WAITING 0x2
|
#define CMDQ_WAITING 0x2
|
||||||
@ -1783,6 +1784,8 @@ struct cmdq_item *cmdq_get_command(struct cmd_list *, struct cmd_find_state *,
|
|||||||
struct cmdq_item *cmdq_get_callback(cmdq_cb, void *);
|
struct cmdq_item *cmdq_get_callback(cmdq_cb, void *);
|
||||||
void cmdq_insert_after(struct cmdq_item *, struct cmdq_item *);
|
void cmdq_insert_after(struct cmdq_item *, struct cmdq_item *);
|
||||||
void cmdq_append(struct client *, struct cmdq_item *);
|
void cmdq_append(struct client *, struct cmdq_item *);
|
||||||
|
void printflike(3, 4) cmdq_format(struct cmdq_item *, const char *,
|
||||||
|
const char *, ...);
|
||||||
u_int cmdq_next(struct client *);
|
u_int cmdq_next(struct client *);
|
||||||
void cmdq_guard(struct cmdq_item *, const char *, int);
|
void cmdq_guard(struct cmdq_item *, const char *, int);
|
||||||
void printflike(2, 3) cmdq_print(struct cmdq_item *, const char *, ...);
|
void printflike(2, 3) cmdq_print(struct cmdq_item *, const char *, ...);
|
||||||
|
Reference in New Issue
Block a user