2015-12-08 01:10:31 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 Thomas Adam <thomas@xteddy.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
struct hooks {
|
|
|
|
RB_HEAD(hooks_tree, hook) tree;
|
|
|
|
struct hooks *parent;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int hooks_cmp(struct hook *, struct hook *);
|
2016-10-10 21:29:23 +00:00
|
|
|
RB_GENERATE_STATIC(hooks_tree, hook, entry, hooks_cmp);
|
2015-12-08 01:10:31 +00:00
|
|
|
|
2015-12-11 15:46:57 +00:00
|
|
|
static struct hook *hooks_find1(struct hooks *, const char *);
|
|
|
|
static void hooks_free1(struct hooks *, struct hook *);
|
2015-12-08 01:10:31 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
hooks_cmp(struct hook *hook1, struct hook *hook2)
|
|
|
|
{
|
|
|
|
return (strcmp(hook1->name, hook2->name));
|
|
|
|
}
|
|
|
|
|
2015-12-16 21:50:37 +00:00
|
|
|
struct hooks *
|
|
|
|
hooks_get(struct session *s)
|
|
|
|
{
|
|
|
|
if (s != NULL)
|
|
|
|
return (s->hooks);
|
|
|
|
return (global_hooks);
|
|
|
|
}
|
|
|
|
|
2015-12-08 01:10:31 +00:00
|
|
|
struct hooks *
|
|
|
|
hooks_create(struct hooks *parent)
|
|
|
|
{
|
|
|
|
struct hooks *hooks;
|
|
|
|
|
|
|
|
hooks = xcalloc(1, sizeof *hooks);
|
|
|
|
RB_INIT(&hooks->tree);
|
|
|
|
hooks->parent = parent;
|
|
|
|
return (hooks);
|
|
|
|
}
|
|
|
|
|
2015-12-11 15:46:57 +00:00
|
|
|
static void
|
|
|
|
hooks_free1(struct hooks *hooks, struct hook *hook)
|
|
|
|
{
|
|
|
|
RB_REMOVE(hooks_tree, &hooks->tree, hook);
|
|
|
|
cmd_list_free(hook->cmdlist);
|
|
|
|
free((char *)hook->name);
|
|
|
|
free(hook);
|
|
|
|
}
|
|
|
|
|
2015-12-08 01:10:31 +00:00
|
|
|
void
|
|
|
|
hooks_free(struct hooks *hooks)
|
|
|
|
{
|
|
|
|
struct hook *hook, *hook1;
|
|
|
|
|
|
|
|
RB_FOREACH_SAFE(hook, hooks_tree, &hooks->tree, hook1)
|
2015-12-11 15:46:57 +00:00
|
|
|
hooks_free1(hooks, hook);
|
2015-12-08 01:10:31 +00:00
|
|
|
free(hooks);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct hook *
|
|
|
|
hooks_first(struct hooks *hooks)
|
|
|
|
{
|
|
|
|
return (RB_MIN(hooks_tree, &hooks->tree));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct hook *
|
|
|
|
hooks_next(struct hook *hook)
|
|
|
|
{
|
|
|
|
return (RB_NEXT(hooks_tree, &hooks->tree, hook));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
hooks_add(struct hooks *hooks, const char *name, struct cmd_list *cmdlist)
|
|
|
|
{
|
|
|
|
struct hook *hook;
|
|
|
|
|
|
|
|
if ((hook = hooks_find1(hooks, name)) != NULL)
|
2015-12-11 15:46:57 +00:00
|
|
|
hooks_free1(hooks, hook);
|
2015-12-08 01:10:31 +00:00
|
|
|
|
|
|
|
hook = xcalloc(1, sizeof *hook);
|
|
|
|
hook->name = xstrdup(name);
|
|
|
|
hook->cmdlist = cmdlist;
|
|
|
|
hook->cmdlist->references++;
|
|
|
|
RB_INSERT(hooks_tree, &hooks->tree, hook);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-12-11 15:46:57 +00:00
|
|
|
hooks_remove(struct hooks *hooks, const char *name)
|
2015-12-08 01:10:31 +00:00
|
|
|
{
|
2015-12-11 15:46:57 +00:00
|
|
|
struct hook *hook;
|
|
|
|
|
|
|
|
if ((hook = hooks_find1(hooks, name)) != NULL)
|
|
|
|
hooks_free1(hooks, hook);
|
2015-12-08 01:10:31 +00:00
|
|
|
}
|
|
|
|
|
2015-12-11 15:46:57 +00:00
|
|
|
static struct hook *
|
2015-12-08 01:10:31 +00:00
|
|
|
hooks_find1(struct hooks *hooks, const char *name)
|
|
|
|
{
|
|
|
|
struct hook hook;
|
|
|
|
|
|
|
|
hook.name = name;
|
|
|
|
return (RB_FIND(hooks_tree, &hooks->tree, &hook));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct hook *
|
|
|
|
hooks_find(struct hooks *hooks, const char *name)
|
|
|
|
{
|
|
|
|
struct hook hook0, *hook;
|
|
|
|
|
|
|
|
hook0.name = name;
|
|
|
|
hook = RB_FIND(hooks_tree, &hooks->tree, &hook0);
|
|
|
|
while (hook == NULL) {
|
|
|
|
hooks = hooks->parent;
|
|
|
|
if (hooks == NULL)
|
|
|
|
break;
|
|
|
|
hook = RB_FIND(hooks_tree, &hooks->tree, &hook0);
|
|
|
|
}
|
|
|
|
return (hook);
|
|
|
|
}
|
|
|
|
|
2016-10-16 17:55:14 +00:00
|
|
|
void
|
2015-12-16 21:50:37 +00:00
|
|
|
hooks_run(struct hooks *hooks, struct client *c, struct cmd_find_state *fs,
|
|
|
|
const char *fmt, ...)
|
2015-12-08 01:10:31 +00:00
|
|
|
{
|
2016-10-16 19:04:05 +00:00
|
|
|
struct hook *hook;
|
|
|
|
va_list ap;
|
|
|
|
char *name;
|
2016-10-16 19:36:37 +00:00
|
|
|
struct cmdq_item *new_item;
|
2015-12-15 13:43:07 +00:00
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
xvasprintf(&name, fmt, ap);
|
|
|
|
va_end(ap);
|
2015-12-08 01:10:31 +00:00
|
|
|
|
|
|
|
hook = hooks_find(hooks, name);
|
2015-12-15 13:43:07 +00:00
|
|
|
if (hook == NULL) {
|
|
|
|
free(name);
|
2016-10-16 17:55:14 +00:00
|
|
|
return;
|
2015-12-15 13:43:07 +00:00
|
|
|
}
|
2015-12-08 01:10:31 +00:00
|
|
|
log_debug("running hook %s", name);
|
2015-12-15 13:43:07 +00:00
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
new_item = cmdq_get_command(hook->cmdlist, fs, NULL, CMDQ_NOHOOKS);
|
2016-10-16 19:36:37 +00:00
|
|
|
cmdq_format(new_item, "hook", "%s", name);
|
|
|
|
cmdq_append(c, new_item);
|
2015-12-16 21:50:37 +00:00
|
|
|
|
2016-10-16 17:55:14 +00:00
|
|
|
free(name);
|
2015-12-15 13:43:07 +00:00
|
|
|
}
|
|
|
|
|
2016-10-16 17:55:14 +00:00
|
|
|
void
|
2016-10-16 19:04:05 +00:00
|
|
|
hooks_insert(struct hooks *hooks, struct cmdq_item *item,
|
|
|
|
struct cmd_find_state *fs, const char *fmt, ...)
|
2015-12-15 13:43:07 +00:00
|
|
|
{
|
2016-10-16 19:04:05 +00:00
|
|
|
struct hook *hook;
|
|
|
|
va_list ap;
|
|
|
|
char *name;
|
2016-10-16 19:36:37 +00:00
|
|
|
struct cmdq_item *new_item;
|
2015-12-15 13:43:07 +00:00
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
if (item->flags & CMDQ_NOHOOKS)
|
2016-10-16 17:55:14 +00:00
|
|
|
return;
|
2016-10-13 22:48:51 +00:00
|
|
|
|
2015-12-15 13:43:07 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
xvasprintf(&name, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
hook = hooks_find(hooks, name);
|
|
|
|
if (hook == NULL) {
|
|
|
|
free(name);
|
2016-10-16 17:55:14 +00:00
|
|
|
return;
|
2015-12-15 13:43:07 +00:00
|
|
|
}
|
2016-10-16 19:04:05 +00:00
|
|
|
log_debug("running hook %s (parent %p)", name, item);
|
2015-12-16 21:50:37 +00:00
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
new_item = cmdq_get_command(hook->cmdlist, fs, NULL, CMDQ_NOHOOKS);
|
2016-10-16 19:36:37 +00:00
|
|
|
cmdq_format(new_item, "hook", "%s", name);
|
2016-10-16 19:04:05 +00:00
|
|
|
if (item != NULL)
|
|
|
|
cmdq_insert_after(item, new_item);
|
2016-10-16 17:55:14 +00:00
|
|
|
else
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_append(NULL, new_item);
|
2016-10-16 19:36:37 +00:00
|
|
|
|
|
|
|
free(name);
|
2015-12-08 01:10:31 +00:00
|
|
|
}
|