/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Martin
  • Date: 2009-11-28 00:48:03 UTC
  • mto: This revision was merged to the branch mainline in revision 4853.
  • Revision ID: gzlist@googlemail.com-20091128004803-nirz54wazyj0waf8
MergeDirective.from_lines claims to want an iterable but currently requires a list, rewrite so it really wants an iterable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006, 2007, 2009 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
import os
 
18
import re
 
19
import stat
 
20
from stat import (S_ISREG, S_ISDIR, S_ISLNK, ST_MODE, ST_SIZE,
 
21
                  S_ISCHR, S_ISBLK, S_ISFIFO, S_ISSOCK)
 
22
import sys
 
23
import time
 
24
import warnings
 
25
 
 
26
from bzrlib.lazy_import import lazy_import
 
27
lazy_import(globals(), """
 
28
import codecs
 
29
from datetime import datetime
 
30
import errno
 
31
from ntpath import (abspath as _nt_abspath,
 
32
                    join as _nt_join,
 
33
                    normpath as _nt_normpath,
 
34
                    realpath as _nt_realpath,
 
35
                    splitdrive as _nt_splitdrive,
 
36
                    )
 
37
import posixpath
 
38
import shutil
 
39
from shutil import (
 
40
    rmtree,
 
41
    )
 
42
import subprocess
 
43
import tempfile
 
44
from tempfile import (
 
45
    mkdtemp,
 
46
    )
 
47
import unicodedata
 
48
 
 
49
from bzrlib import (
 
50
    cache_utf8,
 
51
    errors,
 
52
    win32utils,
 
53
    )
 
54
""")
 
55
 
 
56
# sha and md5 modules are deprecated in python2.6 but hashlib is available as
 
57
# of 2.5
 
58
if sys.version_info < (2, 5):
 
59
    import md5 as _mod_md5
 
60
    md5 = _mod_md5.new
 
61
    import sha as _mod_sha
 
62
    sha = _mod_sha.new
 
63
else:
 
64
    from hashlib import (
 
65
        md5,
 
66
        sha1 as sha,
 
67
        )
 
68
 
 
69
 
 
70
import bzrlib
 
71
from bzrlib import symbol_versioning
 
72
 
 
73
 
 
74
# On win32, O_BINARY is used to indicate the file should
 
75
# be opened in binary mode, rather than text mode.
 
76
# On other platforms, O_BINARY doesn't exist, because
 
77
# they always open in binary mode, so it is okay to
 
78
# OR with 0 on those platforms
 
79
O_BINARY = getattr(os, 'O_BINARY', 0)
 
80
 
 
81
 
 
82
def get_unicode_argv():
 
83
    try:
 
84
        user_encoding = get_user_encoding()
 
85
        return [a.decode(user_encoding) for a in sys.argv[1:]]
 
86
    except UnicodeDecodeError:
 
87
        raise errors.BzrError(("Parameter '%r' is unsupported by the current "
 
88
                                                            "encoding." % a))
 
89
 
 
90
 
 
91
def make_readonly(filename):
 
92
    """Make a filename read-only."""
 
93
    mod = os.lstat(filename).st_mode
 
94
    if not stat.S_ISLNK(mod):
 
95
        mod = mod & 0777555
 
96
        os.chmod(filename, mod)
 
97
 
 
98
 
 
99
def make_writable(filename):
 
100
    mod = os.lstat(filename).st_mode
 
101
    if not stat.S_ISLNK(mod):
 
102
        mod = mod | 0200
 
103
        os.chmod(filename, mod)
 
104
 
 
105
 
 
106
def minimum_path_selection(paths):
 
107
    """Return the smallset subset of paths which are outside paths.
 
108
 
 
109
    :param paths: A container (and hence not None) of paths.
 
110
    :return: A set of paths sufficient to include everything in paths via
 
111
        is_inside, drawn from the paths parameter.
 
112
    """
 
113
    if len(paths) < 2:
 
114
        return set(paths)
 
115
 
 
116
    def sort_key(path):
 
117
        return path.split('/')
 
118
    sorted_paths = sorted(list(paths), key=sort_key)
 
119
 
 
120
    search_paths = [sorted_paths[0]]
 
121
    for path in sorted_paths[1:]:
 
122
        if not is_inside(search_paths[-1], path):
 
123
            # This path is unique, add it
 
124
            search_paths.append(path)
 
125
 
 
126
    return set(search_paths)
 
127
 
 
128
 
 
129
_QUOTE_RE = None
 
130
 
 
131
 
 
132
def quotefn(f):
 
133
    """Return a quoted filename filename
 
134
 
 
135
    This previously used backslash quoting, but that works poorly on
 
136
    Windows."""
 
137
    # TODO: I'm not really sure this is the best format either.x
 
138
    global _QUOTE_RE
 
139
    if _QUOTE_RE is None:
 
140
        _QUOTE_RE = re.compile(r'([^a-zA-Z0-9.,:/\\_~-])')
 
141
 
 
142
    if _QUOTE_RE.search(f):
 
143
        return '"' + f + '"'
 
144
    else:
 
145
        return f
 
146
 
 
147
 
 
148
_directory_kind = 'directory'
 
149
 
 
150
def get_umask():
 
151
    """Return the current umask"""
 
152
    # Assume that people aren't messing with the umask while running
 
153
    # XXX: This is not thread safe, but there is no way to get the
 
154
    #      umask without setting it
 
155
    umask = os.umask(0)
 
156
    os.umask(umask)
 
157
    return umask
 
158
 
 
159
 
 
160
_kind_marker_map = {
 
161
    "file": "",
 
162
    _directory_kind: "/",
 
163
    "symlink": "@",
 
164
    'tree-reference': '+',
 
165
}
 
166
 
 
167
 
 
168
def kind_marker(kind):
 
169
    try:
 
170
        return _kind_marker_map[kind]
 
171
    except KeyError:
 
172
        raise errors.BzrError('invalid file kind %r' % kind)
 
173
 
 
174
 
 
175
lexists = getattr(os.path, 'lexists', None)
 
176
if lexists is None:
 
177
    def lexists(f):
 
178
        try:
 
179
            stat = getattr(os, 'lstat', os.stat)
 
180
            stat(f)
 
181
            return True
 
182
        except OSError, e:
 
183
            if e.errno == errno.ENOENT:
 
184
                return False;
 
185
            else:
 
186
                raise errors.BzrError("lstat/stat of (%r): %r" % (f, e))
 
187
 
 
188
 
 
189
def fancy_rename(old, new, rename_func, unlink_func):
 
190
    """A fancy rename, when you don't have atomic rename.
 
191
 
 
192
    :param old: The old path, to rename from
 
193
    :param new: The new path, to rename to
 
194
    :param rename_func: The potentially non-atomic rename function
 
195
    :param unlink_func: A way to delete the target file if the full rename succeeds
 
196
    """
 
197
 
 
198
    # sftp rename doesn't allow overwriting, so play tricks:
 
199
    base = os.path.basename(new)
 
200
    dirname = os.path.dirname(new)
 
201
    tmp_name = u'tmp.%s.%.9f.%d.%s' % (base, time.time(), os.getpid(), rand_chars(10))
 
202
    tmp_name = pathjoin(dirname, tmp_name)
 
203
 
 
204
    # Rename the file out of the way, but keep track if it didn't exist
 
205
    # We don't want to grab just any exception
 
206
    # something like EACCES should prevent us from continuing
 
207
    # The downside is that the rename_func has to throw an exception
 
208
    # with an errno = ENOENT, or NoSuchFile
 
209
    file_existed = False
 
210
    try:
 
211
        rename_func(new, tmp_name)
 
212
    except (errors.NoSuchFile,), e:
 
213
        pass
 
214
    except IOError, e:
 
215
        # RBC 20060103 abstraction leakage: the paramiko SFTP clients rename
 
216
        # function raises an IOError with errno is None when a rename fails.
 
217
        # This then gets caught here.
 
218
        if e.errno not in (None, errno.ENOENT, errno.ENOTDIR):
 
219
            raise
 
220
    except Exception, e:
 
221
        if (getattr(e, 'errno', None) is None
 
222
            or e.errno not in (errno.ENOENT, errno.ENOTDIR)):
 
223
            raise
 
224
    else:
 
225
        file_existed = True
 
226
 
 
227
    success = False
 
228
    try:
 
229
        try:
 
230
            # This may throw an exception, in which case success will
 
231
            # not be set.
 
232
            rename_func(old, new)
 
233
            success = True
 
234
        except (IOError, OSError), e:
 
235
            # source and target may be aliases of each other (e.g. on a
 
236
            # case-insensitive filesystem), so we may have accidentally renamed
 
237
            # source by when we tried to rename target
 
238
            if not (file_existed and e.errno in (None, errno.ENOENT)):
 
239
                raise
 
240
    finally:
 
241
        if file_existed:
 
242
            # If the file used to exist, rename it back into place
 
243
            # otherwise just delete it from the tmp location
 
244
            if success:
 
245
                unlink_func(tmp_name)
 
246
            else:
 
247
                rename_func(tmp_name, new)
 
248
 
 
249
 
 
250
# In Python 2.4.2 and older, os.path.abspath and os.path.realpath
 
251
# choke on a Unicode string containing a relative path if
 
252
# os.getcwd() returns a non-sys.getdefaultencoding()-encoded
 
253
# string.
 
254
_fs_enc = sys.getfilesystemencoding() or 'utf-8'
 
255
def _posix_abspath(path):
 
256
    # jam 20060426 rather than encoding to fsencoding
 
257
    # copy posixpath.abspath, but use os.getcwdu instead
 
258
    if not posixpath.isabs(path):
 
259
        path = posixpath.join(getcwd(), path)
 
260
    return posixpath.normpath(path)
 
261
 
 
262
 
 
263
def _posix_realpath(path):
 
264
    return posixpath.realpath(path.encode(_fs_enc)).decode(_fs_enc)
 
265
 
 
266
 
 
267
def _win32_fixdrive(path):
 
268
    """Force drive letters to be consistent.
 
269
 
 
270
    win32 is inconsistent whether it returns lower or upper case
 
271
    and even if it was consistent the user might type the other
 
272
    so we force it to uppercase
 
273
    running python.exe under cmd.exe return capital C:\\
 
274
    running win32 python inside a cygwin shell returns lowercase c:\\
 
275
    """
 
