1 """Miscellaneous utility functions"""
2 from __future__
import absolute_import
, division
, print_function
, unicode_literals
16 random
.seed(hash(time
.time()))
19 def asint(obj
, default
=0):
20 """Make any value into an int, even if the cast fails"""
23 except (TypeError, ValueError):
28 def clamp(value
, low
, high
):
29 """Clamp a value to the specified range"""
30 return min(high
, max(low
, value
))
34 return int(time
.time() * 1000)
37 def add_parents(paths
):
38 """Iterate over each item in the set and add its parent directories."""
42 path
= path
.replace('//', '/')
45 parent_dir
= dirname(path
)
47 all_paths
.add(parent_dir
)
48 parent_dir
= dirname(parent_dir
)
52 def format_exception(exc
):
53 """Format an exception object for display"""
54 exc_type
, exc_value
, exc_tb
= sys
.exc_info()
55 details
= traceback
.format_exception(exc_type
, exc_value
, exc_tb
)
56 details
= '\n'.join(map(core
.decode
, details
))
57 if hasattr(exc
, 'msg'):
60 msg
= core
.decode(repr(exc
))
64 def sublist(values
, remove
):
65 """Subtracts list b from list a and returns the resulting list."""
66 # conceptually, c = a - b
69 if item
not in remove
:
77 def grep(pattern
, items
, squash
=True):
78 """Greps a list for items that match a pattern
80 :param squash: If only one item matches, return just that item
81 :returns: List of matching items
84 isdict
= isinstance(items
, dict)
85 if pattern
in __grep_cache
:
86 regex
= __grep_cache
[pattern
]
88 regex
= __grep_cache
[pattern
] = re
.compile(pattern
)
92 match
= regex
.match(item
)
95 groups
= match
.groups()
97 subitems
= match
.group(0)
102 subitems
= list(groups
)
104 matchdict
[item
] = items
[item
]
106 matched
.append(subitems
)
110 elif squash
and len(matched
) == 1:
120 An os.path.basename() implementation that always uses '/'
122 Avoid os.path.basename because git's output always
123 uses '/' regardless of platform.
126 return path
.rsplit('/', 1)[-1]
130 """Strip one level of directory"""
131 return path
.strip('/').split('/', 1)[-1]
134 def dirname(path
, current_dir
=''):
136 An os.path.dirname() implementation that always uses '/'
138 Avoid os.path.dirname because git's output always
139 uses '/' regardless of platform.
143 path
= path
.replace('//', '/')
144 path_dirname
= path
.rsplit('/', 1)[0]
145 if path_dirname
== path
:
147 return path
.rsplit('/', 1)[0]
151 """Split paths using '/' regardless of platform"""
152 return path
.split('/')
156 """Split a path-like name. Returns tuple "(head, tail)" where "tail" is
157 everything after the final slash. The "head" may be empty.
159 This is the same as os.path.split() but only uses '/' as the delimiter.
168 return (dirname(name
), basename(name
))
172 """Join paths using '/' regardless of platform
174 >>> join('a', 'b', 'c')
178 return '/'.join(paths
)
181 def normalize_slash(value
):
182 """Strip and normalize slashes in a string
184 >>> normalize_slash('///Meow///Cat///')
188 value
= value
.strip('/')
189 new_value
= value
.replace('//', '/')
190 while new_value
!= value
:
192 new_value
= value
.replace('//', '/')
197 """Join a list of paths using '/' regardless of platform
199 >>> pathjoin(['a', 'b', 'c'])
207 """Return all of the path components for the specified path
209 >>> pathset('foo/bar/baz') == ['foo', 'foo/bar', 'foo/bar/baz']
214 parts
= splitpath(path
)
217 result
.append(prefix
+ part
)
223 def select_directory(paths
):
224 """Return the first directory in a list of paths"""
232 return os
.path
.dirname(paths
[0]) or core
.getcwd()
235 def strip_prefix(prefix
, string
):
236 """Return string, without the prefix. Blow up if string doesn't
237 start with prefix."""
238 assert string
.startswith(prefix
)
239 return string
[len(prefix
) :]
243 """Removes shell metacharacters from a string."""
244 for char
in """ \t!@#$%^&*()\\;,<>"'[]{}~|""":
245 value
= value
.replace(char
, '_')
249 def tablength(word
, tabwidth
):
250 """Return length of a word taking tabs into account
252 >>> tablength("\\t\\t\\t\\tX", 8)
256 return len(word
.replace('\t', '')) + word
.count('\t') * tabwidth
259 def _shell_split_py2(value
):
260 """Python2 requires bytes inputs to shlex.split(). Returns [unicode]"""
262 result
= shlex
.split(core
.encode(value
))
264 result
= core
.encode(value
).strip().split()
265 # Decode to unicode strings
266 return [core
.decode(arg
) for arg
in result
]
269 def _shell_split_py3(value
):
270 """Python3 requires unicode inputs to shlex.split(). Converts to unicode"""
272 result
= shlex
.split(value
)
274 result
= core
.decode(value
).strip().split()
279 def shell_split(value
):
281 # Encode before calling split()
282 values
= _shell_split_py2(value
)
284 # Python3 does not need the encode/decode dance
285 values
= _shell_split_py3(value
)
289 def tmp_filename(label
, suffix
=''):
290 label
= 'git-cola-' + label
.replace('/', '-').replace('\\', '-')
291 with tempfile
.NamedTemporaryFile(
292 prefix
=label
+ '-', suffix
=suffix
, delete
=False
298 """Is this a linux machine?"""
299 return sys
.platform
.startswith('linux')
304 return os
.path
.exists('/usr/bin/apt-get')
308 """Return True on OSX."""
309 return sys
.platform
== 'darwin'
313 """Return True on win32"""
314 return sys
.platform
in {'win32', 'cygwin'}
317 def launch_default_app(paths
):
318 """Execute the default application on the specified paths"""
321 if hasattr(os
, 'startfile'):
322 os
.startfile(path
) # pylint: disable=no-member
328 launcher
= 'xdg-open'
330 core
.fork([launcher
] + paths
)
333 def expandpath(path
):
334 """Expand ~user/ and environment $variables"""
335 path
= os
.path
.expandvars(path
)
336 if path
.startswith('~'):
337 path
= os
.path
.expanduser(path
)
342 """Operate on a collection of objects as a single unit"""
344 def __init__(self
, *members
):
345 self
._members
= members
347 def __getattr__(self
, name
):
348 """Return a function that relays calls to the group"""
350 def relay(*args
, **kwargs
):
351 for member
in self
._members
:
352 method
= getattr(member
, name
)
353 method(*args
, **kwargs
)
355 setattr(self
, name
, relay
)
360 """Wrap an object and override attributes"""
362 def __init__(self
, obj
, **overrides
):
364 for k
, v
in overrides
.items():
367 def __getattr__(self
, name
):
368 return getattr(self
._obj
, name
)
371 def slice_func(input_items
, map_func
):
372 """Slice input_items and call `map_func` over every slice
374 This exists because of "errno: Argument list too long"
377 # This comment appeared near the top of include/linux/binfmts.h
378 # in the Linux source tree:
381 # * MAX_ARG_PAGES defines the number of pages allocated for arguments
382 # * and envelope for the new program. 32 should suffice, this gives
383 # * a maximum env+arg of 128kB w/4KB pages!
385 # #define MAX_ARG_PAGES 32
387 # 'size' is a heuristic to keep things highly performant by minimizing
388 # the number of slices. If we wanted it to run as few commands as
389 # possible we could call "getconf ARG_MAX" and make a better guess,
390 # but it's probably not worth the complexity (and the extra call to
391 # getconf that we can't do on Windows anyways).
393 # In my testing, getconf ARG_MAX on Mac OS X Mountain Lion reported
394 # 262144 and Debian/Linux-x86_64 reported 2097152.
396 # The hard-coded max_arg_len value is safely below both of these
399 # 4K pages x 32 MAX_ARG_PAGES
400 max_arg_len
= (32 * 4096) // 4 # allow plenty of space for the environment
401 max_filename_len
= 256
402 size
= max_arg_len
// max_filename_len
408 items
= copy
.copy(input_items
)
410 stat
, out
, err
= map_func(items
[:size
])
412 status
= min(stat
, status
)
414 status
= max(stat
, status
)
419 return (status
, '\n'.join(outs
), '\n'.join(errs
))
422 class Sequence(object):
423 def __init__(self
, sequence
):
424 self
.sequence
= sequence
426 def index(self
, item
, default
=-1):
428 idx
= self
.sequence
.index(item
)
433 def __getitem__(self
, idx
):
434 return self
.sequence
[idx
]
437 def catch_runtime_error(func
, *args
, **kwargs
):
438 """Run the function safely.
440 Catch RuntimeError to avoid tracebacks during application shutdown.
443 # Signals and callbacks can sometimes get triggered during application shutdown.
444 # This can happen when exiting while background tasks are still processing.
445 # Guard against this by making this operation a no-op.
448 result
= func(*args
, **kwargs
)
452 return (valid
, result
)