~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

(gz) Backslash escape selftest output when printing to non-unicode consoles
 (Martin [gz])

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2009 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
import errno
17
18
import os
18
19
import re
19
20
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
21
import sys
23
22
import time
24
 
import warnings
 
23
import codecs
25
24
 
26
25
from bzrlib.lazy_import import lazy_import
27
26
lazy_import(globals(), """
28
 
import codecs
29
27
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
 
                    )
 
28
import getpass
 
29
import ntpath
37
30
import posixpath
 
31
# We need to import both shutil and rmtree as we export the later on posix
 
32
# and need the former on windows
38
33
import shutil
39
 
from shutil import (
40
 
    rmtree,
41
 
    )
42
 
import signal
 
34
from shutil import rmtree
 
35
import socket
43
36
import subprocess
 
37
# We need to import both tempfile and mkdtemp as we export the later on posix
 
38
# and need the former on windows
44
39
import tempfile
45
 
from tempfile import (
46
 
    mkdtemp,
47
 
    )
 
40
from tempfile import mkdtemp
48
41
import unicodedata
49
42
 
50
43
from bzrlib import (
51
44
    cache_utf8,
52
45
    errors,
 
46
    trace,
53
47
    win32utils,
54
48
    )
55
49
""")
56
50
 
 
51
from bzrlib.symbol_versioning import (
 
52
    deprecated_function,
 
53
    deprecated_in,
 
54
    )
 
55
 
57
56
# sha and md5 modules are deprecated in python2.6 but hashlib is available as
58
57
# of 2.5
59
58
if sys.version_info < (2, 5):
85
84
# be opened in binary mode, rather than text mode.
86
85
# On other platforms, O_BINARY doesn't exist, because
87
86
# they always open in binary mode, so it is okay to
88
 
# OR with 0 on those platforms
 
87
# OR with 0 on those platforms.
 
88
# O_NOINHERIT and O_TEXT exists only on win32 too.
89
89
O_BINARY = getattr(os, 'O_BINARY', 0)
 
90
O_TEXT = getattr(os, 'O_TEXT', 0)
 
91
O_NOINHERIT = getattr(os, 'O_NOINHERIT', 0)
90
92
 
91
93
 
92
94
def get_unicode_argv():
179
181
    try:
180
182
        return _kind_marker_map[kind]
181
183
    except KeyError:
182
 
        raise errors.BzrError('invalid file kind %r' % kind)
 
184
        # Slightly faster than using .get(, '') when the common case is that
 
185
        # kind will be found
 
186
        return ''
183
187
 
184
188
 
185
189
lexists = getattr(os.path, 'lexists', None)
294
298
    running python.exe under cmd.exe return capital C:\\
295
299
    running win32 python inside a cygwin shell returns lowercase c:\\