276
    drive, path = _nt_splitdrive(path)
 
277
    return drive.upper() + path
 
278
 
 
279
 
 
280
def _win32_abspath(path):
 
281
    # Real _nt_abspath doesn't have a problem with a unicode cwd
 
282
    return _win32_fixdrive(_nt_abspath(unicode(path)).replace('\\', '/'))
 
283
 
 
284
 
 
285
def _win98_abspath(path):
 
286
    """Return the absolute version of a path.
 
287
    Windows 98 safe implementation (python reimplementation
 
288
    of Win32 API function GetFullPathNameW)
 
289
    """
 
290
    # Corner cases:
 
291
    #   C:\path     => C:/path
 
292
    #   C:/path     => C:/path
 
293
    #   \\HOST\path => //HOST/path
 
294
    #   //HOST/path => //HOST/path
 
295
    #   path        => C:/cwd/path
 
296
    #   /path       => C:/path
 
297
    path = unicode(path)
 
298
    # check for absolute path
 
299
    drive = _nt_splitdrive(path)[0]
 
300
    if drive == '' and path[:2] not in('//','\\\\'):
 
301
        cwd = os.getcwdu()
 
302
        # we cannot simply os.path.join cwd and path
 
303
        # because os.path.join('C:','/path') produce '/path'
 
304
        # and this is incorrect
 
305
        if path[:1] in ('/','\\'):
 
306
            cwd = _nt_splitdrive(cwd)[0]
 
307
            path = path[1:]
 
308
        path = cwd + '\\' + path
 
309
    return _win32_fixdrive(_nt_normpath(path).replace('\\', '/'))
 
310
 
 
311
 
 
312
def _win32_realpath(path):
 
313
    # Real _nt_realpath doesn't have a problem with a unicode cwd
 
314
    return _win32_fixdrive(_nt_realpath(unicode(path)).replace('\\', '/'))
 
315
 
 
316
 
 
317
def _win32_pathjoin(*args):
 
318
    return _nt_join(*args).replace('\\', '/')
 
319
 
 
320
 
 
321
def _win32_normpath(path):
 
322
    return _win32_fixdrive(_nt_normpath(unicode(path)).replace('\\', '/'))
 
323
 
 
324
 
 
325
def _win32_getcwd():
 
326
    return _win32_fixdrive(os.getcwdu().replace('\\', '/'))
 
327
 
 
328
 
 
329
def _win32_mkdtemp(*args, **kwargs):
 
330
    return _win32_fixdrive(tempfile.mkdtemp(*args, **kwargs).replace('\\', '/'))
 
331
 
 
332
 
 
333
def _win32_rename(old, new):
 
334
    """We expect to be able to atomically replace 'new' with old.
 
335
 
 
336
    On win32, if new exists, it must be moved out of the way first,
 
337
    and then deleted.
 
338
    """
 
339
    try:
 
340
        fancy_rename(old, new, rename_func=os.rename, unlink_func=os.unlink)
 
341
    except OSError, e:
 
342
        if e.errno in (errno.EPERM, errno.EACCES, errno.EBUSY, errno.EINVAL):
 
343
            # If we try to rename a non-existant file onto cwd, we get
 
344
            # EPERM or EACCES instead of ENOENT, this will raise ENOENT
 
345
            # if the old path doesn't exist, sometimes we get EACCES
 
346
            # On Linux, we seem to get EBUSY, on Mac we get EINVAL
 
347
            os.lstat(old)
 
348
        raise
 
349
 
 
350
 
 
351
def _mac_getcwd():
 
352
    return unicodedata.normalize('NFC', os.getcwdu())
 
353
 
 
354
 
 
355
# Default is to just use the python builtins, but these can be rebound on
 
356
# particular platforms.
 
357
abspath = _posix_abspath
 
358
realpath = _posix_realpath
 
359
pathjoin = os.path.join
 
360
normpath = os.path.normpath
 
361
getcwd = os.getcwdu
 
362
rename = os.rename
 
363
dirname = os.path.dirname
 
364
basename = os.path.basename
 
365
split = os.path.split
 
366
splitext = os.path.splitext
 
367
# These were already imported into local scope
 
368
# mkdtemp = tempfile.mkdtemp
 
369
# rmtree = shutil.rmtree
 
370
 
 
371
MIN_ABS_PATHLENGTH = 1
 
372
 
 
373
 
 
374
if sys.platform == 'win32':
 
375
    if win32utils.winver == 'Windows 98':
 
376
        abspath = _win98_abspath
 
377
    else:
 
378
        abspath = _win32_abspath
 
379
    realpath = _win32_realpath
 
380
    pathjoin = _win32_pathjoin
 
381
    normpath = _win32_normpath
 
382
    getcwd = _win32_getcwd
 
383
    mkdtemp = _win32_mkdtemp
 
384
    rename = _win32_rename
 
385
 
 
386
    MIN_ABS_PATHLENGTH = 3
 
387
 
 
388
    def _win32_delete_readonly(function, path, excinfo):
 
389
        """Error handler for shutil.rmtree function [for win32]
 
390
        Helps to remove files and dirs marked as read-only.
 
391
        """
 
392
        exception = excinfo[1]
 
393
        if function in (os.remove, os.rmdir) \
 
394
            and isinstance(exception, OSError) \
 
395
            and exception.errno == errno.EACCES:
 
396
            make_writable(path)
 
397
            function(path)
 
398
        else:
 
399
            raise
 
400
 
 
401
    def rmtree(path, ignore_errors=False, onerror=_win32_delete_readonly):
 
402
        """Replacer for shutil.rmtree: could remove readonly dirs/files"""
 
403
        return shutil.rmtree(path, ignore_errors, onerror)
 
404
 
 
405
    f = win32utils.get_unicode_argv     # special function or None
 
406
    if f is not None:
 
407
        get_unicode_argv = f
 
408
 
 
409
elif sys.platform == 'darwin':
 
410
    getcwd = _mac_getcwd
 
411
 
 
412
 
 
413
def get_terminal_encoding():
 
414
    """Find the best encoding for printing to the screen.
 
415
 
 
416
    This attempts to check both sys.stdout and sys.stdin to see
 
417
    what encoding they are in, and if that fails it falls back to
 
418
    osutils.get_user_encoding().
 
419
    The problem is that on Windows, locale.getpreferredencoding()
 
420
    is not the same encoding as that used by the console:
 
421
    http://mail.python.org/pipermail/python-list/2003-May/162357.html
 
422
 
 
423
    On my standard US Windows XP, the preferred encoding is
 
424
    cp1252, but the console is cp437
 
425
    """
 
426
    from bzrlib.trace import mutter
 
427
    output_encoding = getattr(sys.stdout, 'encoding', None)
 
428
    if not output_encoding:
 
429
        input_encoding = getattr(sys.stdin, 'encoding', None)
 
430
        if not input_encoding:
 
431
            output_encoding = get_user_encoding()
 
432
            mutter('encoding stdout as osutils.get_user_encoding() %r',
 
433
                   output_encoding)
 
434
        else:
 
435
            output_encoding = input_encoding
 
436
            mutter('encoding stdout as sys.stdin encoding %r', output_encoding)
 
437
    else:
 
438
        mutter('encoding stdout as sys.stdout encoding %r', output_encoding)
 
439
    if output_encoding == 'cp0':
 
440
        # invalid encoding (cp0 means 'no codepage' on Windows)
 
441
        output_encoding = get_user_encoding()
 
442
        mutter('cp0 is invalid encoding.'
 
443
               ' encoding stdout as osutils.get_user_encoding() %r',
 
444
               output_encoding)
 
445
    # check encoding
 
446
    try:
 
447
        codecs.lookup(output_encoding)
 
448
    except LookupError:
 
449
        sys.stderr.write('bzr: warning:'
 
450
                         ' unknown terminal encoding %s.\n'
 
451
                         '  Using encoding %s instead.\n'
 
452
                         % (output_encoding, get_user_encoding())
 
453
                        )
 
454
        output_encoding = get_user_encoding()
 
455
 
 
456
    return output_encoding
 
457
 
 
458
 
 
459
def normalizepath(f):
 
460
    if getattr(os.path, 'realpath', None) is not None:
 
461
        F = realpath
 
462
    else:
 
463
        F = abspath
 
464
    [p,e] = os.path.split(f)
 
465
    if e == "" or e == "." or e == "..":
 
466
        return F(f)
 
467
    else:
 
468
        return pathjoin(F(p), e)
 
469
 
 
470
 
 
471
def isdir(f):
 
472
    """True if f is an accessible directory."""
 
473
    try:
 
474
        return S_ISDIR(os.lstat(f)[ST_MODE])
 
475
    except OSError:
 
476
        return False
 
477
 
 
478
 
 
479
def isfile(f):
 
480
    """True if f is a regular file."""
 
481
    try:
 
482
        return S_ISREG(os.lstat(f)[ST_MODE])
 
483
    except OSError:
 
484
        return False
 
485
 
 
486
def islink(f):
 
487
    """True if f is a symlink."""
 
488
    try:
 
489
        return S_ISLNK(os.lstat(f)[ST_MODE])
 
490
    except OSError:
 
491
        return False
 
492
 
 
493
def is_inside(dir, fname):
 
494
    """True if fname is inside dir.
 
495
 
 
496
    The parameters should typically be passed to osutils.normpath first, so
 
497
    that . and .. and repeated slashes are eliminated, and the separators
 
498
    are canonical for the platform.
 
499
 
 
500
    The empty string as a dir name is taken as top-of-tree and matches
 
501
    everything.
 
502
    """
 
503
    # XXX: Most callers of this can actually do something smarter by
 
504
    # looking at the inventory
 
505
    if dir == fname:
 
506
        return True
 
507
 
 
508
    if dir == '':
 
509
        return True
 
510
 
 
511
    if dir[-1] != '/':
 
512
        dir += '/'
 
513
 
 
514
    return fname.startswith(dir)
 
515
 
 
516
 
 
517
def is_inside_any(dir_list, fname):
 
518
    """True if fname is inside any of given dirs."""
 
519
    for dirname in dir_list:
 
520
        if is_inside(dirname, fname):
 
521
            return True
 
522
    return False
 
523
 
 
524
 
 
525
def is_inside_or_parent_of_any(dir_list, fname):
 
