~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: John Arbash Meinel
  • Date: 2006-06-11 03:09:28 UTC
  • mto: (1711.7.2 win32)
  • mto: This revision was merged to the branch mainline in revision 1796.
  • Revision ID: john@arbash-meinel.com-20060611030928-502d4af47bd62fe1
Remove cp437 from the set of encodings, it isn't strictly needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Bazaar-NG -- distributed version control
2
 
 
 
2
#
3
3
# Copyright (C) 2005 by Canonical Ltd
4
 
 
 
4
#
5
5
# This program is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU General Public License as published by
7
7
# the Free Software Foundation; either version 2 of the License, or
8
8
# (at your option) any later version.
9
 
 
 
9
#
10
10
# This program is distributed in the hope that it will be useful,
11
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
13
# GNU General Public License for more details.
14
 
 
 
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 
19
 
import os, types, re, time, errno, sys
20
 
from stat import S_ISREG, S_ISDIR, S_ISLNK, ST_MODE, ST_SIZE
 
19
from cStringIO import StringIO
 
20
import errno
 
21
from ntpath import (abspath as _nt_abspath,
 
22
                    join as _nt_join,
 
23
                    normpath as _nt_normpath,
 
24
                    realpath as _nt_realpath,
 
25
                    )
 
26
import os
 
27
from os import listdir
 
28
import posixpath
 
29
import re
 
30
import sha
 
31
import shutil
 
32
from shutil import copyfile
 
33
import stat
 
34
from stat import (S_ISREG, S_ISDIR, S_ISLNK, ST_MODE, ST_SIZE,
 
35
                  S_ISCHR, S_ISBLK, S_ISFIFO, S_ISSOCK)
 
36
import string
 
37
import sys
 
38
import time
 
39
import types
 
40
import tempfile
 
41
import unicodedata
21
42
 
22
 
from bzrlib.errors import BzrError
 
43
import bzrlib
 
44
from bzrlib.errors import (BzrError,
 
45
                           BzrBadParameterNotUnicode,
 
46
                           NoSuchFile,
 
47
                           PathNotChild,
 
48
                           IllegalPath,
 
49
                           )
 
50
from bzrlib.symbol_versioning import *
23
51
from bzrlib.trace import mutter
24
 
import bzrlib
 
52
import bzrlib.win32console
 
53
 
25
54
 
26
55
def make_readonly(filename):
27
56
    """Make a filename read-only."""
28
 
    # TODO: probably needs to be fixed for windows
29
57
    mod = os.stat(filename).st_mode
30
58
    mod = mod & 0777555
31
59
    os.chmod(filename, mod)
37
65
    os.chmod(filename, mod)
38
66
 
39
67
 
40
 
_QUOTE_RE = re.compile(r'([^a-zA-Z0-9.,:/_~-])')
 
68
_QUOTE_RE = None
 
69
 
 
70
 
41
71
def quotefn(f):
42
72
    """Return a quoted filename filename
43
73
 
44
74
    This previously used backslash quoting, but that works poorly on
45
75
    Windows."""
46
76
    # TODO: I'm not really sure this is the best format either.x
 
77
    global _QUOTE_RE
 
78
    if _QUOTE_RE == None:
 
79
        _QUOTE_RE = re.compile(r'([^a-zA-Z0-9.,:/\\_~-])')
 
80
        
47
81
    if _QUOTE_RE.search(f):
48
82
        return '"' + f + '"'
49
83
    else:
50
84
        return f
51
85
 
52
86
 
53
 
def file_kind(f):
54
 
    mode = os.lstat(f)[ST_MODE]
55
 
    if S_ISREG(mode):
56
 
        return 'file'
57
 
    elif S_ISDIR(mode):
58
 
        return 'directory'
59
 
    elif S_ISLNK(mode):
60
 
        return 'symlink'
61
 
    else:
62
 
        raise BzrError("can't handle file kind with mode %o of %r" % (mode, f))
 
87
_directory_kind = 'directory'
 
88
 
 
89
_formats = {
 
90
    stat.S_IFDIR:_directory_kind,
 
91
    stat.S_IFCHR:'chardev',
 
92
    stat.S_IFBLK:'block',
 
93
    stat.S_IFREG:'file',
 
94
    stat.S_IFIFO:'fifo',
 
95
    stat.S_IFLNK:'symlink',
 
96
    stat.S_IFSOCK:'socket',
 
97
}
 
98
 
 
99
 
 
100
def file_kind_from_stat_mode(stat_mode, _formats=_formats, _unknown='unknown'):
 
101
    """Generate a file kind from a stat mode. This is used in walkdirs.
 
102
 
 
103
    Its performance is critical: Do not mutate without careful benchmarking.
 
104
    """
 
105
    try:
 
106
        return _formats[stat_mode & 0170000]
 
107
    except KeyError:
 
108
        return _unknown
 
109
 
 
110
 
 
111
def file_kind(f, _lstat=os.lstat, _mapper=file_kind_from_stat_mode):
 
112
    return _mapper(_lstat(f).st_mode)
63
113
 
