~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Martin Pool
  • Date: 2009-09-14 01:19:11 UTC
  • mto: This revision was merged to the branch mainline in revision 4688.
  • Revision ID: mbp@sourcefrog.net-20090914011911-llu9ujul97k8f8s7
News for fix of 406113

Show diffs side-by-side

added added

removed removed

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