Some hooks API changes to fire a hook while waiting another cmdq and

infrastructure that will be needed soon.
pull/243/head
nicm 2015-12-15 13:43:07 +00:00
parent 9d88d82d5e
commit ac9778395f
4 changed files with 79 additions and 12 deletions

View File

@ -144,7 +144,7 @@ cmd_attach_session(struct cmd_q *cmdq, int dflag, int rflag, const char *cflag,
if (~c->flags & CLIENT_CONTROL) if (~c->flags & CLIENT_CONTROL)
proc_send(c->peer, MSG_READY, -1, NULL, 0); proc_send(c->peer, MSG_READY, -1, NULL, 0);
hooks_run(c->session->hooks, "client-attached", c); hooks_run(c->session->hooks, c, "client-attached");
cmdq->client_exit = 0; cmdq->client_exit = 0;
} }
recalculate_sizes(); recalculate_sizes();

77
hooks.c
View File

@ -34,6 +34,7 @@ RB_GENERATE(hooks_tree, hook, entry, hooks_cmp);
static struct hook *hooks_find1(struct hooks *, const char *); static struct hook *hooks_find1(struct hooks *, const char *);
static void hooks_free1(struct hooks *, struct hook *); static void hooks_free1(struct hooks *, struct hook *);
static void hooks_emptyfn(struct cmd_q *);
static int static int
hooks_cmp(struct hook *hook1, struct hook *hook2) hooks_cmp(struct hook *hook1, struct hook *hook2)
@ -132,18 +133,78 @@ hooks_find(struct hooks *hooks, const char *name)
return (hook); return (hook);
} }
void static void
hooks_run(struct hooks *hooks, const char *name, struct client *c) hooks_emptyfn(struct cmd_q *hooks_cmdq)
{
struct cmd_q *cmdq = hooks_cmdq->data;
if (cmdq != NULL) {
if (hooks_cmdq->client_exit >= 0)
cmdq->client_exit = hooks_cmdq->client_exit;
if (!cmdq_free(cmdq))
cmdq_continue(cmdq);
}
cmdq_free(hooks_cmdq);
}
int
hooks_run(struct hooks *hooks, struct client *c, const char *fmt, ...)
{ {
struct hook *hook; struct hook *hook;
struct cmd_q *cmdq; struct cmd_q *hooks_cmdq;
va_list ap;
char *name;
va_start(ap, fmt);
xvasprintf(&name, fmt, ap);
va_end(ap);
hook = hooks_find(hooks, name); hook = hooks_find(hooks, name);
if (hook == NULL) if (hook == NULL) {
return; free(name);
return (-1);
}
log_debug("running hook %s", name); log_debug("running hook %s", name);
free(name);
cmdq = cmdq_new(c); hooks_cmdq = cmdq_new(c);
cmdq_run(cmdq, hook->cmdlist, NULL); hooks_cmdq->flags |= CMD_Q_NOHOOKS;
cmdq_free(cmdq); hooks_cmdq->parent = NULL;
cmdq_run(hooks_cmdq, hook->cmdlist, NULL);
cmdq_free(hooks_cmdq);
return (0);
}
int
hooks_wait(struct hooks *hooks, struct cmd_q *cmdq, const char *fmt, ...)
{
struct hook *hook;
struct cmd_q *hooks_cmdq;
va_list ap;
char *name;
va_start(ap, fmt);
xvasprintf(&name, fmt, ap);
va_end(ap);
hook = hooks_find(hooks, name);
if (hook == NULL) {
free(name);
return (-1);
}
log_debug("running hook %s (parent %p)", name, cmdq);
free(name);
hooks_cmdq = cmdq_new(cmdq->client);
hooks_cmdq->flags |= CMD_Q_NOHOOKS;
hooks_cmdq->parent = cmdq;
hooks_cmdq->emptyfn = hooks_emptyfn;
hooks_cmdq->data = cmdq;
if (cmdq != NULL)
cmdq->references++;
cmdq_run(hooks_cmdq, hook->cmdlist, NULL);
return (0);
} }

View File

@ -283,7 +283,7 @@ server_client_detach(struct client *c, enum msgtype msgtype)
if (s == NULL) if (s == NULL)
return; return;
hooks_run(c->session->hooks, "client-detached", c); hooks_run(c->session->hooks, c, "client-detached");
proc_send_s(c->peer, msgtype, s->name); proc_send_s(c->peer, msgtype, s->name);
} }
@ -1027,7 +1027,7 @@ server_client_dispatch(struct imsg *imsg, void *arg)
server_redraw_client(c); server_redraw_client(c);
} }
if (c->session != NULL) if (c->session != NULL)
hooks_run(c->session->hooks, "client-resized", c); hooks_run(c->session->hooks, c, "client-resized");
break; break;
case MSG_EXITING: case MSG_EXITING:
if (datalen != 0) if (datalen != 0)

8
tmux.h
View File

@ -1368,6 +1368,8 @@ struct cmd_q {
int references; int references;
int flags; int flags;
#define CMD_Q_DEAD 0x1 #define CMD_Q_DEAD 0x1
#define CMD_Q_REENTRY 0x2
#define CMD_Q_NOHOOKS 0x4
struct client *client; struct client *client;
int client_exit; int client_exit;
@ -1375,6 +1377,7 @@ struct cmd_q {
struct cmd_q_items queue; struct cmd_q_items queue;
struct cmd_q_item *item; struct cmd_q_item *item;
struct cmd *cmd; struct cmd *cmd;
struct cmd_q *parent;
struct cmd_state state; struct cmd_state state;
@ -1581,7 +1584,10 @@ void hooks_add(struct hooks *, const char *, struct cmd_list *);
void hooks_copy(struct hooks *, struct hooks *); void hooks_copy(struct hooks *, struct hooks *);
void hooks_remove(struct hooks *, const char *); void hooks_remove(struct hooks *, const char *);
struct hook *hooks_find(struct hooks *, const char *); struct hook *hooks_find(struct hooks *, const char *);
void hooks_run(struct hooks *, const char *, struct client *); int printflike(3, 4) hooks_run(struct hooks *, struct client *, const char *,
...);
int printflike(3, 4) hooks_wait(struct hooks *, struct cmd_q *, const char *,
...);
/* mode-key.c */ /* mode-key.c */
extern const struct mode_key_table mode_key_tables[]; extern const struct mode_key_table mode_key_tables[];