296
300
    """
297
 
    drive, path = _nt_splitdrive(path)
 
301
    drive, path = ntpath.splitdrive(path)
298
302
    return drive.upper() + path
299
303
 
300
304
 
301
305
def _win32_abspath(path):
302
 
    # Real _nt_abspath doesn't have a problem with a unicode cwd
303
 
    return _win32_fixdrive(_nt_abspath(unicode(path)).replace('\\', '/'))
 
306
    # Real ntpath.abspath doesn't have a problem with a unicode cwd
 
307
    return _win32_fixdrive(ntpath.abspath(unicode(path)).replace('\\', '/'))
304
308
 
305
309
 
306
310
def _win98_abspath(path):
317
321
    #   /path       => C:/path
318
322
    path = unicode(path)
319
323
    # check for absolute path
320
 
    drive = _nt_splitdrive(path)[0]
 
324
    drive = ntpath.splitdrive(path)[0]
321
325
    if drive == '' and path[:2] not in('//','\\\\'):
322
326
        cwd = os.getcwdu()
323
327
        # we cannot simply os.path.join cwd and path
324
328
        # because os.path.join('C:','/path') produce '/path'
325
329
        # and this is incorrect
326
330
        if path[:1] in ('/','\\'):
327
 
            cwd = _nt_splitdrive(cwd)[0]
 
331
            cwd = ntpath.splitdrive(cwd)[0]
328
332
            path = path[1:]
329
333
        path = cwd + '\\' + path
330
 
    return _win32_fixdrive(_nt_normpath(path).replace('\\', '/'))
 
334
    return _win32_fixdrive(ntpath.normpath(path).replace('\\', '/'))
331
335
 
332
336
 
333
337
def _win32_realpath(path):
334
 
    # Real _nt_realpath doesn't have a problem with a unicode cwd
335
 
    return _win32_fixdrive(_nt_realpath(unicode(path)).replace('\\', '/'))
 
338
    # Real ntpath.realpath doesn't have a problem with a unicode cwd
 
339
    return _win32_fixdrive(ntpath.realpath(unicode(path)).replace('\\', '/'))
336
340
 
337
341
 
338
342
def _win32_pathjoin(*args):
339
 
    return _nt_join(*args).replace('\\', '/')
 
343
    return ntpath.join(*args).replace('\\', '/')
340
344
 
341
345
 
342
346
def _win32_normpath(path):
343
 
    return _win32_fixdrive(_nt_normpath(unicode(path)).replace('\\', '/'))
 
347
    return _win32_fixdrive(ntpath.normpath(unicode(path)).replace('\\', '/'))
344
348
 
345
349
 
346
350
def _win32_getcwd():
385
389
basename = os.path.basename
386
390
split = os.path.split
387
391
splitext = os.path.splitext
388
 
# These were already imported into local scope
 
392
# These were already lazily imported into local scope
389
393
# mkdtemp = tempfile.mkdtemp
390
394
# rmtree = shutil.rmtree
391
395
 
431
435
    getcwd = _mac_getcwd
432
436
 
433
437
 
434
 
def get_terminal_encoding():
 
438
def get_terminal_encoding(trace=False):
435
439
    """Find the best encoding for printing to the screen.
436
440
 
437
441
    This attempts to check both sys.stdout and sys.stdin to see
443
447
 
444
448
    On my standard US Windows XP, the preferred encoding is
445
449
    cp1252, but the console is cp437
 
450
 
 
451
    :param trace: If True trace the selected encoding via mutter().
446
452
    """
447
453
    from bzrlib.trace import mutter
448
454
    output_encoding = getattr(sys.stdout, 'encoding', None)
450
456
        input_encoding = getattr(sys.stdin, 'encoding', None)
451
457
        if not input_encoding:
452
458
            output_encoding = get_user_encoding()
453
 
            mutter('encoding stdout as osutils.get_user_encoding() %r',
 
459
            if trace:
 
460
                mutter('encoding stdout as osutils.get_user_encoding() %r',
454
461
                   output_encoding)
455
462
        else:
456
463
            output_encoding = input_encoding
457
 
            mutter('encoding stdout as sys.stdin encoding %r', output_encoding)
 
464
            if trace:
 
465
                mutter('encoding stdout as sys.stdin encoding %r',
 
466
                    output_encoding)
458
467
    else:
459
 
        mutter('encoding stdout as sys.stdout encoding %r', output_encoding)
 
468
        if trace:
 
469
            mutter('encoding stdout as sys.stdout encoding %r', output_encoding)
460
470
    if output_encoding == 'cp0':
461
471
        # invalid encoding (cp0 means 'no codepage' on Windows)
462
472
        output_encoding = get_user_encoding()
463
 
        mutter('cp0 is invalid encoding.'
 
473
        if trace:
 
474
            mutter('cp0 is invalid encoding.'
464
475
               ' encoding stdout as osutils.get_user_encoding() %r',
465
476
               output_encoding)
466
477
    # check encoding
492
503
def isdir(f):
493
504
    """True if f is an accessible directory."""
494
505
    try:
495
 
        return S_ISDIR(os.lstat(f)[ST_MODE])
 
506
        return stat.S_ISDIR(os.lstat(f)[stat.ST_MODE])
496
507
    except OSError:
497
508
        return False
498
509
 
500
511
def isfile(f):
501
512
    """True if f is a regular file."""
502
513
    try:
503
 
        return S_ISREG(os.lstat(f)[ST_MODE])
 
514
        return stat.S_ISREG(os.lstat(f)[stat.ST_MODE])
504
515
    except OSError:
505
516
        return False
506
517
 
507
518
def islink(f):
508
519
    """True if f is a symlink."""
509
520
    try:
510
 
        return S_ISLNK(os.lstat(f)[ST_MODE])
 
521
        return stat.S_ISLNK(os.lstat(f)[stat.ST_MODE])
511
522
    except OSError:
512
523
        return False
513
524
 
661
672
def sha_file_by_name(fname):
662
673
    """Calculate the SHA1 of a file by reading the full text"""
663
674
    s = sha()
664
 
    f = os.open(fname, os.O_RDONLY | O_BINARY)
 
675
    f = os.open(fname, os.O_RDONLY | O_BINARY | O_NOINHERIT)
665
676
    try:
666
677
        while True:
667
678
            b = os.read(f, 1<<16)
853
864
 
854
865
def filesize(f):
855
866
    """Return size of given open file."""
856
 
    return os.fstat(f.fileno())[ST_SIZE]
 
867
    return os.fstat(f.fileno())[stat.ST_SIZE]
857
868
 
858
869
 
859
870
# Define rand_bytes based on platform.
921
932
 
922
933
def parent_directories(filename):
923
934
    """Return the list of parent directories, deepest first.
