util.c
6.55 KB
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2000 Free Software Foundation, Inc.
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 2, 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, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "mail.h"
/*
* expands a standard message list into an array of numbers
* argc is the number of elements being passed in
* argv is the array of strings to parse
* list will be populated with message numbers
* returns the number of items in list
*/
int
util_expand_msglist (const int argc, char **argv, int **list)
{
int i = 0, lc = 0;
int undelete = 0;
int hyphen = 0;
if (util_command_get (argv[0]) == util_command_get ("undelete"))
undelete = 1;
*list = malloc (argc * sizeof (int));
for (i = 1; i < argc; i++)
{
if (!strcmp (argv[i], "+"))
{
*list[lc++] = i; /* FIXME: next [un]deleted message */
}
else if (!strcmp (argv[i], "-"))
{
hyphen = 1; /* FIXME: previous [un]deleted message */
}
else if (!strcmp (argv[i], "."))
{
*list[lc++] = realcursor;
}
else if (!strcmp (argv[i], "^"))
{
*list[lc++] = i; /* FIXME: first [un]deleted message */
}
else if (!strcmp (argv[i], "$"))
{
*list[lc++] = i; /* FIXME: the last message */
}
else if (!strcmp (argv[i], "*"))
{
free (*list);
*list = malloc (total * sizeof(int));
for (i = 0; i < total; i++)
*list[i] = i + 1;
return total;
}
else if (argv[i][0] == '/')
{
*list[lc++] = i; /* FIXME: all messages with pattern following / in
the subject line, case insensitive */
}
else if (argv[i][0] == ':')
{
*list[lc++] = i; /* FIXME: all messages of type argv[i][1] */
}
else if (isalpha(argv[i][0]))
{
*list[lc++] = i; /* FIXME: all messages from argv[i] */
}
else
{
int j;
int len = strlen (argv[i]);
for (j = 0; j < len; j++)
if (argv[i][j] == '-')
{
hyphen = 1;
break;
}
if (hyphen)
{
if (j != len) /* One argument "x-y". */
{
int x, y;
char *arg = strdup (argv[i]);
arg[j] = '\0';
x = atoi (arg);
y = atoi (&(arg[j + 1]));
/* In this case, we also have to realloc() the list. */
*list = realloc (*list, (argc + 2) * sizeof (int));
for (; x <= y; x++, lc++)
*list[lc] = x;
free (arg);
}
else if (i == 3) /* 3 arguments "x" "-" "y". */
{
int x, y;
x = *list[lc - 1];
y = atoi (argv[i]);
for (; x <= y; x++, lc++)
*list[lc] = x;
}
else /* Badly form. */
*list[lc++] = atoi (argv[i]);
hyphen = 0;
}
else
*list[lc++] = atoi(argv[i]);
}
}
return lc;
}
/*
* expands command into its command and arguments, then runs command
* cmd is the command to parse and run
* returns exit status of the command
*/
int
util_do_command (const char *cmd)
{
int argc = 0;
char **argv = NULL;
int status = 0;
Function *command;
if (cmd[0] == '#')
return 0;
if (cmd)
{
if (argcv_get (cmd, &argc, &argv) != 0)
return argcv_free (argc, argv);
command = util_command_get (argv[0]);
}
else
command = util_command_get ("quit");
if (command != NULL)
status = command (argc, argv);
else
{
printf ("Unknown command: %s\n", argv[0]);
status = 1;
}
argcv_free (argc, argv);
return status;
}
/*
* runs a function repeatedly on a msglist
* func is the function to run
* argc is the number of arguments inculding the command and msglist
* argv is the list of strings containing the command and msglist
*/
int
util_msglist_command (int (*func)(int, char**), int argc, char **argv)
{
int i;
int *list = NULL;
int status = 0;
int number = util_expand_msglist (argc, argv, &list);
realcursor = cursor;
for (i = 0; i < number; i++)
{
cursor = list[i];
if (func (1, argv) != 0)
status = 1;
}
free (list);
cursor = realcursor;
return status;
}
/*
* returns the function to run for command
*/
Function *
util_command_get (char *cmd)
{
struct mail_command_entry entry = util_find_entry (cmd);
return entry.func;
}
/*
* returns the mail_command_entry structure for the command matching cmd
*/
struct mail_command_entry
util_find_entry (char *cmd)
{
int i = 0, ll = 0, sl = 0;
int len = strlen (cmd);
while (mail_command_table[i].shortname != 0)
{
sl = strlen (mail_command_table[i].shortname);
ll = strlen (mail_command_table[i].longname);
if (sl > ll && !strncmp (mail_command_table[i].shortname, cmd, sl))
return mail_command_table[i];
else if (sl == len && !strcmp (mail_command_table[i].shortname, cmd))
return mail_command_table[i];
else if (sl < len && !strncmp (mail_command_table[i].longname, cmd, len))
return mail_command_table[i];
i++;
}
return mail_command_table[i];
}
/*
* readline tab completion
*/
char **
util_command_completion (char *cmd, int start, int end)
{
if (start == 0)
return completion_matches (cmd, util_command_generator);
return NULL;
}
/*
* more readline
*/
char *
util_command_generator (char *text, int state)
{
static int i, len;
char *name;
if (!state)
{
i = 0;
len = strlen (text);
}
while ((name = mail_command_table[i].longname))
{
if (strlen (mail_command_table[i].shortname) > strlen(name))
name = mail_command_table[i].shortname;
i++;
if (strncmp (name, text, len) == 0)
return (strdup(name));
}
return NULL;
}
/*
* removes whitespace from the beginning and end of a string
*/
char *
util_stripwhite (char *string)
{
register char *s, *t;
for (s = string; whitespace (*s); s++)
;
if (*s == 0)
return s;
t = s + strlen (s) - 1;
while (t > s && whitespace (*t))
t--;
*++t = '\0';
return s;
}