/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1 by mbp at sourcefrog
import from baz patch-364
1
# Bazaar-NG -- distributed version control
2
3
# Copyright (C) 2005 by Canonical Ltd
4
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
# GNU General Public License for more details.
14
15
# You should have received a copy of the GNU General Public License
16
# 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
import os, types, re, time, types
20 by mbp at sourcefrog
don't abort on trees that happen to contain symlinks
20
from stat import S_ISREG, S_ISDIR, S_ISLNK, ST_MODE, ST_SIZE
1 by mbp at sourcefrog
import from baz patch-364
21
22
from errors import bailout
23
24
def make_readonly(filename):
25
    """Make a filename read-only."""
26
    # TODO: probably needs to be fixed for windows
27
    mod = os.stat(filename).st_mode
28
    mod = mod & 0777555
29
    os.chmod(filename, mod)
30
31
32
def make_writable(filename):
33
    mod = os.stat(filename).st_mode
34
    mod = mod | 0200
35
    os.chmod(filename, mod)
36
37
38
_QUOTE_RE = re.compile(r'([^a-zA-Z0-9.,:/_~-])')
39
def quotefn(f):
40
    """Return shell-quoted filename"""
41
    ## We could be a bit more terse by using double-quotes etc
42
    f = _QUOTE_RE.sub(r'\\\1', f)
43
    if f[0] == '~':
44
        f[0:1] = r'\~' 
45
    return f
46
47
48
def file_kind(f):
49
    mode = os.lstat(f)[ST_MODE]
50
    if S_ISREG(mode):
51
        return 'file'
52
    elif S_ISDIR(mode):
53
        return 'directory'
20 by mbp at sourcefrog
don't abort on trees that happen to contain symlinks
54
    elif S_ISLNK(mode):
55
        return 'symlink'
1 by mbp at sourcefrog
import from baz patch-364
56
    else:
20 by mbp at sourcefrog
don't abort on trees that happen to contain symlinks
57
        bailout("can't handle file kind with mode %o of %r" % (mode, f)) 
1 by mbp at sourcefrog
import from baz patch-364
58
59
60
61
def isdir(f):
62
    """True if f is an accessible directory."""
63
    try:
64
        return S_ISDIR(os.lstat(f)[ST_MODE])
65
    except OSError:
66
        return False
67
68
69
70
def isfile(f):
71
    """True if f is a regular file."""
72
    try:
73
        return S_ISREG(os.lstat(f)[ST_MODE])
74
    except OSError:
75
        return False
76
77
78
def pumpfile(fromfile, tofile):
79
    """Copy contents of one file to another."""
80
    tofile.write(fromfile.read())
81
82
83
def uuid():
84
    """Return a new UUID"""
85
    
86
    ## XXX: Could alternatively read /proc/sys/kernel/random/uuid on
87
    ## Linux, but we need something portable for other systems;
88
    ## preferably an implementation in Python.
89
    bailout('uuids not allowed!')
90
    return chomp(os.popen('uuidgen').readline())
91
92
def chomp(s):
93
    if s and (s[-1] == '\n'):
94
        return s[:-1]
95
    else:
96
        return s
97
98
99
def sha_file(f):
100
    import sha
101
    ## TODO: Maybe read in chunks to handle big files
102
    if hasattr(f, 'tell'):
103
        assert f.tell() == 0
104
    s = sha.new()
105
    s.update(f.read())
106
    return s.hexdigest()
107
108
109
def sha_string(f):
110
    import sha
111
    s = sha.new()
112
    s.update(f)
113
    return s.hexdigest()
114
115
116
117
def username():
118
    """Return email-style username.
119
120
    Something similar to 'Martin Pool <mbp@sourcefrog.net>'
121
122
    :todo: Check it's reasonably well-formed.
123
124
    :todo: Allow taking it from a dotfile to help people on windows
125
           who can't easily set variables.
126
127
    :todo: Cope without pwd module, which is only on unix. 
128
    """
129
    e = os.environ.get('BZREMAIL') or os.environ.get('EMAIL')
130
    if e: return e
131
132
    import socket
133
    
134
    try:
135
        import pwd
136
        uid = os.getuid()
137
        w = pwd.getpwuid(uid)
138
        realname, junk = w.pw_gecos.split(',', 1)
139
        return '%s <%s@%s>' % (realname, w.pw_name, socket.getfqdn())
140
    except ImportError:
141
        pass
142
143
    import getpass, socket
144
    return '<%s@%s>' % (getpass.getuser(), socket.getfqdn())
145
146
147
def user_email():
148
    """Return just the email component of a username."""