64
114
 
65
115
def kind_marker(kind):
66
116
    if kind == 'file':
67
117
        return ''
68
 
    elif kind == 'directory':
 
118
    elif kind == _directory_kind:
69
119
        return '/'
70
120
    elif kind == 'symlink':
71
121
        return '@'
72
122
    else:
73
123
        raise BzrError('invalid file kind %r' % kind)
74
124
 
 
125
lexists = getattr(os.path, 'lexists', None)
 
126
if lexists is None:
 
127
    def lexists(f):
 
128
        try:
 
129
            if hasattr(os, 'lstat'):
 
130
                os.lstat(f)
 
131
            else:
 
132
                os.stat(f)
 
133
            return True
 
134
        except OSError,e:
 
135
            if e.errno == errno.ENOENT:
 
136
                return False;
 
137
            else:
 
138
                raise BzrError("lstat/stat of (%r): %r" % (f, e))
 
139
 
 
140
 
 
141
def fancy_rename(old, new, rename_func, unlink_func):
 
142
    """A fancy rename, when you don't have atomic rename.
 
143
    
 
144
    :param old: The old path, to rename from
 
145
    :param new: The new path, to rename to
 
146
    :param rename_func: The potentially non-atomic rename function
 
147
    :param unlink_func: A way to delete the target file if the full rename succeeds
 
148
    """
 
149
 
 
150
    # sftp rename doesn't allow overwriting, so play tricks:
 
151
    import random
 
152
    base = os.path.basename(new)
 
153
    dirname = os.path.dirname(new)
 
154
    tmp_name = u'tmp.%s.%.9f.%d.%s' % (base, time.time(), os.getpid(), rand_chars(10))
 
155
    tmp_name = pathjoin(dirname, tmp_name)
 
156
 
 
157
    # Rename the file out of the way, but keep track if it didn't exist
 
158
    # We don't want to grab just any exception
 
159
    # something like EACCES should prevent us from continuing
 
160
    # The downside is that the rename_func has to throw an exception
 
161
    # with an errno = ENOENT, or NoSuchFile
 
162
    file_existed = False
 
163
    try:
 
164
        rename_func(new, tmp_name)
 
165
    except (NoSuchFile,), e:
 
166
        pass
 
167
    except IOError, e:
 
168
        # RBC 20060103 abstraction leakage: the paramiko SFTP clients rename
 
169
        # function raises an IOError with errno == None when a rename fails.
 
170
        # This then gets caught here.
 
171
        if e.errno not in (None, errno.ENOENT, errno.ENOTDIR):
 
172
            raise
 
173
    except Exception, e:
 
174
        if (not hasattr(e, 'errno') 
 
175
            or e.errno not in (errno.ENOENT, errno.ENOTDIR)):
 
176
            raise
 
177
    else:
 
178
        file_existed = True
 
179
 
 
180
    success = False
 
181
    try:
 
182
        # This may throw an exception, in which case success will
 
183
        # not be set.
 
184
        rename_func(old, new)
 
185
        success = True
 
186
    finally:
 
187
        if file_existed:
 
188
            # If the file used to exist, rename it back into place
 
189
            # otherwise just delete it from the tmp location
 
190
            if success:
 
191
                unlink_func(tmp_name)
 
192
            else:
 
193
                rename_func(tmp_name, new)
 
194
 
 
195
 
 
196
# In Python 2.4.2 and older, os.path.abspath and os.path.realpath
 
197
# choke on a Unicode string containing a relative path if
 
198
# os.getcwd() returns a non-sys.getdefaultencoding()-encoded
 
199
# string.
 
200
_fs_enc = sys.getfilesystemencoding()
 
201
def _posix_abspath(path):
 
202
    # jam 20060426 rather than encoding to fsencoding
 
203
    # copy posixpath.abspath, but use os.getcwdu instead
 
204
    if not posixpath.isabs(path):
 
205
        path = posixpath.join(getcwd(), path)
 
206
    return posixpath.normpath(path)
 
207
 
 
208
 
 
209
def _posix_realpath(path):
 
210
    return posixpath.realpath(path.encode(_fs_enc)).decode(_fs_enc)
 
211
 
 
212
 
 
213
def _win32_abspath(path):
 
214
    # Real _nt_abspath doesn't have a problem with a unicode cwd
 
215
    return _nt_abspath(unicode(path)).replace('\\', '/')
 
216
 
 
217
 
 
218
def _win32_realpath(path):
 
219
    # Real _nt_realpath doesn't have a problem with a unicode cwd
 
220
    return _nt_realpath(unicode(path)).replace('\\', '/')
 
221
 
 
222
 
 
223
def _win32_pathjoin(*args):
 
224
    return _nt_join(*args).replace('\\', '/')
 
225
 
 
226
 
 
227
def _win32_normpath(path):
 
228
    return _nt_normpath(unicode(path)).replace('\\', '/')
 
229
 
 
230
 
 
231
def _win32_getcwd():
 
232
    return os.getcwdu().replace('\\', '/')
 
