1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/*
Prompt and command completion.
Copyright (C) 2006,2007,2009 Tavis Ormandy <taviso@sdf.lonestar.org>
Copyright (C) 2010,2011 Lu Wang <coolwanglu@gmail.com>
This file is part of scanmem.
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <string.h>
#include <stdbool.h>
#if HAVE_LIBREADLINE
#include <readline/readline.h>
#include <readline/history.h>
#else
#include "readline.h"
#endif
#include "menu.h"
#include "getline.h"
#include "scanmem.h"
#include "commands.h"
#include "show_message.h"
/* command generator for readline completion */
static char *commandgenerator(const char *text, int state)
{
static unsigned index = 0;
unsigned i;
size_t len;
element_t *np;
globals_t *vars = &sm_globals;
/* reset generator if state == 0, otherwise continue from last time */
index = state ? index : 0;
np = vars->commands ? vars->commands->head : NULL;
len = strlen(text);
/* skip to the last node checked */
for (i = 0; np && i < index; i++)
np = np->next;
/* traverse the commands list, checking for matches */
while (np) {
command_t *command = np->data;
np = np->next;
/* record progress */
index++;
/* if shortdoc is NULL, this is not supposed to be user visible */
if (command == NULL || command->command == NULL
|| command->shortdoc == NULL)
continue;
/* check if we have a match */
if (strncmp(text, command->command, len) == 0) {
return strdup(command->command);
}
}
return NULL;
}
/* custom completor program for readline */
static char **commandcompletion(const char *text, int start, int end)
{
(void) end;
/* never use default completer (filenames), even if I dont generate any matches */
rl_attempted_completion_over = 1;
/* only complete on the first word, the command */
return start ? NULL : rl_completion_matches(text, commandgenerator);
}
/*
* getcommand() reads in a command using readline and places a pointer to
* the read string into *line, which must be free'd by caller.
* returns true on success, or false on error.
*/
bool getcommand(globals_t *vars, char **line)
{
char prompt[64];
bool success = true;
assert(vars != NULL);
if (vars->matches) {
snprintf(prompt, sizeof(prompt), "%ld> ", vars->num_matches);
} else {
snprintf(prompt, sizeof(prompt), "> ");
}
rl_readline_name = "scanmem";
rl_attempted_completion_function = commandcompletion;
while (true) {
success = ((*line = readline(prompt)) != NULL);
if (!success) {
/* EOF */
if ((*line = strdup("__eof")) == NULL) {
show_error("sorry, there was a memory allocation error.\n");
return false;
}
}
if (strlen(*line)) {
break;
}
free(*line);
}
/* record this line to readline history */
add_history(*line);
return true;
}
|