1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:27:45 +02:00
toxic/src/execute.c

163 lines
5.0 KiB
C
Raw Normal View History

2014-02-25 08:28:24 +01:00
/* execute.c
*
*
* Copyright (C) 2014 Toxic All Rights Reserved.
*
* This file is part of Toxic.
*
* Toxic is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Toxic is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Toxic. If not, see <http://www.gnu.org/licenses/>.
*
2013-11-10 03:43:56 +01:00
*/
#include <stdlib.h>
#include <string.h>
2014-03-08 16:36:42 +01:00
#include <assert.h>
2013-11-10 03:43:56 +01:00
#include "toxic.h"
#include "windows.h"
2013-11-10 03:43:56 +01:00
#include "execute.h"
2013-11-10 19:23:47 +01:00
#include "chat_commands.h"
#include "global_commands.h"
2014-03-25 08:17:22 +01:00
#include "line_info.h"
2014-06-22 03:41:38 +02:00
#include "misc_tools.h"
2013-11-10 19:23:47 +01:00
struct cmd_func {
const char *name;
void (*func)(WINDOW *w, ToxWindow *, Tox *m, int argc, char (*argv)[MAX_STR_SIZE]);
2013-11-10 19:23:47 +01:00
};
static struct cmd_func global_commands[] = {
2014-03-08 01:12:51 +01:00
{ "/accept", cmd_accept },
{ "/add", cmd_add },
{ "/clear", cmd_clear },
{ "/connect", cmd_connect },
{ "/exit", cmd_quit },
{ "/groupchat", cmd_groupchat },
{ "/help", cmd_prompt_help },
{ "/log", cmd_log },
{ "/myid", cmd_myid },
{ "/nick", cmd_nick },
{ "/note", cmd_note },
{ "/q", cmd_quit },
{ "/quit", cmd_quit },
{ "/status", cmd_status },
2014-03-08 01:12:51 +01:00
#ifdef _SUPPORT_AUDIO
{ "/lsdev", cmd_list_devices },
{ "/sdev", cmd_change_device },
#endif /* _SUPPORT_AUDIO */
2013-11-10 19:23:47 +01:00
};
static struct cmd_func chat_commands[] = {
{ "/invite", cmd_groupinvite },
{ "/join", cmd_join_group },
{ "/savefile", cmd_savefile },
{ "/sendfile", cmd_sendfile },
2014-03-07 03:14:04 +01:00
#ifdef _SUPPORT_AUDIO
{ "/call", cmd_call },
{ "/cancel", cmd_cancel },
{ "/answer", cmd_answer },
2014-03-23 22:54:56 +01:00
{ "/reject", cmd_reject },
2014-03-07 03:14:04 +01:00
{ "/hangup", cmd_hangup },
{ "/sdev", cmd_ccur_device },
{ "/mute", cmd_mute },
{ "/sense", cmd_sense },
2014-03-07 03:14:04 +01:00
#endif /* _SUPPORT_AUDIO */
2013-11-10 19:23:47 +01:00
};
2013-11-10 03:43:56 +01:00
/* Parses input command and puts args into arg array.
2013-11-10 04:08:25 +01:00
Returns number of arguments on success, -1 on failure. */
2014-03-25 08:17:22 +01:00
static int parse_command(WINDOW *w, ToxWindow *self, char *cmd, char (*args)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
int num_args = 0;
bool cmd_end = false; /* flags when we get to the end of cmd */
char *end; /* points to the end of the current arg */
2013-11-10 03:43:56 +01:00
2013-11-10 04:08:25 +01:00
/* characters wrapped in double quotes count as one arg */
2013-11-10 03:43:56 +01:00
while (!cmd_end && num_args < MAX_NUM_ARGS) {
if (*cmd == '\"') {
end = strchr(cmd + 1, '\"');
2013-11-10 03:43:56 +01:00
if (end++ == NULL) { /* Increment past the end quote */
char *errmsg = "Invalid argument. Did you forget a closing \"?";
2014-03-25 08:17:22 +01:00
line_info_add(self, NULL, NULL, NULL, errmsg, SYS_MSG, 0, 0);
2013-11-10 04:08:25 +01:00
return -1;
2013-11-10 03:43:56 +01:00
}
cmd_end = *end == '\0';
} else {
end = strchr(cmd, ' ');
cmd_end = end == NULL;
}
if (!cmd_end)
*end++ = '\0'; /* mark end of current argument */
/* Copy from start of current arg to where we just inserted the null byte */
strcpy(args[num_args++], cmd);
cmd = end;
}
return num_args;
}
2013-11-10 19:23:47 +01:00
/* Matches command to respective function. Returns 0 on match, 1 on no match */
static int do_command(WINDOW *w, ToxWindow *self, Tox *m, int num_args, int num_cmds,
2013-11-11 05:17:46 +01:00
struct cmd_func *commands, char (*args)[MAX_STR_SIZE])
2013-11-10 19:23:47 +01:00
{
int i;
for (i = 0; i < num_cmds; ++i) {
if (strcmp(args[0], commands[i].name) == 0) {
(commands[i].func)(w, self, m, num_args - 1, args);
2013-11-10 19:23:47 +01:00
return 0;
}
}
return 1;
}
void execute(WINDOW *w, ToxWindow *self, Tox *m, char *cmd, int mode)
2013-11-10 03:43:56 +01:00
{
if (string_is_empty(cmd))
return;
char args[MAX_NUM_ARGS][MAX_STR_SIZE];
2014-03-25 08:17:22 +01:00
int num_args = parse_command(w, self, cmd, args);
2013-11-10 03:43:56 +01:00
2013-11-10 04:08:25 +01:00
if (num_args == -1)
return;
/* Try to match input command to command functions. If non-global command mode is specified,
try specified mode's commands first, then upon failure try global commands.
Note: Global commands must come last in case of duplicate command names */
2013-11-12 07:50:04 +01:00
switch (mode) {
case CHAT_COMMAND_MODE:
if (do_command(w, self, m, num_args, CHAT_NUM_COMMANDS, chat_commands, args) == 0)
return;
break;
2013-11-10 03:43:56 +01:00
case GROUPCHAT_COMMAND_MODE:
break;
2013-11-10 03:43:56 +01:00
}
if (do_command(w, self, m, num_args, GLOBAL_NUM_COMMANDS, global_commands, args) == 0)
2013-11-10 19:23:47 +01:00
return;
line_info_add(self, NULL, NULL, NULL, "Invalid command.", SYS_MSG, 0, 0);
2013-11-10 03:43:56 +01:00
}