233
 
 
234
 
 
235
def _win32_mkdtemp(*args, **kwargs):
 
236
    return tempfile.mkdtemp(*args, **kwargs).replace('\\', '/')
 
237
 
 
238
 
 
239
def _win32_rename(old, new):
 
240
    fancy_rename(old, new, rename_func=os.rename, unlink_func=os.unlink)
 
241
 
 
242
 
 
243
# Default is to just use the python builtins, but these can be rebound on
 
244
# particular platforms.
 
245
abspath = _posix_abspath
 
246
realpath = _posix_realpath
 
247
pathjoin = os.path.join
 
248
normpath = os.path.normpath
 
249
getcwd = os.getcwdu
 
250
mkdtemp = tempfile.mkdtemp
 
251
rename = os.rename
 
252
dirname = os.path.dirname
 
253
basename = os.path.basename
 
254
rmtree = shutil.rmtree
 
255
 
 
256
MIN_ABS_PATHLENGTH = 1
 
257
 
 
258
 
 
259
if sys.platform == 'win32':
 
260
    abspath = _win32_abspath
 
261
    realpath = _win32_realpath
 
262
    pathjoin = _win32_pathjoin
 
263
    normpath = _win32_normpath
 
264
    getcwd = _win32_getcwd
 
265
    mkdtemp = _win32_mkdtemp
 
266
    rename = _win32_rename
 
267
 
 
268
    MIN_ABS_PATHLENGTH = 3
 
269
 
 
270
    def _win32_delete_readonly(function, path, excinfo):
 
271
        """Error handler for shutil.rmtree function [for win32]
 
272
        Helps to remove files and dirs marked as read-only.
 
273
        """
 
274
        type_, value = excinfo[:2]
 
275
        if function in (os.remove, os.rmdir) \
 
276
            and type_ == OSError \
 
277
            and value.errno == errno.EACCES:
 
278
            bzrlib.osutils.make_writable(path)
 
279
            function(path)
 
280
        else:
 
281
            raise
 
282
 
 
283
    def rmtree(path, ignore_errors=False, onerror=_win32_delete_readonly):
 
284
        """Replacer for shutil.rmtree: could remove readonly dirs/files"""
 
285
        return shutil.rmtree(path, ignore_errors, onerror)
 
286
 
 
287
 
 
288
def get_terminal_encoding():
 
289
    """Find the best encoding for printing to the screen.
 
290
 
 
291
    This attempts to check both sys.stdout and sys.stdin to see
 
292
    what encoding they are in, and if that fails it falls back to
 
293
    bzrlib.user_encoding.
 
294
    The problem is that on Windows, locale.getpreferredencoding()
 
295
    is not the same encoding as that used by the console:
 
296
    http://mail.python.org/pipermail/python-list/2003-May/162357.html
 
297
 
 
298
    On my standard US Windows XP, the preferred encoding is
 
299
    cp1252, but the console is cp437
 
300
    """
 
301
    output_encoding = getattr(sys.stdout, 'encoding', None)
 
302
    if not output_encoding:
 
303
        input_encoding = getattr(sys.stdin, 'encoding', None)
 
304
        if not input_encoding:
 
305
            output_encoding = bzrlib.user_encoding
 
306
            mutter('encoding stdout as bzrlib.user_encoding %r', output_encoding)
 
307
        else:
 
308
            output_encoding = input_encoding
 
309
            mutter('encoding stdout as sys.stdin encoding %r', output_encoding)
 
310
    else:
 
311
        mutter('encoding stdout as sys.stdout encoding %r', output_encoding)
 
312
    return output_encoding
 
313
 
 
314
 
 
315
def normalizepath(f):
 
316
    if hasattr(os.path, 'realpath'):
 
317
        F = realpath
 
318
    else:
 
319
        F = abspath
 
320
    [p,e] = os.path.split(f)
 
321
    if e == "" or e == "." or e == "..":
 
322
        return F(f)
 
323
    else:
 
324
        return pathjoin(F(p), e)
75
325
 
76
326
 
77
327
def backup_file(fn):
81
331
 
82
332
    If the file is already a backup, it's not copied.
83
333
    """
84
 
    import os
85
334
    if fn[-1] == '~':
86
335
        return
87
336
    bfn = fn + '~'
88
337
 
 
338
    if has_symlinks() and os.path.islink(fn):
 
339
        target = os.readlink(fn)
 
340
        os.symlink(target, bfn)
 
341
        return
89
342
    inf = file(fn, 'rb')
90
343
    try:
91
344
        content = inf.read()
98
351
    finally:
99
352
        outf.close()
100
353
 
101
 
def rename(path_from, path_to):
102
 
    """Basically the same as os.rename() just special for win32"""
103
 
    if sys.platform == 'win32':
104
 
        try:
105
 
            os.remove(path_to)
106
 
        except OSError, e:
107
 
            if e.errno != e.ENOENT:
108
 
                raise
109
 
    os.rename(path_from, path_to)
110
 
 
111
 
 
112
 
 
113
 
 
114
354
 
115
355
def isdir(f):
116
356
    """True if f is an accessible directory."""
120
360
        return False
121
361
 
122
362
 
123
 
 
124
363
def isfile(f):
125
364
    """True if f is a regular file."""
126
365
    try:
128
367
    except OSError:
129
368
        return False
130
369
 
 
370
def islink(f):
 
371
    """True if f is a symlink."""
 
372
    try:
 
373
        return S_ISLNK(os.lstat(f)[ST_MODE])
 
374
    except OSError:
 
375
        return False
131
376
 
132
377
def is_inside(dir, fname):
133
378
    """True if fname is inside dir.
 