526
    """True if fname is a child or a parent of any of the given files."""
 
527
    for dirname in dir_list:
 
528
        if is_inside(dirname, fname) or is_inside(fname, dirname):
 
529
            return True
 
530
    return False
 
531
 
 
532
 
 
533
def pumpfile(from_file, to_file, read_length=-1, buff_size=32768,
 
534
             report_activity=None, direction='read'):
 
535
    """Copy contents of one file to another.
 
536
 
 
537
    The read_length can either be -1 to read to end-of-file (EOF) or
 
538
    it can specify the maximum number of bytes to read.
 
539
 
 
540
    The buff_size represents the maximum size for each read operation
 
541
    performed on from_file.
 
542
 
 
543
    :param report_activity: Call this as bytes are read, see
 
544
        Transport._report_activity
 
545
    :param direction: Will be passed to report_activity
 
546
 
 
547
    :return: The number of bytes copied.
 
548
    """
 
549
    length = 0
 
550
    if read_length >= 0:
 
551
        # read specified number of bytes
 
552
 
 
553
        while read_length > 0:
 
554
            num_bytes_to_read = min(read_length, buff_size)
 
555
 
 
556
            block = from_file.read(num_bytes_to_read)
 
557
            if not block:
 
558
                # EOF reached
 
559
                break
 
560
            if report_activity is not None:
 
561
                report_activity(len(block), direction)
 
562
            to_file.write(block)
 
563
 
 
564
            actual_bytes_read = len(block)
 
565
            read_length -= actual_bytes_read
 
566
            length += actual_bytes_read
 
567
    else:
 
568
        # read to EOF
 
569
        while True:
 
570
            block = from_file.read(buff_size)
 
571
            if not block:
 
572
                # EOF reached
 
573
                break
 
574
            if report_activity is not None:
 
575
                report_activity(len(block), direction)
 
576
            to_file.write(block)
 
577
            length += len(block)
 
578
    return length
 
579
 
 
580
 
 
581
def pump_string_file(bytes, file_handle, segment_size=None):
 
582
    """Write bytes to file_handle in many smaller writes.
 
583
 
 
584
    :param bytes: The string to write.
 
585
    :param file_handle: The file to write to.
 
586
    """
 
587
    # Write data in chunks rather than all at once, because very large
 
588
    # writes fail on some platforms (e.g. Windows with SMB  mounted
 
589
    # drives).
 
590
    if not segment_size:
 
591
        segment_size = 5242880 # 5MB
 
592
    segments = range(len(bytes) / segment_size + 1)
 
593
    write = file_handle.write
 
594
    for segment_index in segments:
 
595
        segment = buffer(bytes, segment_index * segment_size, segment_size)
 
596
        write(segment)
 
597
 
 
598
 
 
599
def file_iterator(input_file, readsize=32768):
 
600
    while True:
 
601
        b = input_file.read(readsize)
 
602
        if len(b) == 0:
 
603
            break
 
604
        yield b
 
605
 
 
606
 
 
607
def sha_file(f):
 
608
    """Calculate the hexdigest of an open file.
 
609
 
 
610
    The file cursor should be already at the start.
 
611
    """
 
612
    s = sha()
 
613
    BUFSIZE = 128<<10
 
614
    while True:
 
615
        b = f.read(BUFSIZE)
 
616
        if not b:
 
617
            break
 
618
        s.update(b)
 
619
    return s.hexdigest()
 
620
 
 
621
 
 
622
def size_sha_file(f):
 
623
    """Calculate the size and hexdigest of an open file.
 
624
 
 
625
    The file cursor should be already at the start and
 
626
    the caller is responsible for closing the file afterwards.
 
627
    """
 
628
    size = 0
 
629
    s = sha()
 
630
    BUFSIZE = 128<<10
 
631
    while True:
 
632
        b = f.read(BUFSIZE)
 
633
        if not b:
 
634
            break
 
635
        size += len(b)
 
636
        s.update(b)
 
637
    return size, s.hexdigest()
 
638
 
 
639
 
 
640
def sha_file_by_name(fname):
 
641
    """Calculate the SHA1 of a file by reading the full text"""
 
642
    s = sha()
 
643
    f = os.open(fname, os.O_RDONLY | O_BINARY)
 
644
    try:
 
645
        while True:
 
646
            b = os.read(f, 1<<16)
 
647
            if not b:
 
648
                return s.hexdigest()
 
649
            s.update(b)
 
650
    finally:
 
651
        os.close(f)
 
652
 
 
653
 
 
654
def sha_strings(strings, _factory=sha):
 
655
    """Return the sha-1 of concatenation of strings"""
 
656
    s = _factory()
 
657
    map(s.update, strings)
 
658
    return s.hexdigest()
 
659
 
 
660
 
 
661
def sha_string(f, _factory=sha):
 
662
    return _factory(f).hexdigest()
 
663
 
 
664
 
 
665
def fingerprint_file(f):
 
666
    b = f.read()
 
667
    return {'size': len(b),
 
668
            'sha1': sha(b).hexdigest()}
 
669
 
 
670
 
 
671
def compare_files(a, b):
 
672
    """Returns true if equal in contents"""
 
673
    BUFSIZE = 4096
 
674
    while True:
 
675
        ai = a.read(BUFSIZE)
 
676
        bi = b.read(BUFSIZE)
 
677
        if ai != bi:
 
678
            return False
 
679
        if ai == '':
 
680
            return True
 
681
 
 
682
 
 
683
def local_time_offset(t=None):
 
684
    """Return offset of local zone from GMT, either at present or at time t."""
 
685
    if t is None:
 
686
        t = time.time()
 
687
    offset = datetime.fromtimestamp(t) - datetime.utcfromtimestamp(t)
 
688
    return offset.days * 86400 + offset.seconds
 
689
 
 
690
weekdays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
 
691
 
 
692
def format_date(t, offset=0, timezone='original', date_fmt=None,
 
693
                show_offset=True):
 
694
    """Return a formatted date string.
 
695
 
 
696
    :param t: Seconds since the epoch.
 
697
    :param offset: Timezone offset in seconds east of utc.
 
698
    :param timezone: How to display the time: 'utc', 'original' for the
 
699
         timezone specified by offset, or 'local' for the process's current
 
700
         timezone.
 
701
    :param date_fmt: strftime format.
 
702
    :param show_offset: Whether to append the timezone.
 
703
    """
 
704
    (date_fmt, tt, offset_str) = \
 
705
               _format_date(t, offset, timezone, date_fmt, show_offset)
 
706
    date_fmt = date_fmt.replace('%a', weekdays[tt[6]])
 
707
    date_str = time.strftime(date_fmt, tt)
 
708
    return date_str + offset_str
 
709
 
 
710
def format_local_date(t, offset=0, timezone='original', date_fmt=None,
 
711
                      show_offset=True):
 
712
    """Return an unicode date string formatted according to the current locale.
 
713
 
 
714
    :param t: Seconds since the epoch.
 
715
    :param offset: Timezone offset in seconds east of utc.
 
716
    :param timezone: How to display the time: 'utc', 'original' for the
 
717
         timezone specified by offset, or 'local' for the process's current
 
718
         timezone.
 
719
    :param date_fmt: strftime format.
 
720
    :param show_offset: Whether to append the timezone.
 
721
    """
 
722
    (date_fmt, tt, offset_str) = \
 
723
               _format_date(t, offset, timezone, date_fmt, show_offset)
 
724
    date_str = time.strftime(date_fmt, tt)
 
725
    if not isinstance(date_str, unicode):
 
726
        date_str = date_str.decode(get_user_encoding(), 'replace')
 
727
    return date_str + offset_str
 
728
 
 
729
def _format_date(t, offset, timezone, date_fmt, show_offset):
 
730
    if timezone == 'utc':
 
731
        tt = time.gmtime(t)
 
732
        offset = 0
 
733
    elif timezone == 'original':
 
734
        if offset is None:
 
735
            offset = 0
 
736
        tt = time.gmtime(t + offset)
 
737
    elif timezone == 'local':
 
738
        tt = time.localtime(t)
 
739
        offset = local_time_offset(t)
 
740
    else:
 
741
        raise errors.UnsupportedTimezoneFormat(timezone)
 
742
    if date_fmt is None:
 
743
        date_fmt = "%a %Y-%m-%d %H:%M:%S"
 
744
    if show_offset:
 
745
        offset_str = ' %+03d%02d' % (offset / 3600, (offset / 60) % 60)
 
746
    else:
 
747
        offset_str = ''
 
748
    return (date_fmt, tt, offset_str)
 
749
 
 
750
 
 
751
def compact_date(when):
 
752
    return time.strftime('%Y%m%d%H%M%S', time.gmtime(when))
 
753
 
 
754
 
 
755
def format_delta(delta):
 
756
    """Get a nice looking string for a time delta.
 
757
 
 
758
    :param delta: The time difference in seconds, can be positive or negative.
 
759
        positive indicates time in the past, negative indicates time in the
 
760
        future. (usually time.time() - stored_time)
 
761
    :return: String formatted to show approximate resolution
 
762
    """
 
763
    delta = int(delta)
 
764
    if delta >= 0:
 
765
        direction = 'ago'
 
766
    else:
 
767
        direction = 'in the future'
 
768
        delta = -delta
 
769
 
 
770
    seconds = delta
 
771
    if seconds < 90: # print seconds up to 90 seconds
 
772
        if seconds == 1:
 
773
            return '%d second %s' % (seconds, direction,)
 
774
        else:
 
775
            return '%d seconds %s' % (seconds, direction)
 
776
 
 
777
    minutes = int(seconds / 60)
 
778
    seconds -= 60 * minutes
 
779
    if seconds == 1:
 
780
        plural_seconds = ''
 
781
    else:
 
782
        plural_seconds = 's'
 
783
    if minutes < 90: # print minutes, seconds up to 90 minutes
 
784
        if minutes == 1:
 
785
            return '%d minute, %d second%s %s' % (
 
786
                    minutes, seconds, plural_seconds, direction)
 
787
        else:
 
788
            return '%d minutes, %d second%s %s' % (
 
789
                    minutes, seconds, plural_seconds, direction)
 
790
 
 
791
    hours = int(minutes / 60)
 
792
    minutes -= 60 * hours
 
793
    if minutes == 1:
 
