forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.c
438 lines (401 loc) · 10.8 KB
/
help.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
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
/**
* @file
* Generate the help-page and GUI display it
*
* @authors
* Copyright (C) 1996-2000,2009 Michael R. Elkins <[email protected]>
*
* @copyright
* 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 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/>.
*/
/**
* @page neo_help Generate the help-page and GUI display it
*
* Generate and help-page and GUI display it
*/
#include "config.h"
#include <stddef.h>
#include <limits.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <wchar.h>
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "gui/lib.h"
#include "menu/lib.h"
#include "pager/lib.h"
#include "functions.h"
#include "keymap.h"
#include "muttlib.h"
#include "opcodes.h"
#include "protos.h" // IWYU pragma: keep
/**
* help_lookup_function - Find a keybinding for an operation
* @param op Operation, e.g. OP_DELETE
* @param menu Current Menu, e.g. #MENU_PAGER
* @retval ptr Key binding
* @retval NULL No key binding found
*/
static const struct MenuFuncOp *help_lookup_function(int op, enum MenuType menu)
{
if (menu != MENU_PAGER && (menu != MENU_GENERIC))
{
/* first look in the generic map for the function */
for (int i = 0; OpGeneric[i].name; i++)
if (OpGeneric[i].op == op)
return &OpGeneric[i];
}
const struct MenuFuncOp *funcs = km_get_table(menu);
if (funcs)
{
for (int i = 0; funcs[i].name; i++)
if (funcs[i].op == op)
return &funcs[i];
}
return NULL;
}
/**
* print_macro - Print a macro string to a file
* @param[in] fp File to write to
* @param[in] maxwidth Maximum width in screen columns
* @param[out] macro Macro string
* @retval num Number of screen columns used
*
* The `macro` pointer is move past the string we've printed
*/
static int print_macro(FILE *fp, int maxwidth, const char **macro)
{
int n = maxwidth;
wchar_t wc = 0;
size_t k;
size_t len = mutt_str_len(*macro);
mbstate_t mbstate1 = { 0 };
mbstate_t mbstate2 = { 0 };
for (; len && (k = mbrtowc(&wc, *macro, len, &mbstate1)); *macro += k, len -= k)
{
if ((k == (size_t) (-1)) || (k == (size_t) (-2)))
{
if (k == (size_t) (-1))
memset(&mbstate1, 0, sizeof(mbstate1));
k = (k == (size_t) (-1)) ? 1 : len;
wc = ReplacementChar;
}
/* glibc-2.1.3's wcwidth() returns 1 for unprintable chars! */
const int w = wcwidth(wc);
if (IsWPrint(wc) && (w >= 0))
{
if (w > n)
break;
n -= w;
{
char buf[MB_LEN_MAX * 2];
size_t n1, n2;
if (((n1 = wcrtomb(buf, wc, &mbstate2)) != (size_t) (-1)) &&
((n2 = wcrtomb(buf + n1, 0, &mbstate2)) != (size_t) (-1)))
{
fputs(buf, fp);
}
}
}
else if ((wc < 0x20) || (wc == 0x7f))
{
if (n < 2)
break;
n -= 2;
if (wc == '\033') // Escape
fprintf(fp, "\\e");
else if (wc == '\n')
fprintf(fp, "\\n");
else if (wc == '\r')
fprintf(fp, "\\r");
else if (wc == '\t')
fprintf(fp, "\\t");
else
fprintf(fp, "^%c", (char) ((wc + '@') & 0x7f));
}
else
{
if (n < 1)
break;
n -= 1;
fprintf(fp, "?");
}
}
return maxwidth - n;
}
/**
* get_wrapped_width - Wrap a string at a sensible place
* @param t String to wrap
* @param wid Maximum width
* @retval num Break after this many characters
*
* If the string's too long, look for some whitespace to break at.
*/
static int get_wrapped_width(const char *t, size_t wid)
{
wchar_t wc = 0;
size_t k;
size_t m, n;
size_t len = mutt_str_len(t);
const char *s = t;
mbstate_t mbstate = { 0 };
for (m = wid, n = 0; len && (k = mbrtowc(&wc, s, len, &mbstate)) && (n <= wid);
s += k, len -= k)
{
if (*s == ' ')
m = n;
if ((k == (size_t) (-1)) || (k == (size_t) (-2)))
{
if (k == (size_t) (-1))
memset(&mbstate, 0, sizeof(mbstate));
k = (k == (size_t) (-1)) ? 1 : len;
wc = ReplacementChar;
}
if (!IsWPrint(wc))
wc = '?';
n += wcwidth(wc);
}
if (n > wid)
n = m;
else
n = wid;
return n;
}
/**
* pad - Write some padding to a file
* @param fp File to write to
* @param col Current screen column
* @param i Screen column to pad until
* @retval num
* - `i` - Padding was added
* - `col` - Content was already wider than col
*/
static int pad(FILE *fp, int col, int i)
{
if (col < i)
{
char fmt[32] = { 0 };
snprintf(fmt, sizeof(fmt), "%%-%ds", i - col);
fprintf(fp, fmt, "");
return i;
}
fputc(' ', fp);
return col + 1;
}
/**
* format_line - Write a formatted line to a file
* @param fp File to write to
* @param ismacro Layout mode, see below
* @param t1 Text part 1
* @param t2 Text part 2
* @param t3 Text part 3
* @param wraplen Width to wrap to
*
* Assemble the three columns of text.
*
* `ismacro` can be:
* * 1 : Macro with a description
* * 0 : Non-macro
* * -1 : Macro with no description
*/
static void format_line(FILE *fp, int ismacro, const char *t1, const char *t2,
const char *t3, int wraplen)
{
int col;
int col_b;
fputs(t1, fp);
/* don't try to press string into one line with less than 40 characters. */
bool split = (wraplen < 40);
if (split)
{
col = 0;
col_b = 1024;
fputc('\n', fp);
}
else
{
const int col_a = (wraplen > 83) ? (wraplen - 32) >> 2 : 12;
col_b = (wraplen > 49) ? (wraplen - 10) >> 1 : 19;
col = pad(fp, mutt_strwidth(t1), col_a);
}
const char *const c_pager = cs_subset_string(NeoMutt->sub, "pager");
if (ismacro > 0)
{
if (!c_pager || mutt_str_equal(c_pager, "builtin"))
fputs("_\010", fp); // Ctrl-H (backspace)
fputs("M ", fp);
col += 2;
if (!split)
{
col += print_macro(fp, col_b - col - 4, &t2);
if (mutt_strwidth(t2) > col_b - col)
t2 = "...";
}
}
col += print_macro(fp, col_b - col - 1, &t2);
if (split)
fputc('\n', fp);
else
col = pad(fp, col, col_b);
if (split)
{
print_macro(fp, 1024, &t3);
fputc('\n', fp);
}
else
{
while (*t3)
{
int n = wraplen - col;
if (ismacro >= 0)
{
SKIPWS(t3);
n = get_wrapped_width(t3, n);
}
n = print_macro(fp, n, &t3);
if (*t3)
{
if (mutt_str_equal(c_pager, "builtin"))
{
n += col - wraplen;
const bool c_markers = cs_subset_bool(NeoMutt->sub, "markers");
if (c_markers)
n++;
}
else
{
fputc('\n', fp);
n = 0;
}
col = pad(fp, n, col_b);
}
}
}
fputc('\n', fp);
}
/**
* dump_menu - Write all the key bindings to a file
* @param fp File to write to
* @param menu Current Menu, e.g. #MENU_PAGER
* @param wraplen Width to wrap to
*/
static void dump_menu(FILE *fp, enum MenuType menu, int wraplen)
{
struct Keymap *map = NULL;
char buf[128] = { 0 };
STAILQ_FOREACH(map, &Keymaps[menu], entries)
{
if (map->op != OP_NULL)
{
km_expand_key(buf, sizeof(buf), map);
if (map->op == OP_MACRO)
{
if (map->desc)
format_line(fp, 1, buf, map->macro, map->desc, wraplen);
else
format_line(fp, -1, buf, "macro", map->macro, wraplen);
}
else
{
const struct MenuFuncOp *funcs = help_lookup_function(map->op, menu);
format_line(fp, 0, buf, funcs ? funcs->name : "UNKNOWN",
funcs ? _(opcodes_get_description(funcs->op)) :
_("ERROR: please report this bug"),
wraplen);
}
}
}
}
/**
* is_bound - Does a function have a keybinding?
* @param km_list Keymap to examine
* @param op Operation, e.g. OP_DELETE
* @retval true A key is bound to that operation
*/
static bool is_bound(struct KeymapList *km_list, int op)
{
struct Keymap *map = NULL;
STAILQ_FOREACH(map, km_list, entries)
{
if (map->op == op)
return true;
}
return false;
}
/**
* dump_unbound - Write out all the operations with no key bindings
* @param fp File to write to
* @param funcs All the bindings for the current menu
* @param km_list First key map to consider
* @param aux Second key map to consider
* @param wraplen Width to wrap to
*/
static void dump_unbound(FILE *fp, const struct MenuFuncOp *funcs,
struct KeymapList *km_list, struct KeymapList *aux, int wraplen)
{
for (int i = 0; funcs[i].name; i++)
{
if (!is_bound(km_list, funcs[i].op) && (!aux || !is_bound(aux, funcs[i].op)))
format_line(fp, 0, funcs[i].name, "", _(opcodes_get_description(funcs[i].op)), wraplen);
}
}
/**
* mutt_help - Display the help menu
* @param menu Current Menu
*/
void mutt_help(enum MenuType menu)
{
char banner[128] = { 0 };
FILE *fp = NULL;
/* We don't use the buffer pool because of the extended lifetime of t */
struct Buffer t = mutt_buffer_make(PATH_MAX);
mutt_buffer_mktemp(&t);
const struct MenuFuncOp *funcs = km_get_table(menu);
const char *desc = mutt_map_get_name(menu, MenuNames);
if (!desc)
desc = _("<UNKNOWN>");
struct PagerData pdata = { 0 };
struct PagerView pview = { &pdata };
pview.mode = PAGER_MODE_HELP;
pview.flags = MUTT_PAGER_RETWINCH | MUTT_PAGER_MARKER | MUTT_PAGER_NSKIP | MUTT_PAGER_NOWRAP;
do
{
fp = mutt_file_fopen(mutt_buffer_string(&t), "w");
if (!fp)
{
mutt_perror(mutt_buffer_string(&t));
goto cleanup;
}
const int wraplen = AllDialogsWindow->state.cols;
dump_menu(fp, menu, wraplen);
if ((menu != MENU_EDITOR) && (menu != MENU_PAGER) && (menu != MENU_GENERIC))
{
fprintf(fp, "\n%s\n\n", _("Generic bindings:"));
dump_menu(fp, MENU_GENERIC, wraplen);
}
fprintf(fp, "\n%s\n\n", _("Unbound functions:"));
if (funcs)
dump_unbound(fp, funcs, &Keymaps[menu], NULL, wraplen);
if ((menu != MENU_EDITOR) && (menu != MENU_PAGER) && (menu != MENU_GENERIC))
dump_unbound(fp, OpGeneric, &Keymaps[MENU_GENERIC], &Keymaps[menu], wraplen);
mutt_file_fclose(&fp);
snprintf(banner, sizeof(banner), _("Help for %s"), desc);
pdata.fname = mutt_buffer_string(&t);
pview.banner = banner;
} while (mutt_do_pager(&pview, NULL) == OP_REFORMAT_WINCH);
cleanup:
mutt_buffer_dealloc(&t);
}