379
    
 
380
    The parameters should typically be passed to osutils.normpath first, so
 
381
    that . and .. and repeated slashes are eliminated, and the separators
 
382
    are canonical for the platform.
 
383
    
 
384
    The empty string as a dir name is taken as top-of-tree and matches 
 
385
    everything.
 
386
    
 
387
    >>> is_inside('src', pathjoin('src', 'foo.c'))
 
388
    True
 
389
    >>> is_inside('src', 'srccontrol')
 
390
    False
 
391
    >>> is_inside('src', pathjoin('src', 'a', 'a', 'a', 'foo.c'))
 
392
    True
 
393
    >>> is_inside('foo.c', 'foo.c')
 
394
    True
 
395
    >>> is_inside('foo.c', '')
 
396
    False
 
397
    >>> is_inside('', 'foo.c')
 
398
    True
134
399
    """
135
 
    return os.path.commonprefix([dir, fname]) == dir
 
400
    # XXX: Most callers of this can actually do something smarter by 
 
401
    # looking at the inventory
 
402
    if dir == fname:
 
403
        return True
 
404
    
 
405
    if dir == '':
 
406
        return True
 
407
 
 
408
    if dir[-1] != '/':
 
409
        dir += '/'
 
410
 
 
411
    return fname.startswith(dir)
136
412
 
137
413
 
138
414
def is_inside_any(dir_list, fname):
139
415
    """True if fname is inside any of given dirs."""
140
 
    # quick scan for perfect match
141
 
    if fname in dir_list:
142
 
        return True
143
 
    
144
416
    for dirname in dir_list:
145
417
        if is_inside(dirname, fname):
146
418
            return True
148
420
        return False
149
421
 
150
422
 
 
423
def is_inside_or_parent_of_any(dir_list, fname):
 
424
    """True if fname is a child or a parent of any of the given files."""
 
425
    for dirname in dir_list:
 
426
        if is_inside(dirname, fname) or is_inside(fname, dirname):
 
427
            return True
 
428
    else:
 
429
        return False
 
430
 
 
431
 
151
432
def pumpfile(fromfile, tofile):
152
433
    """Copy contents of one file to another."""
153
 
    tofile.write(fromfile.read())
154
 
 
155
 
 
156
 
def uuid():
157
 
    """Return a new UUID"""
158
 
    try:
159
 
        return file('/proc/sys/kernel/random/uuid').readline().rstrip('\n')
160
 
    except IOError:
161
 
        return chomp(os.popen('uuidgen').readline())
 
434
    BUFSIZE = 32768
 
435
    while True:
 
436
        b = fromfile.read(BUFSIZE)
 
437
        if not b:
 
438
            break
 
439
        tofile.write(b)
 
440
 
 
441
 
 
442
def file_iterator(input_file, readsize=32768):
 
443
    while True:
 
444
        b = input_file.read(readsize)
 
445
        if len(b) == 0:
 
446
            break
 
447
        yield b
162
448
 
163
449
 
164
450
def sha_file(f):
165
 
    import sha
166
451
    if hasattr(f, 'tell'):
167
452
        assert f.tell() == 0
168
453
    s = sha.new()
175
460
    return s.hexdigest()
176
461
 
177
462
 
 
463
 
 
464
def sha_strings(strings):
 
465
    """Return the sha-1 of concatenation of strings"""
 
466
    s = sha.new()
 
467
    map(s.update, strings)
 
468
    return s.hexdigest()
 
469
 
 
470
 
178
471
def sha_string(f):
179
 
    import sha
180
472
    s = sha.new()
181
473
    s.update(f)
182
474
    return s.hexdigest()
183
475
 
184
476
 
185
 
 
186
477
def fingerprint_file(f):
187
 
    import sha
188
478
    s = sha.new()
189
479
    b = f.read()
190
480
    s.update(b)
193
483
            'sha1': s.hexdigest()}
194
484
 
195
485
 
196
 
def config_dir():
197
 
    """Return per-user configuration directory.
198
 
 
199
 
    By default this is ~/.bzr.conf/
200
 
    
201
 
    TODO: Global option --config-dir to override this.
202
 
    """
203
 
    return os.path.expanduser("~/.bzr.conf")
204
 
 
205
 
 
206
 
def _auto_user_id():
207
 
    """Calculate automatic user identification.
208
 
 
209
 
    Returns (realname, email).
210
 
 
211
 
    Only used when none is set in the environment or the id file.
212
 
 
213
 
    This previously used the FQDN as the default domain, but that can
