-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmisc.py
More file actions
383 lines (317 loc) · 11.5 KB
/
misc.py
File metadata and controls
383 lines (317 loc) · 11.5 KB
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
# Copyright (C) 2002-2006 Stephen Kennedy <stevek@gnome.org>
# Copyright (C) 2009 Vincent Legoll <vincent.legoll@gmail.com>
# Copyright (C) 2012-2013 Kai Willadsen <kai.willadsen@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 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
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Module of commonly used helper classes and functions
"""
import os
import errno
import shutil
import re
import subprocess
from gi.repository import Gtk
from meld.conf import _
if os.name != "nt":
from select import select
else:
import time
def select(rlist, wlist, xlist, timeout):
time.sleep(timeout)
return rlist, wlist, xlist
def error_dialog(primary, secondary):
"""A common error dialog handler for Meld
This should only ever be used as a last resort, and for errors that
a user is unlikely to encounter. If you're tempted to use this,
think twice.
Primary must be plain text. Secondary must be valid markup.
"""
return modal_dialog(
primary, secondary, Gtk.ButtonsType.CLOSE, parent=None,
messagetype=Gtk.MessageType.ERROR)
def modal_dialog(
primary, secondary, buttons, parent=None,
messagetype=Gtk.MessageType.WARNING):
"""A common message dialog handler for Meld
This should only ever be used for interactions that must be resolved
before the application flow can continue.
Primary must be plain text. Secondary must be valid markup.
"""
if not parent:
from meld.meldapp import app
parent = app.get_active_window()
elif not isinstance(parent, Gtk.Window):
parent = parent.get_toplevel()
if isinstance(buttons, Gtk.ButtonsType):
custom_buttons = []
else:
custom_buttons, buttons = buttons, Gtk.ButtonsType.NONE
dialog = Gtk.MessageDialog(
transient_for=parent,
modal=True,
destroy_with_parent=True,
message_type=messagetype,
buttons=buttons,
text=primary)
dialog.format_secondary_markup(secondary)
for label, response_id in custom_buttons:
dialog.add_button(label, response_id)
response = dialog.run()
dialog.destroy()
return response
# Taken from epiphany
def position_menu_under_widget(menu, widget):
container = widget.get_ancestor(Gtk.Container)
widget_width = widget.get_allocation().width
menu_width = menu.get_allocation().width
menu_height = menu.get_allocation().height
screen = menu.get_screen()
monitor_num = screen.get_monitor_at_window(widget.get_window())
if monitor_num < 0:
monitor_num = 0
monitor = screen.get_monitor_geometry(monitor_num)
unused, x, y = widget.get_window().get_origin()
allocation = widget.get_allocation()
if not widget.get_has_window():
x += allocation.x
y += allocation.y
if container.get_direction() == Gtk.TextDirection.LTR:
x += allocation.width - widget_width
else:
x += widget_width - menu_width
if (y + allocation.height + menu_height) <= monitor.y + monitor.height:
y += allocation.height
elif (y - menu_height) >= monitor.y:
y -= menu_height
elif monitor.y + monitor.height - (y + allocation.height) > y:
y += allocation.height
else:
y -= menu_height
return (x, y, False)
def make_tool_button_widget(label):
"""Make a GtkToolButton label-widget suggestive of a menu dropdown"""
arrow = Gtk.Arrow(
arrow_type=Gtk.ArrowType.DOWN, shadow_type=Gtk.ShadowType.NONE)
label = Gtk.Label(label=label)
hbox = Gtk.HBox(spacing=3)
hbox.pack_end(arrow, True, True, 0)
hbox.pack_end(label, True, True, 0)
hbox.show_all()
return hbox
def gdk_to_cairo_color(color):
return (color.red / 65535., color.green / 65535., color.blue / 65535.)
def fallback_decode(bytes, encodings, lossy=False):
"""Try and decode bytes according to multiple encodings
Generally, this should be used for best-effort decoding, when the
desired behaviour is "probably this, or UTF-8".
If lossy is True, then decode errors will be replaced. This may be
reasonable when the string is for display only.
"""
if isinstance(bytes, unicode):
return bytes
for encoding in encodings:
try:
return bytes.decode(encoding)
except UnicodeDecodeError:
pass
if lossy:
return bytes.decode(encoding, errors='replace')
raise ValueError(
"Couldn't decode %r as one of %r" % (bytes, encodings))
def all_same(lst):
"""Return True if all elements of the list are equal"""
return not lst or lst.count(lst[0]) == len(lst)
def shorten_names(*names):
"""Remove redunant parts of a list of names (e.g. /tmp/foo{1,2} -> foo{1,2}
"""
# TODO: Update for different path separators
prefix = os.path.commonprefix(names)
prefixslash = prefix.rfind("/") + 1
names = [n[prefixslash:] for n in names]
paths = [n.split("/") for n in names]
try:
basenames = [p[-1] for p in paths]
except IndexError:
pass
else:
if all_same(basenames):
def firstpart(alist):
if len(alist) > 1:
return "[%s] " % alist[0]
else:
return ""
roots = [firstpart(p) for p in paths]
base = basenames[0].strip()
return [r + base for r in roots]
# no common path. empty names get changed to "[None]"
return [name or _("[None]") for name in basenames]
def read_pipe_iter(command, workdir, errorstream, yield_interval=0.1):
"""Read the output of a shell command iteratively.
Each time 'callback_interval' seconds pass without reading any data,
this function yields None.
When all the data is read, the entire string is yielded.
"""
class sentinel(object):
def __init__(self):
self.proc = None
def __del__(self):
if self.proc:
errorstream.error("killing '%s'\n" % command[0])
self.proc.terminate()
errorstream.error("killed (status was '%i')\n" %
self.proc.wait())
def __call__(self):
self.proc = subprocess.Popen(command, cwd=workdir,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
self.proc.stdin.close()
childout, childerr = self.proc.stdout, self.proc.stderr
bits = []
while len(bits) == 0 or bits[-1] != "":
state = select([childout, childerr], [], [childout, childerr],
yield_interval)
if len(state[0]) == 0:
if len(state[2]) == 0:
yield None
else:
raise Exception("Error reading pipe")
if childout in state[0]:
try:
# get buffer size
bits.append(childout.read(4096))
except IOError:
# FIXME: ick need to fix
break
if childerr in state[0]:
try:
# how many chars?
errorstream.error(childerr.read(1))
except IOError:
# FIXME: ick need to fix
break
status = self.proc.wait()
errorstream.error(childerr.read())
self.proc = None
if status:
errorstream.error("Exit code: %i\n" % status)
yield status, "".join(bits)
return sentinel()()
def write_pipe(command, text, error=None):
"""Write 'text' into a shell command and discard its stdout output.
"""
proc = subprocess.Popen(command, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=error)
proc.communicate(text)
return proc.wait()
def copy2(src, dst):
"""Like shutil.copy2 but ignores chmod errors, and copies symlinks as links
See [Bug 568000] Copying to NTFS fails
"""
if os.path.isdir(dst):
dst = os.path.join(dst, os.path.basename(src))
if os.path.islink(src) and os.path.isfile(src):
if os.path.lexists(dst):
os.unlink(dst)
os.symlink(os.readlink(src), dst)
elif os.path.isfile(src):
shutil.copyfile(src, dst)
else:
raise OSError("Not a file")
try:
shutil.copystat(src, dst)
except OSError as e:
if e.errno not in (errno.EPERM, errno.ENOTSUP):
raise
def copytree(src, dst):
"""Similar to shutil.copytree, but always copies symlinks and doesn't
error out if the destination path already exists.
"""
# If the source tree is a symlink, duplicate the link and we're done.
if os.path.islink(src):
os.symlink(os.readlink(src), dst)
return
try:
os.mkdir(dst)
except OSError as e:
if e.errno != errno.EEXIST:
raise
names = os.listdir(src)
for name in names:
srcname = os.path.join(src, name)
dstname = os.path.join(dst, name)
if os.path.islink(srcname):
os.symlink(os.readlink(srcname), dstname)
elif os.path.isdir(srcname):
copytree(srcname, dstname)
else:
copy2(srcname, dstname)
try:
shutil.copystat(src, dst)
except OSError as e:
if e.errno != errno.EPERM:
raise
def shell_escape(glob_pat):
# TODO: handle all cases
assert not re.compile(r"[][*?]").findall(glob_pat)
return glob_pat.replace('{', '[{]').replace('}', '[}]')
def shell_to_regex(pat):
"""Translate a shell PATTERN to a regular expression.
Based on fnmatch.translate().
We also handle {a,b,c} where fnmatch does not.
"""
i, n = 0, len(pat)
res = ''
while i < n:
c = pat[i]
i += 1
if c == '\\':
try:
c = pat[i]
except IndexError:
pass
else:
i += 1
res += re.escape(c)
elif c == '*':
res += '.*'
elif c == '?':
res += '.'
elif c == '[':
try:
j = pat.index(']', i)
except ValueError:
res += r'\['
else:
stuff = pat[i:j]
i = j+1
if stuff[0] == '!':
stuff = '^%s' % stuff[1:]
elif stuff[0] == '^':
stuff = r'\^%s' % stuff[1:]
res += '[%s]' % stuff
elif c == '{':
try:
j = pat.index('}', i)
except ValueError:
res += '\\{'
else:
stuff = pat[i:j]
i = j+1
res += '(%s)' % "|".join(
[shell_to_regex(p)[:-1] for p in stuff.split(",")]
)
else:
res += re.escape(c)
return res + "$"