2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2013-01-24 20:11:49 -05:00
|
|
|
* autocomplete.c
|
2012-05-13 16:40:39 -04:00
|
|
|
*
|
2014-03-08 20:18:19 -05:00
|
|
|
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-05-13 16:40:39 -04:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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.
|
|
|
|
*
|
|
|
|
* Profanity 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 Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
#include <stdio.h>
|
2012-05-13 16:40:39 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2013-08-03 07:27:07 -04:00
|
|
|
#include "common.h"
|
2013-07-11 17:57:35 -04:00
|
|
|
#include "tools/autocomplete.h"
|
|
|
|
#include "tools/parser.h"
|
2012-05-13 16:40:39 -04:00
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
struct autocomplete_t {
|
2012-05-13 16:40:39 -04:00
|
|
|
GSList *items;
|
|
|
|
GSList *last_found;
|
|
|
|
gchar *search_str;
|
|
|
|
};
|
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
static gchar * _search_from(Autocomplete ac, GSList *curr);
|
2012-05-13 16:40:39 -04:00
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
Autocomplete
|
|
|
|
autocomplete_new(void)
|
2012-05-13 16:40:39 -04:00
|
|
|
{
|
2013-01-24 20:11:49 -05:00
|
|
|
Autocomplete new = malloc(sizeof(struct autocomplete_t));
|
2012-05-13 16:40:39 -04:00
|
|
|
new->items = NULL;
|
|
|
|
new->last_found = NULL;
|
|
|
|
new->search_str = NULL;
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_clear(Autocomplete ac)
|
2012-05-13 16:40:39 -04:00
|
|
|
{
|
2012-10-28 19:38:10 -04:00
|
|
|
g_slist_free_full(ac->items, free);
|
2012-05-13 16:40:39 -04:00
|
|
|
ac->items = NULL;
|
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(ac);
|
2012-05-13 16:40:39 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(Autocomplete ac)
|
2012-05-13 16:40:39 -04:00
|
|
|
{
|
|
|
|
ac->last_found = NULL;
|
2013-08-03 07:27:07 -04:00
|
|
|
FREE_SET_NULL(ac->search_str);
|
2012-05-13 16:40:39 -04:00
|
|
|
}
|
|
|
|
|
2013-01-10 19:17:18 -05:00
|
|
|
void
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_free(Autocomplete ac)
|
2013-01-10 19:17:18 -05:00
|
|
|
{
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_clear(ac);
|
2013-07-14 14:34:02 -04:00
|
|
|
free(ac);
|
2013-01-10 19:17:18 -05:00
|
|
|
}
|
|
|
|
|
2013-04-24 18:50:47 -04:00
|
|
|
gint
|
|
|
|
autocomplete_length(Autocomplete ac)
|
|
|
|
{
|
2013-05-05 19:33:33 -04:00
|
|
|
if (ac == NULL) {
|
|
|
|
return 0;
|
|
|
|
} else if (ac->items == NULL) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return g_slist_length(ac->items);
|
|
|
|
}
|
2013-04-24 18:50:47 -04:00
|
|
|
}
|
|
|
|
|
2013-12-09 18:51:13 -05:00
|
|
|
void
|
2013-08-25 19:43:59 -04:00
|
|
|
autocomplete_add(Autocomplete ac, const char *item)
|
2012-05-13 16:40:39 -04:00
|
|
|
{
|
2013-08-25 19:43:59 -04:00
|
|
|
char *item_cpy;
|
|
|
|
GSList *curr = g_slist_find_custom(ac->items, item, (GCompareFunc)strcmp);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2013-08-25 19:43:59 -04:00
|
|
|
// if item already exists
|
|
|
|
if (curr != NULL) {
|
2013-12-09 18:51:13 -05:00
|
|
|
return;
|
2012-05-13 16:40:39 -04:00
|
|
|
}
|
2013-08-25 19:43:59 -04:00
|
|
|
|
|
|
|
item_cpy = strdup(item);
|
|
|
|
ac->items = g_slist_insert_sorted(ac->items, item_cpy, (GCompareFunc)strcmp);
|
2013-12-09 18:51:13 -05:00
|
|
|
return;
|
2012-05-13 16:40:39 -04:00
|
|
|
}
|
|
|
|
|
2013-12-09 18:51:13 -05:00
|
|
|
void
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_remove(Autocomplete ac, const char * const item)
|
2012-05-13 16:40:39 -04:00
|
|
|
{
|
2013-08-25 20:29:04 -04:00
|
|
|
GSList *curr = g_slist_find_custom(ac->items, item, (GCompareFunc)strcmp);
|
2012-05-13 16:40:39 -04:00
|
|
|
|
2013-08-25 20:29:04 -04:00
|
|
|
if (!curr) {
|
2013-12-09 18:51:13 -05:00
|
|
|
return;
|
2013-08-25 20:29:04 -04:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2013-08-25 20:29:04 -04:00
|
|
|
// reset last found if it points to the item to be removed
|
|
|
|
if (ac->last_found == curr) {
|
|
|
|
ac->last_found = NULL;
|
|
|
|
}
|
2012-05-13 16:40:39 -04:00
|
|
|
|
2013-08-25 20:29:04 -04:00
|
|
|
free(curr->data);
|
|
|
|
ac->items = g_slist_delete_link(ac->items, curr);
|
2012-05-13 16:40:39 -04:00
|
|
|
|
2013-12-09 18:51:13 -05:00
|
|
|
return;
|
2012-05-13 16:40:39 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
GSList *
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_get_list(Autocomplete ac)
|
2012-05-13 16:40:39 -04:00
|
|
|
{
|
|
|
|
GSList *copy = NULL;
|
|
|
|
GSList *curr = ac->items;
|
|
|
|
|
|
|
|
while(curr) {
|
2012-10-28 19:38:10 -04:00
|
|
|
copy = g_slist_append(copy, strdup(curr->data));
|
2012-05-13 16:40:39 -04:00
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2014-01-24 20:39:12 -05:00
|
|
|
gboolean
|
2014-02-01 20:05:52 -05:00
|
|
|
autocomplete_contains(Autocomplete ac, const char *value)
|
2014-01-24 20:39:12 -05:00
|
|
|
{
|
|
|
|
GSList *curr = ac->items;
|
|
|
|
|
|
|
|
while(curr) {
|
|
|
|
if (strcmp(curr->data, value) == 0) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
gchar *
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_complete(Autocomplete ac, gchar *search_str)
|
2012-05-13 16:40:39 -04:00
|
|
|
{
|
|
|
|
gchar *found = NULL;
|
|
|
|
|
|
|
|
// no items to search
|
|
|
|
if (!ac->items)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// first search attempt
|
|
|
|
if (ac->last_found == NULL) {
|
2012-10-21 15:02:20 -04:00
|
|
|
ac->search_str =
|
2012-05-13 16:40:39 -04:00
|
|
|
(gchar *) malloc((strlen(search_str) + 1) * sizeof(gchar));
|
|
|
|
strcpy(ac->search_str, search_str);
|
|
|
|
|
2012-05-19 19:38:16 -04:00
|
|
|
found = _search_from(ac, ac->items);
|
2012-05-13 16:40:39 -04:00
|
|
|
return found;
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
// subsequent search attempt
|
2012-05-13 16:40:39 -04:00
|
|
|
} else {
|
|
|
|
// search from here+1 tp end
|
2012-05-19 19:38:16 -04:00
|
|
|
found = _search_from(ac, g_slist_next(ac->last_found));
|
2012-05-13 16:40:39 -04:00
|
|
|
if (found != NULL)
|
|
|
|
return found;
|
|
|
|
|
|
|
|
// search from beginning
|
2012-05-19 19:38:16 -04:00
|
|
|
found = _search_from(ac, ac->items);
|
2012-05-13 16:40:39 -04:00
|
|
|
if (found != NULL)
|
|
|
|
return found;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-05-13 16:40:39 -04:00
|
|
|
// we found nothing, reset search
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(ac);
|
2012-05-13 16:40:39 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
char *
|
|
|
|
autocomplete_param_with_func(char *input, int *size, char *command,
|
|
|
|
autocomplete_func func)
|
|
|
|
{
|
|
|
|
char *found = NULL;
|
|
|
|
char *auto_msg = NULL;
|
|
|
|
char inp_cpy[*size];
|
|
|
|
int i;
|
2013-09-22 18:11:28 -04:00
|
|
|
char command_cpy[strlen(command) + 2];
|
2013-06-02 14:56:35 -04:00
|
|
|
sprintf(command_cpy, "%s ", command);
|
|
|
|
int len = strlen(command_cpy);
|
|
|
|
if ((strncmp(input, command_cpy, len) == 0) && (*size > len)) {
|
|
|
|
for(i = len; i < *size; i++) {
|
|
|
|
inp_cpy[i-len] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[(*size) - len] = '\0';
|
|
|
|
found = func(inp_cpy);
|
|
|
|
if (found != NULL) {
|
2013-08-03 06:17:50 -04:00
|
|
|
auto_msg = (char *) malloc(len + strlen(found) + 1);
|
2013-06-02 14:56:35 -04:00
|
|
|
strcpy(auto_msg, command_cpy);
|
|
|
|
strcat(auto_msg, found);
|
|
|
|
free(found);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return auto_msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
autocomplete_param_with_ac(char *input, int *size, char *command,
|
|
|
|
Autocomplete ac)
|
|
|
|
{
|
|
|
|
char *found = NULL;
|
|
|
|
char *auto_msg = NULL;
|
|
|
|
char inp_cpy[*size];
|
|
|
|
int i;
|
|
|
|
char *command_cpy = malloc(strlen(command) + 2);
|
|
|
|
sprintf(command_cpy, "%s ", command);
|
|
|
|
int len = strlen(command_cpy);
|
|
|
|
if ((strncmp(input, command_cpy, len) == 0) && (*size > len)) {
|
|
|
|
for(i = len; i < *size; i++) {
|
|
|
|
inp_cpy[i-len] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[(*size) - len] = '\0';
|
|
|
|
found = autocomplete_complete(ac, inp_cpy);
|
|
|
|
if (found != NULL) {
|
2013-08-03 06:17:50 -04:00
|
|
|
auto_msg = (char *) malloc(len + strlen(found) + 1);
|
2013-06-02 14:56:35 -04:00
|
|
|
strcpy(auto_msg, command_cpy);
|
|
|
|
strcat(auto_msg, found);
|
|
|
|
free(found);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(command_cpy);
|
|
|
|
|
|
|
|
return auto_msg;
|
|
|
|
}
|
|
|
|
|
2013-06-22 20:23:44 -04:00
|
|
|
char *
|
|
|
|
autocomplete_param_no_with_func(char *input, int *size, char *command,
|
|
|
|
int arg_number, autocomplete_func func)
|
|
|
|
{
|
|
|
|
char *result = NULL;
|
|
|
|
if (strncmp(input, command, strlen(command)) == 0 && (*size > strlen(command))) {
|
|
|
|
int i = 0;
|
|
|
|
char *found = NULL;
|
|
|
|
GString *result_str = NULL;
|
|
|
|
|
2013-07-09 17:34:55 -04:00
|
|
|
// copy and null terminate input
|
2013-06-22 20:23:44 -04:00
|
|
|
gchar inp_cpy[*size];
|
|
|
|
for (i = 0; i < *size; i++) {
|
|
|
|
inp_cpy[i] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[i] = '\0';
|
|
|
|
g_strstrip(inp_cpy);
|
|
|
|
|
2013-07-09 17:34:55 -04:00
|
|
|
// count tokens properly
|
2013-07-11 17:57:35 -04:00
|
|
|
int num_tokens = count_tokens(inp_cpy);
|
2013-06-22 20:23:44 -04:00
|
|
|
|
2013-07-09 17:34:55 -04:00
|
|
|
// if correct number of tokens, then candidate for autocompletion of last param
|
|
|
|
if (num_tokens == arg_number) {
|
2013-07-11 17:57:35 -04:00
|
|
|
gchar *start_str = get_start(inp_cpy, arg_number);
|
2013-07-09 17:34:55 -04:00
|
|
|
gchar *comp_str = g_strdup(&inp_cpy[strlen(start_str)]);
|
2013-06-22 20:23:44 -04:00
|
|
|
|
|
|
|
// autocomplete param
|
|
|
|
if (comp_str != NULL) {
|
|
|
|
found = func(comp_str);
|
|
|
|
if (found != NULL) {
|
|
|
|
result_str = g_string_new("");
|
2013-07-09 17:34:55 -04:00
|
|
|
g_string_append(result_str, start_str);
|
2013-06-22 20:23:44 -04:00
|
|
|
g_string_append(result_str, found);
|
|
|
|
result = result_str->str;
|
|
|
|
g_string_free(result_str, FALSE);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gchar *
|
2013-01-24 20:11:49 -05:00
|
|
|
_search_from(Autocomplete ac, GSList *curr)
|
2012-05-13 16:40:39 -04:00
|
|
|
{
|
|
|
|
while(curr) {
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-05-13 16:40:39 -04:00
|
|
|
// match found
|
2013-01-14 17:09:31 -05:00
|
|
|
if (strncmp(curr->data, ac->search_str, strlen(ac->search_str)) == 0) {
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-05-13 16:40:39 -04:00
|
|
|
// set pointer to last found
|
|
|
|
ac->last_found = curr;
|
|
|
|
|
2013-01-14 17:16:12 -05:00
|
|
|
// if contains space, quote before returning
|
|
|
|
if (g_strrstr(curr->data, " ")) {
|
|
|
|
GString *quoted = g_string_new("\"");
|
|
|
|
g_string_append(quoted, curr->data);
|
|
|
|
g_string_append(quoted, "\"");
|
|
|
|
|
|
|
|
gchar *result = quoted->str;
|
|
|
|
g_string_free(quoted, FALSE);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
// otherwise just return the string
|
|
|
|
} else {
|
|
|
|
return strdup(curr->data);
|
|
|
|
}
|
2012-05-13 16:40:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|