794
        plural_minutes = ''
 
795
    else:
 
796
        plural_minutes = 's'
 
797
 
 
798
    if hours == 1:
 
799
        return '%d hour, %d minute%s %s' % (hours, minutes,
 
800
                                            plural_minutes, direction)
 
801
    return '%d hours, %d minute%s %s' % (hours, minutes,
 
802
                                         plural_minutes, direction)
 
803
 
 
804
def filesize(f):
 
805
    """Return size of given open file."""
 
806
    return os.fstat(f.fileno())[ST_SIZE]
 
807
 
 
808
 
 
809
# Define rand_bytes based on platform.
 
810
try:
 
811
    # Python 2.4 and later have os.urandom,
 
812
    # but it doesn't work on some arches
 
813
    os.urandom(1)
 
814
    rand_bytes = os.urandom
 
815
except (NotImplementedError, AttributeError):
 
816
    # If python doesn't have os.urandom, or it doesn't work,
 
817
    # then try to first pull random data from /dev/urandom
 
818
    try:
 
819
        rand_bytes = file('/dev/urandom', 'rb').read
 
820
    # Otherwise, use this hack as a last resort
 
821
    except (IOError, OSError):
 
822
        # not well seeded, but better than nothing
 
823
        def rand_bytes(n):
 
824
            import random
 
825
            s = ''
 
826
            while n:
 
827
                s += chr(random.randint(0, 255))
 
828
                n -= 1
 
829
            return s
 
830
 
 
831
 
 
832
ALNUM = '0123456789abcdefghijklmnopqrstuvwxyz'
 
833
def rand_chars(num):
 
834
    """Return a random string of num alphanumeric characters
 
835
 
 
836
    The result only contains lowercase chars because it may be used on
 
837
    case-insensitive filesystems.
 
838
    """
 
839
    s = ''
 
840
    for raw_byte in rand_bytes(num):
 
841
        s += ALNUM[ord(raw_byte) % 36]
 
842
    return s
 
843
 
 
844
 
 
845
## TODO: We could later have path objects that remember their list
 
846
## decomposition (might be too tricksy though.)
 
847
 
 
848
def splitpath(p):
 
849
    """Turn string into list of parts."""
 
850
    # split on either delimiter because people might use either on
 
851
    # Windows
 
852
    ps = re.split(r'[\\/]', p)
 
853
 
 
854
    rps = []
 
855
    for f in ps:
 
856
        if f == '..':
 
857
            raise errors.BzrError("sorry, %r not allowed in path" % f)
 
858
        elif (f == '.') or (f == ''):
 
859
            pass
 
860
        else:
 
861
            rps.append(f)
 
862
    return rps
 
863
 
 
864
 
 
865
def joinpath(p):
 
866
    for f in p:
 
867
        if (f == '..') or (f is None) or (f == ''):
 
868
            raise errors.BzrError("sorry, %r not allowed in path" % f)
 
869
    return pathjoin(*p)
 
870
 
 
871
 
 
872
def parent_directories(filename):
 
873
    """Return the list of parent directories, deepest first.
 
874
    
 
875
    For example, parent_directories("a/b/c") -> ["a/b", "a"].
 
876
    """
 
877
    parents = []
 
878
    parts = splitpath(dirname(filename))
 
879
    while parts:
 
880
        parents.append(joinpath(parts))
 
881
        parts.pop()
 
882
    return parents
 
883
 
 
884
 
 
885
_extension_load_failures = []
 
886
 
 
887
 
 
888
def failed_to_load_extension(exception):
 
889
    """Handle failing to load a binary extension.
 
890
 
 
891
    This should be called from the ImportError block guarding the attempt to
 
892
    import the native extension.  If this function returns, the pure-Python
 
893
    implementation should be loaded instead::
 
894
 
 
895
    >>> try:
 
896
    >>>     import bzrlib._fictional_extension_pyx
 
897
    >>> except ImportError, e:
 
898
    >>>     bzrlib.osutils.failed_to_load_extension(e)
 
899
    >>>     import bzrlib._fictional_extension_py
 
900
    """
 
901
    # NB: This docstring is just an example, not a doctest, because doctest
 
902
    # currently can't cope with the use of lazy imports in this namespace --
 
903
    # mbp 20090729
 
904
    
 
905
    # This currently doesn't report the failure at the time it occurs, because
 
906
    # they tend to happen very early in startup when we can't check config
 
907
    # files etc, and also we want to report all failures but not spam the user
 
908
    # with 10 warnings.
 
909
    from bzrlib import trace
 
910
    exception_str = str(exception)
 
911
    if exception_str not in _extension_load_failures:
 
912
        trace.mutter("failed to load compiled extension: %s" % exception_str)
 
913
        _extension_load_failures.append(exception_str)
 
914
 
 
915
 
 
916
def report_extension_load_failures():
 
917
    if not _extension_load_failures:
 
918
        return
 
919
    from bzrlib.config import GlobalConfig
 
920
    if GlobalConfig().get_user_option_as_bool('ignore_missing_extensions'):
 
921
        return
 
922
    # the warnings framework should by default show this only once
 
923
    from bzrlib.trace import warning
 
924
    warning(
 
925
        "bzr: warning: some compiled extensions could not be loaded; "
 
926
        "see <https://answers.launchpad.net/bzr/+faq/703>")
 
927
    # we no longer show the specific missing extensions here, because it makes
 
928
    # the message too long and scary - see
 
929
    # https://bugs.launchpad.net/bzr/+bug/430529
 
930
 
 
931
 
 
932
try:
 
933
    from bzrlib._chunks_to_lines_pyx import chunks_to_lines
 
934
except ImportError, e:
 
935
    failed_to_load_extension(e)
 
936
    from bzrlib._chunks_to_lines_py import chunks_to_lines
 
937
 
 
938
 
 
939
def split_lines(s):
 
940
    """Split s into lines, but without removing the newline characters."""
 
941
    # Trivially convert a fulltext into a 'chunked' representation, and let
 
942
    # chunks_to_lines do the heavy lifting.
 
943
    if isinstance(s, str):
 
944
        # chunks_to_lines only supports 8-bit strings
 
945
        return chunks_to_lines([s])
 
946
    else:
 
947
        return _split_lines(s)
 
948
 
 
949
 
 
950
def _split_lines(s):
 
951
    """Split s into lines, but without removing the newline characters.
 
952
 
 
953
    This supports Unicode or plain string objects.
 
954
    """
 
955
    lines = s.split('\n')
 
956
    result = [line + '\n' for line in lines[:-1]]
 
957
    if lines[-1]:
 
958
        result.append(lines[-1])
 
959
    return result
 
960
 
 
961
 
 
962
def hardlinks_good():
 
963
    return sys.platform not in ('win32', 'cygwin', 'darwin')
 
964
 
 
965
 
 
966
def link_or_copy(src, dest):
 
967
    """Hardlink a file, or copy it if it can't be hardlinked."""
 
968
    if not hardlinks_good():
 
969
        shutil.copyfile(src, dest)
 
970
        return
 
971
    try:
 
972
        os.link(src, dest)
 
973
    except (OSError, IOError), e:
 
974
        if e.errno != errno.EXDEV:
 
975
            raise
 
976
        shutil.copyfile(src, dest)
 
977
 
 
978
 
 
979
def delete_any(path):
 
980
    """Delete a file, symlink or directory.  
 
981
    
 
982
    Will delete even if readonly.
 
983
    """
 
984
    try:
 
985
       _delete_file_or_dir(path)
 
986
    except (OSError, IOError), e:
 
987
        if e.errno in (errno.EPERM, errno.EACCES):
 
988
            # make writable and try again
 
989
            try:
 
990
                make_writable(path)
 
991
            except (OSError, IOError):
 
992
                pass
 
993
            _delete_file_or_dir(path)
 
994
        else:
 
995
            raise
 
996
 
 
997
 
 
998
def _delete_file_or_dir(path):
 
999
    # Look Before You Leap (LBYL) is appropriate here instead of Easier to Ask for
 
1000
    # Forgiveness than Permission (EAFP) because:
 
1001
    # - root can damage a solaris file system by using unlink,
 
1002
    # - unlink raises different exceptions on different OSes (linux: EISDIR, win32:
 
1003
    #   EACCES, OSX: EPERM) when invoked on a directory.
 
1004
    if isdir(path): # Takes care of symlinks
 
1005
        os.rmdir(path)
 
1006
    else:
 
1007
        os.unlink(path)
 
1008
 
 
1009
 
 
1010
def has_symlinks():
 
1011
    if getattr(os, 'symlink', None) is not None:
 
1012
        return True
 
1013
    else:
 
1014
        return False
 
1015
 
 
1016
 
 
1017
def has_hardlinks():
 
1018
    if getattr(os, 'link', None) is not None:
 
1019
        return True
 
1020
    else:
 
1021
        return False
 
1022
 
 
1023
 
 
1024
def host_os_dereferences_symlinks():
 
1025
    return (has_symlinks()
 
1026
            and sys.platform not in ('cygwin', 'win32'))
 
1027
 
 
1028
 
 
1029
def readlink(abspath):
 
1030
    """Return a string representing the path to which the symbolic link points.
 
1031
 
 
1032
    :param abspath: The link absolute unicode path.
 
1033
 
 
1034
    This his guaranteed to return the symbolic link in unicode in all python
 
1035
    versions.
 
1036
    """
 
1037
    link = abspath.encode(_fs_enc)
 
1038
    target = os.readlink(link)
 
1039
    target = target.decode(_fs_enc)
 
1040
    return target
 
1041
 
 
1042
 
 
1043
def contains_whitespace(s):
 
1044
    """True if there are any whitespace characters in s."""
 
1045
    # string.whitespace can include '\xa0' in certain locales, because it is
 
1046
    # considered "non-breaking-space" as part of ISO-8859-1. But it
 
1047
    # 1) Isn't a breaking whitespace
 
1048
    # 2) Isn't one of ' \t\r\n' which are characters we sometimes use as
 
1049
    #    separators
 
1050
    # 3) '\xa0' isn't unicode safe since it is >128.
 
1051
 
 
1052
    # This should *not* be a unicode set of characters in case the source
 
1053
    # string is not a Unicode string. We can auto-up-cast the characters since
 
1054
    # they are ascii, but we don't want to auto-up-cast the string in case it
 
