histsearch.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* histsearch.c -- searching the history list. */
  2. /* Copyright (C) 1989, 1992 Free Software Foundation, Inc.
  3.    This file contains the GNU History Library (the Library), a set of
  4.    routines for managing the text of previously typed lines.
  5.    The Library is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 1, or (at your option)
  8.    any later version.
  9.    The Library is distributed in the hope that it will be useful, but
  10.    WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    General Public License for more details.
  13.    The GNU General Public License is often shipped with GNU software, and
  14.    is generally kept in a file called COPYING or LICENSE.  If you do not
  15.    have a copy of the license, write to the Free Software Foundation,
  16.    675 Mass Ave, Cambridge, MA 02139, USA. */
  17. #define READLINE_LIBRARY
  18. #if defined (HAVE_CONFIG_H)
  19. #  include <config.h>
  20. #endif
  21. #include <stdio.h>
  22. #if defined (HAVE_STDLIB_H)
  23. #  include <stdlib.h>
  24. #else
  25. #  include "ansi_stdlib.h"
  26. #endif /* HAVE_STDLIB_H */
  27. #if defined (HAVE_UNISTD_H)
  28. #  ifdef _MINIX
  29. #    include <sys/types.h>
  30. #  endif
  31. #  include <unistd.h>
  32. #endif
  33. #if defined (HAVE_STRING_H)
  34. #  include <string.h>
  35. #else
  36. #  include <strings.h>
  37. #endif /* !HAVE_STRING_H */
  38. #include "history.h"
  39. #include "histlib.h"
  40. /* Variables imported from other history library files. */
  41. extern int history_offset;
  42. /* The list of alternate characters that can delimit a history search
  43.    string. */
  44. char *history_search_delimiter_chars = (char *)NULL;
  45. /* Search the history for STRING, starting at history_offset.
  46.    If DIRECTION < 0, then the search is through previous entries, else
  47.    through subsequent.  If ANCHORED is non-zero, the string must
  48.    appear at the beginning of a history line, otherwise, the string
  49.    may appear anywhere in the line.  If the string is found, then
  50.    current_history () is the history entry, and the value of this
  51.    function is the offset in the line of that history entry that the
  52.    string was found in.  Otherwise, nothing is changed, and a -1 is
  53.    returned. */
  54. static int
  55. history_search_internal (string, direction, anchored)
  56.      char *string;
  57.      int direction, anchored;
  58. {
  59.   register int i, reverse;
  60.   register char *line;
  61.   register int line_index;
  62.   int string_len;
  63.   HIST_ENTRY **the_history;  /* local */
  64.   i = history_offset;
  65.   reverse = (direction < 0);
  66.   /* Take care of trivial cases first. */
  67.   if (string == 0 || *string == '')
  68.     return (-1);
  69.   if (!history_length || ((i == history_length) && !reverse))
  70.     return (-1);
  71.   if (reverse && (i == history_length))
  72.     i--;
  73. #define NEXT_LINE() do { if (reverse) i--; else i++; } while (0)
  74.   the_history = history_list ();
  75.   string_len = strlen (string);
  76.   while (1)
  77.     {
  78.       /* Search each line in the history list for STRING. */
  79.       /* At limit for direction? */
  80.       if ((reverse && i < 0) || (!reverse && i == history_length))
  81. return (-1);
  82.       line = the_history[i]->line;
  83.       line_index = strlen (line);
  84.       /* If STRING is longer than line, no match. */
  85.       if (string_len > line_index)
  86. {
  87.   NEXT_LINE ();
  88.   continue;
  89. }
  90.       /* Handle anchored searches first. */
  91.       if (anchored == ANCHORED_SEARCH)
  92. {
  93.   if (STREQN (string, line, string_len))
  94.     {
  95.       history_offset = i;
  96.       return (0);
  97.     }
  98.   NEXT_LINE ();
  99.   continue;
  100. }
  101.       /* Do substring search. */
  102.       if (reverse)
  103. {
  104.   line_index -= string_len;
  105.   while (line_index >= 0)
  106.     {
  107.       if (STREQN (string, line + line_index, string_len))
  108. {
  109.   history_offset = i;
  110.   return (line_index);
  111. }
  112.       line_index--;
  113.     }
  114. }
  115.       else
  116. {
  117.   register int limit;
  118.   limit = line_index - string_len + 1;
  119.   line_index = 0;
  120.   while (line_index < limit)
  121.     {
  122.       if (STREQN (string, line + line_index, string_len))
  123. {
  124.   history_offset = i;
  125.   return (line_index);
  126. }
  127.       line_index++;
  128.     }
  129. }
  130.       NEXT_LINE ();
  131.     }
  132. }
  133. /* Do a non-anchored search for STRING through the history in DIRECTION. */
  134. int
  135. history_search (string, direction)
  136.      char *string;
  137.      int direction;
  138. {
  139.   return (history_search_internal (string, direction, NON_ANCHORED_SEARCH));
  140. }
  141. /* Do an anchored search for string through the history in DIRECTION. */
  142. int
  143. history_search_prefix (string, direction)
  144.      char *string;
  145.      int direction;
  146. {
  147.   return (history_search_internal (string, direction, ANCHORED_SEARCH));
  148. }
  149. /* Search for STRING in the history list.  DIR is < 0 for searching
  150.    backwards.  POS is an absolute index into the history list at
  151.    which point to begin searching. */
  152. int
  153. history_search_pos (string, dir, pos)
  154.      char *string;
  155.      int dir, pos;
  156. {
  157.   int ret, old;
  158.   old = where_history ();
  159.   history_set_pos (pos);
  160.   if (history_search (string, dir) == -1)
  161.     {
  162.       history_set_pos (old);
  163.       return (-1);
  164.     }
  165.   ret = where_history ();
  166.   history_set_pos (old);
  167.   return ret;
  168. }