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
|
# This file is part of the Frescobaldi project, http://www.frescobaldi.org/
#
# Copyright (c) 2008 - 2014 by Wilbert Berendsen
#
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# See http://www.gnu.org/licenses/ for more information.
"""
Some utility functions.
"""
import codecs
import glob
import itertools
import io
import os
import re
from PyQt5.QtCore import QDir
import appinfo
import variables
def findexe(cmd, path=None):
"""Checks the PATH for the executable and returns the absolute path or None.
If path (a list or tuple of directory names) is given, it is searched as
well when the operating system's PATH did not contain the executable.
"""
if os.path.isabs(cmd):
return cmd if os.access(cmd, os.X_OK) else None
else:
ucmd = os.path.expanduser(cmd)
if os.path.isabs(ucmd):
return ucmd if os.access(ucmd, os.X_OK) else None
elif os.sep in cmd and os.access(cmd, os.X_OK):
return os.path.abspath(cmd)
else:
paths = os.environ.get("PATH", os.defpath).split(os.pathsep)
if path:
paths = itertools.chain(paths, path)
for p in paths:
if os.access(os.path.join(p, cmd), os.X_OK):
return os.path.join(p, cmd)
def iswritable(path):
"""Returns True if the path can be written to or created."""
return ((os.path.exists(path) and os.access(path, os.W_OK))
or os.access(os.path.dirname(path), os.W_OK))
if os.name == 'nt':
def equal_paths(p1, p2):
"""Returns True if the paths are equal (case and separator insensitive)."""
return p1.lower().replace('\\', '/') == p2.lower().replace('\\', '/')
else:
def equal_paths(p1, p2):
"""Returns True if the paths are equal."""
return p1 == p2
# Make sure that also on Windows, directory slashes remain forward
if os.name == 'nt':
def normpath(path):
"""A version of os.path.normpath that keeps slashes forward."""
return os.path.normpath(path).replace('\\', '/')
else:
normpath = os.path.normpath
def homify(path):
"""Replaces the home directory (if present) in the path with a tilde (~)."""
homedir = QDir.homePath()
if equal_paths(path[:len(homedir)+1], homedir + '/'):
path = "~" + path[len(homedir):]
return path
def tempdir():
"""Returns a temporary directory that is erased on app quit."""
import tempfile
global _tempdir
try:
_tempdir
except NameError:
_tempdir = tempfile.mkdtemp(prefix = appinfo.name +'-')
import atexit
@atexit.register
def remove():
import shutil
shutil.rmtree(_tempdir, ignore_errors=True)
return tempfile.mkdtemp(dir=_tempdir)
def files(basenames, extension = '.*'):
"""Yields filenames with the given basenames matching the given extension."""
def source():
for name in basenames:
name = name.replace('[', '[[]').replace('?', '[?]').replace('*', '[*]')
if name.endswith(('/', '\\')):
yield glob.iglob(name + '*' + extension)
else:
yield glob.iglob(name + extension)
yield glob.iglob(name + '-*[0-9]' + extension)
return sorted(uniq(itertools.chain.from_iterable(source())), key=filenamesort)
def newer_files(files, time):
"""Return a list of files that have their mtime >= time."""
return [f for f in files if os.path.getmtime(f) >= time]
def group_files(names, groups):
"""Groups the given filenames by extension.
names: an iterable (or list or tuple) yielding filenames.
groups: an iterable (or list or tuple) yielding strings.
Each group is a string containing one or more extensions, without period,
separated by a space. If a filename has one of the extensions in the group,
the names is added to the list of file for that group.
An exclamation sign at the beginning of the string negates the match.
Yields the same number of lists as there were group arguments.
"""
allgroups = []
for group in groups:
if group.startswith('!'):
pred = lambda e, ext=group[1:].split(): e not in ext
else:
pred = lambda e, ext=group.split(): e in ext
allgroups.append(([], pred))
for name in names:
ext = os.path.splitext(name)[1][1:].lower()
for files, pred in allgroups:
if pred(ext):
files.append(name)
break
return (files for files, pred in allgroups)
def naturalsort(text):
"""Returns a key for the list.sort() method.
Intended to sort strings in a human way, for e.g. version numbers.
"""
return tuple(int(s) if s.isdigit() else s for s in re.split(r'(\d+)', text))
def filenamesort(filename):
"""Return a key for sorting filenames."""
name, ext = os.path.splitext(filename)
return naturalsort(name), ext
def next_file(filename):
"""Return a similar filename with e.g. "-1" added before the extension.
If there is already a "-n" before the extension, where n is a number,
the number is increased by one.
"""
name, ext = os.path.splitext(filename)
try:
a, b = name.rsplit('-', 1)
num = int(b)
except ValueError:
name += '-1'
else:
name = a + '-' + format(num+1)
return name + ext
def bytes_environ(encoding='latin1'):
"""Return the environment as a dictionary with bytes keys and values.
This can be used for subprocess, as it chokes on Windows on unicode strings
in Python 2.x.
"""
return dict((s.encode(encoding) if type(s) is not type(b'') else s
for s in v) for v in os.environ.items())
def uniq(iterable):
"""Returns an iterable, removing duplicates. The items should be hashable."""
s, l = set(), 0
for i in iterable:
s.add(i)
if len(s) > l:
yield i
l = len(s)
def get_bom(data):
"""Get the BOM mark of data, if any.
A two-tuple is returned (encoding, data). If the data starts with a BOM
mark, its encoding is determined and the BOM mark is stripped off.
Otherwise, the returned encoding is None and the data is returned
unchanged.
"""
for bom, encoding in (
(codecs.BOM_UTF8, 'utf-8'),
(codecs.BOM_UTF16_LE, 'utf_16_le'),
(codecs.BOM_UTF16_BE, 'utf_16_be'),
(codecs.BOM_UTF32_LE, 'utf_32_le'),
(codecs.BOM_UTF32_BE, 'utf_32_be'),
):
if data.startswith(bom):
return encoding, data[len(bom):]
return None, data
def decode(data, encoding=None):
"""Decode binary data, using encoding if specified.
When the encoding can't be determined and isn't specified, it is tried to
get the encoding from the document variables (see variables module).
Otherwise utf-8 and finally latin1 are tried.
"""
enc, data = get_bom(data)
for e in (enc, encoding):
if e:
try:
return data.decode(e)
except (UnicodeError, LookupError):
pass
latin1 = data.decode('latin1') # this never fails
encoding = variables.variables(latin1).get("coding")
for e in (encoding, 'utf-8'):
if e and e != 'latin1':
try:
return data.decode(e)
except (UnicodeError, LookupError):
pass
return latin1
def encode(text, encoding=None, default_encoding='utf-8'):
"""Return the bytes representing the text, encoded.
Looks at the specified encoding or the 'coding' variable to determine
the encoding, otherwise falls back to the given default encoding,
defaulting to 'utf-8'.
"""
enc = encoding or variables.variables(text).get("coding")
if enc:
try:
return text.encode(encoding)
except (LookupError, UnicodeError):
pass
return text.encode(default_encoding)
def universal_newlines(text):
"""Converts '\\r' or '\\r\\n' to '\\n' in text."""
return io.StringIO(text, newline=None).read()
def platform_newlines(text):
"""Convert newlines in text to the platform-specific newline.
On Unix/Linux/Mac OS X this is '\\n', on Windows '\\r\\n'.
"""
return universal_newlines(text).replace('\n', os.linesep)
|