1055
    # is utf-8
 
1056
    for ch in ' \t\n\r\v\f':
 
1057
        if ch in s:
 
1058
            return True
 
1059
    else:
 
1060
        return False
 
1061
 
 
1062
 
 
1063
def contains_linebreaks(s):
 
1064
    """True if there is any vertical whitespace in s."""
 
1065
    for ch in '\f\n\r':
 
1066
        if ch in s:
 
1067
            return True
 
1068
    else:
 
1069
        return False
 
1070
 
 
1071
 
 
1072
def relpath(base, path):
 
1073
    """Return path relative to base, or raise exception.
 
1074
 
 
1075
    The path may be either an absolute path or a path relative to the
 
1076
    current working directory.
 
1077
 
 
1078
    os.path.commonprefix (python2.4) has a bad bug that it works just
 
1079
    on string prefixes, assuming that '/u' is a prefix of '/u2'.  This
 
1080
    avoids that problem.
 
1081
    """
 
1082
 
 
1083
    if len(base) < MIN_ABS_PATHLENGTH:
 
1084
        # must have space for e.g. a drive letter
 
1085
        raise ValueError('%r is too short to calculate a relative path'
 
1086
            % (base,))
 
1087
 
 
1088
    rp = abspath(path)
 
1089
 
 
1090
    s = []
 
1091
    head = rp
 
1092
    while True:
 
1093
        if len(head) <= len(base) and head != base:
 
1094
            raise errors.PathNotChild(rp, base)
 
1095
        if head == base:
 
1096
            break
 
1097
        head, tail = split(head)
 
1098
        if tail:
 
1099
            s.append(tail)
 
1100
 
 
1101
    if s:
 
1102
        return pathjoin(*reversed(s))
 
1103
    else:
 
1104
        return ''
 
1105
 
 
1106
 
 
1107
def _cicp_canonical_relpath(base, path):
 
1108
    """Return the canonical path relative to base.
 
1109
 
 
1110
    Like relpath, but on case-insensitive-case-preserving file-systems, this
 
1111
    will return the relpath as stored on the file-system rather than in the
 
1112
    case specified in the input string, for all existing portions of the path.
 
1113
 
 
1114
    This will cause O(N) behaviour if called for every path in a tree; if you
 
1115
    have a number of paths to convert, you should use canonical_relpaths().
 
1116
    """
 
1117
    # TODO: it should be possible to optimize this for Windows by using the
 
1118
    # win32 API FindFiles function to look for the specified name - but using
 
1119
    # os.listdir() still gives us the correct, platform agnostic semantics in
 
1120
    # the short term.
 
1121
 
 
1122
    rel = relpath(base, path)
 
1123
    # '.' will have been turned into ''
 
1124
    if not rel:
 
1125
        return rel
 
1126
 
 
1127
    abs_base = abspath(base)
 
1128
    current = abs_base
 
1129
    _listdir = os.listdir
 
1130
 
 
1131
    # use an explicit iterator so we can easily consume the rest on early exit.
 
1132
    bit_iter = iter(rel.split('/'))
 
1133
    for bit in bit_iter:
 
1134
        lbit = bit.lower()
 
1135
        try:
 
1136
            next_entries = _listdir(current)
 
1137
        except OSError: # enoent, eperm, etc
 
1138
            # We can't find this in the filesystem, so just append the
 
1139
            # remaining bits.
 
1140
            current = pathjoin(current, bit, *list(bit_iter))
 
1141
            break
 
1142
        for look in next_entries:
 
1143
            if lbit == look.lower():
 
1144
                current = pathjoin(current, look)
 
1145
                break
 
1146
        else:
 
1147
            # got to the end, nothing matched, so we just return the
 
1148
            # non-existing bits as they were specified (the filename may be
 
1149
            # the target of a move, for example).
 
1150
            current = pathjoin(current, bit, *list(bit_iter))
 
1151
            break
 
1152
    return current[len(abs_base):].lstrip('/')
 
1153
 
 
1154
# XXX - TODO - we need better detection/integration of case-insensitive
 
1155
# file-systems; Linux often sees FAT32 devices (or NFS-mounted OSX
 
1156
# filesystems), for example, so could probably benefit from the same basic
 
1157
# support there.  For now though, only Windows and OSX get that support, and
 
1158
# they get it for *all* file-systems!
 
1159
if sys.platform in ('win32', 'darwin'):
 
1160
    canonical_relpath = _cicp_canonical_relpath
 
1161
else:
 
1162
    canonical_relpath = relpath
 
1163
 
 
1164
def canonical_relpaths(base, paths):
 
1165
    """Create an iterable to canonicalize a sequence of relative paths.
 
1166
 
 
1167
    The intent is for this implementation to use a cache, vastly speeding
 
1168
    up multiple transformations in the same directory.
 
1169
    """
 
1170
    # but for now, we haven't optimized...
 
1171
    return [canonical_relpath(base, p) for p in paths]
 
1172
 
 
1173
def safe_unicode(unicode_or_utf8_string):
 
1174
    """Coerce unicode_or_utf8_string into unicode.
 
1175
 
 
1176
    If it is unicode, it is returned.
 
1177
    Otherwise it is decoded from utf-8. If decoding fails, the exception is
 
1178
    wrapped in a BzrBadParameterNotUnicode exception.
 
1179
    """
 
1180
    if isinstance(unicode_or_utf8_string, unicode):
 
1181
        return unicode_or_utf8_string
 
1182
    try:
 
1183
        return unicode_or_utf8_string.decode('utf8')
 
1184
    except UnicodeDecodeError:
 
1185
        raise errors.BzrBadParameterNotUnicode(unicode_or_utf8_string)
 
1186
 
 
1187
 
 
1188
def safe_utf8(unicode_or_utf8_string):
 
1189
    """Coerce unicode_or_utf8_string to a utf8 string.
 
1190
 
 
1191
    If it is a str, it is returned.
 
1192
    If it is Unicode, it is encoded into a utf-8 string.
 
1193
    """
 
1194
    if isinstance(unicode_or_utf8_string, str):
 
1195
        # TODO: jam 20070209 This is overkill, and probably has an impact on
 
1196
        #       performance if we are dealing with lots of apis that want a
 
1197
        #       utf-8 revision id
 
1198
        try:
 
1199
            # Make sure it is a valid utf-8 string
 
1200
            unicode_or_utf8_string.decode('utf-8')
 
1201
        except UnicodeDecodeError:
 
1202
            raise errors.BzrBadParameterNotUnicode(unicode_or_utf8_string)
 
1203
        return unicode_or_utf8_string
 
1204
    return unicode_or_utf8_string.encode('utf-8')
 
1205
 
 
1206
 
 
1207
_revision_id_warning = ('Unicode revision ids were deprecated in bzr 0.15.'
 
1208
                        ' Revision id generators should be creating utf8'
 
1209
                        ' revision ids.')
 
1210
 
 
1211
 
 
1212
def safe_revision_id(unicode_or_utf8_string, warn=True):
 
1213
    """Revision ids should now be utf8, but at one point they were unicode.
 
1214
 
 
1215
    :param unicode_or_utf8_string: A possibly Unicode revision_id. (can also be
 
1216
        utf8 or None).
 
1217
    :param warn: Functions that are sanitizing user data can set warn=False
 
1218
    :return: None or a utf8 revision id.
 
1219
    """
 
1220
    if (unicode_or_utf8_string is None
 
1221
        or unicode_or_utf8_string.__class__ == str):
 
1222
        return unicode_or_utf8_string
 
1223
    if warn:
 
1224
        symbol_versioning.warn(_revision_id_warning, DeprecationWarning,
 
1225
                               stacklevel=2)
 
1226
    return cache_utf8.encode(unicode_or_utf8_string)
 
1227
 
 
1228
 
 
1229
_file_id_warning = ('Unicode file ids were deprecated in bzr 0.15. File id'
 
1230
                    ' generators should be creating utf8 file ids.')
 
1231
 
 
1232
 
 
1233
def safe_file_id(unicode_or_utf8_string, warn=True):
 
1234
    """File ids should now be utf8, but at one point they were unicode.
 
1235
 
 
1236
    This is the same as safe_utf8, except it uses the cached encode functions
 
1237
    to save a little bit of performance.
 
1238
 
 
1239
    :param unicode_or_utf8_string: A possibly Unicode file_id. (can also be
 
1240
        utf8 or None).
 
1241
    :param warn: Functions that are sanitizing user data can set warn=False
 
1242
    :return: None or a utf8 file id.
 
1243
    """
 
1244
    if (unicode_or_utf8_string is None
 
1245
        or unicode_or_utf8_string.__class__ == str):
 
1246
        return unicode_or_utf8_string
 
1247
    if warn:
 
1248
        symbol_versioning.warn(_file_id_warning, DeprecationWarning,
 
1249
                               stacklevel=2)
 
1250
    return cache_utf8.encode(unicode_or_utf8_string)
 
1251
 
 
1252
 
 
1253
_platform_normalizes_filenames = False
 
1254
if sys.platform == 'darwin':
 
1255
    _platform_normalizes_filenames = True
 
1256
 
 
1257
 
 
1258
def normalizes_filenames():
 
1259
    """Return True if this platform normalizes unicode filenames.
 
1260
 
 
1261
    Mac OSX does, Windows/Linux do not.
 
1262
    """
 
1263
    return _platform_normalizes_filenames
 
1264
 
 
1265
 
 
1266
def _accessible_normalized_filename(path):
 
1267
    """Get the unicode normalized path, and if you can access the file.
 
1268
 
 
1269
    On platforms where the system normalizes filenames (Mac OSX),
 
1270
    you can access a file by any path which will normalize correctly.
 
1271
    On platforms where the system does not normalize filenames
 
1272
    (Windows, Linux), you have to access a file by its exact path.
 
1273
 
 
1274
    Internally, bzr only supports NFC normalization, since that is
 
1275
    the standard for XML documents.
 
1276
 
 
1277
    So return the normalized path, and a flag indicating if the file
 
1278
    can be accessed by that path.
 
1279
    """
 
1280
 
 
1281
    return unicodedata.normalize('NFC', unicode(path)), True
 
1282
 
 
1283
 
 
1284
def _inaccessible_normalized_filename(path):
 
1285
    __doc__ = _accessible_normalized_filename.__doc__
 
