annotate lisp/undo-stack.el @ 388:aabb7f5b1c81 r21-2-9

Import from CVS: tag r21-2-9
author cvs
date Mon, 13 Aug 2007 11:09:42 +0200
parents 677f6a0ee643
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1 ;;; undo-stack.el --- An "undoable stack" object.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
2
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
4 ;; Copyright (C) 1996 Ben Wing.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
5
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
6 ;; Maintainer: XEmacs Development Team
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
7 ;; Keywords: extensions, dumped
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
8
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
10
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
11 ;; XEmacs is free software; you can redistribute it and/or modify it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
12 ;; under the terms of the GNU General Public License as published by
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
14 ;; any later version.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
15
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
19 ;; General Public License for more details.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
20
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
23 ;; Free Software Foundation, 59 Temple Place - Suite 330,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
24 ;; Boston, MA 02111-1307, USA.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
25
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
26 ;;; Synched up with: Not in FSF.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
27
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
28 ;;; Commentary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
29
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
30 ;; This file is dumped with XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
31
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
32 ;; An "undoable stack" is an object that can be used to implement
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
33 ;; a history of positions, with undo and redo. Conceptually, it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
34 ;; is the kind of data structure used to keep track of (e.g.)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
35 ;; visited Web pages, so that the "Back" and "Forward" operations
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
36 ;; in the browser work. Basically, I can successively visit a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
37 ;; number of Web pages through links, and then hit "Back" a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
38 ;; few times to go to previous positions, and then "Forward" a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
39 ;; few times to reverse this process. This is similar to an
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
40 ;; "undo" and "redo" mechanism.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
41
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
42 ;; Note that Emacs does not standardly contain structures like
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
43 ;; this. Instead, it implements history using either a ring
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
44 ;; (the kill ring, the mark ring), or something like the undo
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
45 ;; stack, where successive "undo" operations get recorded as
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
46 ;; normal modifications, so that if you do a bunch of successive
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
47 ;; undo's, then something else, then start undoing, you will
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
48 ;; be redoing all your undo's back to the point before you did
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
49 ;; the undo's, and then further undo's will act like the previous
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
50 ;; round of undo's. I think that both of these paradigms are
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
51 ;; inferior to the "undoable-stack" paradigm because they're
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
52 ;; confusing and difficult to keep track of.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
53
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
54 ;; Conceptually, imagine a position history like this:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
55
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
56 ;; 1 -> 2 -> 3 -> 4 -> 5 -> 6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
57 ;; ^^
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
58
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
59 ;; where the arrow indicates where you currently are. "Going back"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
60 ;; and "going forward" just amount to moving the arrow. However,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
61 ;; what happens if the history state is this:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
62
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
63 ;; 1 -> 2 -> 3 -> 4 -> 5 -> 6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
64 ;; ^^
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
65
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
66 ;; and then I visit new positions (7) and (8)? In the most general
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
67 ;; implementation, you've just caused a new branch like this:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
68
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
69 ;; 1 -> 2 -> 3 -> 4 -> 5 -> 6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
70 ;; |
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
71 ;; |
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
72 ;; 7 -> 8
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
73 ;; ^^
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
74
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
75 ;; But then you can end up with a whole big tree, and you need
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
76 ;; more sophisticated ways of navigating ("Forward" might involve
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
77 ;; a choice of paths to follow) and managing its size (if you don't
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
78 ;; want to keep unlimited history, you have to truncate at some point,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
79 ;; and how do you truncate a tree?)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
80
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
81 ;; My solution to this is just to insert the new positions like
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
82 ;; this:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
83
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
84 ;; 1 -> 2 -> 3 -> 4 -> 7 -> 8 -> 5 -> 6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
85 ;; ^^
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
86
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
87 ;; (Netscape, I think, would just truncate 5 and 6 completely,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
88 ;; but that seems a bit drastic. In the Emacs-standard "ring"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
89 ;; structure, this problem is avoided by simply moving 5 and 6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
90 ;; to the beginning of the ring. However, it doesn't seem
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
91 ;; logical to me to have "going back past 1" get you to 6.)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
92
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
93 ;; Now what if we have a "maximum" size of (say) 7 elements?
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
94 ;; When we add 8, we could truncate either 1 or 6. Since 5 and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
95 ;; 6 are "undone" positions, we should presumably truncate
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
96 ;; them before 1. So, adding 8 truncates 6, adding 9 truncates
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
97 ;; 5, and adding 10 truncates 1 because there is nothing more
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
98 ;; that is forward of the insertion point.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
99
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
100 ;; Interestingly, this method of truncation is almost like
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
101 ;; how a ring would truncate. A ring would move 5 and 6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
102 ;; around to the back, like this:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
103
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
104 ;; 5 -> 6 -> 1 -> 2 -> 3 -> 4 -> 7 -> 8
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
105 ;; ^^
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
106
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
107 ;; However, when 8 is added, the ring truncates 5 instead of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
108 ;; 6, which is less than optimal.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
109
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
110 ;; Conceptually, we can implement the "undoable stack" using
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
111 ;; two stacks of a sort called "truncatable stack", which are
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
112 ;; just simple stacks, but where you can truncate elements
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
113 ;; off of the bottom of the stack. Then, the undoable stack
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
114
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
115 ;; 1 -> 2 -> 3 -> 4 -> 5 -> 6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
116 ;; ^^
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
117
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
118 ;; is equivalent to two truncatable stacks:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
119
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
120 ;; 4 <- 3 <- 2 <- 1
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
121 ;; 5 <- 6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
122
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
123 ;; where I reversed the direction to accord with the probable
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
124 ;; implementation of a standard list. To do another undo,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
125 ;; I pop 4 off of the first stack and move it to the top of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
126 ;; the second stack. A redo operation does the opposite.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
127 ;; To truncate to the proper size, first chop off 6, then 5,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
128 ;; then 1 -- in all cases, truncating off the bottom.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
129
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
130 ;;; Code:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
131
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
132 (define-error 'trunc-stack-bottom "Bottom of stack reached")
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
133
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
134 (defsubst trunc-stack-stack (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
135 ;; return the list representing the trunc-stack's elements.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
136 ;; the head of the list is the most recent element.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
137 (aref stack 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
138
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
139 (defsubst trunc-stack-length (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
140 ;; return the number of elements in the trunc-stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
141 (aref stack 2))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
142
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
143 (defsubst set-trunc-stack-stack (stack new)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
144 ;; set the list representing the trunc-stack's elements.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
145 (aset stack 1 new))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
146
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
147 (defsubst set-trunc-stack-length (stack new)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
148 ;; set the length of the trunc-stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
149 (aset stack 2 new))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
150
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
151 ;; public functions:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
152
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
153 (defun make-trunc-stack ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
154 ;; make an empty trunc-stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
155 (vector 'trunc-stack nil 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
156
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
157 (defun trunc-stack-push (stack el)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
158 ;; push a new element onto the head of the trunc-stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
159 (set-trunc-stack-stack stack (cons el (trunc-stack-stack stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
160 (set-trunc-stack-length stack (1+ (trunc-stack-length stack))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
161
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
162 (defun trunc-stack-top (stack &optional n)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
163 ;; return the nth topmost element from the trunc-stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
164 ;; signal an error if the stack doesn't have that many elements.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
165 (or n (setq n 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
166 (if (>= n (trunc-stack-length stack))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
167 (signal-error 'trunc-stack-bottom (list stack))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
168 (nth n (trunc-stack-stack stack))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
169
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
170 (defun trunc-stack-pop (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
171 ;; pop and return the topmost element from the stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
172 (prog1 (trunc-stack-top stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
173 (set-trunc-stack-stack stack (cdr (trunc-stack-stack stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
174 (set-trunc-stack-length stack (1- (trunc-stack-length stack)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
175
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
176 (defun trunc-stack-truncate (stack &optional n)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
177 ;; truncate N items off the bottom of the stack. If the stack is
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
178 ;; not that big, it just becomes empty.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
179 (or n (setq n 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
180 (if (> n 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
181 (let ((len (trunc-stack-length stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
182 (if (>= n len)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
183 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
184 (set-trunc-stack-length stack 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
185 (set-trunc-stack-stack stack nil))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
186 (setcdr (nthcdr (1- (- len n)) (trunc-stack-stack stack)) nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
187 (set-trunc-stack-length stack (- len n))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
188
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
189 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
190
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
191 ;;; FMH! FMH! FMH! This object-oriented stuff doesn't really work
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
192 ;;; properly without built-in structures (vectors suck) and without
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
193 ;;; public and private functions and fields.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
194
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
195 (defsubst undoable-stack-max (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
196 (aref stack 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
197
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
198 (defsubst undoable-stack-a (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
199 (aref stack 2))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
200
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
201 (defsubst undoable-stack-b (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
202 (aref stack 3))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
203
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
204 ;; public functions:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
205
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
206 (defun make-undoable-stack (max)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
207 ;; make an empty undoable stack of max size MAX.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
208 (vector 'undoable-stack max (make-trunc-stack) (make-trunc-stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
210 (defsubst set-undoable-stack-max (stack new)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
211 ;; change the max size of an undoable stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
212 (aset stack 1 new))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
213
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
214 (defun undoable-stack-a-top (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
215 ;; return the topmost element off the "A" stack of an undoable stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
216 ;; this is the most recent position pushed on the undoable stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
217 (trunc-stack-top (undoable-stack-a stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
218
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
219 (defun undoable-stack-a-length (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
220 (trunc-stack-length (undoable-stack-a stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
221
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
222 (defun undoable-stack-b-top (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
223 ;; return the topmost element off the "B" stack of an undoable stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
224 ;; this is the position that will become the most recent position,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
225 ;; after a redo operation.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
226 (trunc-stack-top (undoable-stack-b stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
227
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
228 (defun undoable-stack-b-length (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
229 (trunc-stack-length (undoable-stack-b stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
230
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
231 (defun undoable-stack-push (stack el)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
232 ;; push an element onto the stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
233 (let*
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
234 ((lena (trunc-stack-length (undoable-stack-a stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
235 (lenb (trunc-stack-length (undoable-stack-b stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
236 (max (undoable-stack-max stack))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
237 (len (+ lena lenb)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
238 ;; maybe truncate some elements. We have to deal with the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
239 ;; possibility that we have more elements than our max
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
240 ;; (someone might have reduced the max).
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
241 (if (>= len max)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
242 (let ((must-nuke (1+ (- len max))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
243 ;; chop off must-nuke elements from the B stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
244 (trunc-stack-truncate (undoable-stack-b stack) must-nuke)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
245 ;; but if there weren't that many elements to chop,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
246 ;; take the rest off the A stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
247 (if (< lenb must-nuke)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
248 (trunc-stack-truncate (undoable-stack-a stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
249 (- must-nuke lenb)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
250 (trunc-stack-push (undoable-stack-a stack) el)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
251
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
252 (defun undoable-stack-pop (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
253 ;; pop an element off the stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
254 (trunc-stack-pop (undoable-stack-a stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
255
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
256 (defun undoable-stack-undo (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
257 ;; transfer an element from the top of A to the top of B.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
258 ;; return value is undefined.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
259 (trunc-stack-push (undoable-stack-b stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
260 (trunc-stack-pop (undoable-stack-a stack))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
261
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
262 (defun undoable-stack-redo (stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
263 ;; transfer an element from the top of B to the top of A.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
264 ;; return value is undefined.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
265 (trunc-stack-push (undoable-stack-a stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
266 (trunc-stack-pop (undoable-stack-b stack))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
267
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
268
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
269 ;;; undo-stack.el ends here