forked from scanmem/scanmem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.c
222 lines (174 loc) · 5.84 KB
/
menu.c
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
Prompt and command completion.
Copyright (C) 2006,2007,2009 Tavis Ormandy <[email protected]>
Copyright (C) 2010,2011 Lu Wang <[email protected]>
Copyright (C) 2018 Sebastian Parschauer <[email protected]>
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 "list.h"
#include "getline.h"
#include "scanmem.h"
#include "commands.h"
#include "show_message.h"
/* sub-command generator for readline completion */
static char *subcommandgenerator(char *start, int state, list_t *list,
unsigned *index)
{
unsigned i;
element_t *np;
size_t len;
char *spos = strchr(start, ' ');
len = strlen(start);
if (spos)
len = spos - start;
/* reset generator if state == 0, otherwise continue from last time */
*index = (state && !spos) ? *index : 0;
np = list->head;
/* skip to the last node checked */
for (i = 0; np && i < *index; i++)
np = np->next;
/* traverse the completion list, checking for matches */
while (np) {
completion_t *compl = np->data;
np = np->next;
/* record progress */
(*index)++;
if (compl == NULL || compl->word == NULL)
continue;
/* check if we have a match */
if (strncmp(start, compl->word, len) == 0) {
if (!spos)
return strdup(compl->word);
if (!compl->list)
return NULL;
while (*spos == ' ')
spos++;
return subcommandgenerator(spos, state, compl->list, &compl->index);
}
}
return NULL;
}
static char *find_command(const char *start, int state, unsigned *index,
bool is_subcmd)
{
unsigned i;
size_t len;
element_t *np;
globals_t *vars = &sm_globals;
char *spos = strchr(start, ' ');
/* reset generator if state == 0, otherwise continue from last time */
*index = (state && !spos) ? *index : 0;
np = vars->commands ? vars->commands->head : NULL;
len = strlen(start);
if (spos)
len = spos - start;
/* 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(start, command->command, len) == 0) {
if (!spos)
return strdup(command->command);
if (!command->completions || is_subcmd)
return NULL;
while (*spos == ' ')
spos++;
if (strncmp(command->command, "help", sizeof("help") - 1) == 0)
return find_command(spos, state, &command->complidx, true);
return subcommandgenerator(spos, state, command->completions,
&command->complidx);
}
}
return NULL;
}
/* command generator for readline completion */
static char *commandgenerator(const char *text, int state)
{
char *start = rl_line_buffer;
static unsigned index = 0;
while (*start == ' ')
start++;
return find_command(start, state, &index, false);
}
/* 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;
/* complete everything */
return 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;
}
return true; /* exit immediately to not commit `__eof` to history */
}
if (strlen(*line)) {
break;
}
free(*line);
}
/* record this line to readline history */
add_history(*line);
return true;
}