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 |
||
444
by Martin Pool
- cope on platforms with no urandom feature |
19 |
import os, types, re, time, errno, sys |
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 |
|
183
by mbp at sourcefrog
pychecker fixups |
22 |
from errors import bailout, BzrError |
23 |
from trace import mutter |
|
251
by mbp at sourcefrog
- factor out locale.getpreferredencoding() |
24 |
import bzrlib |
1
by mbp at sourcefrog
import from baz patch-364 |
25 |
|
26 |
def make_readonly(filename): |
|
27 |
"""Make a filename read-only.""" |
|
28 |
# TODO: probably needs to be fixed for windows
|
|
29 |
mod = os.stat(filename).st_mode |
|
30 |
mod = mod & 0777555 |
|
31 |
os.chmod(filename, mod) |
|
32 |
||
33 |
||
34 |
def make_writable(filename): |
|
35 |
mod = os.stat(filename).st_mode |
|
36 |
mod = mod | 0200 |
|
37 |
os.chmod(filename, mod) |
|
38 |
||
39 |
||
40 |
_QUOTE_RE = re.compile(r'([^a-zA-Z0-9.,:/_~-])') |
|
41 |
def quotefn(f): |
|
42 |
"""Return shell-quoted filename""" |
|
43 |
## We could be a bit more terse by using double-quotes etc
|
|
44 |
f = _QUOTE_RE.sub(r'\\\1', f) |
|
45 |
if f[0] == '~': |
|
46 |
f[0:1] = r'\~' |
|
47 |
return f |
|
48 |
||
49 |
||
50 |
def file_kind(f): |
|
51 |
mode = os.lstat(f)[ST_MODE] |
|
52 |
if S_ISREG(mode): |
|
53 |
return 'file' |
|
54 |
elif S_ISDIR(mode): |
|
55 |
return 'directory' |
|
20
by mbp at sourcefrog
don't abort on trees that happen to contain symlinks |
56 |
elif S_ISLNK(mode): |
57 |
return 'symlink' |
|
1
by mbp at sourcefrog
import from baz patch-364 |
58 |
else: |
183
by mbp at sourcefrog
pychecker fixups |
59 |
raise BzrError("can't handle file kind with mode %o of %r" % (mode, f)) |
1
by mbp at sourcefrog
import from baz patch-364 |
60 |
|
61 |
||
62 |
||
63 |
def isdir(f): |
|
64 |
"""True if f is an accessible directory.""" |
|
65 |
try: |
|
66 |
return S_ISDIR(os.lstat(f)[ST_MODE]) |
|
67 |
except OSError: |
|
68 |
return False |
|
69 |
||
70 |
||
71 |
||
72 |
def isfile(f): |
|
73 |
"""True if f is a regular file.""" |
|
74 |
try: |
|
75 |
return S_ISREG(os.lstat(f)[ST_MODE]) |
|
76 |
except OSError: |
|
77 |
return False |
|
78 |
||
79 |
||
485
by Martin Pool
- move commit code into its own module |
80 |
def is_inside(dir, fname): |
81 |
"""True if fname is inside dir. |
|
82 |
"""
|
|
83 |
return os.path.commonprefix([dir, fname]) == dir |
|
84 |
||
85 |
||
86 |
def is_inside_any(dir_list, fname): |
|
87 |
"""True if fname is inside any of given dirs.""" |
|
88 |
# quick scan for perfect match
|
|
89 |
if fname in dir_list: |
|
90 |
return True |
|
91 |
||
92 |
for dirname in dir_list: |
|
93 |
if is_inside(dirname, fname): |
|
94 |
return True |
|
95 |
else: |
|
96 |
return False |
|
97 |
||
98 |
||
1
by mbp at sourcefrog
import from baz patch-364 |
99 |
def pumpfile(fromfile, tofile): |
100 |
"""Copy contents of one file to another.""" |
|
101 |
tofile.write(fromfile.read()) |
|
102 |
||
103 |
||
104 |
def uuid(): |
|
105 |
"""Return a new UUID""" |
|
63
by mbp at sourcefrog
fix up uuid command |
106 |
try: |
319
by Martin Pool
- remove trivial chomp() function |
107 |
return file('/proc/sys/kernel/random/uuid').readline().rstrip('\n') |
63
by mbp at sourcefrog
fix up uuid command |
108 |
except IOError: |
109 |
return chomp(os.popen('uuidgen').readline()) |
|
110 |
||
1
by mbp at sourcefrog
import from baz patch-364 |
111 |
|
112 |
def sha_file(f): |
|
113 |
import sha |
|
114 |
if hasattr(f, 'tell'): |
|
115 |
assert f.tell() == 0 |
|
116 |
s = sha.new() |
|
320
by Martin Pool
- Compute SHA-1 of files in chunks |
117 |
BUFSIZE = 128<<10 |
118 |
while True: |
|
119 |
b = f.read(BUFSIZE) |
|
120 |
if not b: |
|
121 |
break
|
|
122 |
s.update(b) |
|
1
by mbp at sourcefrog
import from baz patch-364 |
123 |
return s.hexdigest() |
124 |
||
125 |
||
126 |
def sha_string(f): |
|
127 |
import sha |
|
128 |
s = sha.new() |
|
129 |
s.update(f) |
|
130 |
return s.hexdigest() |
|
131 |
||
132 |
||
133 |
||
124
by mbp at sourcefrog
- check file text for past revisions is correct |
134 |
def fingerprint_file(f): |
135 |
import sha |
|
136 |
s = sha.new() |
|
126
by mbp at sourcefrog
Use just one big read to fingerprint files |
137 |
b = f.read() |
138 |
s.update(b) |
|
139 |
size = len(b) |
|
124
by mbp at sourcefrog
- check file text for past revisions is correct |
140 |
return {'size': size, |
141 |
'sha1': s.hexdigest()} |
|
142 |
||
143 |
||
258
by Martin Pool
- Take email from ~/.bzr.conf/email |
144 |
def config_dir(): |
145 |
"""Return per-user configuration directory. |
|
146 |
||
147 |
By default this is ~/.bzr.conf/
|
|
148 |
|
|
149 |
TODO: Global option --config-dir to override this.
|
|
150 |
"""
|
|
151 |
return os.path.expanduser("~/.bzr.conf") |
|
152 |
||
153 |
||
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
154 |
def _auto_user_id(): |
246
by mbp at sourcefrog
- unicode decoding in getting email and userid strings |
155 |
"""Calculate automatic user identification. |
156 |
||
157 |
Returns (realname, email).
|
|
158 |
||
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
159 |
Only used when none is set in the environment or the id file.
|
246
by mbp at sourcefrog
- unicode decoding in getting email and userid strings |
160 |
|
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
161 |
This previously used the FQDN as the default domain, but that can
|
162 |
be very slow on machines where DNS is broken. So now we simply
|
|
163 |
use the hostname.
|
|
1
by mbp at sourcefrog
import from baz patch-364 |
164 |
"""
|
251
by mbp at sourcefrog
- factor out locale.getpreferredencoding() |
165 |
import socket |
246
by mbp at sourcefrog
- unicode decoding in getting email and userid strings |
166 |
|
167 |
# XXX: Any good way to get real user name on win32?
|
|
168 |
||
1
by mbp at sourcefrog
import from baz patch-364 |
169 |
try: |
170 |
import pwd |
|
171 |
uid = os.getuid() |
|
172 |
w = pwd.getpwuid(uid) |
|
251
by mbp at sourcefrog
- factor out locale.getpreferredencoding() |
173 |
gecos = w.pw_gecos.decode(bzrlib.user_encoding) |
174 |
username = w.pw_name.decode(bzrlib.user_encoding) |
|
25
by Martin Pool
cope when gecos field doesn't have a comma |
175 |
comma = gecos.find(',') |
176 |
if comma == -1: |
|
177 |
realname = gecos |
|
178 |
else: |
|
179 |
realname = gecos[:comma] |
|
256
by Martin Pool
- More handling of auto-username case |
180 |
if not realname: |
181 |
realname = username |
|
246
by mbp at sourcefrog
- unicode decoding in getting email and userid strings |
182 |
|
1
by mbp at sourcefrog
import from baz patch-364 |
183 |
except ImportError: |
246
by mbp at sourcefrog
- unicode decoding in getting email and userid strings |
184 |
import getpass |
256
by Martin Pool
- More handling of auto-username case |
185 |
realname = username = getpass.getuser().decode(bzrlib.user_encoding) |
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
186 |
|
256
by Martin Pool
- More handling of auto-username case |
187 |
return realname, (username + '@' + socket.gethostname()) |
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
188 |
|
189 |
||
190 |
def _get_user_id(): |
|
258
by Martin Pool
- Take email from ~/.bzr.conf/email |
191 |
"""Return the full user id from a file or environment variable. |
192 |
||
193 |
TODO: Allow taking this from a file in the branch directory too
|
|
194 |
for per-branch ids."""
|
|
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
195 |
v = os.environ.get('BZREMAIL') |
196 |
if v: |
|
197 |
return v.decode(bzrlib.user_encoding) |
|
198 |
||
199 |
try: |
|
258
by Martin Pool
- Take email from ~/.bzr.conf/email |
200 |
return (open(os.path.join(config_dir(), "email")) |
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
201 |
.read() |
202 |
.decode(bzrlib.user_encoding) |
|
203 |
.rstrip("\r\n")) |
|
256
by Martin Pool
- More handling of auto-username case |
204 |
except IOError, e: |
205 |
if e.errno != errno.ENOENT: |
|
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
206 |
raise e |
207 |
||
208 |
v = os.environ.get('EMAIL') |
|
209 |
if v: |
|
210 |
return v.decode(bzrlib.user_encoding) |
|
211 |
else: |
|
212 |
return None |
|
246
by mbp at sourcefrog
- unicode decoding in getting email and userid strings |
213 |
|
214 |
||
215 |
def username(): |
|
216 |
"""Return email-style username. |
|
217 |
||
218 |
Something similar to 'Martin Pool <mbp@sourcefrog.net>'
|
|
219 |
||
254
by Martin Pool
- Doc cleanups from Magnus Therning |
220 |
TODO: Check it's reasonably well-formed.
|
246
by mbp at sourcefrog
- unicode decoding in getting email and userid strings |
221 |
"""
|
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
222 |
v = _get_user_id() |
223 |
if v: |
|
224 |
return v |
|
225 |
||
226 |
name, email = _auto_user_id() |
|
246
by mbp at sourcefrog
- unicode decoding in getting email and userid strings |
227 |
if name: |
228 |
return '%s <%s>' % (name, email) |
|
229 |
else: |
|
230 |
return email |
|
1
by mbp at sourcefrog
import from baz patch-364 |
231 |
|
232 |
||
183
by mbp at sourcefrog
pychecker fixups |
233 |
_EMAIL_RE = re.compile(r'[\w+.-]+@[\w+.-]+') |
1
by mbp at sourcefrog
import from baz patch-364 |
234 |
def user_email(): |
235 |
"""Return just the email component of a username.""" |
|
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
236 |
e = _get_user_id() |
1
by mbp at sourcefrog
import from baz patch-364 |
237 |
if e: |
183
by mbp at sourcefrog
pychecker fixups |
238 |
m = _EMAIL_RE.search(e) |
1
by mbp at sourcefrog
import from baz patch-364 |
239 |
if not m: |
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
240 |
bailout("%r doesn't seem to contain a reasonable email address" % e) |
1
by mbp at sourcefrog
import from baz patch-364 |
241 |
return m.group(0) |
242 |
||
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
243 |
return _auto_user_id()[1] |
1
by mbp at sourcefrog
import from baz patch-364 |
244 |
|
245 |
||
246 |
||
247 |
def compare_files(a, b): |
|
248 |
"""Returns true if equal in contents""" |
|
74
by mbp at sourcefrog
compare_files: read in one page at a time rather than |
249 |
BUFSIZE = 4096 |
250 |
while True: |
|
251 |
ai = a.read(BUFSIZE) |
|
252 |
bi = b.read(BUFSIZE) |
|
253 |
if ai != bi: |
|
254 |
return False |
|
255 |
if ai == '': |
|
256 |
return True |
|
1
by mbp at sourcefrog
import from baz patch-364 |
257 |
|
258 |
||
259 |
||
49
by mbp at sourcefrog
fix local-time-offset calculation |
260 |
def local_time_offset(t=None): |
261 |
"""Return offset of local zone from GMT, either at present or at time t.""" |
|
73
by mbp at sourcefrog
fix time.localtime call for python 2.3 |
262 |
# python2.3 localtime() can't take None
|
183
by mbp at sourcefrog
pychecker fixups |
263 |
if t == None: |
73
by mbp at sourcefrog
fix time.localtime call for python 2.3 |
264 |
t = time.time() |
265 |
||
49
by mbp at sourcefrog
fix local-time-offset calculation |
266 |
if time.localtime(t).tm_isdst and time.daylight: |
8
by mbp at sourcefrog
store committer's timezone in revision and show |
267 |
return -time.altzone |
268 |
else: |
|
269 |
return -time.timezone |
|
270 |
||
271 |
||
272 |
def format_date(t, offset=0, timezone='original'): |
|
1
by mbp at sourcefrog
import from baz patch-364 |
273 |
## TODO: Perhaps a global option to use either universal or local time?
|
274 |
## Or perhaps just let people set $TZ?
|
|
275 |
assert isinstance(t, float) |
|
276 |
||
8
by mbp at sourcefrog
store committer's timezone in revision and show |
277 |
if timezone == 'utc': |
1
by mbp at sourcefrog
import from baz patch-364 |
278 |
tt = time.gmtime(t) |
279 |
offset = 0 |
|
8
by mbp at sourcefrog
store committer's timezone in revision and show |
280 |
elif timezone == 'original': |
23
by mbp at sourcefrog
format_date: handle revisions with no timezone offset |
281 |
if offset == None: |
282 |
offset = 0 |
|
16
by mbp at sourcefrog
fix inverted calculation for original timezone -> utc |
283 |
tt = time.gmtime(t + offset) |
12
by mbp at sourcefrog
new --timezone option for bzr log |
284 |
elif timezone == 'local': |
1
by mbp at sourcefrog
import from baz patch-364 |
285 |
tt = time.localtime(t) |
49
by mbp at sourcefrog
fix local-time-offset calculation |
286 |
offset = local_time_offset(t) |
12
by mbp at sourcefrog
new --timezone option for bzr log |
287 |
else: |
288 |
bailout("unsupported timezone format %r", |
|
289 |
['options are "utc", "original", "local"']) |
|
8
by mbp at sourcefrog
store committer's timezone in revision and show |
290 |
|
1
by mbp at sourcefrog
import from baz patch-364 |
291 |
return (time.strftime("%a %Y-%m-%d %H:%M:%S", tt) |
8
by mbp at sourcefrog
store committer's timezone in revision and show |
292 |
+ ' %+03d%02d' % (offset / 3600, (offset / 60) % 60)) |
1
by mbp at sourcefrog
import from baz patch-364 |
293 |
|
294 |
||
295 |
def compact_date(when): |
|
296 |
return time.strftime('%Y%m%d%H%M%S', time.gmtime(when)) |
|
297 |
||
298 |
||
299 |
||
300 |
def filesize(f): |
|
301 |
"""Return size of given open file.""" |
|
302 |
return os.fstat(f.fileno())[ST_SIZE] |
|
303 |
||
304 |
||
305 |
if hasattr(os, 'urandom'): # python 2.4 and later |
|
306 |
rand_bytes = os.urandom |
|
444
by Martin Pool
- cope on platforms with no urandom feature |
307 |
elif sys.platform == 'linux2': |
308 |
rand_bytes = file('/dev/urandom', 'rb').read |
|
1
by mbp at sourcefrog
import from baz patch-364 |
309 |
else: |
444
by Martin Pool
- cope on platforms with no urandom feature |
310 |
# not well seeded, but better than nothing
|
311 |
def rand_bytes(n): |
|
312 |
import random |
|
313 |
s = '' |
|
314 |
while n: |
|
315 |
s += chr(random.randint(0, 255)) |
|
316 |
n -= 1 |
|
317 |
return s |
|
1
by mbp at sourcefrog
import from baz patch-364 |
318 |
|
319 |
||
320 |
## TODO: We could later have path objects that remember their list
|
|
321 |
## decomposition (might be too tricksy though.)
|
|
322 |
||
323 |
def splitpath(p): |
|
324 |
"""Turn string into list of parts. |
|
325 |
||
326 |
>>> splitpath('a')
|
|
327 |
['a']
|
|
328 |
>>> splitpath('a/b')
|
|
329 |
['a', 'b']
|
|
330 |
>>> splitpath('a/./b')
|
|
331 |
['a', 'b']
|
|
332 |
>>> splitpath('a/.b')
|
|
333 |
['a', '.b']
|
|
334 |
>>> splitpath('a/../b')
|
|
184
by mbp at sourcefrog
pychecker fixups |
335 |
Traceback (most recent call last):
|
1
by mbp at sourcefrog
import from baz patch-364 |
336 |
...
|
337 |
BzrError: ("sorry, '..' not allowed in path", [])
|
|
338 |
"""
|
|
339 |
assert isinstance(p, types.StringTypes) |
|
271
by Martin Pool
- Windows path fixes |
340 |
|
341 |
# split on either delimiter because people might use either on
|
|
342 |
# Windows
|
|
343 |
ps = re.split(r'[\\/]', p) |
|
344 |
||
345 |
rps = [] |
|
1
by mbp at sourcefrog
import from baz patch-364 |
346 |
for f in ps: |
347 |
if f == '..': |
|
348 |
bailout("sorry, %r not allowed in path" % f) |
|
271
by Martin Pool
- Windows path fixes |
349 |
elif (f == '.') or (f == ''): |
350 |
pass
|
|
351 |
else: |
|
352 |
rps.append(f) |
|
353 |
return rps |
|
1
by mbp at sourcefrog
import from baz patch-364 |
354 |
|
355 |
def joinpath(p): |
|
356 |
assert isinstance(p, list) |
|
357 |
for f in p: |
|
183
by mbp at sourcefrog
pychecker fixups |
358 |
if (f == '..') or (f == None) or (f == ''): |
1
by mbp at sourcefrog
import from baz patch-364 |
359 |
bailout("sorry, %r not allowed in path" % f) |
271
by Martin Pool
- Windows path fixes |
360 |
return os.path.join(*p) |
1
by mbp at sourcefrog
import from baz patch-364 |
361 |
|
362 |
||
363 |
def appendpath(p1, p2): |
|
364 |
if p1 == '': |
|
365 |
return p2 |
|
366 |
else: |
|
271
by Martin Pool
- Windows path fixes |
367 |
return os.path.join(p1, p2) |
1
by mbp at sourcefrog
import from baz patch-364 |
368 |
|
369 |
||
370 |
def extern_command(cmd, ignore_errors = False): |
|
371 |
mutter('external command: %s' % `cmd`) |
|
372 |
if os.system(cmd): |
|
373 |
if not ignore_errors: |
|
374 |
bailout('command failed') |
|
375 |