-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgui.py
executable file
·420 lines (337 loc) · 13.5 KB
/
gui.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#!/usr/bin/env python
import urwid
import sys, os
import re
import errno
import storage
from observable import ObservableProperty
f = open('/tmp/log_gui.txt', 'w+', False)
SKIP_PREFIX = "/home/afenkart/"
MIN_FILESIZE = 65536
Storage = storage.Storage(memory=False)
Storage.create_indices()
class Data(object):
# collisions represented by first filename
collisions = ObservableProperty(list())
# collision row to be resolved
collision = ObservableProperty(list())
# all filenames of selected collision
filenames = ObservableProperty(list())
# filename target of action
filename = ObservableProperty(str())
# hard-link to file
hardlink_target = ObservableProperty(None)
# selected action, used to confirm
action = ObservableProperty()
D = Data()
D.collisions = Storage.duplicates(MIN_FILESIZE).fetchall()
def strip_prefix(filename):
if filename.startswith(SKIP_PREFIX):
return filename[len(SKIP_PREFIX):]
else:
return filename
class MenuButton(urwid.Button):
def __init__(self, caption, callback):
super(MenuButton, self).__init__("")
urwid.connect_signal(self, 'click', callback)
self._w = urwid.AttrMap(urwid.SelectableIcon(
[" ", caption], 2), 'None', 'selected')
class MyListWalker(urwid.ListWalker):
def __init__(self, data, render_fun, callback):
self.data = data
self.render_fun = render_fun
self.focus = 0
self.callback = callback
def set_focus(self, focus):
self.focus = focus
self._modified()
def next_position(self, idx):
if idx >= len(self.data) - 1:
raise IndexError
return (idx + 1)
def prev_position(self, idx):
if (idx < 1):
raise IndexError
return idx - 1
def __getitem__(self, idx):
cur = self.data[idx]
return MenuButton(self.render_fun(self.data[idx]), self.callback)
class CollisionsWalker(urwid.WidgetWrap):
def __init__(self):
render_fun = lambda x: "%2d %7dk %s" % (x['Count'], x['st_size']/1000,
strip_prefix(x['Name']))
Data.collisions.observe(self.update)
self.walker = MyListWalker(D.collisions, render_fun, self.callback)
urwid.WidgetWrap.__init__(self, urwid.ListBox(self.walker))
def callback(self, widget):
index = self._w.focus_position
row = D.collisions[index]
D.collision = row
f.write("button callback %r %r\n" % (row['crc32'], row['sha1']))
browse_into(self, None)
def update(self):
f.write("CollisionsWalker data changed\n")
self.walker.data = D.collisions
if self.walker.focus >= len(D.collisions):
self.walker.focus -= 1;
self.walker._modified()
class FilenamesWalker(urwid.WidgetWrap):
def __init__(self):
render_fun = lambda x: "%d %s" % (x['st_inode'], x['Name'])
Data.filenames.observe(self.update)
self.walker = MyListWalker(D.filenames, render_fun, self.callback)
urwid.WidgetWrap.__init__(self, urwid.ListBox(self.walker))
def callback(self, widget):
index = self._w.focus_position
D.filename = D.filenames[index]['Name']
f.write("button callback %r\n" % D.filename)
browse_into(self, None)
def update(self):
f.write("FilenamesWalker data changed\n")
self.walker.data = D.filenames
if self.walker.focus >= len(D.filenames):
self.walker.focus -= 1;
self.walker._modified()
class HardlinkMenu(urwid.WidgetWrap):
def __init__(self, overlay_parent):
hardlinks = [x for x in D.filenames if x['Name'] != D.filename]
render_fun = lambda x: "%d %s" % (x['st_inode'], x['Name'])
self.walker = MyListWalker(hardlinks, render_fun, self.callback)
self.hardlinks = hardlinks
title = "hard-link file %s to:" % D.filename
pile = urwid.Pile([urwid.AttrMap(urwid.Text(title), 'title'),
urwid.Divider()])
pile.selectable = False
self.frame = urwid.Frame(urwid.ListBox(self.walker),
header = pile)
self.overlay = urwid.Overlay(self.frame,
overlay_parent,
align='center', width=('relative', 90),
valign='middle', height=('relative', 60),
min_width=20, min_height=9)
urwid.WidgetWrap.__init__(self, self.overlay)
def callback(self, widget):
index = self.walker.focus
row = self.hardlinks[index]
f.write("button callback %r\n" % self.hardlinks[index]['Name'])
D.hardlink_target = row
browse_into(self, None)
class ContextMenu(urwid.WidgetWrap):
def __init__(self, overlay_parent, options):
self.title = urwid.Text(strip_prefix(D.filename))
self.children = options
body = [MenuButton(c, self.callback) for c in options]
self.walker = urwid.SimpleFocusListWalker(body)
pile = urwid.Pile([urwid.AttrMap(self.title, 'title'),
urwid.Divider()])
self.frame = urwid.Frame(urwid.ListBox(self.walker),
header = pile)
self.overlay = urwid.Overlay(self.frame,
overlay_parent,
align='center', width=('relative', 80),
valign='middle', height=('relative', 60),
min_width=20, min_height=9)
urwid.WidgetWrap.__init__(self, self.overlay)
def callback(self, widget):
D.action = self.children[self.walker.focus]
f.write("button callback %r\n" % D.action)
browse_into(self, D.action)
def createSimpleListWalker(title, elts, callback):
body = [urwid.AttrMap(urwid.Text(title), 'title', 'None')]
body.append(urwid.Divider())
body.extend([MenuButton(c, callback) for c in elts])
return urwid.SimpleFocusListWalker(body)
class ConfirmAction(urwid.WidgetWrap):
def __init__(self, title, overlay_parent):
f.write("confirm action %s\n" % title)
self.title = title
self.ok_cancel = ['Ok', 'Cancel']
self.walker = createSimpleListWalker(title, self.ok_cancel,
self.callback)
self.frame = urwid.Overlay(urwid.ListBox(self.walker),
overlay_parent,
align='center', width=('relative', 80),
valign='bottom', height=('relative', 30),
min_width=20, min_height=9)
urwid.WidgetWrap.__init__(self, self.frame)
def callback(self, widget):
f.write("button callback %r\n" % self._w.focus.focus_position)
elt = self.ok_cancel[self.walker.focus - 2]
browse_into(self, elt == 'Ok')
class Action:
@staticmethod
def hardlink(source, linkname):
f.write("do hard link %s\n" % (linkname))
os.unlink(linkname)
os.link(source, linkname)
Storage.replace_with_hardlink(source, linkname)
@staticmethod
def remove(filename):
f.write("do remove %s\n" % (filename))
try:
os.remove(filename)
except OSError, e:
if e.errno == errno.ENOENT:
# nothing to remove
pass
else:
raise e
Storage.remove_file(filename)
class Representation:
@staticmethod
def update_filenames():
f.write("update filenames\n")
filenames = Storage.files_by_crc32(D.collision['crc32'])
D.filenames = filenames.fetchall()
@staticmethod
def update_collisions():
f.write("update collisions\n")
coll = D.collisions
s = set([(c['st_dev'], c['st_inode']) for c in D.filenames])
if len(s) == D.collision['Count']:
f.write("no change in collision count\n")
return
# can't change sqlite.row element
D.collisions = Storage.duplicates(MIN_FILESIZE).fetchall()
# (parent, child)
edges = []
# (from, to) -> execute side_effect
side_effects = {}
# what to do in given state no matter from where
# typically show some frame
state_effects = {}
# only for non-ambiguity of state machine, automatically change to child state
transient_nodes = []
def child_if_arg(parent, arg):
match = [ dst for (src, dst, cond) in edges if src == parent and arg == cond]
if not match:
f.write("node:%s has no child for arg:%s\n" % (parent, arg))
assert(False)
return match[0]
def parent_of(child):
match = filter(lambda edge: edge[1] == child, edges)
if not match:
return None
edge = match[0]
return edge[0]
# navigation graph
collisions = "collisions"
filenames = "filenames"
context_menu = "actions"
see_file = "see"
delete_confirm = "delete"
#delete_execute = "delete execute"
hardlink_sel_source = "hard link select source"
hardlink_confirm = "hard link confirm"
hardlink_execute = "hard link execute"
edges.append((collisions, filenames, None))
edges.append((filenames, context_menu, None))
# doesn context_menu, filenames, see_file -> multiple (xx, filenames) edge
edges.append((context_menu, see_file, see_file))
edges.append((see_file, context_menu, None))
edges.append((context_menu, delete_confirm, delete_confirm))
edges.append((delete_confirm, filenames, True))
edges.append((delete_confirm, context_menu, False))
edges.append((context_menu, hardlink_sel_source, 'hardlink'))
edges.append((hardlink_sel_source, hardlink_confirm, None))
edges.append((hardlink_confirm, context_menu, False))
edges.append((hardlink_confirm, hardlink_execute, True))
edges.append((hardlink_execute, filenames, None))
transient_nodes.append(see_file)
transient_nodes.append(hardlink_execute)
fcw = CollisionsWalker()
def show_collisions():
global fcw;
return fcw
fnm = FilenamesWalker()
def show_filenames():
global fnm
return fnm
state_effects[collisions] = show_collisions
state_effects[filenames] = show_filenames
state_effects[context_menu] = lambda: ContextMenu(main.original_widget,
['see', 'delete', 'hardlink'])
state_effects[delete_confirm] = lambda: ConfirmAction(delete_confirm,
main.original_widget)
state_effects[hardlink_sel_source] = lambda: HardlinkMenu(main.original_widget)
def hardlink_confirm_title():
return u'Hard-link file %s to %s' % (D.filename, D.hardlink_target['Name'])
state_effects[hardlink_confirm] = lambda: ConfirmAction(hardlink_confirm_title(),
main.original_widget)
def update_filenames(edge, arg):
Representation.update_filenames()
def update_collisions(edge, choice):
# TODO check some dirty flag
Representation.update_collisions()
def actions_remove(edge, confirmed):
Action.remove(D.filename)
Representation.update_filenames()
def action_see(edge, arg):
f.write("see %s\n" % re.escape(D.filename))
os.system("see %s" % re.escape(D.filename))
def action_hardlink(edge, arg):
Action.hardlink(D.hardlink_target['Name'], D.filename)
Representation.update_filenames()
side_effects[(collisions, filenames)] = update_filenames
side_effects[(filenames, collisions)] = update_collisions
side_effects[(delete_confirm, filenames)] = actions_remove
side_effects[(context_menu, see_file)] = action_see
side_effects[(hardlink_execute, filenames)] = action_hardlink
cur_node = collisions
frame_cache = {}
def transition(src, dst, arg):
global cur_node
f.write('transition [%s -> %s]\n' % (src, dst))
if side_effects.has_key((src, dst)):
f.write('side effects %s\n' % dst)
side_effects[(src, dst)]((src, dst), arg)
cur_node = dst
def activate_frame(node):
if not state_effects.has_key(cur_node):
f.write('no frame for state [%s]\n' % (node))
assert(False)
f.write('activate frame [%s]\n' % (node))
main.original_widget = state_effects[node]()
def browse_into(widget, arg):
global cur_node
f.write('[browse into] cur:%s arg:%r\n' % (cur_node, arg))
frame_cache[cur_node] = widget
child = child_if_arg(cur_node, arg)
transition(cur_node, child, arg)
if cur_node in transient_nodes:
child = child_if_arg(cur_node, None)
transition(cur_node, child, None)
activate_frame(cur_node)
def browse_out():
global cur_node
f.write('[browse out] cur:%s\n' % cur_node)
parent = parent_of(cur_node)
#(parent_too, widget) = browse_stack.pop()
#if parent != parent_too:
#main.original_widget = widget
if not parent:
f.write("node:%s has invalid parent %s\n" % (cur_node, parent))
return
transition(cur_node, parent, None)
main.original_widget = frame_cache[cur_node]
def unhandled_input(key):
if key == 'right':
widget = main.original_widget
widget.callback(None)
elif key == 'left':
browse_out();
elif (key == 'q'):
raise urwid.ExitMainLoop()
else:
f.write('unhandled_input\n')
palette = [
('body','black','dark cyan', 'standout'),
('edit','yellow', 'dark blue'),
('editfocus','yellow','dark cyan', 'bold'),
('foot','light gray', 'black'),
('key','light cyan', 'black', 'underline'),
('title', 'white', 'dark blue',),
('selected', 'white', 'dark blue'),
]
main = urwid.Padding(state_effects[cur_node](), left=0, right=0)
urwid.MainLoop(main, palette, unhandled_input=unhandled_input).run()