924
 
    
 
935
 
925
936
    For example, parent_directories("a/b/c") -> ["a/b", "a"].
926
937
    """
927
938
    parents = []
951
962
    # NB: This docstring is just an example, not a doctest, because doctest
952
963
    # currently can't cope with the use of lazy imports in this namespace --
953
964
    # mbp 20090729
954
 
    
 
965
 
955
966
    # This currently doesn't report the failure at the time it occurs, because
956
967
    # they tend to happen very early in startup when we can't check config
957
968
    # files etc, and also we want to report all failures but not spam the user
958
969
    # with 10 warnings.
959
 
    from bzrlib import trace
960
970
    exception_str = str(exception)
961
971
    if exception_str not in _extension_load_failures:
962
972
        trace.mutter("failed to load compiled extension: %s" % exception_str)
1027
1037
 
1028
1038
 
1029
1039
def delete_any(path):
1030
 
    """Delete a file, symlink or directory.  
1031
 
    
 
1040
    """Delete a file, symlink or directory.
 
1041
 
1032
1042
    Will delete even if readonly.
1033
1043
    """
1034
1044
    try:
1120
1130
 
1121
1131
 
1122
1132
def relpath(base, path):
1123
 
    """Return path relative to base, or raise exception.
 
1133
    """Return path relative to base, or raise PathNotChild exception.
1124
1134
 
1125
1135
    The path may be either an absolute path or a path relative to the
1126
1136
    current working directory.
1128
1138
    os.path.commonprefix (python2.4) has a bad bug that it works just
1129
1139
    on string prefixes, assuming that '/u' is a prefix of '/u2'.  This
1130
1140
    avoids that problem.
 
1141
 
 
1142
    NOTE: `base` should not have a trailing slash otherwise you'll get
 
1143
    PathNotChild exceptions regardless of `path`.
1131
1144
    """
1132
1145
 
1133
1146
    if len(base) < MIN_ABS_PATHLENGTH:
1220
1233
    # but for now, we haven't optimized...
1221
1234
    return [canonical_relpath(base, p) for p in paths]
1222
1235
 
 
1236
 
 
1237
def decode_filename(filename):
 
1238
    """Decode the filename using the filesystem encoding
 
1239
 
 
1240
    If it is unicode, it is returned.
 
1241
    Otherwise it is decoded from the the filesystem's encoding. If decoding
 
1242
    fails, a errors.BadFilenameEncoding exception is raised.
 
1243
    """
 
1244
    if type(filename) is unicode:
 
1245
        return filename
 
1246
    try:
 
1247
        return filename.decode(_fs_enc)
 
1248
    except UnicodeDecodeError:
 
1249
        raise errors.BadFilenameEncoding(filename, _fs_enc)
 
1250
 
 
1251
 
1223
1252
def safe_unicode(unicode_or_utf8_string):
1224
1253
    """Coerce unicode_or_utf8_string into unicode.
1225
1254
 
1308
1337
def normalizes_filenames():
1309
1338
    """Return True if this platform normalizes unicode filenames.
1310
1339
 
1311
 
    Mac OSX does, Windows/Linux do not.
 
1340
    Only Mac OSX.
1312
1341
    """
1313
1342
    return _platform_normalizes_filenames
