home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / readline / funmap.c < prev    next >
C/C++ Source or Header  |  1994-02-24  |  8KB  |  279 lines

  1. /* funmap.c -- attach names to functions. */
  2.  
  3. /* Copyright (C) 1988, 1989, 1991, 1992 Free Software Foundation, Inc.
  4.  
  5.    This file is part of the GNU Readline Library, a library for
  6.    reading lines of text with interactive input and history editing.
  7.  
  8.    The GNU Readline Library is free software; you can redistribute it
  9.    and/or modify it under the terms of the GNU General Public License
  10.    as published by the Free Software Foundation; either version 1, or
  11.    (at your option) any later version.
  12.  
  13.    The GNU Readline Library is distributed in the hope that it will be
  14.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  15.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* #define STATIC_MALLOC */
  23. #if !defined (STATIC_MALLOC)
  24. extern char *xmalloc (), *xrealloc ();
  25. #else
  26. static char *xmalloc (), *xrealloc ();
  27. #endif /* STATIC_MALLOC */
  28.  
  29. #include "sysdep.h"
  30. #include <stdio.h>
  31.  
  32. #include "readline.h"
  33.  
  34. FUNMAP **funmap = (FUNMAP **)NULL;
  35. static int funmap_size = 0;
  36. static int funmap_entry = 0;
  37.  
  38. /* After initializing the function map, this is the index of the first
  39.    program specific function. */
  40. int funmap_program_specific_entry_start;
  41.  
  42. static FUNMAP default_funmap[] = {
  43.  
  44.   { "abort", rl_abort },
  45.   { "accept-line", rl_newline },
  46.   { "arrow-key-prefix", rl_arrow_keys },
  47.   { "backward-char", rl_backward },
  48.   { "backward-delete-char", rl_rubout },
  49.   { "backward-kill-line", rl_backward_kill_line },
  50.   { "backward-kill-word", rl_backward_kill_word },
  51.   { "backward-word", rl_backward_word },
  52.   { "beginning-of-history", rl_beginning_of_history },
  53.   { "beginning-of-line", rl_beg_of_line },
  54.   { "call-last-kbd-macro", rl_call_last_kbd_macro },
  55.   { "capitalize-word", rl_capitalize_word },
  56.   { "clear-screen", rl_clear_screen },
  57.   { "complete", rl_complete },
  58.   { "delete-char", rl_delete },
  59.   { "delete-horizontal-space", rl_delete_horizontal_space },
  60.   { "digit-argument", rl_digit_argument },
  61.   { "do-lowercase-version", rl_do_lowercase_version },
  62.   { "downcase-word", rl_downcase_word },
  63.   { "dump-functions", rl_dump_functions },
  64.   { "end-kbd-macro", rl_end_kbd_macro },
  65.   { "end-of-history", rl_end_of_history },
  66.   { "end-of-line", rl_end_of_line },
  67.   { "forward-char", rl_forward },
  68.   { "forward-search-history", rl_forward_search_history },
  69.   { "forward-word", rl_forward_word },
  70.   { "insert-completions", rl_insert_completions },
  71.   { "kill-line", rl_kill_line },
  72.   { "kill-word", rl_kill_word },
  73.   { "next-history", rl_get_next_history },
  74.   { "non-incremental-forward-search-history", rl_noninc_forward_search },
  75.   { "non-incremental-reverse-search-history", rl_noninc_reverse_search },
  76.   { "possible-completions", rl_possible_completions },
  77.   { "previous-history", rl_get_previous_history },
  78.   { "quoted-insert", rl_quoted_insert },
  79.   { "re-read-init-file", rl_re_read_init_file },
  80.   { "redraw-current-line", rl_refresh_line},
  81.   { "reverse-search-history", rl_reverse_search_history },
  82.   { "revert-line", rl_revert_line },
  83.   { "self-insert", rl_insert },
  84.   { "start-kbd-macro", rl_start_kbd_macro },
  85.   { "tab-insert", rl_tab_insert },
  86.   { "transpose-chars", rl_transpose_chars },
  87.   { "transpose-words", rl_transpose_words },
  88.   { "undo", rl_undo_command },
  89.   { "universal-argument", rl_universal_argument },
  90.   { "unix-line-discard", rl_unix_line_discard },
  91.   { "unix-word-rubout", rl_unix_word_rubout },
  92.   { "upcase-word", rl_upcase_word },
  93.   { "yank", rl_yank },
  94.   { "yank-nth-arg", rl_yank_nth_arg },
  95.   { "yank-pop", rl_yank_pop },
  96.  
  97. #if defined (VI_MODE)
  98.  
  99.   { "vi-append-eol", rl_vi_append_eol },
  100.   { "vi-append-mode", rl_vi_append_mode },
  101.   { "vi-arg-digit", rl_vi_arg_digit },
  102.   { "vi-bWord", rl_vi_bWord },
  103.   { "vi-bracktype", rl_vi_bracktype },
  104.   { "vi-bword", rl_vi_bword },
  105.   { "vi-change-case", rl_vi_change_case },
  106.   { "vi-change-char", rl_vi_change_char },
  107.   { "vi-change-to", rl_vi_change_to },
  108.   { "vi-char-search", rl_vi_char_search },
  109.   { "vi-column", rl_vi_column },
  110.   { "vi-comment", rl_vi_comment },
  111.   { "vi-complete", rl_vi_complete },
  112.   { "vi-delete", rl_vi_delete },
  113.   { "vi-delete-to", rl_vi_delete_to },
  114.   { "vi-eWord", rl_vi_eWord },
  115.   { "vi-editing-mode", rl_vi_editing_mode },
  116.   { "vi-end-word", rl_vi_end_word },
  117.   { "vi-eof-maybe", rl_vi_eof_maybe },
  118.   { "vi-eword", rl_vi_eword },
  119.   { "vi-fWord", rl_vi_fWord },
  120.   { "vi-first-print", rl_vi_first_print },
  121.   { "vi-fword", rl_vi_fword },
  122.   { "vi-insert-beg", rl_vi_insert_beg },
  123.   { "vi-insertion-mode", rl_vi_insertion_mode },
  124.   { "vi-match", rl_vi_match },
  125.   { "vi-movement-mode", rl_vi_movement_mode },
  126.   { "vi-next-word", rl_vi_next_word },
  127.   { "vi-overstrike", rl_vi_overstrike },
  128.   { "vi-overstrike-delete", rl_vi_overstrike_delete },
  129.   { "vi-prev-word", rl_vi_prev_word },
  130.   { "vi-put", rl_vi_put },
  131.   { "vi-replace", rl_vi_replace },
  132.   { "vi-search", rl_vi_search },
  133.   { "vi-search-again", rl_vi_search_again },
  134.   { "vi-subst", rl_vi_subst },
  135.   { "vi-yank-arg", rl_vi_yank_arg },
  136.   { "vi-yank-to", rl_vi_yank_to },
  137.  
  138. #endif /* VI_MODE */
  139.  
  140.  {(char *)NULL, (Function *)NULL }
  141. };
  142.  
  143. rl_add_funmap_entry (name, function)
  144.      char *name;
  145.      Function *function;
  146. {
  147.   if (funmap_entry + 2 >= funmap_size)
  148.     if (!funmap)
  149.       funmap = (FUNMAP **)xmalloc ((funmap_size = 80) * sizeof (FUNMAP *));
  150.     else
  151.       funmap =
  152.     (FUNMAP **)xrealloc (funmap, (funmap_size += 80) * sizeof (FUNMAP *));
  153.   
  154.   funmap[funmap_entry] = (FUNMAP *)xmalloc (sizeof (FUNMAP));
  155.   funmap[funmap_entry]->name = name;
  156.   funmap[funmap_entry]->function = function;
  157.  
  158.   funmap[++funmap_entry] = (FUNMAP *)NULL;
  159. }
  160.  
  161. static int funmap_initialized = 0;
  162.  
  163. /* Make the funmap contain all of the default entries. */
  164. void
  165. rl_initialize_funmap ()
  166. {
  167.   register int i;
  168.  
  169.   if (funmap_initialized)
  170.     return;
  171.  
  172.   for (i = 0; default_funmap[i].name; i++)
  173.     rl_add_funmap_entry (default_funmap[i].name, default_funmap[i].function);
  174.  
  175.   funmap_initialized = 1;
  176.   funmap_program_specific_entry_start = i;
  177. }
  178.  
  179. /* Stupid comparison routine for qsort () ing strings. */
  180. static int
  181. qsort_string_compare (s1, s2)
  182.      register char **s1, **s2;
  183. {
  184.   int r;
  185.  
  186.   r = **s1 - **s2;
  187.   if (r == 0)
  188.     r = strcmp (*s1, *s2);
  189.   return r;
  190. }
  191.  
  192. /* Produce a NULL terminated array of known function names.  The array
  193.    is sorted.  The array itself is allocated, but not the strings inside.
  194.    You should free () the array when you done, but not the pointrs. */
  195. char **
  196. rl_funmap_names ()
  197. {
  198.   char **result = (char **)NULL;
  199.   int result_size, result_index;
  200.  
  201.   result_size = result_index = 0;
  202.  
  203.   /* Make sure that the function map has been initialized. */
  204.   rl_initialize_funmap ();
  205.  
  206.   for (result_index = 0; funmap[result_index]; result_index++)
  207.     {
  208.       if (result_index + 2 > result_size)
  209.     {
  210.       if (!result)
  211.         result = (char **)xmalloc ((result_size = 20) * sizeof (char *));
  212.       else
  213.         result = (char **)
  214.           xrealloc (result, (result_size += 20) * sizeof (char *));
  215.     }
  216.  
  217.       result[result_index] = funmap[result_index]->name;
  218.       result[result_index + 1] = (char *)NULL;
  219.     }
  220.  
  221.   qsort (result, result_index, sizeof (char *), qsort_string_compare);
  222.   return (result);
  223. }
  224.  
  225. /* Things that mean `Control'. */
  226. char *possible_control_prefixes[] = {
  227.   "Control-", "C-", "CTRL-", (char *)NULL
  228. };
  229.  
  230. char *possible_meta_prefixes[] = {
  231.   "Meta", "M-", (char *)NULL
  232. };
  233.  
  234. #if defined (STATIC_MALLOC)
  235.  
  236. /* **************************************************************** */
  237. /*                                    */
  238. /*            xmalloc and xrealloc ()                     */
  239. /*                                    */
  240. /* **************************************************************** */
  241.  
  242. static void memory_error_and_abort ();
  243.  
  244. static char *
  245. xmalloc (bytes)
  246.      int bytes;
  247. {
  248.   char *temp = (char *)malloc (bytes);
  249.  
  250.   if (!temp)
  251.     memory_error_and_abort ();
  252.   return (temp);
  253. }
  254.  
  255. static char *
  256. xrealloc (pointer, bytes)
  257.      char *pointer;
  258.      int bytes;
  259. {
  260.   char *temp;
  261.  
  262.   if (!pointer)
  263.     temp = (char *)malloc (bytes);
  264.   else
  265.     temp = (char *)realloc (pointer, bytes);
  266.  
  267.   if (!temp)
  268.     memory_error_and_abort ();
  269.   return (temp);
  270. }
  271.  
  272. static void
  273. memory_error_and_abort ()
  274. {
  275.   fprintf (stderr, "history: Out of virtual memory!\n");
  276.   abort ();
  277. }
  278. #endif /* STATIC_MALLOC */
  279.