1286
 
 
1287
    normalized = unicodedata.normalize('NFC', unicode(path))
 
1288
    return normalized, normalized == path
 
1289
 
 
1290
 
 
1291
if _platform_normalizes_filenames:
 
1292
    normalized_filename = _accessible_normalized_filename
 
1293
else:
 
1294
    normalized_filename = _inaccessible_normalized_filename
 
1295
 
 
1296
 
 
1297
def terminal_width():
 
1298
    """Return estimated terminal width."""
 
1299
    if sys.platform == 'win32':
 
1300
        return win32utils.get_console_size()[0]
 
1301
    width = 0
 
1302
    try:
 
1303
        import struct, fcntl, termios
 
1304
        s = struct.pack('HHHH', 0, 0, 0, 0)
 
1305
        x = fcntl.ioctl(1, termios.TIOCGWINSZ, s)
 
1306
        width = struct.unpack('HHHH', x)[1]
 
1307
    except IOError:
 
1308
        pass
 
1309
    if width <= 0:
 
1310
        try:
 
1311
            width = int(os.environ['COLUMNS'])
 
1312
        except:
 
1313
            pass
 
1314
    if width <= 0:
 
1315
        width = 80
 
1316
 
 
1317
    return width
 
1318
 
 
1319
 
 
1320
def supports_executable():
 
1321
    return sys.platform != "win32"
 
1322
 
 
1323
 
 
1324
def supports_posix_readonly():
 
1325
    """Return True if 'readonly' has POSIX semantics, False otherwise.
 
1326
 
 
1327
    Notably, a win32 readonly file cannot be deleted, unlike POSIX where the
 
1328
    directory controls creation/deletion, etc.
 
1329
 
 
1330
    And under win32, readonly means that the directory itself cannot be
 
1331
    deleted.  The contents of a readonly directory can be changed, unlike POSIX
 
1332
    where files in readonly directories cannot be added, deleted or renamed.
 
1333
    """
 
1334
    return sys.platform != "win32"
 
1335
 
 
1336
 
 
1337
def set_or_unset_env(env_variable, value):
 
1338
    """Modify the environment, setting or removing the env_variable.
 
1339
 
 
1340
    :param env_variable: The environment variable in question
 
1341
    :param value: The value to set the environment to. If None, then
 
1342
        the variable will be removed.
 
1343
    :return: The original value of the environment variable.
 
1344
    """
 
1345
    orig_val = os.environ.get(env_variable)
 
1346
    if value is None:
 
1347
        if orig_val is not None:
 
1348
            del os.environ[env_variable]
 
1349
    else:
 
1350
        if isinstance(value, unicode):
 
1351
            value = value.encode(get_user_encoding())
 
1352
        os.environ[env_variable] = value
 
1353
    return orig_val
 
1354
 
 
1355
 
 
1356
_validWin32PathRE = re.compile(r'^([A-Za-z]:[/\\])?[^:<>*"?\|]*$')
 
1357
 
 
1358
 
 
1359
def check_legal_path(path):
 
1360
    """Check whether the supplied path is legal.
 
1361
    This is only required on Windows, so we don't test on other platforms
 
1362
    right now.
 
1363
    """
 
1364
    if sys.platform != "win32":
 
1365
        return
 
1366
    if _validWin32PathRE.match(path) is None:
 
1367
        raise errors.IllegalPath(path)
 
1368
 
 
1369
 
 
1370
_WIN32_ERROR_DIRECTORY = 267 # Similar to errno.ENOTDIR
 
1371
 
 
1372
def _is_error_enotdir(e):
 
1373
    """Check if this exception represents ENOTDIR.
 
1374
 
 
1375
    Unfortunately, python is very inconsistent about the exception
 
1376
    here. The cases are:
 
1377
      1) Linux, Mac OSX all versions seem to set errno == ENOTDIR
 
1378
      2) Windows, Python2.4, uses errno == ERROR_DIRECTORY (267)
 
1379
         which is the windows error code.
 
1380
      3) Windows, Python2.5 uses errno == EINVAL and
 
1381
         winerror == ERROR_DIRECTORY
 
1382
 
 
1383
    :param e: An Exception object (expected to be OSError with an errno
 
1384
        attribute, but we should be able to cope with anything)
 
1385
    :return: True if this represents an ENOTDIR error. False otherwise.
 
1386
    """
 
1387
    en = getattr(e, 'errno', None)
 
1388
    if (en == errno.ENOTDIR
 
1389
        or (sys.platform == 'win32'
 
1390
            and (en == _WIN32_ERROR_DIRECTORY
 
1391
                 or (en == errno.EINVAL
 
1392
                     and getattr(e, 'winerror', None) == _WIN32_ERROR_DIRECTORY)
 
1393
        ))):
 
1394
        return True
 
1395
    return False
 
1396
 
 
1397
 
 
1398
def walkdirs(top, prefix=""):
 
1399
    """Yield data about all the directories in a tree.
 
1400
 
 
1401
    This yields all the data about the contents of a directory at a time.
 
1402
    After each directory has been yielded, if the caller has mutated the list
 
1403
    to exclude some directories, they are then not descended into.
 
1404
 
 
1405
    The data yielded is of the form:
 
1406
    ((directory-relpath, directory-path-from-top),
 
1407
    [(relpath, basename, kind, lstat, path-from-top), ...]),
 
1408
     - directory-relpath is the relative path of the directory being returned
 
1409
       with respect to top. prefix is prepended to this.
 
1410
     - directory-path-from-root is the path including top for this directory.
 
1411
       It is suitable for use with os functions.
 
1412
     - relpath is the relative path within the subtree being walked.
 
1413
     - basename is the basename of the path
 
1414
     - kind is the kind of the file now. If unknown then the file is not
 
1415
       present within the tree - but it may be recorded as versioned. See
 
1416
       versioned_kind.
 
1417
     - lstat is the stat data *if* the file was statted.
 
1418
     - planned, not implemented:
 
1419
       path_from_tree_root is the path from the root of the tree.
 
1420
 
 
1421
    :param prefix: Prefix the relpaths that are yielded with 'prefix'. This
 
1422
        allows one to walk a subtree but get paths that are relative to a tree
 
1423
        rooted higher up.
 
1424
    :return: an iterator over the dirs.
 
1425
    """
 
1426
    #TODO there is a bit of a smell where the results of the directory-
 
1427
    # summary in this, and the path from the root, may not agree
 
1428
    # depending on top and prefix - i.e. ./foo and foo as a pair leads to
 
1429
    # potentially confusing output. We should make this more robust - but
 
1430
    # not at a speed cost. RBC 20060731
 
1431
    _lstat = os.lstat
 
1432
    _directory = _directory_kind
 
1433
    _listdir = os.listdir
 
1434
    _kind_from_mode = file_kind_from_stat_mode
 
1435
    pending = [(safe_unicode(prefix), "", _directory, None, safe_unicode(top))]
 
1436
    while pending:
 
1437
        # 0 - relpath, 1- basename, 2- kind, 3- stat, 4-toppath
 
1438
        relroot, _, _, _, top = pending.pop()
 
1439
        if relroot:
 
1440
            relprefix = relroot + u'/'
 
1441
        else:
 
1442
            relprefix = ''
 
1443
        top_slash = top + u'/'
 
1444
 
 
1445
        dirblock = []
 
1446
        append = dirblock.append
 
1447
        try:
 
1448
            names = sorted(_listdir(top))
 
1449
        except OSError, e:
 
1450
            if not _is_error_enotdir(e):
 
1451
                raise
 
1452
        else:
 
1453
            for name in names:
 
1454
                abspath = top_slash + name
 
1455
                statvalue = _lstat(abspath)
 
1456
                kind = _kind_from_mode(statvalue.st_mode)
 
1457
                append((relprefix + name, name, kind, statvalue, abspath))
 
1458
        yield (relroot, top), dirblock
 
1459
 
 
1460
        # push the user specified dirs from dirblock
 
1461
        pending.extend(d for d in reversed(dirblock) if d[2] == _directory)
 
1462
 
 
1463
 
 
1464
class DirReader(object):
 
1465
    """An interface for reading directories."""
 
1466
 
 
1467
    def top_prefix_to_starting_dir(self, top, prefix=""):
 
1468
        """Converts top and prefix to a starting dir entry
 
1469
 
 
1470
        :param top: A utf8 path
 
1471
        :param prefix: An optional utf8 path to prefix output relative paths
 
1472
            with.
 
1473
        :return: A tuple starting with prefix, and ending with the native
 
1474
            encoding of top.
 
1475
        """
 
1476
        raise NotImplementedError(self.top_prefix_to_starting_dir)
 
1477
 
 
1478
    def read_dir(self, prefix, top):
 
1479
        """Read a specific dir.
 
1480
 
 
1481
        :param prefix: A utf8 prefix to be preprended to the path basenames.
 
1482
        :param top: A natively encoded path to read.
 
1483
        :return: A list of the directories contents. Each item contains:
 
1484
            (utf8_relpath, utf8_name, kind, lstatvalue, native_abspath)
 
1485
        """
 
1486
        raise NotImplementedError(self.read_dir)
 
1487
 
 
1488
 
 
1489
_selected_dir_reader = None
 
1490
 
 
1491
 
 
1492
def _walkdirs_utf8(top, prefix=""):
 
1493
    """Yield data about all the directories in a tree.
 
1494
 
 
1495
    This yields the same information as walkdirs() only each entry is yielded
 
1496
    in utf-8. On platforms which have a filesystem encoding of utf8 the paths
 
1497
    are returned as exact byte-strings.
 
1498
 
 
1499
    :return: yields a tuple of (dir_info, [file_info])
 
1500
        dir_info is (utf8_relpath, path-from-top)
 
1501
        file_info is (utf8_relpath, utf8_name, kind, lstat, path-from-top)
 
1502
        if top is an absolute path, path-from-top is also an absolute path.
 
1503
        path-from-top might be unicode or utf8, but it is the correct path to
 
1504
        pass to os functions to affect the file in question. (such as os.lstat)
 
1505
    """
 
1506
    global _selected_dir_reader
 
1507
    if _selected_dir_reader is None:
 
1508
        fs_encoding = _fs_enc.upper()
 
1509
        if sys.platform == "win32" and win32utils.winver == 'Windows NT':
 