1314
1343
 
1319
1348
    On platforms where the system normalizes filenames (Mac OSX),
1320
1349
    you can access a file by any path which will normalize correctly.
1321
1350
    On platforms where the system does not normalize filenames
1322
 
    (Windows, Linux), you have to access a file by its exact path.
 
1351
    (everything else), you have to access a file by its exact path.
1323
1352
 
1324
1353
    Internally, bzr only supports NFC normalization, since that is
1325
1354
    the standard for XML documents.
1344
1373
    normalized_filename = _inaccessible_normalized_filename
1345
1374
 
1346
1375
 
 
1376
def set_signal_handler(signum, handler, restart_syscall=True):
 
1377
    """A wrapper for signal.signal that also calls siginterrupt(signum, False)
 
1378
    on platforms that support that.
 
1379
 
 
1380
    :param restart_syscall: if set, allow syscalls interrupted by a signal to
 
1381
        automatically restart (by calling `signal.siginterrupt(signum,
 
1382
        False)`).  May be ignored if the feature is not available on this
 
1383
        platform or Python version.
 
1384
    """
 
1385
    try:
 
1386
        import signal
 
1387
        siginterrupt = signal.siginterrupt
 
1388
    except ImportError:
 
1389
        # This python implementation doesn't provide signal support, hence no
 
1390
        # handler exists
 
1391
        return None
 
1392
    except AttributeError:
 
1393
        # siginterrupt doesn't exist on this platform, or for this version
 
1394
        # of Python.
 
1395
        siginterrupt = lambda signum, flag: None
 
1396
    if restart_syscall:
 
1397
        def sig_handler(*args):
 
1398
            # Python resets the siginterrupt flag when a signal is
 
1399
            # received.  <http://bugs.python.org/issue8354>
 
1400
            # As a workaround for some cases, set it back the way we want it.
 
1401
            siginterrupt(signum, False)
 
1402
            # Now run the handler function passed to set_signal_handler.
 
1403
            handler(*args)
 
1404
    else:
 
1405
        sig_handler = handler
 
1406
    old_handler = signal.signal(signum, sig_handler)
 
1407
    if restart_syscall:
 
1408
        siginterrupt(signum, False)
 
1409
    return old_handler
 
1410
 
 
1411
 
1347
1412
default_terminal_width = 80
1348
1413
"""The default terminal width for ttys.
1349
1414
 
1351
1416
terminal_width() returns None.
1352
1417
"""
1353
1418
 
 
1419
# Keep some state so that terminal_width can detect if _terminal_size has
 
1420
# returned a different size since the process started.  See docstring and
 
1421
# comments of terminal_width for details.
 
1422
# _terminal_size_state has 3 possible values: no_data, unchanged, and changed.
 
1423
_terminal_size_state = 'no_data'
 
1424
_first_terminal_size = None
1354
1425
 
1355
1426
def terminal_width():
1356
1427
    """Return terminal width.
1360
1431
    The rules are:
1361
1432
    - if BZR_COLUMNS is set, returns its value
1362
1433
    - if there is no controlling terminal, returns None
 
1434
    - query the OS, if the queried size has changed since the last query,
 
1435
      return its value,
1363
1436
    - if COLUMNS is set, returns its value,
 
1437
    - if the OS has a value (even though it's never changed), return its value.
1364
1438
 
1365
1439
    From there, we need to query the OS to get the size of the controlling
1366
1440
    terminal.
1367
1441
 
1368
 
    Unices:
 
1442
    On Unices we query the OS by:
1369
1443
    - get termios.TIOCGWINSZ
1370
1444
    - if an error occurs or a negative value is obtained, returns None
1371
1445
 
1372
 
    Windows:
1373
 
    
 
1446
    On Windows we query the OS by:
1374
1447
    - win32utils.get_console_size() decides,
1375
1448
    - returns None on error (provided default value)
1376
1449
    """
 
1450
    # Note to implementors: if changing the rules for determining the width,
 
1451
    # make sure you've considered the behaviour in these cases:
 
1452
    #  - M-x shell in emacs, where $COLUMNS is set and TIOCGWINSZ returns 0,0.
 
1453
    #  - bzr log | less, in bash, where $COLUMNS not set and TIOCGWINSZ returns
 
