[PATCH 13/57][Arm][GAS] Add support for MVE instructions: vand, vbic, vorr, vorn...
[binutils-gdb.git] / readline / undo.c
blobeb042b29fd966e7261a8735f9709fc9627beec57
1 /* readline.c -- a general facility for reading lines of input
2 with emacs style editing and completion. */
4 /* Copyright (C) 1987-2009 Free Software Foundation, Inc.
6 This file is part of the GNU Readline Library (Readline), a library
7 for reading lines of text with interactive input and history editing.
9 Readline 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 3 of the License, or
12 (at your option) any later version.
14 Readline is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with Readline. If not, see <http://www.gnu.org/licenses/>.
23 #define READLINE_LIBRARY
25 #if defined (HAVE_CONFIG_H)
26 # include <config.h>
27 #endif
29 #include <sys/types.h>
31 #if defined (HAVE_UNISTD_H)
32 # include <unistd.h> /* for _POSIX_VERSION */
33 #endif /* HAVE_UNISTD_H */
35 #if defined (HAVE_STDLIB_H)
36 # include <stdlib.h>
37 #else
38 # include "ansi_stdlib.h"
39 #endif /* HAVE_STDLIB_H */
41 #include <stdio.h>
43 /* System-specific feature definitions and include files. */
44 #include "rldefs.h"
46 /* Some standard library routines. */
47 #include "readline.h"
48 #include "history.h"
50 #include "rlprivate.h"
51 #include "xmalloc.h"
53 extern void replace_history_data PARAMS((int, histdata_t *, histdata_t *));
55 /* Non-zero tells rl_delete_text and rl_insert_text to not add to
56 the undo list. */
57 int _rl_doing_an_undo = 0;
59 /* How many unclosed undo groups we currently have. */
60 int _rl_undo_group_level = 0;
62 /* The current undo list for THE_LINE. */
63 UNDO_LIST *rl_undo_list = (UNDO_LIST *)NULL;
65 /* **************************************************************** */
66 /* */
67 /* Undo, and Undoing */
68 /* */
69 /* **************************************************************** */
71 static UNDO_LIST *
72 alloc_undo_entry (what, start, end, text)
73 enum undo_code what;
74 int start, end;
75 char *text;
77 UNDO_LIST *temp;
79 temp = (UNDO_LIST *)xmalloc (sizeof (UNDO_LIST));
80 temp->what = what;
81 temp->start = start;
82 temp->end = end;
83 temp->text = text;
85 temp->next = (UNDO_LIST *)NULL;
86 return temp;
89 /* Remember how to undo something. Concatenate some undos if that
90 seems right. */
91 void
92 rl_add_undo (what, start, end, text)
93 enum undo_code what;
94 int start, end;
95 char *text;
97 UNDO_LIST *temp;
99 temp = alloc_undo_entry (what, start, end, text);
100 temp->next = rl_undo_list;
101 rl_undo_list = temp;
104 /* Free the existing undo list. */
105 void
106 rl_free_undo_list ()
108 UNDO_LIST *release, *orig_list;
110 orig_list = rl_undo_list;
111 while (rl_undo_list)
113 release = rl_undo_list;
114 rl_undo_list = rl_undo_list->next;
116 if (release->what == UNDO_DELETE)
117 xfree (release->text);
119 xfree (release);
121 rl_undo_list = (UNDO_LIST *)NULL;
122 replace_history_data (-1, (histdata_t *)orig_list, (histdata_t *)NULL);
125 UNDO_LIST *
126 _rl_copy_undo_entry (entry)
127 UNDO_LIST *entry;
129 UNDO_LIST *new;
131 new = alloc_undo_entry (entry->what, entry->start, entry->end, (char *)NULL);
132 new->text = entry->text ? savestring (entry->text) : 0;
133 return new;
136 UNDO_LIST *
137 _rl_copy_undo_list (head)
138 UNDO_LIST *head;
140 UNDO_LIST *list, *new, *roving, *c;
142 if (head == 0)
143 return head;
145 list = head;
146 new = 0;
147 while (list)
149 c = _rl_copy_undo_entry (list);
150 if (new == 0)
151 roving = new = c;
152 else
154 roving->next = c;
155 roving = roving->next;
157 list = list->next;
160 roving->next = 0;
161 return new;
164 /* Undo the next thing in the list. Return 0 if there
165 is nothing to undo, or non-zero if there was. */
167 rl_do_undo ()
169 UNDO_LIST *release;
170 int waiting_for_begin, start, end;
172 #define TRANS(i) ((i) == -1 ? rl_point : ((i) == -2 ? rl_end : (i)))
174 start = end = waiting_for_begin = 0;
177 if (rl_undo_list == 0)
178 return (0);
180 _rl_doing_an_undo = 1;
181 RL_SETSTATE(RL_STATE_UNDOING);
183 /* To better support vi-mode, a start or end value of -1 means
184 rl_point, and a value of -2 means rl_end. */
185 if (rl_undo_list->what == UNDO_DELETE || rl_undo_list->what == UNDO_INSERT)
187 start = TRANS (rl_undo_list->start);
188 end = TRANS (rl_undo_list->end);
191 switch (rl_undo_list->what)
193 /* Undoing deletes means inserting some text. */
194 case UNDO_DELETE:
195 rl_point = start;
196 rl_insert_text (rl_undo_list->text);
197 xfree (rl_undo_list->text);
198 break;
200 /* Undoing inserts means deleting some text. */
201 case UNDO_INSERT:
202 rl_delete_text (start, end);
203 rl_point = start;
204 break;
206 /* Undoing an END means undoing everything 'til we get to a BEGIN. */
207 case UNDO_END:
208 waiting_for_begin++;
209 break;
211 /* Undoing a BEGIN means that we are done with this group. */
212 case UNDO_BEGIN:
213 if (waiting_for_begin)
214 waiting_for_begin--;
215 else
216 rl_ding ();
217 break;
220 _rl_doing_an_undo = 0;
221 RL_UNSETSTATE(RL_STATE_UNDOING);
223 release = rl_undo_list;
224 rl_undo_list = rl_undo_list->next;
225 replace_history_data (-1, (histdata_t *)release, (histdata_t *)rl_undo_list);
227 xfree (release);
229 while (waiting_for_begin);
231 return (1);
233 #undef TRANS
236 _rl_fix_last_undo_of_type (type, start, end)
237 int type, start, end;
239 UNDO_LIST *rl;
241 for (rl = rl_undo_list; rl; rl = rl->next)
243 if (rl->what == type)
245 rl->start = start;
246 rl->end = end;
247 return 0;
250 return 1;
253 /* Begin a group. Subsequent undos are undone as an atomic operation. */
255 rl_begin_undo_group ()
257 rl_add_undo (UNDO_BEGIN, 0, 0, 0);
258 _rl_undo_group_level++;
259 return 0;
262 /* End an undo group started with rl_begin_undo_group (). */
264 rl_end_undo_group ()
266 rl_add_undo (UNDO_END, 0, 0, 0);
267 _rl_undo_group_level--;
268 return 0;
271 /* Save an undo entry for the text from START to END. */
273 rl_modifying (start, end)
274 int start, end;
276 if (start > end)
278 SWAP (start, end);
281 if (start != end)
283 char *temp = rl_copy_text (start, end);
284 rl_begin_undo_group ();
285 rl_add_undo (UNDO_DELETE, start, end, temp);
286 rl_add_undo (UNDO_INSERT, start, end, (char *)NULL);
287 rl_end_undo_group ();
289 return 0;
292 /* Revert the current line to its previous state. */
294 rl_revert_line (count, key)
295 int count, key;
297 if (rl_undo_list == 0)
298 rl_ding ();
299 else
301 while (rl_undo_list)
302 rl_do_undo ();
303 #if defined (VI_MODE)
304 if (rl_editing_mode == vi_mode)
305 rl_point = rl_mark = 0; /* rl_end should be set correctly */
306 #endif
309 return 0;
312 /* Do some undoing of things that were done. */
314 rl_undo_command (count, key)
315 int count, key;
317 if (count < 0)
318 return 0; /* Nothing to do. */
320 while (count)
322 if (rl_do_undo ())
323 count--;
324 else
326 rl_ding ();
327 break;
330 return 0;