1510
            # Win98 doesn't have unicode apis like FindFirstFileW
 
1511
            # TODO: We possibly could support Win98 by falling back to the
 
1512
            #       original FindFirstFile, and using TCHAR instead of WCHAR,
 
1513
            #       but that gets a bit tricky, and requires custom compiling
 
1514
            #       for win98 anyway.
 
1515
            try:
 
1516
                from bzrlib._walkdirs_win32 import Win32ReadDir
 
1517
                _selected_dir_reader = Win32ReadDir()
 
1518
            except ImportError:
 
1519
                pass
 
1520
        elif fs_encoding in ('UTF-8', 'US-ASCII', 'ANSI_X3.4-1968'):
 
1521
            # ANSI_X3.4-1968 is a form of ASCII
 
1522
            try:
 
1523
                from bzrlib._readdir_pyx import UTF8DirReader
 
1524
                _selected_dir_reader = UTF8DirReader()
 
1525
            except ImportError, e:
 
1526
                failed_to_load_extension(e)
 
1527
                pass
 
1528
 
 
1529
    if _selected_dir_reader is None:
 
1530
        # Fallback to the python version
 
1531
        _selected_dir_reader = UnicodeDirReader()
 
1532
 
 
1533
    # 0 - relpath, 1- basename, 2- kind, 3- stat, 4-toppath
 
1534
    # But we don't actually uses 1-3 in pending, so set them to None
 
1535
    pending = [[_selected_dir_reader.top_prefix_to_starting_dir(top, prefix)]]
 
1536
    read_dir = _selected_dir_reader.read_dir
 
1537
    _directory = _directory_kind
 
1538
    while pending:
 
1539
        relroot, _, _, _, top = pending[-1].pop()
 
1540
        if not pending[-1]:
 
1541
            pending.pop()
 
1542
        dirblock = sorted(read_dir(relroot, top))
 
1543
        yield (relroot, top), dirblock
 
1544
        # push the user specified dirs from dirblock
 
1545
        next = [d for d in reversed(dirblock) if d[2] == _directory]
 
1546
        if next:
 
1547
            pending.append(next)
 
1548
 
 
1549
 
 
1550
class UnicodeDirReader(DirReader):
 
1551
    """A dir reader for non-utf8 file systems, which transcodes."""
 
1552
 
 
1553
    __slots__ = ['_utf8_encode']
 
1554
 
 
1555
    def __init__(self):
 
1556
        self._utf8_encode = codecs.getencoder('utf8')
 
1557
 
 
1558
    def top_prefix_to_starting_dir(self, top, prefix=""):
 
1559
        """See DirReader.top_prefix_to_starting_dir."""
 
1560
        return (safe_utf8(prefix), None, None, None, safe_unicode(top))
 
1561
 
 
1562
    def read_dir(self, prefix, top):
 
1563
        """Read a single directory from a non-utf8 file system.
 
1564
 
 
1565
        top, and the abspath element in the output are unicode, all other paths
 
1566
        are utf8. Local disk IO is done via unicode calls to listdir etc.
 
1567
 
 
1568
        This is currently the fallback code path when the filesystem encoding is
 
1569
        not UTF-8. It may be better to implement an alternative so that we can
 
1570
        safely handle paths that are not properly decodable in the current
 
1571
        encoding.
 
1572
 
 
1573
        See DirReader.read_dir for details.
 
1574
        """
 
1575
        _utf8_encode = self._utf8_encode
 
1576
        _lstat = os.lstat
 
1577
        _listdir = os.listdir
 
1578
        _kind_from_mode = file_kind_from_stat_mode
 
1579
 
 
1580
        if prefix:
 
1581
            relprefix = prefix + '/'
 
1582
        else:
 
1583
            relprefix = ''
 
1584
        top_slash = top + u'/'
 
1585
 
 
1586
        dirblock = []
 
1587
        append = dirblock.append
 
1588
        for name in sorted(_listdir(top)):
 
1589
            try:
 
1590
                name_utf8 = _utf8_encode(name)[0]
 
1591
            except UnicodeDecodeError:
 
1592
                raise errors.BadFilenameEncoding(
 
1593
                    _utf8_encode(relprefix)[0] + name, _fs_enc)
 
1594
            abspath = top_slash + name
 
1595
            statvalue = _lstat(abspath)
 
1596
            kind = _kind_from_mode(statvalue.st_mode)
 
1597
            append((relprefix + name_utf8, name_utf8, kind, statvalue, abspath))
 
1598
        return dirblock
 
1599
 
 
1600
 
 
1601
def copy_tree(from_path, to_path, handlers={}):
 
1602
    """Copy all of the entries in from_path into to_path.
 
1603
 
 
1604
    :param from_path: The base directory to copy.
 
1605
    :param to_path: The target directory. If it does not exist, it will
 
1606
        be created.
 
1607
    :param handlers: A dictionary of functions, which takes a source and
 
1608
        destinations for files, directories, etc.
 
1609
        It is keyed on the file kind, such as 'directory', 'symlink', or 'file'
 
1610
        'file', 'directory', and 'symlink' should always exist.
 
1611
        If they are missing, they will be replaced with 'os.mkdir()',
 
1612
        'os.readlink() + os.symlink()', and 'shutil.copy2()', respectively.
 
1613
    """
 
1614
    # Now, just copy the existing cached tree to the new location
 
1615
    # We use a cheap trick here.
 
1616
    # Absolute paths are prefixed with the first parameter
 
1617
    # relative paths are prefixed with the second.
 
1618
    # So we can get both the source and target returned
 
1619
    # without any extra work.
 
1620
 
 
1621
    def copy_dir(source, dest):
 
1622
        os.mkdir(dest)
 
1623
 
 
1624
    def copy_link(source, dest):
 
1625
        """Copy the contents of a symlink"""
 
1626
        link_to = os.readlink(source)
 
1627
        os.symlink(link_to, dest)
 
1628
 
 
1629
    real_handlers = {'file':shutil.copy2,
 
1630
                     'symlink':copy_link,
 
1631
                     'directory':copy_dir,
 
1632
                    }
 
1633
    real_handlers.update(handlers)
 
1634
 
 
1635
    if not os.path.exists(to_path):
 
1636
        real_handlers['directory'](from_path, to_path)
 
1637
 
 
1638
    for dir_info, entries in walkdirs(from_path, prefix=to_path):
 
1639
        for relpath, name, kind, st, abspath in entries:
 
1640
            real_handlers[kind](abspath, relpath)
 
1641
 
 
1642
 
 
1643
def path_prefix_key(path):
 
1644
    """Generate a prefix-order path key for path.
 
1645
 
 
1646
    This can be used to sort paths in the same way that walkdirs does.
 
1647
    """
 
1648
    return (dirname(path) , path)
 
1649
 
 
1650
 
 
1651
def compare_paths_prefix_order(path_a, path_b):
 
1652
    """Compare path_a and path_b to generate the same order walkdirs uses."""
 
1653
    key_a = path_prefix_key(path_a)
 
1654
    key_b = path_prefix_key(path_b)
 
1655
    return cmp(key_a, key_b)
 
1656
 
 
1657
 
 
1658
_cached_user_encoding = None
 
1659
 
 
1660
 
 
1661
def get_user_encoding(use_cache=True):
 
1662
    """Find out what the preferred user encoding is.
 
1663
 
 
1664
    This is generally the encoding that is used for command line parameters
 
1665
    and file contents. This may be different from the terminal encoding
 
1666
    or the filesystem encoding.
 
1667
 
 
1668
    :param  use_cache:  Enable cache for detected encoding.
 
1669
                        (This parameter is turned on by default,
 
1670
                        and required only for selftesting)
 
1671
 
 
1672
    :return: A string defining the preferred user encoding
 
1673
    """
 
1674
    global _cached_user_encoding
 
1675
    if _cached_user_encoding is not None and use_cache:
 
1676
        return _cached_user_encoding
 
1677
 
 
1678
    if sys.platform == 'darwin':
 
1679
        # python locale.getpreferredencoding() always return
 
1680
        # 'mac-roman' on darwin. That's a lie.
 
1681
        sys.platform = 'posix'
 
1682
        try:
 
1683
            if os.environ.get('LANG', None) is None:
 
1684
                # If LANG is not set, we end up with 'ascii', which is bad
 
1685
                # ('mac-roman' is more than ascii), so we set a default which
 
1686
                # will give us UTF-8 (which appears to work in all cases on
 
1687
                # OSX). Users are still free to override LANG of course, as
 
1688
                # long as it give us something meaningful. This work-around
 
1689
                # *may* not be needed with python 3k and/or OSX 10.5, but will
 
1690
                # work with them too -- vila 20080908
 
1691
                os.environ['LANG'] = 'en_US.UTF-8'
 
1692
            import locale
 
1693
        finally:
 
1694
            sys.platform = 'darwin'
 
1695
    else:
 
1696
        import locale
 
1697
 
 
1698
    try:
 
1699
        user_encoding = locale.getpreferredencoding()
 
1700
    except locale.Error, e:
 
1701
        sys.stderr.write('bzr: warning: %s\n'
 
1702
                         '  Could not determine what text encoding to use.\n'
 
1703
                         '  This error usually means your Python interpreter\n'
 
1704
                         '  doesn\'t support the locale set by $LANG (%s)\n'
 
1705
                         "  Continuing with ascii encoding.\n"
 
1706
                         % (e, os.environ.get('LANG')))
 
1707
        user_encoding = 'ascii'
 
1708
 
 
1709
    # Windows returns 'cp0' to indicate there is no code page. So we'll just
 
1710
    # treat that as ASCII, and not support printing unicode characters to the
 
1711
    # console.
 
1712
    #
 
1713
    # For python scripts run under vim, we get '', so also treat that as ASCII
 
1714
    if user_encoding in (None, 'cp0', ''):
 
1715
        user_encoding = 'ascii'
 
1716
    else:
 
1717
        # check encoding
 
1718
        try:
 
1719
            codecs.lookup(user_encoding)
 
1720
        except LookupError:
 
1721
            sys.stderr.write('bzr: warning:'
 
1722
                             ' unknown encoding %s.'
 
1723
                             ' Continuing with ascii encoding.\n'
 
1724
                             % user_encoding
 
1725
                            )
 
1726
            user_encoding = 'ascii'
 
