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

MySQL数据库

开发平台:

Visual C++

  1. /* parens.c -- Implementation of matching parentheses feature. */
  2. /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
  3.    This file is part of the GNU Readline Library, a library for
  4.    reading lines of text with interactive input and history editing.
  5.    The GNU Readline Library is free software; you can redistribute it
  6.    and/or modify it under the terms of the GNU General Public License
  7.    as published by the Free Software Foundation; either version 1, or
  8.    (at your option) any later version.
  9.    The GNU Readline Library is distributed in the hope that it will be
  10.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  11.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU 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. #include "rlconf.h"
  19. #if !defined (PAREN_MATCHING)
  20. extern int rl_insert ();
  21. int
  22. rl_insert_close (count, invoking_key)
  23.      int count, invoking_key;
  24. {
  25.   return (rl_insert (count, invoking_key));
  26. }
  27. #else /* PAREN_MATCHING */
  28. #if defined (HAVE_CONFIG_H)
  29. #  include <config.h>
  30. #endif
  31. #include <stdio.h>
  32. #include <sys/types.h>
  33. #if defined (FD_SET) && !defined (HAVE_SELECT)
  34. #  define HAVE_SELECT
  35. #endif
  36. #if defined (HAVE_SELECT)
  37. #  include <sys/time.h>
  38. #endif /* HAVE_SELECT */
  39. #if defined (HAVE_SYS_SELECT_H)
  40. #  include <sys/select.h>
  41. #endif
  42. #if defined (HAVE_STRING_H)
  43. #  include <string.h>
  44. #else /* !HAVE_STRING_H */
  45. #  include <strings.h>
  46. #endif /* !HAVE_STRING_H */
  47. #if !defined (strchr) && !defined (__STDC__)
  48. extern char *strchr (), *strrchr ();
  49. #endif /* !strchr && !__STDC__ */
  50. #include "readline.h"
  51. extern int rl_explicit_arg;
  52. /* Non-zero means try to blink the matching open parenthesis when the
  53.    close parenthesis is inserted. */
  54. #if defined (HAVE_SELECT)
  55. int rl_blink_matching_paren = 1;
  56. #else /* !HAVE_SELECT */
  57. int rl_blink_matching_paren = 0;
  58. #endif /* !HAVE_SELECT */
  59. static int find_matching_open ();
  60. int
  61. rl_insert_close (count, invoking_key)
  62.      int count, invoking_key;
  63. {
  64.   if (rl_explicit_arg || !rl_blink_matching_paren)
  65.     rl_insert (count, invoking_key);
  66.   else
  67.     {
  68. #if defined (HAVE_SELECT)
  69.       int orig_point, match_point, ready;
  70.       struct timeval timer;
  71.       fd_set readfds;
  72.       rl_insert (1, invoking_key);
  73.       (*rl_redisplay_function) ();
  74.       match_point =
  75. find_matching_open (rl_line_buffer, rl_point - 2, invoking_key);
  76.       /* Emacs might message or ring the bell here, but I don't. */
  77.       if (match_point < 0)
  78. return -1;
  79.       FD_ZERO (&readfds);
  80.       FD_SET (fileno (rl_instream), &readfds);
  81.       timer.tv_sec = 0;
  82.       timer.tv_usec = 500000;
  83.       orig_point = rl_point;
  84.       rl_point = match_point;
  85.       (*rl_redisplay_function) ();
  86.       ready = select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer);
  87.       rl_point = orig_point;
  88. #else /* !HAVE_SELECT */
  89.       rl_insert (count, invoking_key);
  90. #endif /* !HAVE_SELECT */
  91.     }
  92.   return 0;
  93. }
  94. static int
  95. find_matching_open (string, from, closer)
  96.      char *string;
  97.      int from, closer;
  98. {
  99.   register int i;
  100.   int opener, level, delimiter;
  101.   switch (closer)
  102.     {
  103.     case ']': opener = '['; break;
  104.     case '}': opener = '{'; break;
  105.     case ')': opener = '('; break;
  106.     default:
  107.       return (-1);
  108.     }
  109.   level = 1; /* The closer passed in counts as 1. */
  110.   delimiter = 0; /* Delimited state unknown. */
  111.   for (i = from; i > -1; i--)
  112.     {
  113.       if (delimiter && (string[i] == delimiter))
  114. delimiter = 0;
  115.       else if (rl_basic_quote_characters && strchr (rl_basic_quote_characters, string[i]))
  116. delimiter = string[i];
  117.       else if (!delimiter && (string[i] == closer))
  118. level++;
  119.       else if (!delimiter && (string[i] == opener))
  120. level--;
  121.       if (!level)
  122. break;
  123.     }
  124.   return (i);
  125. }
  126. #endif /* PAREN_MATCHING */