home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / debug / gdb / readline / search.c < prev    next >
C/C++ Source or Header  |  1995-07-28  |  7KB  |  279 lines

  1. /* search.c - code for non-incremental searching in emacs and vi modes. */
  2.  
  3. /* Copyright (C) 1992 Free Software Foundation, Inc.
  4.  
  5.    This file is part of the Readline Library (the Library), a set of
  6.    routines for providing Emacs style line input to programs that ask
  7.    for it.
  8.  
  9.    The Library is free software; you can redistribute it and/or modify
  10.    it under the terms of the GNU General Public License as published by
  11.    the Free Software Foundation; either version 1, or (at your option)
  12.    any later version.
  13.  
  14.    The Library is distributed in the hope that it will be useful, but
  15.    WITHOUT ANY WARRANTY; without even the implied warranty of
  16.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17.    General Public License for more details.
  18.  
  19.    The GNU General Public License is often shipped with GNU software, and
  20.    is generally kept in a file called COPYING or LICENSE.  If you do not
  21.    have a copy of the license, write to the Free Software Foundation,
  22.    675 Mass Ave, Cambridge, MA 02139, USA. */
  23.  
  24. /* For alloca on AIX.  CYGNUS LOCAL.  */
  25. #include "sysdep.h"
  26.  
  27. #include <stdio.h>
  28.  
  29. #if defined (__GNUC__)
  30. #  define alloca __builtin_alloca
  31. #else
  32. #  if defined (sparc) || defined (HAVE_ALLOCA_H)
  33. #    include <alloca.h>
  34. #  endif
  35. #endif
  36.  
  37. #include "readline.h"
  38. #include "history.h"
  39.  
  40. extern char *xmalloc (), *xrealloc ();
  41.  
  42. /* Variables imported from readline.c */
  43. extern int rl_point, rl_end, rl_line_buffer_len;
  44. extern Keymap _rl_keymap;
  45. extern char *rl_prompt;
  46. extern char *rl_line_buffer;
  47. extern HIST_ENTRY *saved_line_for_history;
  48.  
  49. static char *noninc_search_string = (char *) NULL;
  50. static int noninc_history_pos = 0;
  51.  
  52. /* Search the history list for STRING starting at absolute history position
  53.    POS.  If STRING begins with `^', the search must match STRING at the
  54.    beginning of a history line, otherwise a full substring match is performed
  55.    for STRING.  DIR < 0 means to search backwards through the history list,
  56.    DIR >= 0 means to search forward. */
  57. static int
  58. noninc_search_from_pos (string, pos, dir)
  59.      char *string;
  60.      int pos, dir;
  61. {
  62.   int ret, old;
  63.  
  64.   old = where_history ();
  65.   history_set_pos (pos);
  66.  
  67.   if (*string == '^')
  68.     ret = history_search_prefix (string + 1, dir);
  69.   else
  70.     ret = history_search (string, dir);
  71.  
  72.   if (ret != -1)
  73.     ret = where_history ();
  74.  
  75.   history_set_pos (old);
  76.   return (ret);
  77. }
  78.  
  79. /* Search for a line in the history containing STRING.  If DIR is < 0, the
  80.    search is backwards through previous entries, else through subsequent
  81.    entries. */
  82. static void
  83. noninc_dosearch (string, dir)
  84.      char *string;
  85.      int dir;
  86. {
  87.   int oldpos, pos;
  88.   HIST_ENTRY *entry;
  89.  
  90.   if (string == 0 || *string == 0 || noninc_history_pos < 0)
  91.     {
  92.       ding ();
  93.       return;
  94.     }
  95.  
  96.   pos = noninc_search_from_pos (string, noninc_history_pos + dir, dir);
  97.   if (pos == -1)
  98.     {
  99.       /* Search failed, current history position unchanged. */
  100.       maybe_unsave_line ();
  101.       rl_clear_message ();
  102.       rl_point = 0;
  103.       ding ();
  104.       return;
  105.     }
  106.  
  107.   noninc_history_pos = pos;
  108.  
  109.   oldpos = where_history ();
  110.   history_set_pos (noninc_history_pos);
  111.   entry = current_history ();
  112.   history_set_pos (oldpos);
  113.  
  114.   {
  115.     int line_len;
  116.  
  117.     line_len = strlen (entry->line);
  118.     if (line_len >= rl_line_buffer_len)
  119.       rl_extend_line_buffer (line_len);
  120.     strcpy (rl_line_buffer, entry->line);
  121.   }
  122.  
  123.   rl_undo_list = (UNDO_LIST *)entry->data;
  124.   rl_end = strlen (rl_line_buffer);
  125.   rl_point = 0;
  126.   rl_clear_message ();
  127.  
  128.   if (saved_line_for_history)
  129.     free_history_entry (saved_line_for_history);
  130.   saved_line_for_history = (HIST_ENTRY *)NULL;
  131. }
  132.  
  133. /* Search non-interactively through the history list.  DIR < 0 means to
  134.    search backwards through the history of previous commands; otherwise
  135.    the search is for commands subsequent to the current position in the
  136.    history list.  PCHAR is the character to use for prompting when reading
  137.    the search string; if not specified (0), it defaults to `:'. */
  138. static void
  139. noninc_search (dir, pchar)
  140.      int dir;
  141.      int pchar;
  142. {
  143.   int saved_point, c, pmtlen;
  144.   char *p;
  145.  
  146.   maybe_save_line ();
  147.   saved_point = rl_point;
  148.  
  149.   /* Use the line buffer to read the search string. */
  150.   rl_line_buffer[0] = 0;
  151.   rl_end = rl_point = 0;
  152.  
  153.   pmtlen = (rl_prompt && *rl_prompt) ? strlen (rl_prompt) : 0;
  154.   p = (char *)alloca (2 + pmtlen);
  155.   if (pmtlen)
  156.     strcpy (p, rl_prompt);
  157.   p[pmtlen] = pchar ? pchar : ':';
  158.   p[pmtlen + 1]  = '\0';
  159.  
  160.   rl_message (p, 0, 0);
  161.  
  162.   /* Read the search string. */
  163.   while (c = rl_read_key ())
  164.     {
  165.       switch (c)
  166.     {
  167.     case CTRL('H'):
  168.     case RUBOUT:
  169.       if (rl_point == 0)
  170.         {
  171.           maybe_unsave_line ();
  172.           rl_clear_message ();
  173.           rl_point = saved_point;
  174.           return;
  175.         }
  176.       /* FALLTHROUGH */
  177.  
  178.     case CTRL('W'):
  179.     case CTRL('U'):
  180.       rl_dispatch (c, _rl_keymap);
  181.       break;
  182.  
  183.     case RETURN:
  184.     case NEWLINE:
  185.       goto dosearch;
  186.       /* NOTREACHED */
  187.       break;
  188.  
  189.     case CTRL('C'):
  190.     case CTRL('G'):
  191.       maybe_unsave_line ();
  192.       rl_clear_message ();
  193.       rl_point = saved_point;
  194.       ding ();
  195.       return;
  196.  
  197.     default:
  198.       rl_insert (1, c);
  199.       break;
  200.     }
  201.       rl_redisplay ();
  202.     }
  203.  
  204.  dosearch:
  205.   /* If rl_point == 0, we want to re-use the previous search string and
  206.      start from the saved history position.  If there's no previous search
  207.      string, punt. */
  208.   if (rl_point == 0)
  209.     {
  210.       if (!noninc_search_string)
  211.     {
  212.       ding ();
  213.       return;
  214.     }
  215.     }
  216.   else
  217.     {
  218.       /* We want to start the search from the current history position. */
  219.       noninc_history_pos = where_history ();
  220.       if (noninc_search_string)
  221.     free (noninc_search_string);
  222.       noninc_search_string = savestring (rl_line_buffer);
  223.     }
  224.  
  225.   noninc_dosearch (noninc_search_string, dir);
  226. }
  227.  
  228. /* Search forward through the history list for a string.  If the vi-mode
  229.    code calls this, KEY will be `?'. */
  230. rl_noninc_forward_search (count, key)
  231.      int count, key;
  232. {
  233.   if (key == '?')
  234.     noninc_search (1, '?');
  235.   else
  236.     noninc_search (1, 0);
  237.   return 0;
  238. }
  239.  
  240. /* Reverse search the history list for a string.  If the vi-mode code
  241.    calls this, KEY will be `/'. */
  242. rl_noninc_reverse_search (count, key)
  243.      int count, key;
  244. {
  245.   if (key == '/')
  246.     noninc_search (-1, '/');
  247.   else
  248.     noninc_search (-1, 0);
  249.   return 0;
  250. }
  251.  
  252. /* Search forward through the history list for the last string searched
  253.    for.  If there is no saved search string, abort. */
  254. rl_noninc_forward_search_again (count, key)
  255.      int count, key;
  256. {
  257.   if (!noninc_search_string)
  258.     {
  259.       ding ();
  260.       return (-1);
  261.     }
  262.   noninc_dosearch (noninc_search_string, 1);
  263.   return 0;
  264. }
  265.  
  266. /* Reverse search in the history list for the last string searched
  267.    for.  If there is no saved search string, abort. */
  268. rl_noninc_reverse_search_again (count, key)
  269.      int count, key;
  270. {
  271.   if (!noninc_search_string)
  272.     {
  273.       ding ();
  274.       return (-1);
  275.     }
  276.   noninc_dosearch (noninc_search_string, -1);
  277.   return 0;
  278. }
  279.