214
 
    be very slow on machines where DNS is broken.  So now we simply
215
 
    use the hostname.
216
 
    """
217
 
    import socket
218
 
 
219
 
    # XXX: Any good way to get real user name on win32?
220
 
 
221
 
    try:
222
 
        import pwd
223
 
        uid = os.getuid()
224
 
        w = pwd.getpwuid(uid)
225
 
        gecos = w.pw_gecos.decode(bzrlib.user_encoding)
226
 
        username = w.pw_name.decode(bzrlib.user_encoding)
227
 
        comma = gecos.find(',')
228
 
        if comma == -1:
229
 
            realname = gecos
230
 
        else:
231
 
            realname = gecos[:comma]
232
 
        if not realname:
233
 
            realname = username
234
 
 
235
 
    except ImportError:
236
 
        import getpass
237
 
        realname = username = getpass.getuser().decode(bzrlib.user_encoding)
238
 
 
239
 
    return realname, (username + '@' + socket.gethostname())
240
 
 
241
 
 
242
 
def _get_user_id():
243
 
    """Return the full user id from a file or environment variable.
244
 
 
245
 
    TODO: Allow taking this from a file in the branch directory too
246
 
    for per-branch ids."""
247
 
    v = os.environ.get('BZREMAIL')
248
 
    if v:
249
 
        return v.decode(bzrlib.user_encoding)
250
 
    
251
 
    try:
252
 
        return (open(os.path.join(config_dir(), "email"))
253
 
                .read()
254
 
                .decode(bzrlib.user_encoding)
255
 
                .rstrip("\r\n"))
256
 
    except IOError, e:
257
 
        if e.errno != errno.ENOENT:
258
 
            raise e
259
 
 
260
 
    v = os.environ.get('EMAIL')
261
 
    if v:
262
 
        return v.decode(bzrlib.user_encoding)
263
 
    else:    
264
 
        return None
265
 
 
266
 
 
267
 
def username():
268
 
    """Return email-style username.
269
 
 
270
 
    Something similar to 'Martin Pool <mbp@sourcefrog.net>'
271
 
 
272
 
    TODO: Check it's reasonably well-formed.
273
 
    """
274
 
    v = _get_user_id()
275
 
    if v:
276
 
        return v
277
 
    
278
 
    name, email = _auto_user_id()
279
 
    if name:
280
 
        return '%s <%s>' % (name, email)
281
 
    else:
282
 
        return email
283
 
 
284
 
 
285
 
_EMAIL_RE = re.compile(r'[\w+.-]+@[\w+.-]+')
286
 
def user_email():
287
 
    """Return just the email component of a username."""
288
 
    e = _get_user_id()
289
 
    if e:
290
 
        m = _EMAIL_RE.search(e)
291
 
        if not m:
292
 
            raise BzrError("%r doesn't seem to contain a reasonable email address" % e)
293
 
        return m.group(0)
294
 
 
295
 
    return _auto_user_id()[1]
296
 
    
297
 
 
298
 
 
299
486
def compare_files(a, b):
300
487
    """Returns true if equal in contents"""
301
488
    BUFSIZE = 4096
308
495
            return True
309
496
 
310
497
 
311
 
 
312
498
def local_time_offset(t=None):
313
499
    """Return offset of local zone from GMT, either at present or at time t."""
314
500
    # python2.3 localtime() can't take None
321
507
        return -time.timezone
322
508
 
323
509
    
324
 
def format_date(t, offset=0, timezone='original'):
 
510
def format_date(t, offset=0, timezone='original', date_fmt=None, 
 
511
                show_offset=True):
325
512
    ## TODO: Perhaps a global option to use either universal or local time?
326
513
    ## Or perhaps just let people set $TZ?
327
514
    assert isinstance(t, float)
337
524
        tt = time.localtime(t)
338
525
        offset = local_time_offset(t)
339
526
    else:
340
 
        raise BzrError("unsupported timezone format %r",
341
 
                ['options are "utc", "original", "local"'])
342
 
 
343
 
    return (time.strftime("%a %Y-%m-%d %H:%M:%S", tt)
344
 
            + ' %+03d%02d' % (offset / 3600, (offset / 60) % 60))
 
527
        raise BzrError("unsupported timezone format %r" % timezone,
 
528
                       ['options are "utc", "original", "local"'])
 
529
    if date_fmt is None:
 
530
        date_fmt = "%a %Y-%m-%d %H:%M:%S"
 
531
    if show_offset:
 
532
        offset_str = ' %+03d%02d' % (offset / 3600, (offset / 60) % 60)
 
533
    else:
 
534
        offset_str = ''
 
535
    return (time.strftime(date_fmt, tt) +  offset_str)
345
536
 
346
537
 
347
538
def compact_date(when):
354
545
    return os.fstat(f.fileno())[ST_SIZE]
355
546
 
356
547
 
357
 
if hasattr(os, 'urandom'): # python 2.4 and later
 
548
# Define rand_bytes based on platform.
 
549
try:
 
550
    # Python 2.4 and later have os.urandom,
 
551
    # but it doesn't work on some arches
 
552
    os.urandom(1)
358
553
    rand_bytes = os.urandom
359
 
elif sys.platform == 'linux2':
360
 
    rand_bytes = file('/dev/urandom', 'rb').read
361
 
else:
362
 
    # not well seeded, but better than nothing
363
 
    def rand_bytes(n):
364
 
        import random
365
 
        s = ''
366
 
        while n:
367
 
            s += chr(random.randint(0, 255))
368
 
            n -= 1
369
 
        return s
 
554
except (NotImplementedError, AttributeError):
 
555
    # If python doesn't have os.urandom, or it doesn't work,
 
556
    # then try to first pull random data from /dev/urandom
 
557
    if os.path.exists("/dev/urandom"):
 
558
        rand_bytes = file('/dev/urandom', 'rb').read
 
559
    # Otherwise, use this hack as a last resort
 
560
    else:
 
561
        # not well seeded, but better than nothing
 
562
        def rand_bytes(n):
 
563
            import random
 
564
            s = ''
 
565
            while n:
 
566
                s += chr(random.randint(0, 255))
 
567
                n -= 1
 
568
            return s
 
569
 
 
570
 
 
571
ALNUM = '0123456789abcdefghijklmnopqrstuvwxyz'
 
572
def rand_chars(num):
 
573
    """Return a random string of num alphanumeric characters
 