1454
    #    0,0.
 
1455
    #  - (add more interesting cases here, if you find any)
 
1456
    # Some programs implement "Use $COLUMNS (if set) until SIGWINCH occurs",
 
1457
    # but we don't want to register a signal handler because it is impossible
 
1458
    # to do so without risking EINTR errors in Python <= 2.6.5 (see
 
1459
    # <http://bugs.python.org/issue8354>).  Instead we check TIOCGWINSZ every
 
1460
    # time so we can notice if the reported size has changed, which should have
 
1461
    # a similar effect.
1377
1462
 
1378
1463
    # If BZR_COLUMNS is set, take it, user is always right
1379
1464
    try:
1382
1467
        pass
1383
1468
 
1384
1469
    isatty = getattr(sys.stdout, 'isatty', None)
1385
 
    if  isatty is None or not isatty():
 
1470
    if isatty is None or not isatty():
1386
1471
        # Don't guess, setting BZR_COLUMNS is the recommended way to override.
1387
1472
        return None
1388
1473
 
1389
 
    # If COLUMNS is set, take it, the terminal knows better (even inside a
1390
 
    # given terminal, the application can decide to set COLUMNS to a lower
1391
 
    # value (splitted screen) or a bigger value (scroll bars))
 
1474
    # Query the OS
 
1475
    width, height = os_size = _terminal_size(None, None)
 
1476
    global _first_terminal_size, _terminal_size_state
 
1477
    if _terminal_size_state == 'no_data':
 
1478
        _first_terminal_size = os_size
 
1479
        _terminal_size_state = 'unchanged'
 
1480
    elif (_terminal_size_state == 'unchanged' and
 
1481
          _first_terminal_size != os_size):
 
1482
        _terminal_size_state = 'changed'
 
1483
 
 
1484
    # If the OS claims to know how wide the terminal is, and this value has
 
1485
    # ever changed, use that.
 
1486
    if _terminal_size_state == 'changed':
 
1487
        if width is not None and width > 0:
 
1488
            return width
 
1489
 
 
1490
    # If COLUMNS is set, use it.
1392
1491
    try:
1393
1492
        return int(os.environ['COLUMNS'])
1394
1493
    except (KeyError, ValueError):
1395
1494
        pass
1396
1495
 
1397
 
    width, height = _terminal_size(None, None)
1398
 
    if width <= 0:
1399
 
        # Consider invalid values as meaning no width
1400
 
        return None
 
1496
    # Finally, use an unchanged size from the OS, if we have one.
 
1497
    if _terminal_size_state == 'unchanged':
 
1498
        if width is not None and width > 0:
 
1499
            return width
1401
1500
 
1402
 
    return width
 
1501
    # The width could not be determined.
 
1502
    return None
1403
1503
 
1404
1504
 
1405
1505
def _win32_terminal_size(width, height):
1432
1532
    _terminal_size = _ioctl_terminal_size
1433
1533
 
1434
1534
 
1435
 
def _terminal_size_changed(signum, frame):
1436
 
    """Set COLUMNS upon receiving a SIGnal for WINdow size CHange."""
1437
 
    width, height = _terminal_size(None, None)
1438
 
    if width is not None:
1439
 
        os.environ['COLUMNS'] = str(width)
1440
 
 
1441
 
if sys.platform == 'win32':
1442
 
    # Martin (gz) mentioned WINDOW_BUFFER_SIZE_RECORD from ReadConsoleInput but
1443
 
    # I've no idea how to plug that in the current design -- vila 20091216
1444
 
    pass
1445
 
else:
1446
 
    signal.signal(signal.SIGWINCH, _terminal_size_changed)
1447
 
 
1448
 
 
1449
1535
def supports_executable():
1450
1536
    return sys.platform != "win32"
1451
1537
 
1574
1660
        dirblock = []
1575
1661
        append = dirblock.append
1576
1662
        try:
1577
 
            names = sorted(_listdir(top))
 
1663
            names = sorted(map(decode_filename, _listdir(top)))
1578
1664
        except OSError, e:
1579
1665
            if not _is_error_enotdir(e):
1580
1666
                raise
1769
1855
            real_handlers[kind](abspath, relpath)
1770
1856
 
1771
1857
 
 
1858
def copy_ownership_from_path(dst, src=None):
 
