1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 23:06:38 +02:00

core: add variables with count of hooks

This commit is contained in:
Sébastien Helleu
2015-07-15 23:55:00 +02:00
parent e9c6381774
commit 80872061c2
3 changed files with 16 additions and 12 deletions
+4 -12
View File
@@ -391,26 +391,18 @@ debug_hdata ()
void
debug_hooks ()
{
int i, num_hooks, num_hooks_total;
struct t_hook *ptr_hook;
int i;
gui_chat_printf (NULL, "");
gui_chat_printf (NULL, "hooks in memory:");
num_hooks_total = 0;
for (i = 0; i < HOOK_NUM_TYPES; i++)
{
num_hooks = 0;
for (ptr_hook = weechat_hooks[i]; ptr_hook;
ptr_hook = ptr_hook->next_hook)
{
num_hooks++;
}
gui_chat_printf (NULL, "%17s:%5d", hook_type_string[i], num_hooks);
num_hooks_total += num_hooks;
gui_chat_printf (NULL, "%17s:%5d",
hook_type_string[i], hooks_count[i]);
}
gui_chat_printf (NULL, "%17s------", "---------");
gui_chat_printf (NULL, "%17s:%5d", "total", num_hooks_total);
gui_chat_printf (NULL, "%17s:%5d", "total", hooks_count_total);
}
/*
+10
View File
@@ -68,6 +68,8 @@ char *hook_type_string[HOOK_NUM_TYPES] =
"info", "info_hashtable", "infolist", "hdata", "focus" };
struct t_hook *weechat_hooks[HOOK_NUM_TYPES]; /* list of hooks */
struct t_hook *last_weechat_hook[HOOK_NUM_TYPES]; /* last hook */
int hooks_count[HOOK_NUM_TYPES]; /* number of hooks */
int hooks_count_total = 0; /* total number of hooks */
int hook_exec_recursion = 0; /* 1 when a hook is executed */
time_t hook_last_system_time = 0; /* used to detect system clock skew */
int real_delete_pending = 0; /* 1 if some hooks must be deleted */
@@ -89,7 +91,9 @@ hook_init ()
{
weechat_hooks[type] = NULL;
last_weechat_hook[type] = NULL;
hooks_count[type] = 0;
}
hooks_count_total = 0;
hook_last_system_time = time (NULL);
}
@@ -201,6 +205,9 @@ hook_add_to_list (struct t_hook *new_hook)
weechat_hooks[new_hook->type] = new_hook;
last_weechat_hook[new_hook->type] = new_hook;
}
hooks_count[new_hook->type]++;
hooks_count_total++;
}
/*
@@ -231,6 +238,9 @@ hook_remove_from_list (struct t_hook *hook)
free (hook);
weechat_hooks[type] = new_hooks;
hooks_count[type]--;
hooks_count_total--;
}
/*
+2
View File
@@ -438,6 +438,8 @@ struct t_hook_focus
extern char *hook_type_string[];
extern struct t_hook *weechat_hooks[];
extern struct t_hook *last_weechat_hook[];
extern int hooks_count[];
extern int hooks_count_total;
/* hook functions */