574
    
 
575
    The result only contains lowercase chars because it may be used on 
 
576
    case-insensitive filesystems.
 
577
    """
 
578
    s = ''
 
579
    for raw_byte in rand_bytes(num):
 
580
        s += ALNUM[ord(raw_byte) % 36]
 
581
    return s
370
582
 
371
583
 
372
584
## TODO: We could later have path objects that remember their list
409
621
    for f in p:
410
622
        if (f == '..') or (f == None) or (f == ''):
411
623
            raise BzrError("sorry, %r not allowed in path" % f)
412
 
    return os.path.join(*p)
413
 
 
414
 
 
 
624
    return pathjoin(*p)
 
625
 
 
626
 
 
627
@deprecated_function(zero_nine)
415
628
def appendpath(p1, p2):
416
629
    if p1 == '':
417
630
        return p2
418
631
    else:
419
 
        return os.path.join(p1, p2)
 
632
        return pathjoin(p1, p2)
420
633
    
421
634
 
422
 
def extern_command(cmd, ignore_errors = False):
423
 
    mutter('external command: %s' % `cmd`)
424
 
    if os.system(cmd):
425
 
        if not ignore_errors:
426
 
            raise BzrError('command failed')
427
 
 
428
 
 
429
 
def _read_config_value(name):
430
 
    """Read a config value from the file ~/.bzr.conf/<name>
431
 
    Return None if the file does not exist"""
432
 
    try:
433
 
        f = file(os.path.join(config_dir(), name), "r")
434
 
        return f.read().decode(bzrlib.user_encoding).rstrip("\r\n")
435
 
    except IOError, e:
436
 
        if e.errno == errno.ENOENT:
437
 
            return None
438
 
        raise
439
 
 
440
 
 
441
 
def _get_editor():
442
 
    """Return a sequence of possible editor binaries for the current platform"""
443
 
    e = _read_config_value("editor")
444
 
    if e is not None:
445
 
        yield e
 
635
def split_lines(s):
 
636
    """Split s into lines, but without removing the newline characters."""
 
637
    lines = s.split('\n')
 
638
    result = [line + '\n' for line in lines[:-1]]
 
639
    if lines[-1]:
 
640
        result.append(lines[-1])
 
641
    return result
 
642
 
 
643
 
 
644
def hardlinks_good():
 
645
    return sys.platform not in ('win32', 'cygwin', 'darwin')
 
646
 
 
647
 
 
648
def link_or_copy(src, dest):
 
649
    """Hardlink a file, or copy it if it can't be hardlinked."""
 
650
    if not hardlinks_good():
 
651
        copyfile(src, dest)
 
652
        return
 
653
    try:
 
654
        os.link(src, dest)
 
655
    except (OSError, IOError), e:
 
656
        if e.errno != errno.EXDEV:
 
657
            raise
 
658
        copyfile(src, dest)
 
659
 
 
660
def delete_any(full_path):
 
661
    """Delete a file or directory."""
 
662
    try:
 
663
        os.unlink(full_path)
 
664
    except OSError, e:
 
665
    # We may be renaming a dangling inventory id
 
666
        if e.errno not in (errno.EISDIR, errno.EACCES, errno.EPERM):
 
667
            raise
 
668
        os.rmdir(full_path)
 
669
 
 
670
 
 
671
def has_symlinks():
 
672
    if hasattr(os, 'symlink'):
 
673
        return True
 
674
    else:
 
675
        return False
446
676
        
447
 
    if os.name == "windows":
448
 
        yield "notepad.exe"
449
 
    elif os.name == "posix":
 
677
 
 
678
def contains_whitespace(s):
 
679
    """True if there are any whitespace characters in s."""
 