1859
    """Copy usr/grp ownership from src file/dir to dst file/dir.
 
1860
 
 
1861
    If src is None, the containing directory is used as source. If chown
 
1862
    fails, the error is ignored and a warning is printed.
 
1863
    """
 
1864
    chown = getattr(os, 'chown', None)
 
1865
    if chown is None:
 
1866
        return
 
1867
 
 
1868
    if src == None:
 
1869
        src = os.path.dirname(dst)
 
1870
        if src == '':
 
1871
            src = '.'
 
1872
 
 
1873
    try:
 
1874
        s = os.stat(src)
 
1875
        chown(dst, s.st_uid, s.st_gid)
 
1876
    except OSError, e:
 
1877
        trace.warning(
 
1878
            'Unable to copy ownership from "%s" to "%s". '
 
1879
            'You may want to set it manually.', src, dst)
 
1880
        trace.log_exception_quietly()
 
1881
 
 
1882
 
1772
1883
def path_prefix_key(path):
1773
1884
    """Generate a prefix-order path key for path.
1774
1885
 
1860
1971
    return user_encoding
1861
1972
 
1862
1973
 
 
1974
def get_diff_header_encoding():
 
1975
    return get_terminal_encoding()
 
1976
 
 
1977
 
1863
1978
def get_host_name():
1864
1979
    """Return the current unicode host name.
1865
1980
 
1874
1989
        return socket.gethostname().decode(get_user_encoding())
1875
1990
 
1876
1991
 
1877
 
def recv_all(socket, bytes):
 
1992
# We must not read/write any more than 64k at a time from/to a socket so we
 
1993
# don't risk "no buffer space available" errors on some platforms.  Windows in
 
1994
# particular is likely to throw WSAECONNABORTED or WSAENOBUFS if given too much
 
1995
# data at once.
 
1996
MAX_SOCKET_CHUNK = 64 * 1024
 
1997
 
 
1998
def read_bytes_from_socket(sock, report_activity=None,
 
1999
        max_read_size=MAX_SOCKET_CHUNK):
 
2000
    """Read up to max_read_size of bytes from sock and notify of progress.
 
2001
 
 
2002
    Translates "Connection reset by peer" into file-like EOF (return an
 
2003
    empty string rather than raise an error), and repeats the recv if
 
2004
    interrupted by a signal.
 
2005
    """
 
2006
    while 1:
 
2007
        try:
 
2008
            bytes = sock.recv(max_read_size)
 
2009
        except socket.error, e:
 
2010
            eno = e.args[0]
 
2011
            if eno == getattr(errno, "WSAECONNRESET", errno.ECONNRESET):
 
2012
                # The connection was closed by the other side.  Callers expect
 
2013
                # an empty string to signal end-of-stream.
 
2014
                return ""
 
2015
            elif eno == errno.EINTR:
 
2016
                # Retry the interrupted recv.
 
2017
                continue
 
2018
            raise
 
2019
        else:
 
2020
            if report_activity is not None:
 
2021
                report_activity(len(bytes), 'read')
 
2022
            return bytes
 
2023
 
 
2024
 
 
2025
def recv_all(socket, count):
1878
2026
    """Receive an exact number of bytes.
1879
2027
 
1880
2028
    Regular Socket.recv() may return less than the requested number of bytes,
1881
 
    dependning on what's in the OS buffer.  MSG_WAITALL is not available
 
2029
    depending on what's in the OS buffer.  MSG_WAITALL is not available
1882
2030
    on all platforms, but this should work everywhere.  This will return
1883
2031
    less than the requested amount if the remote end closes.
1884
2032
 
1885
2033
    This isn't optimized and is intended mostly for use in testing.
1886
2034
    """
1887
2035
    b = ''
1888
 
    while len(b) < bytes:
1889
 
        new = until_no_eintr(socket.recv, bytes - len(b))
 
2036
    while len(b) < count:
 
2037
        new = read_bytes_from_socket(socket, None, count - len(b))
1890
2038
        if new == '':
1891
2039
            break # eof
1892
2040
        b += new
1893
2041
    return b
1894
2042
 
1895
2043
 
1896
 
def send_all(socket, bytes, report_activity=None):
 