1727
 
 
1728
    if use_cache:
 
1729
        _cached_user_encoding = user_encoding
 
1730
 
 
1731
    return user_encoding
 
1732
 
 
1733
 
 
1734
def get_host_name():
 
1735
    """Return the current unicode host name.
 
1736
 
 
1737
    This is meant to be used in place of socket.gethostname() because that
 
1738
    behaves inconsistently on different platforms.
 
1739
    """
 
1740
    if sys.platform == "win32":
 
1741
        import win32utils
 
1742
        return win32utils.get_host_name()
 
1743
    else:
 
1744
        import socket
 
1745
        return socket.gethostname().decode(get_user_encoding())
 
1746
 
 
1747
 
 
1748
def recv_all(socket, bytes):
 
1749
    """Receive an exact number of bytes.
 
1750
 
 
1751
    Regular Socket.recv() may return less than the requested number of bytes,
 
1752
    dependning on what's in the OS buffer.  MSG_WAITALL is not available
 
1753
    on all platforms, but this should work everywhere.  This will return
 
1754
    less than the requested amount if the remote end closes.
 
1755
 
 
1756
    This isn't optimized and is intended mostly for use in testing.
 
1757
    """
 
1758
    b = ''
 
1759
    while len(b) < bytes:
 
1760
        new = until_no_eintr(socket.recv, bytes - len(b))
 
1761
        if new == '':
 
1762
            break # eof
 
1763
        b += new
 
1764
    return b
 
1765
 
 
1766
 
 
1767
def send_all(socket, bytes, report_activity=None):
 
1768
    """Send all bytes on a socket.
 
1769
 
 
1770
    Regular socket.sendall() can give socket error 10053 on Windows.  This
 
1771
    implementation sends no more than 64k at a time, which avoids this problem.
 
1772
 
 
1773
    :param report_activity: Call this as bytes are read, see
 
1774
        Transport._report_activity
 
1775
    """
 
1776
    chunk_size = 2**16
 
1777
    for pos in xrange(0, len(bytes), chunk_size):
 
1778
        block = bytes[pos:pos+chunk_size]
 
1779
        if report_activity is not None:
 
1780
            report_activity(len(block), 'write')
 
1781
        until_no_eintr(socket.sendall, block)
 
1782
 
 
1783
 
 
1784
def dereference_path(path):
 
1785
    """Determine the real path to a file.
 
1786
 
 
1787
    All parent elements are dereferenced.  But the file itself is not
 
1788
    dereferenced.
 
1789
    :param path: The original path.  May be absolute or relative.
 
1790
    :return: the real path *to* the file
 
1791
    """
 
1792
    parent, base = os.path.split(path)
 
1793
    # The pathjoin for '.' is a workaround for Python bug #1213894.
 
1794
    # (initial path components aren't dereferenced)
 
1795
    return pathjoin(realpath(pathjoin('.', parent)), base)
 
1796
 
 
1797
 
 
1798
def supports_mapi():
 
1799
    """Return True if we can use MAPI to launch a mail client."""
 
1800
    return sys.platform == "win32"
 
1801
 
 
1802
 
 
1803
def resource_string(package, resource_name):
 
1804
    """Load a resource from a package and return it as a string.
 
1805
 
 
1806
    Note: Only packages that start with bzrlib are currently supported.
 
1807
 
 
1808
    This is designed to be a lightweight implementation of resource
 
1809
    loading in a way which is API compatible with the same API from
 
1810
    pkg_resources. See
 
1811
    http://peak.telecommunity.com/DevCenter/PkgResources#basic-resource-access.
 
1812
    If and when pkg_resources becomes a standard library, this routine
 
1813
    can delegate to it.
 
1814
    """
 
1815
    # Check package name is within bzrlib
 
1816
    if package == "bzrlib":
 
1817
        resource_relpath = resource_name
 
1818
    elif package.startswith("bzrlib."):
 
1819
        package = package[len("bzrlib."):].replace('.', os.sep)
 
1820
        resource_relpath = pathjoin(package, resource_name)
 
1821
    else:
 
1822
        raise errors.BzrError('resource package %s not in bzrlib' % package)
 
1823
 
 
1824
    # Map the resource to a file and read its contents
 
1825
    base = dirname(bzrlib.__file__)
 
1826
    if getattr(sys, 'frozen', None):    # bzr.exe
 
1827
        base = abspath(pathjoin(base, '..', '..'))
 
1828
    filename = pathjoin(base, resource_relpath)
 
1829
    return open(filename, 'rU').read()
 
1830
 
 
1831
 
 
1832
def file_kind_from_stat_mode_thunk(mode):
 
1833
    global file_kind_from_stat_mode
 
1834
    if file_kind_from_stat_mode is file_kind_from_stat_mode_thunk:
 
1835
        try:
 
1836
            from bzrlib._readdir_pyx import UTF8DirReader
 
1837
            file_kind_from_stat_mode = UTF8DirReader().kind_from_mode
 
1838
        except ImportError, e:
 
1839
            # This is one time where we won't warn that an extension failed to
 
1840
            # load. The extension is never available on Windows anyway.
 
1841
            from bzrlib._readdir_py import (
 
1842
                _kind_from_mode as file_kind_from_stat_mode
 
1843
                )
 
1844
    return file_kind_from_stat_mode(mode)
 
1845
file_kind_from_stat_mode = file_kind_from_stat_mode_thunk
 
1846
 
 
1847
 
 
1848
def file_kind(f, _lstat=os.lstat):
 
1849
    try:
 
1850
        return file_kind_from_stat_mode(_lstat(f).st_mode)
 
1851
    except OSError, e:
 
1852
        if getattr(e, 'errno', None) in (errno.ENOENT, errno.ENOTDIR):
 
1853
            raise errors.NoSuchFile(f)
 
1854
        raise
 
1855
 
 
1856
 
 
1857
def until_no_eintr(f, *a, **kw):
 
1858
    """Run f(*a, **kw), retrying if an EINTR error occurs."""
 
1859
    # Borrowed from Twisted's twisted.python.util.untilConcludes function.
 
1860
    while True:
 
1861
        try:
 
1862
            return f(*a, **kw)
 
1863
        except (IOError, OSError), e:
 
1864
            if e.errno == errno.EINTR:
 
1865
                continue
 
1866
            raise
 
1867
 
 
1868
def re_compile_checked(re_string, flags=0, where=""):
 
1869
    """Return a compiled re, or raise a sensible error.
 
1870
 
 
1871
    This should only be used when compiling user-supplied REs.
 
1872
 
 
1873
    :param re_string: Text form of regular expression.
 
1874
    :param flags: eg re.IGNORECASE
 
1875
    :param where: Message explaining to the user the context where
 
1876
        it occurred, eg 'log search filter'.
 
1877
    """
 
1878
    # from https://bugs.launchpad.net/bzr/+bug/251352
 
1879
    try:
 
1880
        re_obj = re.compile(re_string, flags)
 
1881
        re_obj.search("")
 
1882
        return re_obj
 
1883
    except re.error, e:
 
1884
        if where:
 
1885
            where = ' in ' + where
 
1886
        # despite the name 'error' is a type
 
1887
        raise errors.BzrCommandError('Invalid regular expression%s: %r: %s'
 
1888
            % (where, re_string, e))
 
1889
 
 
1890
 
 
1891
if sys.platform == "win32":
 
1892
    import msvcrt
 
1893
    def getchar():
 
1894
        return msvcrt.getch()
 
1895
else:
 
1896
    import tty
 
1897
    import termios
 
1898
    def getchar():
 
1899
        fd = sys.stdin.fileno()
 
1900
        settings = termios.tcgetattr(fd)
 
1901
        try:
 
1902
            tty.setraw(fd)
 
1903
            ch = sys.stdin.read(1)
 
1904
        finally:
 
1905
            termios.tcsetattr(fd, termios.TCSADRAIN, settings)
 
1906
        return ch
 
1907
 
 
1908
 
 
1909
if sys.platform == 'linux2':
 
1910
    def _local_concurrency():
 
1911
        concurrency = None
 
1912
        prefix = 'processor'
 
1913
        for line in file('/proc/cpuinfo', 'rb'):
 
1914
            if line.startswith(prefix):
 
1915
                concurrency = int(line[line.find(':')+1:]) + 1
 
1916
        return concurrency
 
1917
elif sys.platform == 'darwin':
 
1918
    def _local_concurrency():
 
1919
        return subprocess.Popen(['sysctl', '-n', 'hw.availcpu'],
 
1920
                                stdout=subprocess.PIPE).communicate()[0]
 
1921
elif sys.platform[0:7] == 'freebsd':
 
1922
    def _local_concurrency():
 
1923
        return subprocess.Popen(['sysctl', '-n', 'hw.ncpu'],
 
1924
                                stdout=subprocess.PIPE).communicate()[0]
 
1925
elif sys.platform == 'sunos5':
 
1926
    def _local_concurrency():
 
1927
        return subprocess.Popen(['psrinfo', '-p',],
 
1928
                                stdout=subprocess.PIPE).communicate()[0]
 
1929
elif sys.platform == "win32":
 
1930
    def _local_concurrency():
 
1931
        # This appears to return the number of cores.
 
1932
        return os.environ.get('NUMBER_OF_PROCESSORS')
 
1933
else:
 
1934
    def _local_concurrency():
 
1935
        # Who knows ?
 
1936
        return None
 
1937
 
 
1938
 
 
1939
_cached_local_concurrency = None
 
1940
 
 
1941
def local_concurrency(use_cache=True):
 
1942
    """Return how many processes can be run concurrently.
 
1943
 
 
1944
    Rely on platform specific implementations and default to 1 (one) if
 
1945
    anything goes wrong.
 
1946
    """
 
1947
    global _cached_local_concurrency
 
1948
    if _cached_local_concurrency is not None and use_cache:
 
1949
        return _cached_local_concurrency
 
1950
 
 
1951
    try:
 
1952
        concurrency = _local_concurrency()
 
1953
    except (OSError, IOError):
 
1954
        concurrency = None
 
1955
    try:
 
1956
        concurrency = int(concurrency)
 
1957
    except (TypeError, ValueError):
 
1958
        concurrency = 1
 
1959
    if use_cache:
 
1960
        _cached_concurrency = concurrency
 
1961
    return concurrency