-
Notifications
You must be signed in to change notification settings - Fork 4
/
undo.py
310 lines (237 loc) · 8.29 KB
/
undo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
# PiTiVi , Non-linear video editor
#
# pitivi/undo/undo.py
#
# Copyright (c) 2009, Alessandro Decina <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
# Boston, MA 02110-1301, USA.
"""
Base classes for the undo/redo feature implementation
"""
from signallable import Signallable
from loggable import Loggable
class UndoError(Exception):
pass
class UndoWrongStateError(UndoError):
pass
class UndoableAction(Signallable):
__signals__ = {
"done": [],
"undone": [],
"undone": [],
}
def do(self):
raise NotImplementedError()
def undo(self):
raise NotImplementedError()
def clean(self):
pass
def _done(self):
self.emit("done")
def _undone(self):
self.emit("undone")
class UndoableActionStack(UndoableAction):
__signals__ = {
"done": [],
"undone": [],
"cleaned": [],
}
def __init__(self, action_group_name):
self.action_group_name = action_group_name
self.done_actions = []
self.undone_actions = []
self.actions = []
def push(self, action):
self.done_actions.append(action)
def _runAction(self, action_list, method_name):
for action in action_list[::-1]:
method = getattr(action, method_name)
method()
def do(self):
self._runAction(self.undone_actions, "do")
self.done_actions = self.undone_actions[::-1]
self.emit("done")
def undo(self):
self._runAction(self.done_actions, "undo")
self.undone_actions = self.done_actions[::-1]
self.emit("undone")
def clean(self):
actions = self.done_actions + self.undone_actions
self.undone_actions = []
self.done_actions = []
self._runAction(actions, "clean")
self.emit("cleaned")
class UndoableActionLog(Signallable, Loggable):
__signals__ = {
"begin": ["stack", "nested"],
"push": ["stack", "action"],
"rollback": ["stack", "nested"],
"commit": ["stack", "nested"],
"undo": ["stack"],
"redo": ["stack"],
"cleaned": [],
}
def __init__(self):
Loggable.__init__(self)
self.undo_stacks = []
self.redo_stacks = []
self.stacks = []
self.running = False
self._checkpoint = self._takeSnapshot()
def begin(self, action_group_name):
self.debug("Begining %s", action_group_name)
if self.running:
return
stack = UndoableActionStack(action_group_name)
nested = self._stackIsNested(stack)
self.stacks.append(stack)
self.emit("begin", stack, nested)
def push(self, action):
self.debug("Pushing %s", action)
if self.running:
return
try:
stack = self._getTopmostStack()
except UndoWrongStateError:
return
stack.push(action)
self.emit("push", stack, action)
def rollback(self):
if self.running:
return
stack = self._getTopmostStack(pop=True)
if stack is None:
return
nested = self._stackIsNested(stack)
self.emit("rollback", stack, nested)
stack.undo()
def commit(self):
if self.running:
return
stack = self._getTopmostStack(pop=True)
if stack is None:
return
nested = self._stackIsNested(stack)
if not self.stacks:
self.undo_stacks.append(stack)
else:
self.stacks[-1].push(stack)
if self.redo_stacks:
self.redo_stacks = []
self.debug("%s pushed", stack)
self.emit("commit", stack, nested)
def undo(self):
if self.stacks or not self.undo_stacks:
raise UndoWrongStateError()
stack = self.undo_stacks.pop(-1)
self._runStack(stack, stack.undo)
self.redo_stacks.append(stack)
self.emit("undo", stack)
def redo(self):
if self.stacks or not self.redo_stacks:
raise UndoWrongStateError()
stack = self.redo_stacks.pop(-1)
self._runStack(stack, stack.do)
self.undo_stacks.append(stack)
self.emit("redo", stack)
def clean(self):
stacks = self.redo_stacks + self.undo_stacks
self.redo_stacks = []
self.undo_stacks = []
for stack in stacks:
self._runStack(stack, stack.clean)
self.emit("cleaned")
def _takeSnapshot(self):
return list(self.undo_stacks)
def checkpoint(self):
if self.stacks:
raise UndoWrongStateError()
self._checkpoint = self._takeSnapshot()
def dirty(self):
current_snapshot = self._takeSnapshot()
return current_snapshot != self._checkpoint
def _runStack(self, stack, run):
self.running = True
try:
run()
finally:
self.running = False
def _getTopmostStack(self, pop=False):
stack = None
try:
if pop:
stack = self.stacks.pop(-1)
else:
stack = self.stacks[-1]
except IndexError:
raise UndoWrongStateError()
return stack
def _stackIsNested(self, stack):
return bool(len(self.stacks))
class DebugActionLogObserver(Loggable):
def startObserving(self, log):
self._connectToActionLog(log)
def stopObserving(self, log):
self._disconnectFromActionLog(log)
def _connectToActionLog(self, log):
log.connect("begin", self._actionLogBeginCb)
log.connect("commit", self._actionLogCommitCb)
log.connect("rollback", self._actionLogRollbackCb)
log.connect("push", self._actionLogPushCb)
def _disconnectFromActionLog(self, log):
for method in (self._actionLogBeginCb, self._actionLogCommitCb,
self._actionLogrollbackCb, self._actionLogPushCb):
log.disconnect_by_func(method)
def _actionLogBeginCb(self, log, stack, nested):
self.debug("begin action %s nested %s",
stack.action_group_name, nested)
def _actionLogCommitCb(self, log, stack, nested):
self.debug("commit action %s nested %s",
stack.action_group_name, nested)
def _actionLogRollbackCb(self, log, stack, nested):
self.debug("rollback action %s nested %s",
stack.action_group_name, nested)
def _actionLogPushCb(self, log, stack, action):
self.debug("push %s in %s", action, stack.action_group_name)
class PropertyChangeTracker(Signallable):
"""
BaseClasse to track a class property, Used for undo/redo
"""
__signals__ = {}
def __init__(self):
self.properties = {}
self.obj = None
def connectToObject(self, obj):
self.obj = obj
self.properties = self._takeCurrentSnapshot(obj)
for property_name in self.property_names:
signal_name = "notify::" + property_name
self.__signals__[signal_name] = []
obj.connect(signal_name,
self._propertyChangedCb, property_name)
def _takeCurrentSnapshot(self, obj):
properties = {}
for property_name in self.property_names:
properties[property_name] = \
obj.get_property(property_name.replace("-", "_"))
return properties
def disconnectFromObject(self, obj):
self.obj = None
obj.disconnect_by_func(self._propertyChangedCb)
def _propertyChangedCb(self, object, value, property_name):
old_value = self.properties[property_name]
self.properties[property_name] = value
self.emit("notify::" + property_name, object, old_value, value)