2044
def send_all(sock, bytes, report_activity=None):
1897
2045
    """Send all bytes on a socket.
1898
2046
 
1899
 
    Regular socket.sendall() can give socket error 10053 on Windows.  This
1900
 
    implementation sends no more than 64k at a time, which avoids this problem.
 
2047
    Breaks large blocks in smaller chunks to avoid buffering limitations on
 
2048
    some platforms, and catches EINTR which may be thrown if the send is
 
2049
    interrupted by a signal.
 
2050
 
 
2051
    This is preferred to socket.sendall(), because it avoids portability bugs
 
2052
    and provides activity reporting.
1901
2053
 
1902
2054
    :param report_activity: Call this as bytes are read, see
1903
2055
        Transport._report_activity
1904
2056
    """
1905
 
    chunk_size = 2**16
1906
 
    for pos in xrange(0, len(bytes), chunk_size):
1907
 
        block = bytes[pos:pos+chunk_size]
1908
 
        if report_activity is not None:
1909
 
            report_activity(len(block), 'write')
1910
 
        until_no_eintr(socket.sendall, block)
 
2057
    sent_total = 0
 
2058
    byte_count = len(bytes)
 
2059
    while sent_total < byte_count:
 
2060
        try:
 
2061
            sent = sock.send(buffer(bytes, sent_total, MAX_SOCKET_CHUNK))
 
2062
        except socket.error, e:
 
2063
            if e.args[0] != errno.EINTR:
 
2064
                raise
 
2065
        else:
 
2066
            sent_total += sent
 
2067
            report_activity(sent, 'write')
 
2068
 
 
2069
 
 
2070
def connect_socket(address):
 
2071
    # Slight variation of the socket.create_connection() function (provided by
 
2072
    # python-2.6) that can fail if getaddrinfo returns an empty list. We also
 
2073
    # provide it for previous python versions. Also, we don't use the timeout
 
2074
    # parameter (provided by the python implementation) so we don't implement
 
2075
    # it either).
 
2076
    err = socket.error('getaddrinfo returns an empty list')
 
2077
    host, port = address
 
2078
    for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM):
 
2079
        af, socktype, proto, canonname, sa = res
 
2080
        sock = None
 
2081
        try:
 
2082
            sock = socket.socket(af, socktype, proto)
 
2083
            sock.connect(sa)
 
2084
            return sock
 
2085
 
 
2086
        except socket.error, err:
 
2087
            # 'err' is now the most recent error
 
2088
            if sock is not None:
 
2089
                sock.close()
 
2090
    raise err
1911
2091
 
1912
2092
 
1913
2093
def dereference_path(path):
1954
2134
    base = dirname(bzrlib.__file__)
1955
2135
    if getattr(sys, 'frozen', None):    # bzr.exe
1956
2136
        base = abspath(pathjoin(base, '..', '..'))
1957
 
    filename = pathjoin(base, resource_relpath)
1958
 
    return open(filename, 'rU').read()
1959
 
 
 
2137
    f = file(pathjoin(base, resource_relpath), "rU")
 
2138
    try:
 
2139
        return f.read()
 
2140
    finally:
 
2141
        f.close()
1960
2142
 
1961
2143
def file_kind_from_stat_mode_thunk(mode):
1962
2144
    global file_kind_from_stat_mode
1984
2166
 
1985
2167
 
1986
2168
def until_no_eintr(f, *a, **kw):
1987
 
    """Run f(*a, **kw), retrying if an EINTR error occurs."""
 
2169
    """Run f(*a, **kw), retrying if an EINTR error occurs.
 
2170
 
 
2171
    WARNING: you must be certain that it is safe to retry the call repeatedly
 
2172
    if EINTR does occur.  This is typically only true for low-level operations
 
2173
    like os.read.  If in any doubt, don't use this.
 
2174
 
 
2175
    Keep in mind that this is not a complete solution to EINTR.  There is
 
2176
    probably code in the Python standard library and other dependencies that
 
2177
    may encounter EINTR if a signal arrives (and there is signal handler for
 
2178
    that signal).  So this function can reduce the impact for IO that bzrlib
 
2179
    directly controls, but it is not a complete solution.
 
2180
    """
1988
2181
    # Borrowed from Twisted's twisted.python.util.untilConcludes function.
1989
2182
    while True:
1990
2183
        try:
1994
2187
                continue
1995
2188
            raise
1996
2189
 
 
2190
 
 
2191
@deprecated_function(deprecated_in((2, 2, 0)))
1997
2192
def re_compile_checked(re_string, flags=0, where=""):
1998
2193
    """Return a compiled re, or raise a sensible error.
1999
2194
 
2009
2204
        re_obj = re.compile(re_string, flags)
2010
2205
        re_obj.search("")
2011
2206
        return re_obj
2012
 
    except re.error, e:
 
2207
    except errors.InvalidPattern, e:
2013
2208
        if where:
2014
2209
            where = ' in ' + where
2015
2210
        # despite the name 'error' is a type
2016
 
        raise errors.BzrCommandError('Invalid regular expression%s: %r: %s'
2017
 
            % (where, re_string, e))
 
2211
        raise errors.BzrCommandError('Invalid regular expression%s: %s'
 
2212
            % (where, e.msg))
2018
2213
 
2019
2214
 
2020
2215
if sys.platform == "win32":
2106
2301
        else:
2107
2302
            data, _ = self.encode(object, self.errors)
2108
2303
            self.stream.write(data)
 
2304
 
 
2305
if sys.platform == 'win32':
 
2306
    def open_file(filename, mode='r', bufsize=-1):
 
2307
        """This function is used to override the ``open`` builtin.
 
2308
 
 
2309
        But it uses O_NOINHERIT flag so the file handle is not inherited by
 
2310
        child processes.  Deleting or renaming a closed file opened with this
 
2311
        function is not blocking child processes.
 
2312
        """
 
2313
        writing = 'w' in mode
 
2314
        appending = 'a' in mode
 
2315
        updating = '+' in mode
 
2316
        binary = 'b' in mode
 
2317
 
 
2318
        flags = O_NOINHERIT
 
2319
        # see http://msdn.microsoft.com/en-us/library/yeby3zcb%28VS.71%29.aspx
 
2320
        # for flags for each modes.
 
2321
        if binary:
 
2322
            flags |= O_BINARY
 
2323
        else:
 
2324
            flags |= O_TEXT
 
2325
 
 
2326
        if writing:
 
2327
            if updating:
 
2328
                flags |= os.O_RDWR
 
2329
            else:
 
2330
                flags |= os.O_WRONLY
 
2331
            flags |= os.O_CREAT | os.O_TRUNC
 
2332
        elif appending:
 
2333
            if updating:
 
2334
                flags |= os.O_RDWR
 
2335
            else:
 
2336
                flags |= os.O_WRONLY
 
2337
            flags |= os.O_CREAT | os.O_APPEND
 
2338
        else: #reading
 
2339
            if updating:
 
2340
                flags |= os.O_RDWR
 
2341
            else:
 
2342
                flags |= os.O_RDONLY
 
2343
 
 
2344
        return os.fdopen(os.open(filename, flags), mode, bufsize)
 
2345
else:
 
2346
    open_file = open
 
2347
 
 
2348
 
 
2349
def getuser_unicode():
 
2350
    """Return the username as unicode.
 
2351
    """
 
2352
    try:
 
2353
        user_encoding = get_user_encoding()
 
2354
        username = getpass.getuser().decode(user_encoding)
 
2355
    except UnicodeDecodeError:
 
2356
        raise errors.BzrError("Can't decode username as %s." % \
 
2357
                user_encoding)
 
2358
    return username
 
2359
 
 
2360
 
 
2361
def available_backup_name(base, exists):
 
2362
    """Find a non-existing backup file name.
 
2363
 
 
2364
    This will *not* create anything, this only return a 'free' entry.  This
 
2365
    should be used for checking names in a directory below a locked
 
2366
    tree/branch/repo to avoid race conditions. This is LBYL (Look Before You
 
2367
    Leap) and generally discouraged.
 
2368
 
 
2369
    :param base: The base name.
 
2370
 
 
2371
    :param exists: A callable returning True if the path parameter exists.
 
2372
    """
 
2373
    counter = 1
 
2374
    name = "%s.~%d~" % (base, counter)
 
2375
    while exists(name):
 
2376
        counter += 1
 
2377
        name = "%s.~%d~" % (base, counter)
 
2378
    return name