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

MySQL数据库

开发平台:

Visual C++

  1. /* readline.c -- a general facility for reading lines of input
  2.    with emacs style editing and completion. */
  3. /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
  4.    This file is part of the GNU Readline Library, a library for
  5.    reading lines of text with interactive input and history editing.
  6.    The GNU Readline Library is free software; you can redistribute it
  7.    and/or modify it under the terms of the GNU General Public License
  8.    as published by the Free Software Foundation; either version 1, or
  9.    (at your option) any later version.
  10.    The GNU Readline Library is distributed in the hope that it will be
  11.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  12.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  14.    The GNU General Public License is often shipped with GNU software, and
  15.    is generally kept in a file called COPYING or LICENSE.  If you do not
  16.    have a copy of the license, write to the Free Software Foundation,
  17.    675 Mass Ave, Cambridge, MA 02139, USA. */
  18. #define READLINE_LIBRARY
  19. #if defined (HAVE_CONFIG_H)
  20. #  include <config.h>
  21. #endif
  22. #include <sys/types.h>
  23. #if defined (HAVE_UNISTD_H)
  24. #  include <unistd.h>           /* for _POSIX_VERSION */
  25. #endif /* HAVE_UNISTD_H */
  26. #if defined (HAVE_STDLIB_H)
  27. #  include <stdlib.h>
  28. #else
  29. #  include "ansi_stdlib.h"
  30. #endif /* HAVE_STDLIB_H */
  31. #include <stdio.h>
  32. /* System-specific feature definitions and include files. */
  33. #include "rldefs.h"
  34. /* Some standard library routines. */
  35. #include "readline.h"
  36. #include "history.h"
  37. #define SWAP(s, e)  do { int t; t = s; s = e; e = t; } while (0)
  38. /* Non-zero tells rl_delete_text and rl_insert_text to not add to
  39.    the undo list. */
  40. int _rl_doing_an_undo = 0;
  41. /* How many unclosed undo groups we currently have. */
  42. int _rl_undo_group_level = 0;
  43. /* The current undo list for THE_LINE. */
  44. UNDO_LIST *rl_undo_list = (UNDO_LIST *)NULL;
  45. /* **************************************************************** */
  46. /*     */
  47. /* Undo, and Undoing     */
  48. /*     */
  49. /* **************************************************************** */
  50. /* Remember how to undo something.  Concatenate some undos if that
  51.    seems right. */
  52. void
  53. rl_add_undo (what, start, end, text)
  54.      enum undo_code what;
  55.      int start, end;
  56.      char *text;
  57. {
  58.   UNDO_LIST *temp = (UNDO_LIST *)xmalloc (sizeof (UNDO_LIST));
  59.   temp->what = what;
  60.   temp->start = start;
  61.   temp->end = end;
  62.   temp->text = text;
  63.   temp->next = rl_undo_list;
  64.   rl_undo_list = temp;
  65. }
  66. /* Free the existing undo list. */
  67. void
  68. free_undo_list ()
  69. {
  70.   while (rl_undo_list)
  71.     {
  72.       UNDO_LIST *release = rl_undo_list;
  73.       rl_undo_list = rl_undo_list->next;
  74.       if (release->what == UNDO_DELETE)
  75. free (release->text);
  76.       free (release);
  77.     }
  78.   rl_undo_list = (UNDO_LIST *)NULL;
  79. }
  80. /* Undo the next thing in the list.  Return 0 if there
  81.    is nothing to undo, or non-zero if there was. */
  82. int
  83. rl_do_undo ()
  84. {
  85.   UNDO_LIST *release;
  86.   int waiting_for_begin = 0;
  87.   int start = 0, end = 0;
  88. #define TRANS(i) ((i) == -1 ? rl_point : ((i) == -2 ? rl_end : (i)))
  89.   do
  90.     {
  91.       if (!rl_undo_list)
  92. return (0);
  93.       _rl_doing_an_undo = 1;
  94.       /* To better support vi-mode, a start or end value of -1 means
  95.  rl_point, and a value of -2 means rl_end. */
  96.       if (rl_undo_list->what == UNDO_DELETE || rl_undo_list->what == UNDO_INSERT)
  97. {
  98.   start = TRANS (rl_undo_list->start);
  99.   end = TRANS (rl_undo_list->end);
  100. }
  101.       switch (rl_undo_list->what)
  102. {
  103. /* Undoing deletes means inserting some text. */
  104. case UNDO_DELETE:
  105.   rl_point = start;
  106.   rl_insert_text (rl_undo_list->text);
  107.   free (rl_undo_list->text);
  108.   break;
  109. /* Undoing inserts means deleting some text. */
  110. case UNDO_INSERT:
  111.   rl_delete_text (start, end);
  112.   rl_point = start;
  113.   break;
  114. /* Undoing an END means undoing everything 'til we get to a BEGIN. */
  115. case UNDO_END:
  116.   waiting_for_begin++;
  117.   break;
  118. /* Undoing a BEGIN means that we are done with this group. */
  119. case UNDO_BEGIN:
  120.   if (waiting_for_begin)
  121.     waiting_for_begin--;
  122.   else
  123.     ding ();
  124.   break;
  125. }
  126.       _rl_doing_an_undo = 0;
  127.       release = rl_undo_list;
  128.       rl_undo_list = rl_undo_list->next;
  129.       free (release);
  130.     }
  131.   while (waiting_for_begin);
  132.   return (1);
  133. }
  134. #undef TRANS
  135. int
  136. _rl_fix_last_undo_of_type (type, start, end)
  137.      int type, start, end;
  138. {
  139.   UNDO_LIST *rl;
  140.   for (rl = rl_undo_list; rl; rl = rl->next)
  141.     {
  142.       if (rl->what == type)
  143. {
  144.   rl->start = start;
  145.   rl->end = end;
  146.   return 0;
  147. }
  148.     }
  149.   return 1;
  150. }
  151. /* Begin a group.  Subsequent undos are undone as an atomic operation. */
  152. int
  153. rl_begin_undo_group ()
  154. {
  155.   rl_add_undo (UNDO_BEGIN, 0, 0, 0);
  156.   _rl_undo_group_level++;
  157.   return 0;
  158. }
  159. /* End an undo group started with rl_begin_undo_group (). */
  160. int
  161. rl_end_undo_group ()
  162. {
  163.   rl_add_undo (UNDO_END, 0, 0, 0);
  164.   _rl_undo_group_level--;
  165.   return 0;
  166. }
  167. /* Save an undo entry for the text from START to END. */
  168. int
  169. rl_modifying (start, end)
  170.      int start, end;
  171. {
  172.   if (start > end)
  173.     {
  174.       SWAP (start, end);
  175.     }
  176.   if (start != end)
  177.     {
  178.       char *temp = rl_copy_text (start, end);
  179.       rl_begin_undo_group ();
  180.       rl_add_undo (UNDO_DELETE, start, end, temp);
  181.       rl_add_undo (UNDO_INSERT, start, end, (char *)NULL);
  182.       rl_end_undo_group ();
  183.     }
  184.   return 0;
  185. }
  186. /* Revert the current line to its previous state. */
  187. int
  188. rl_revert_line (count, key)
  189.      int count, key;
  190. {
  191.   if (!rl_undo_list)
  192.     ding ();
  193.   else
  194.     {
  195.       while (rl_undo_list)
  196. rl_do_undo ();
  197.     }
  198.   return 0;
  199. }
  200. /* Do some undoing of things that were done. */
  201. int
  202. rl_undo_command (count, key)
  203.      int count, key;
  204. {
  205.   if (count < 0)
  206.     return 0; /* Nothing to do. */
  207.   while (count)
  208.     {
  209.       if (rl_do_undo ())
  210. count--;
  211.       else
  212. {
  213.   ding ();
  214.   break;
  215. }
  216.     }
  217.   return 0;
  218. }