149
    e = os.environ.get('BZREMAIL') or os.environ.get('EMAIL')
150
    if e:
151
        import re
152
        m = re.search(r'[\w+.-]+@[\w+.-]+', e)
153
        if not m:
154
            bailout('%r is not a reasonable email address' % e)
155
        return m.group(0)
156
157
158
    import getpass, socket
159
    return '%s@%s' % (getpass.getuser(), socket.getfqdn())
160
161
    
162
163
164
def compare_files(a, b):
165
    """Returns true if equal in contents"""
166
    # TODO: don't read the whole thing in one go.
167
    result = a.read() == b.read()
168
    return result
169
170
171
8 by mbp at sourcefrog
store committer's timezone in revision and show
172
def local_time_offset():
173
    if time.daylight:
174
        return -time.altzone
175
    else:
176
        return -time.timezone
177
178
    
179
def format_date(t, offset=0, timezone='original'):
1 by mbp at sourcefrog
import from baz patch-364
180
    ## TODO: Perhaps a global option to use either universal or local time?
181
    ## Or perhaps just let people set $TZ?
182
    import time
183
    
184
    assert isinstance(t, float)
185
    
8 by mbp at sourcefrog
store committer's timezone in revision and show
186
    if timezone == 'utc':
1 by mbp at sourcefrog
import from baz patch-364
187
        tt = time.gmtime(t)
188
        offset = 0
8 by mbp at sourcefrog
store committer's timezone in revision and show
189
    elif timezone == 'original':
16 by mbp at sourcefrog
fix inverted calculation for original timezone -> utc
190
        tt = time.gmtime(t + offset)
12 by mbp at sourcefrog
new --timezone option for bzr log
191
    elif timezone == 'local':
1 by mbp at sourcefrog
import from baz patch-364
192
        tt = time.localtime(t)
8 by mbp at sourcefrog
store committer's timezone in revision and show
193
        offset = local_time_offset()
12 by mbp at sourcefrog
new --timezone option for bzr log
194
    else:
195
        bailout("unsupported timezone format %r",
196
                ['options are "utc", "original", "local"'])
8 by mbp at sourcefrog
store committer's timezone in revision and show
197
1 by mbp at sourcefrog
import from baz patch-364
198
    return (time.strftime("%a %Y-%m-%d %H:%M:%S", tt)
8 by mbp at sourcefrog
store committer's timezone in revision and show
199
            + ' %+03d%02d' % (offset / 3600, (offset / 60) % 60))
1 by mbp at sourcefrog
import from baz patch-364
200
201
202
def compact_date(when):
203
    return time.strftime('%Y%m%d%H%M%S', time.gmtime(when))
204
    
205
206
207
def filesize(f):
208
    """Return size of given open file."""
209
    return os.fstat(f.fileno())[ST_SIZE]
210
211
212
if hasattr(os, 'urandom'): # python 2.4 and later
213
    rand_bytes = os.urandom
214
else:
215
    # FIXME: No good on non-Linux
216
    _rand_file = file('/dev/urandom', 'rb')
217
    rand_bytes = _rand_file.read
218
219
220
## TODO: We could later have path objects that remember their list
221
## decomposition (might be too tricksy though.)
222
223
def splitpath(p):
224
    """Turn string into list of parts.
225
226
    >>> splitpath('a')
227
    ['a']
228
    >>> splitpath('a/b')
229
    ['a', 'b']
230
    >>> splitpath('a/./b')
231
    ['a', 'b']
232
    >>> splitpath('a/.b')
233
    ['a', '.b']
234
    >>> splitpath('a/../b')
235
    Traceback (most recent call last):
236
    ...
237
    BzrError: ("sorry, '..' not allowed in path", [])
238
    """
239
    assert isinstance(p, types.StringTypes)
240
    ps = [f for f in p.split('/') if f != '.']
241
    for f in ps:
242
        if f == '..':
243
            bailout("sorry, %r not allowed in path" % f)
244
    return ps
245
246
def joinpath(p):
247
    assert isinstance(p, list)
248
    for f in p:
249
        if (f == '..') or (f is None) or (f == ''):
250
            bailout("sorry, %r not allowed in path" % f)
251
    return '/'.join(p)
252
253
254
def appendpath(p1, p2):
255
    if p1 == '':
256
        return p2
257
    else:
258
        return p1 + '/' + p2
259
    
260
261
def extern_command(cmd, ignore_errors = False):
262
    mutter('external command: %s' % `cmd`)
263
    if os.system(cmd):
264
        if not ignore_errors:
265
            bailout('command failed')
266