680
    for ch in string.whitespace:
 
681
        if ch in s:
 
682
            return True
 
683
    else:
 
684
        return False
 
685
 
 
686
 
 
687
def contains_linebreaks(s):
 
688
    """True if there is any vertical whitespace in s."""
 
689
    for ch in '\f\n\r':
 
690
        if ch in s:
 
691
            return True
 
692
    else:
 
693
        return False
 
694
 
 
695
 
 
696
def relpath(base, path):
 
697
    """Return path relative to base, or raise exception.
 
698
 
 
699
    The path may be either an absolute path or a path relative to the
 
700
    current working directory.
 
701
 
 
702
    os.path.commonprefix (python2.4) has a bad bug that it works just
 
703
    on string prefixes, assuming that '/u' is a prefix of '/u2'.  This
 
704
    avoids that problem.
 
705
    """
 
706
 
 
707
    assert len(base) >= MIN_ABS_PATHLENGTH, ('Length of base must be equal or'
 
708
        ' exceed the platform minimum length (which is %d)' % 
 
709
        MIN_ABS_PATHLENGTH)
 
710
 
 
711
    rp = abspath(path)
 
712
 
 
713
    s = []
 
714
    head = rp
 
715
    while len(head) >= len(base):
 
716
        if head == base:
 
717
            break
 
718
        head, tail = os.path.split(head)
 
719
        if tail:
 
720
            s.insert(0, tail)
 
721
    else:
 
722
        raise PathNotChild(rp, base)
 
723
 
 
724
    if s:
 
725
        return pathjoin(*s)
 
726
    else:
 
727
        return ''
 
728
 
 
729
 
 
730
def safe_unicode(unicode_or_utf8_string):
 
731
    """Coerce unicode_or_utf8_string into unicode.
 
732
 
 
733
    If it is unicode, it is returned.
 
734
    Otherwise it is decoded from utf-8. If a decoding error
 
735
    occurs, it is wrapped as a If the decoding fails, the exception is wrapped 
 
736
    as a BzrBadParameter exception.
 
737
    """
 
738
    if isinstance(unicode_or_utf8_string, unicode):
 
739
        return unicode_or_utf8_string
 
740
    try:
 
741
        return unicode_or_utf8_string.decode('utf8')
 
742
    except UnicodeDecodeError:
 
743
        raise BzrBadParameterNotUnicode(unicode_or_utf8_string)
 
744
 
 
745
 
 
746
_platform_normalizes_filenames = False
 
747
if sys.platform == 'darwin':
 
748
    _platform_normalizes_filenames = True
 
749
 
 
750
 
 
751
def normalizes_filenames():
 
752
    """Return True if this platform normalizes unicode filenames.
 
753
 
 
754
    Mac OSX does, Windows/Linux do not.
 
755
    """
 
756
    return _platform_normalizes_filenames
 
757
 
 
758
 
 
759
if _platform_normalizes_filenames:
 
760
    def unicode_filename(path):
 
761
        """Make sure 'path' is a properly normalized filename.
 
762
 
 
763
        On platforms where the system normalizes filenames (Mac OSX),
 
764
        you can access a file by any path which will normalize
 
765
        correctly.
 
766
        Internally, bzr only supports NFC/NFKC normalization, since
 
767
        that is the standard for XML documents.
 
768
        So we return an normalized path, and indicate this has been
 
769
        properly normalized.
 
770
 
 
771
        :return: (path, is_normalized) Return a path which can
 
772
                access the file, and whether or not this path is
 
773
                normalized.
 
774
        """
 
775
        return unicodedata.normalize('NFKC', path), True
 
776
else:
 
777
    def unicode_filename(path):
 
778
        """Make sure 'path' is a properly normalized filename.
 
779
 
 
780
        On platforms where the system does not normalize filenames 
 
781
        (Windows, Linux), you have to access a file by its exact path.
 
782
        Internally, bzr only supports NFC/NFKC normalization, since
 
783
        that is the standard for XML documents.
 
784
        So we return the original path, and indicate if this is
 
785
        properly normalized.
 
786
 
 
787
        :return: (path, is_normalized) Return a path which can
 
788
                access the file, and whether or not this path is
 
789
                normalized.
 
790
        """
 
791
        return path, unicodedata.normalize('NFKC', path) == path
 
792
 
 
793
 
 
794
def terminal_width():
 
795
    """Return estimated terminal width."""
 
796
    if sys.platform == 'win32':
 
797
        import bzrlib.win32console
 
798
        return bzrlib.win32console.get_console_size()[0]
 
799
    width = 0
 
800
    try:
 
801
        import struct, fcntl, termios
 
802
        s = struct.pack('HHHH', 0, 0, 0, 0)
 
803
        x = fcntl.ioctl(1, termios.TIOCGWINSZ, s)
 
804
        width = struct.unpack('HHHH', x)[1]
 
805
    except IOError:
 
806
        pass
 
807
    if width <= 0:
450
808
        try:
451
 
            yield os.environ["EDITOR"]
452
 
        except KeyError:
453
 
            yield "/usr/bin/vi"
