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 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
|
/*
* Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "mutt.h"
#include "mutt_menu.h"
#include "mutt_curses.h"
#include "keymap.h"
#include "mapping.h"
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "functions.h"
struct mapping_t Menus[] = {
{ "alias", MENU_ALIAS },
{ "attach", MENU_ATTACH },
{ "browser", MENU_FOLDER },
{ "compose", MENU_COMPOSE },
{ "editor", MENU_EDITOR },
{ "generic", MENU_GENERIC },
{ "index", MENU_MAIN },
{ "pager", MENU_PAGER },
{ NULL, 0 }
};
#define mutt_check_menu(s) mutt_getvaluebyname(s, Menus)
static struct mapping_t KeyNames[] = {
{ "pageup", KEY_PPAGE },
{ "pagedown", KEY_NPAGE },
{ "up", KEY_UP },
{ "down", KEY_DOWN },
{ "right", KEY_RIGHT },
{ "left", KEY_LEFT },
{ "delete", KEY_DC },
{ "backspace",KEY_BACKSPACE },
{ "insert", KEY_IC },
{ "home", KEY_HOME },
{ "end", KEY_END },
{ "enter", KEY_ENTER },
{ "return", M_ENTER_C },
{ NULL, 0 }
};
/* contains the last key the user pressed */
int LastKey;
struct keymap_t *Keymaps[MENU_MAX];
static struct keymap_t *allocKeys (int len, keycode_t *keys)
{
struct keymap_t *p;
p = safe_calloc (1, sizeof (struct keymap_t));
p->len = len;
p->keys = safe_malloc (len * sizeof (keycode_t));
memcpy (p->keys, keys, len * sizeof (keycode_t));
return (p);
}
static int parsekeys (char *s, keycode_t *d, int max)
{
int n, len = max;
while (*s && len)
{
if ((n = mutt_getvaluebyname (s, KeyNames)) != -1)
{
s += strlen (s);
*d = n;
}
else if (tolower (*s) == 'f' && isdigit (*(s + 1)))
{
n = 0;
for (s++ ; isdigit (*s) ; s++)
{
n *= 10;
n += *s - '0';
}
*d = KEY_F(n);
}
else
{
*d = *s;
s++;
}
d++;
len--;
}
return (max - len);
}
/* insert a key sequence into the specified map. the map is sorted by ASCII
* value (lowest to highest)
*/
void km_bindkey (char *s, int menu, int op, char *macro)
{
struct keymap_t *map, *tmp, *last = NULL, *next;
keycode_t buf[MAX_SEQ];
int len, pos = 0, lastpos = 0;
len = parsekeys (s, buf, MAX_SEQ);
map = allocKeys (len, buf);
map->op = op;
map->macro = safe_strdup (macro);
tmp = Keymaps[menu];
while (tmp)
{
if (pos >= len || pos >= tmp->len)
{
/* map and tmp match, but have different lengths, so overwrite */
do
{
len = tmp->eq;
next = tmp->next;
if (tmp->macro)
free (tmp->macro);
free (tmp->keys);
free (tmp);
tmp = next;
}
while (tmp && len >= pos);
map->eq = len;
break;
}
else if (buf[pos] == tmp->keys[pos])
pos++;
else if (buf[pos] < tmp->keys[pos])
{
/* found location to insert between last and tmp */
map->eq = pos;
break;
}
else /* buf[pos] > tmp->keys[pos] */
{
last = tmp;
lastpos = pos;
if (pos > tmp->eq)
pos = tmp->eq;
tmp = tmp->next;
}
}
map->next = tmp;
if (last)
{
last->next = map;
last->eq = lastpos;
}
else
Keymaps[menu] = map;
}
static void push_string (char *s)
{
char *p = s + strlen (s) - 1;
while (p >= s)
mutt_ungetch (*p--);
}
static int retry_generic (int menu, keycode_t *keys, int keyslen, int lastkey)
{
if (menu != MENU_EDITOR && menu != MENU_GENERIC && menu != MENU_PAGER)
{
if (lastkey)
mutt_ungetch (lastkey);
for (; keyslen; keyslen--)
mutt_ungetch (keys[keyslen - 1]);
return (km_dokey (MENU_GENERIC));
}
if (menu != MENU_EDITOR)
{
/* probably a good idea to flush input here so we can abort macros */
mutt_flushinp ();
}
return OP_NULL;
}
/* return values:
* >0 function to execute
* OP_NULL no function bound to key sequence
* -1 error occured while reading input
*/
int km_dokey (int menu)
{
struct keymap_t *map = Keymaps[menu];
int pos = 0;
int n = 0;
if (!map)
return (retry_generic (menu, NULL, 0, 0));
FOREVER
{
if ((LastKey = mutt_getch ()) == ERR)
return (-1);
while (LastKey > map->keys[pos])
{
if (pos > map->eq || !map->next)
return (retry_generic (menu, map->keys, pos, LastKey));
map = map->next;
}
if (LastKey != map->keys[pos])
return (retry_generic (menu, map->keys, pos, LastKey));
if (++pos == map->len)
{
if (map->op != OP_MACRO)
return (map->op);
if (n++ == 10)
{
mutt_flushinp ();
mutt_error ("Macro loop detected.");
return (-1);
}
push_string (map->macro);
map = Keymaps[menu];
pos = 0;
}
}
/* not reached */
}
static void create_bindings (struct binding_t *map, int menu)
{
int i;
for (i = 0 ; map[i].name ; i++)
if (map[i].seq)
km_bindkey (map[i].seq, menu, map[i].op, NULL);
}
char *km_keyname (int c)
{
static char buf[5];
switch (c)
{
case '\033':
return "ESC";
case ' ':
return "SPC";
case '\n':
case '\r':
return "RET";
case '\t':
return "TAB";
case KEY_UP:
return "up";
case KEY_DOWN:
return "down";
case KEY_LEFT:
return "left";
case KEY_RIGHT:
return "right";
case KEY_NPAGE:
return "pagedown";
case KEY_PPAGE:
return "pageup";
case KEY_BACKSPACE:
return "backspace";
case KEY_HOME:
return "home";
case KEY_END:
return "end";
case KEY_DC:
return "DEL";
case KEY_IC:
return "INS";
}
if (c < 256 && c > -128 && iscntrl ((unsigned char) c))
{
if (c < 0)
c += 256;
if (c < 128)
{
buf[0] = '^';
buf[1] = (c + '@') & 0x7f;
buf[2] = 0;
}
else
snprintf (buf, sizeof (buf), "\\%d%d%d", c >> 6, (c >> 3) & 7, c & 7);
}
else if (c >= KEY_F0 && c < KEY_F(256)) /* this maximum is just a guess */
sprintf (buf, "F%d", c - KEY_F0);
else if (IsPrint (c))
snprintf (buf, sizeof (buf), "%c", (unsigned char) c);
else
snprintf (buf, sizeof (buf), "\\x%hx", (unsigned short) c);
return (buf);
}
int km_expand_key (char *s, size_t len, struct keymap_t *map)
{
size_t l;
int p = 0;
if (!map)
return (0);
FOREVER
{
strfcpy (s, km_keyname (map->keys[p]), len);
len -= (1 + (l = strlen (s)));
if (++p >= map->len || !len)
return (1);
s += l;
*(s++) = ' ';
}
/* not reached */
}
struct keymap_t *km_find_func (int menu, int func)
{
struct keymap_t *map = Keymaps[menu];
for (; map; map = map->next)
if (map->op == func)
break;
return (map);
}
void km_init (void)
{
memset (Keymaps, 0, sizeof (struct keymap_t *) * MENU_MAX);
create_bindings (OpAttach, MENU_ATTACH);
create_bindings (OpBrowser, MENU_FOLDER);
create_bindings (OpCompose, MENU_COMPOSE);
create_bindings (OpMain, MENU_MAIN);
create_bindings (OpPager, MENU_PAGER);
create_bindings (OpPost, MENU_POST);
/* bindings for the line editor */
create_bindings (OpEditor, MENU_EDITOR);
km_bindkey ("up", MENU_EDITOR, OP_EDITOR_HISTORY_UP, NULL);
km_bindkey ("down", MENU_EDITOR, OP_EDITOR_HISTORY_DOWN, NULL);
km_bindkey ("left", MENU_EDITOR, OP_EDITOR_BACKWARD_CHAR, NULL);
km_bindkey ("right", MENU_EDITOR, OP_EDITOR_FORWARD_CHAR, NULL);
km_bindkey ("home", MENU_EDITOR, OP_EDITOR_BOL, NULL);
km_bindkey ("end", MENU_EDITOR, OP_EDITOR_EOL, NULL);
km_bindkey ("backspace", MENU_EDITOR, OP_EDITOR_BACKSPACE, NULL);
km_bindkey ("delete", MENU_EDITOR, OP_EDITOR_BACKSPACE, NULL);
km_bindkey ("\177", MENU_EDITOR, OP_EDITOR_BACKSPACE, NULL);
/* generic menu keymap */
create_bindings (OpGeneric, MENU_GENERIC);
km_bindkey ("home", MENU_GENERIC, OP_FIRST_ENTRY, NULL);
km_bindkey ("end", MENU_GENERIC, OP_LAST_ENTRY, NULL);
km_bindkey ("pagedown", MENU_GENERIC, OP_NEXT_PAGE, NULL);
km_bindkey ("pageup", MENU_GENERIC, OP_PREV_PAGE, NULL);
km_bindkey ("right", MENU_GENERIC, OP_NEXT_PAGE, NULL);
km_bindkey ("left", MENU_GENERIC, OP_PREV_PAGE, NULL);
km_bindkey ("up", MENU_GENERIC, OP_PREV_ENTRY, NULL);
km_bindkey ("down", MENU_GENERIC, OP_NEXT_ENTRY, NULL);
km_bindkey ("1", MENU_GENERIC, OP_JUMP, NULL);
km_bindkey ("2", MENU_GENERIC, OP_JUMP, NULL);
km_bindkey ("3", MENU_GENERIC, OP_JUMP, NULL);
km_bindkey ("4", MENU_GENERIC, OP_JUMP, NULL);
km_bindkey ("5", MENU_GENERIC, OP_JUMP, NULL);
km_bindkey ("6", MENU_GENERIC, OP_JUMP, NULL);
km_bindkey ("7", MENU_GENERIC, OP_JUMP, NULL);
km_bindkey ("8", MENU_GENERIC, OP_JUMP, NULL);
km_bindkey ("9", MENU_GENERIC, OP_JUMP, NULL);
/* Miscellaneous extra bindings */
km_bindkey (" ", MENU_MAIN, OP_DISPLAY_MESSAGE, NULL);
km_bindkey ("up", MENU_MAIN, OP_MAIN_PREV_UNDELETED, NULL);
km_bindkey ("down", MENU_MAIN, OP_MAIN_NEXT_UNDELETED, NULL);
km_bindkey ("J", MENU_MAIN, OP_NEXT_ENTRY, NULL);
km_bindkey ("K", MENU_MAIN, OP_PREV_ENTRY, NULL);
km_bindkey ("x", MENU_MAIN, OP_EXIT, NULL);
km_bindkey ("x", MENU_PAGER, OP_PAGER_EXIT, NULL);
km_bindkey ("q", MENU_PAGER, OP_PAGER_EXIT, NULL);
km_bindkey ("backspace", MENU_PAGER, OP_PREV_LINE, NULL);
km_bindkey ("pagedown", MENU_PAGER, OP_NEXT_PAGE, NULL);
km_bindkey ("pageup", MENU_PAGER, OP_PREV_PAGE, NULL);
km_bindkey ("up", MENU_PAGER, OP_MAIN_PREV_UNDELETED, NULL);
km_bindkey ("right", MENU_PAGER, OP_MAIN_NEXT_UNDELETED, NULL);
km_bindkey ("down", MENU_PAGER, OP_MAIN_NEXT_UNDELETED, NULL);
km_bindkey ("left", MENU_PAGER, OP_MAIN_PREV_UNDELETED, NULL);
km_bindkey ("home", MENU_PAGER, OP_PAGER_TOP, NULL);
km_bindkey ("end", MENU_PAGER, OP_PAGER_BOTTOM, NULL);
km_bindkey ("1", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("2", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("3", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("4", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("5", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("6", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("7", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("8", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("9", MENU_PAGER, OP_JUMP, NULL);
km_bindkey ("return", MENU_ALIAS, OP_TAG, NULL);
}
void km_error_key (int menu)
{
char buf[SHORT_STRING];
if (km_expand_key (buf, sizeof (buf), km_find_func (menu, OP_HELP)))
mutt_error ("Key is not bound. Press '%s' for help.", buf);
else
mutt_error ("Key is not bound. See the manual.");
}
int mutt_parse_push (const char *s, unsigned long data, char *err, size_t errlen)
{
char buf[SHORT_STRING];
char expn[SHORT_STRING];
s = mutt_extract_token (buf, sizeof (buf), s, expn, sizeof (expn), M_CONDENSE);
if (s)
{
strfcpy (err, "too many arguments", errlen);
return (-1);
}
push_string (buf);
return (0);
}
/* expects to see: <menu-string> <key-string> */
static const char *parse_keymap (int *menu,
char *key,
size_t keylen,
const char *s,
char *err,
size_t errlen)
{
char buf[SHORT_STRING];
char expn[SHORT_STRING];
/* menu name */
s = mutt_extract_token (buf, sizeof (buf), s, expn, sizeof (expn), 0);
if (s)
{
if ((*menu = mutt_check_menu (buf)) == -1)
{
snprintf (err, errlen, "%s: no such menu", s);
return (NULL);
}
/* key sequence */
key[0] = 0;
s = mutt_extract_token (key, keylen, s, expn, sizeof (expn), 0);
if (!key[0])
{
strfcpy (err, "null key sequence", errlen);
return (NULL);
}
if (s)
return s;
}
strfcpy (err, "too few arguments", errlen);
return (NULL);
}
static int
try_bind (char *key, int menu, char *func, struct binding_t *bindings)
{
int i;
for (i = 0; bindings[i].name; i++)
if (strcmp (func, bindings[i].name) == 0)
{
km_bindkey (key, menu, bindings[i].op, NULL);
return (0);
}
return (-1);
}
struct binding_t *km_get_table (int menu)
{
switch (menu)
{
case MENU_MAIN:
return OpMain;
case MENU_GENERIC:
return OpGeneric;
case MENU_COMPOSE:
return OpCompose;
case MENU_PAGER:
return OpPager;
case MENU_POST:
return OpPost;
case MENU_FOLDER:
return OpBrowser;
case MENU_ATTACH:
return OpAttach;
case MENU_EDITOR:
return OpEditor;
}
return NULL;
}
/* bind menu-name '<key_sequence>' function-name */
int mutt_parse_bind (const char *s, unsigned long data, char *err, size_t errlen)
{
struct binding_t *bindings = NULL;
char buf[SHORT_STRING];
char key[SHORT_STRING];
char expn[SHORT_STRING];
int menu;
if ((s = parse_keymap (&menu, key, sizeof (key), s, err, errlen)) == NULL)
return (-1);
/* function to execute */
s = mutt_extract_token (buf, sizeof (buf), s, expn, sizeof (expn), 0);
if (s)
{
strfcpy (err, "too many arguments", errlen);
return (-1);
}
if (strcasecmp ("noop", buf) == 0)
{
km_bindkey (key, menu, OP_NULL, NULL);
return 0;
}
if (menu != MENU_PAGER && menu != MENU_EDITOR && menu != MENU_GENERIC)
{
/* First check the "generic" list of commands. */
if (try_bind (key, menu, buf, OpGeneric) == 0)
return 0;
}
/* Now check the menu-specific list of commands (if they exist). */
bindings = km_get_table (menu);
if (bindings && try_bind (key, menu, buf, bindings) == 0)
return 0;
snprintf (err, errlen, "%s: no such function in map", buf);
return (-1);
}
/* macro <menu> <key> <macro> */
int
mutt_parse_macro (const char *s, unsigned long data, char *err, size_t errlen)
{
int menu;
char key[SHORT_STRING];
char buf[SHORT_STRING];
char expn[SHORT_STRING];
if ((s = parse_keymap (&menu, key, sizeof (key), s, err, errlen)) == NULL)
return (-1);
buf[0] = 0;
s = mutt_extract_token (buf, sizeof (buf), s, expn, sizeof (expn), M_CONDENSE);
/* make sure the macro sequence is not an empty string */
if (!buf[0])
{
strfcpy (err, "empty macro sequence", errlen);
return (-1);
}
if (s)
{
strfcpy (err, "too many arguments", errlen);
return (-1);
}
km_bindkey (key, menu, OP_MACRO, buf);
return 0;
}
|