summaryrefslogtreecommitdiff
path: root/src/core/wee-hook.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/wee-hook.c')
-rw-r--r--src/core/wee-hook.c115
1 files changed, 72 insertions, 43 deletions
diff --git a/src/core/wee-hook.c b/src/core/wee-hook.c
index 60d212e0e..fd437f844 100644
--- a/src/core/wee-hook.c
+++ b/src/core/wee-hook.c
@@ -38,6 +38,7 @@
#include "weechat.h"
#include "wee-hook.h"
+#include "wee-config.h"
#include "wee-hashtable.h"
#include "wee-hdata.h"
#include "wee-infolist.h"
@@ -654,12 +655,12 @@ hook_command (struct t_weechat_plugin *plugin, const char *command,
* Executes a command hook.
*
* Returns:
- * 0: command executed and failed
- * 1: command executed successfully
- * -1: command not found
- * -2: command is ambiguous (same command exists for another plugin, and we
- * don't know which one to run)
- * -3: command is already running
+ * HOOK_COMMAND_EXEC_OK: command executed successfully
+ * HOOK_COMMAND_EXEC_ERROR: command executed and failed
+ * HOOK_COMMAND_EXEC_NOT_FOUND: command not found
+ * HOOK_COMMAND_EXEC_AMBIGUOUS: command is ambiguous (same command exists for
+ * another plugin, and we don't know which one to run)
+ * HOOK_COMMAND_EXEC_RUNNING: command is already running
*/
int
@@ -668,62 +669,79 @@ hook_command_exec (struct t_gui_buffer *buffer, int any_plugin,
{
struct t_hook *ptr_hook, *next_hook;
struct t_hook *hook_plugin, *hook_other_plugin, *hook_other_plugin2;
+ struct t_hook *hook_incomplete_command;
char **argv, **argv_eol, *ptr_command_name;
- int argc, rc, count_other_plugin;
+ int argc, rc, length_command_name, allow_incomplete_commands;
+ int count_other_plugin, count_incomplete_commands;
if (!buffer || !string || !string[0])
- return -1;
+ return HOOK_COMMAND_EXEC_NOT_FOUND;
if (hook_command_run_exec (buffer, string) == WEECHAT_RC_OK_EAT)
- return 1;
+ return HOOK_COMMAND_EXEC_OK;
argv = string_split (string, " ", 0, 0, &argc);
if (argc == 0)
{
string_free_split (argv);
- return -1;
+ return HOOK_COMMAND_EXEC_NOT_FOUND;
}
argv_eol = string_split (string, " ", 1, 0, NULL);
ptr_command_name = utf8_next_char (argv[0]);
+ length_command_name = strlen (ptr_command_name);
hook_exec_start ();
hook_plugin = NULL;
hook_other_plugin = NULL;
hook_other_plugin2 = NULL;
+ hook_incomplete_command = NULL;
count_other_plugin = 0;
+ allow_incomplete_commands = CONFIG_BOOLEAN(config_look_command_incomplete);
+ count_incomplete_commands = 0;
ptr_hook = weechat_hooks[HOOK_TYPE_COMMAND];
while (ptr_hook)
{
next_hook = ptr_hook->next_hook;
- if (!ptr_hook->deleted
- && (string_strcasecmp (ptr_command_name,
- HOOK_COMMAND(ptr_hook, command)) == 0))
+ if (!ptr_hook->deleted)
{
- if (ptr_hook->plugin == plugin)
- {
- if (!hook_plugin)
- hook_plugin = ptr_hook;
- }
- else
+ if (string_strcasecmp (ptr_command_name,
+ HOOK_COMMAND(ptr_hook, command)) == 0)
{
- if (any_plugin)
+ if (ptr_hook->plugin == plugin)
{
- if (!hook_other_plugin)
- hook_other_plugin = ptr_hook;
- else if (!hook_other_plugin2)
- hook_other_plugin2 = ptr_hook;
- count_other_plugin++;
+ if (!hook_plugin)
+ hook_plugin = ptr_hook;
}
+ else
+ {
+ if (any_plugin)
+ {
+ if (!hook_other_plugin)
+ hook_other_plugin = ptr_hook;
+ else if (!hook_other_plugin2)
+ hook_other_plugin2 = ptr_hook;
+ count_other_plugin++;
+ }
+ }
+ }
+ else if (allow_incomplete_commands
+ && (string_strncasecmp (ptr_command_name,
+ HOOK_COMMAND(ptr_hook, command),
+ length_command_name) == 0))
+ {
+ hook_incomplete_command = ptr_hook;
+ count_incomplete_commands++;
}
}
ptr_hook = next_hook;
}
- rc = -1;
+ rc = HOOK_COMMAND_EXEC_NOT_FOUND;
+ ptr_hook = NULL;
if (hook_plugin || hook_other_plugin)
{
@@ -735,7 +753,7 @@ hook_command_exec (struct t_gui_buffer *buffer, int any_plugin,
* command was found for other plugins with the same priority
* => we don't know which one to run!
*/
- rc = -2;
+ rc = HOOK_COMMAND_EXEC_AMBIGUOUS_PLUGINS;
}
else
{
@@ -758,24 +776,35 @@ hook_command_exec (struct t_gui_buffer *buffer, int any_plugin,
*/
ptr_hook = (hook_plugin) ? hook_plugin : hook_other_plugin;
}
+ }
+ }
+ else if (hook_incomplete_command)
+ {
+ if (count_incomplete_commands == 1)
+ ptr_hook = hook_incomplete_command;
+ else
+ rc = HOOK_COMMAND_EXEC_AMBIGUOUS_INCOMPLETE;
+ }
- if (ptr_hook->running >= HOOK_COMMAND_MAX_CALLS)
- {
- /* loop in execution of command => do NOT execute again */
- rc = -3;
- }
+ /* execute the command for the hook found */
+ if (ptr_hook)
+ {
+ if (ptr_hook->running >= HOOK_COMMAND_MAX_CALLS)
+ {
+ /* loop in execution of command => do NOT execute again */
+ rc = HOOK_COMMAND_EXEC_RUNNING;
+ }
+ else
+ {
+ /* execute the command! */
+ ptr_hook->running++;
+ rc = (int) (HOOK_COMMAND(ptr_hook, callback))
+ (ptr_hook->callback_data, buffer, argc, argv, argv_eol);
+ ptr_hook->running--;
+ if (rc == WEECHAT_RC_ERROR)
+ rc = HOOK_COMMAND_EXEC_ERROR;
else
- {
- /* execute the command! */
- ptr_hook->running++;
- rc = (int) (HOOK_COMMAND(ptr_hook, callback))
- (ptr_hook->callback_data, buffer, argc, argv, argv_eol);
- ptr_hook->running--;
- if (rc == WEECHAT_RC_ERROR)
- rc = 0;
- else
- rc = 1;
- }
+ rc = HOOK_COMMAND_EXEC_OK;
}
}