454
 
 
455
 
 
456
 
def _run_editor(filename):
457
 
    """Try to execute an editor to edit the commit message. Returns True on success,
458
 
    False on failure"""
459
 
    for e in _get_editor():
460
 
        x = os.spawnvp(os.P_WAIT, e, (e, filename))
461
 
        if x == 0:
462
 
            return True
463
 
        elif x == 127:
464
 
            continue
465
 
        else:
466
 
            break
467
 
    raise BzrError("Could not start any editor. Please specify $EDITOR or use ~/.bzr.conf/editor")
468
 
    return False
469
 
                          
470
 
 
471
 
def get_text_message(infotext, ignoreline = "default"):
472
 
    import tempfile
473
 
    
474
 
    if ignoreline == "default":
475
 
        ignoreline = "-- This line and the following will be ignored --"
476
 
        
477
 
    try:
478
 
        tmp_fileno, msgfilename = tempfile.mkstemp()
479
 
        msgfile = os.close(tmp_fileno)
480
 
        if infotext is not None and infotext != "":
481
 
            hasinfo = True
482
 
            msgfile = file(msgfilename, "w")
483
 
            msgfile.write("\n\n%s\n\n%s" % (ignoreline, infotext))
484
 
            msgfile.close()
485
 
        else:
486
 
            hasinfo = False
487
 
 
488
 
        if not _run_editor(msgfilename):
489
 
            return None
490
 
        
491
 
        started = False
492
 
        msg = []
493
 
        lastline, nlines = 0, 0
494
 
        for line in file(msgfilename, "r"):
495
 
            stripped_line = line.strip()
496
 
            # strip empty line before the log message starts
497
 
            if not started:
498
 
                if stripped_line != "":
499
 
                    started = True
500
 
                else:
501
 
                    continue
502
 
            # check for the ignore line only if there
503
 
            # is additional information at the end
504
 
            if hasinfo and stripped_line == ignoreline:
505
 
                break
506
 
            nlines += 1
507
 
            # keep track of the last line that had some content
508
 
            if stripped_line != "":
509
 
                lastline = nlines
510
 
            msg.append(line)
511
 
            
512
 
        if len(msg) == 0:
513
 
            return None
514
 
        # delete empty lines at the end
515
 
        del msg[lastline:]
516
 
        # add a newline at the end, if needed
517
 
        if not msg[-1].endswith("\n"):
518
 
            return "%s%s" % ("".join(msg), "\n")
519
 
        else:
520
 
            return "".join(msg)
521
 
    finally:
522
 
        # delete the msg file in any case
523
 
        try: os.unlink(msgfilename)
524
 
        except IOError: pass
 
809
            width = int(os.environ['COLUMNS'])
 
810
        except:
 
811
            pass
 
812
    if width <= 0:
 
813
        width = 80
 
814
 
 
815
    return width
 
816
 
 
817
def supports_executable():
 
818
    return sys.platform != "win32"
 
819
 
 
820
 
 
821
_validWin32PathRE = re.compile(r'^([A-Za-z]:[/\\])?[^:<>*"?\|]*$')
 
822
 
 
823
 
 
824
def check_legal_path(path):
 
825
    """Check whether the supplied path is legal.  
 
826
    This is only required on Windows, so we don't test on other platforms
 
827
    right now.
 
828
    """
 
829
    if sys.platform != "win32":
 
830
        return
 
831
    if _validWin32PathRE.match(path) is None:
 
832
        raise IllegalPath(path)
 
833
 
 
834
 
 
835
def walkdirs(top):
 
836
    """Yield data about all the directories in a tree.
 
837
    
 
838
    This yields all the data about the contents of a directory at a time.
 
839
    After each directory has been yielded, if the caller has mutated the list
 
840
    to exclude some directories, they are then not descended into.
 
841
    
 
842
    The data yielded is of the form:
 
843
    [(relpath, basename, kind, lstat, path_from_top), ...]
 
844
 
 
845
    :return: an iterator over the dirs.
 
846
    """
 
847
    lstat = os.lstat
 
848
    pending = []
 
849
    _directory = _directory_kind
 
850
    _listdir = listdir
 
851
    pending = [("", "", _directory, None, top)]
 
852
    while pending:
 
853
        dirblock = []
 
854
        currentdir = pending.pop()
 
855
        # 0 - relpath, 1- basename, 2- kind, 3- stat, 4-toppath
 
856
        top = currentdir[4]
 
857
        if currentdir[0]:
 
858
            relroot = currentdir[0] + '/'
 
859
        else:
 
860
            relroot = ""
 
861
        for name in sorted(_listdir(top)):
 
862
            abspath = top + '/' + name
 
863
            statvalue = lstat(abspath)
 
864
            dirblock.append ((relroot + name, name, file_kind_from_stat_mode(statvalue.st_mode), statvalue, abspath))
 
865
        yield dirblock
 
866
        # push the user specified dirs from dirblock
 
867
        for dir in reversed(dirblock):
 
868
            if dir[2] == _directory:
 
869
                pending.append(dir)