1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
#
# Copyright (C) 2006 Robey Pointer <robey@lag.net>
# Copyright (C) 2006 Goffredo Baroncelli <kreijack@inwind.it>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
import base64
import cgi
import datetime
import logging
import re
import sha
import struct
import sys
import threading
import time
import traceback
import turbogears
log = logging.getLogger("loggerhead.controllers")
def timespan(delta):
if delta.days > 730:
# good grief!
return '%d years' % (int(delta.days // 365.25),)
if delta.days >= 3:
return '%d days' % delta.days
seg = []
if delta.days > 0:
if delta.days == 1:
seg.append('1 day')
else:
seg.append('%d days' % delta.days)
hrs = delta.seconds // 3600
mins = (delta.seconds % 3600) // 60
if hrs > 0:
if hrs == 1:
seg.append('1 hour')
else:
seg.append('%d hours' % hrs)
if delta.days == 0:
if mins > 0:
if mins == 1:
seg.append('1 minute')
else:
seg.append('%d minutes' % mins)
elif hrs == 0:
seg.append('less than a minute')
return ', '.join(seg)
def ago(timestamp):
now = datetime.datetime.now()
return timespan(now - timestamp) + ' ago'
def fix_year(year):
if year < 70:
year += 2000
if year < 100:
year += 1900
return year
class Container (object):
"""
Convert a dict into an object with attributes.
"""
def __init__(self, _dict=None, **kw):
if _dict is not None:
for key, value in _dict.iteritems():
setattr(self, key, value)
for key, value in kw.iteritems():
setattr(self, key, value)
def __repr__(self):
out = '{ '
for key, value in self.__dict__.iteritems():
if key.startswith('_') or (getattr(self.__dict__[key], '__call__', None) is not None):
continue
out += '%r => %r, ' % (key, value)
out += '}'
return out
def clean_revid(revid):
if revid == 'missing':
return revid
return sha.new(revid).hexdigest()
def obfuscate(text):
return ''.join([ '&#%d;' % ord(c) for c in text ])
def trunc(text, limit=10):
if len(text) <= limit:
return text
return text[:limit] + '...'
def to_utf8(s):
if isinstance(s, unicode):
return s.encode('utf-8')
return s
STANDARD_PATTERN = re.compile(r'^(.*?)\s*<(.*?)>\s*$')
EMAIL_PATTERN = re.compile(r'[-\w\d\+_!%\.]+@[-\w\d\+_!%\.]+')
def hide_email(email):
"""
try to obsure any email address in a bazaar committer's name.
"""
m = STANDARD_PATTERN.search(email)
if m is not None:
name = m.group(1)
email = m.group(2)
return name
m = EMAIL_PATTERN.search(email)
if m is None:
# can't find an email address in here
return email
username, domain = m.group(0).split('@')
domains = domain.split('.')
if len(domains) >= 2:
return '%s at %s' % (username, domains[-2])
return '%s at %s' % (username, domains[0])
def triple_factors(min_value=1):
factors = (1, 3)
index = 0
n = 1
while True:
if n >= min_value:
yield n * factors[index]
index += 1
if index >= len(factors):
index = 0
n *= 10
def scan_range(pos, max, pagesize=1):
"""
given a position in a maximum range, return a list of negative and positive
jump factors for an hgweb-style triple-factor geometric scan.
for example, with pos=20 and max=500, the range would be:
[ -10, -3, -1, 1, 3, 10, 30, 100, 300 ]
i admit this is a very strange way of jumping through revisions. i didn't
invent it. :)
"""
out = []
for n in triple_factors(pagesize + 1):
if n > max:
return out
if pos + n < max:
out.append(n)
if pos - n >= 0:
out.insert(0, -n)
# only do this if unicode turns out to be a problem
#_BADCHARS_RE = re.compile(ur'[\u007f-\uffff]')
# FIXME: get rid of this method; use fixed_width() and avoid XML().
def html_clean(s):
"""
clean up a string for html display. expand any tabs, encode any html
entities, and replace spaces with ' '. this is primarily for use
in displaying monospace text.
"""
s = cgi.escape(s.expandtabs())
s = s.replace(' ', ' ')
return s
NONBREAKING_SPACE = u'\N{NO-BREAK SPACE}'
def fixed_width(s):
"""
expand tabs and turn spaces into "non-breaking spaces", so browsers won't
chop up the string.
"""
if not isinstance(s, unicode):
# this kinda sucks. file contents are just binary data, and no
# encoding metadata is stored, so we need to guess. this is probably
# okay for most code, but for people using things like KOI-8, this
# will display gibberish. we have no way of detecting the correct
# encoding to use.
try:
s = s.decode('utf-8')
except UnicodeDecodeError:
s = s.decode('iso-8859-15')
return s.expandtabs().replace(' ', NONBREAKING_SPACE)
def fake_permissions(kind, executable):
# fake up unix-style permissions given only a "kind" and executable bit
if kind == 'directory':
return 'drwxr-xr-x'
if executable:
return '-rwxr-xr-x'
return '-rw-r--r--'
def if_present(format, value):
"""
format a value using a format string, if the value exists and is not None.
"""
if value is None:
return ''
return format % value
def b64(s):
s = base64.encodestring(s).replace('\n', '')
while (len(s) > 0) and (s[-1] == '='):
s = s[:-1]
return s
def uniq(uniqs, s):
"""
turn a potentially long string into a unique smaller string.
"""
if s in uniqs:
return uniqs[s]
uniqs[type(None)] = next = uniqs.get(type(None), 0) + 1
x = struct.pack('>I', next)
while (len(x) > 1) and (x[0] == '\x00'):
x = x[1:]
uniqs[s] = b64(x)
return uniqs[s]
KILO = 1024
MEG = 1024 * KILO
GIG = 1024 * MEG
P95_MEG = int(0.9 * MEG)
P95_GIG = int(0.9 * GIG)
def human_size(size, min_divisor=0):
size = int(size)
if (size == 0) and (min_divisor == 0):
return '0'
if (size < 512) and (min_divisor == 0):
return str(size)
if (size >= P95_GIG) or (min_divisor >= GIG):
divisor = GIG
elif (size >= P95_MEG) or (min_divisor >= MEG):
divisor = MEG
else:
divisor = KILO
dot = size % divisor
base = size - dot
dot = dot * 10 // divisor
base //= divisor
if dot >= 10:
base += 1
dot -= 10
out = str(base)
if (base < 100) and (dot != 0):
out += '.%d' % (dot,)
if divisor == KILO:
out += 'K'
elif divisor == MEG:
out += 'M'
elif divisor == GIG:
out += 'G'
return out
def fill_in_navigation(navigation):
"""
given a navigation block (used by the template for the page header), fill
in useful calculated values.
"""
if navigation.revid in navigation.revid_list: # XXX is this always true?
navigation.position = navigation.revid_list.index(navigation.revid)
else:
navigation.position = 0
navigation.count = len(navigation.revid_list)
navigation.page_position = navigation.position // navigation.pagesize + 1
navigation.page_count = (len(navigation.revid_list) + (navigation.pagesize - 1)) // navigation.pagesize
def get_offset(offset):
if (navigation.position + offset < 0) or (navigation.position + offset > navigation.count - 1):
return None
return navigation.revid_list[navigation.position + offset]
navigation.prev_page_revid = get_offset(-1 * navigation.pagesize)
navigation.next_page_revid = get_offset(1 * navigation.pagesize)
params = { 'file_id': navigation.file_id }
if getattr(navigation, 'query', None) is not None:
params['q'] = navigation.query
else:
params['start_revid'] = navigation.start_revid
if navigation.prev_page_revid:
navigation.prev_page_url = navigation.branch.url([ navigation.scan_url, navigation.prev_page_revid ], **get_context(**params))
if navigation.next_page_revid:
navigation.next_page_url = navigation.branch.url([ navigation.scan_url, navigation.next_page_revid ], **get_context(**params))
def log_exception(log):
for line in ''.join(traceback.format_exception(*sys.exc_info())).split('\n'):
log.debug(line)
def decorator(unbound):
def new_decorator(f):
g = unbound(f)
g.__name__ = f.__name__
g.__doc__ = f.__doc__
g.__dict__.update(f.__dict__)
return g
new_decorator.__name__ = unbound.__name__
new_decorator.__doc__ = unbound.__doc__
new_decorator.__dict__.update(unbound.__dict__)
return new_decorator
# common threading-lock decorator
def with_lock(lockname, debug_name=None):
if debug_name is None:
debug_name = lockname
@decorator
def _decorator(unbound):
def locked(self, *args, **kw):
getattr(self, lockname).acquire()
try:
return unbound(self, *args, **kw)
finally:
getattr(self, lockname).release()
return locked
return _decorator
@decorator
def strip_whitespace(f):
def _f(*a, **kw):
out = f(*a, **kw)
orig_len = len(out)
out = re.sub(r'\n\s+', '\n', out)
out = re.sub(r'[ \t]+', ' ', out)
out = re.sub(r'\s+\n', '\n', out)
new_len = len(out)
log.debug('Saved %sB (%d%%) by stripping whitespace.',
human_size(orig_len - new_len),
round(100.0 - float(new_len) * 100.0 / float(orig_len)))
return out
return _f
@decorator
def lsprof(f):
def _f(*a, **kw):
from loggerhead.lsprof import profile
import cPickle
z = time.time()
ret, stats = profile(f, *a, **kw)
log.debug('Finished profiled %s in %d msec.' % (f.__name__, int((time.time() - z) * 1000)))
stats.sort()
stats.freeze()
now = time.time()
msec = int(now * 1000) % 1000
timestr = time.strftime('%Y%m%d%H%M%S', time.localtime(now)) + ('%03d' % msec)
filename = f.__name__ + '-' + timestr + '.lsprof'
cPickle.dump(stats, open(filename, 'w'), 2)
return ret
return _f
# just thinking out loud here...
#
# so, when browsing around, there are 5 pieces of context, most optional:
# - current revid
# current location along the navigation path (while browsing)
# - starting revid (start_revid)
# the current beginning of navigation (navigation continues back to
# the original revision) -- this may not be along the primary revision
# path since the user may have navigated into a branch
# - file_id
# if navigating the revisions that touched a file
# - q (query)
# if navigating the revisions that matched a search query
# - remember
# a previous revision to remember for future comparisons
#
# current revid is given on the url path. the rest are optional components
# in the url params.
#
# other transient things can be set:
# - compare_revid
# to compare one revision to another, on /revision only
# - sort
# for re-ordering an existing page by different sort
t_context = threading.local()
_valid = ('start_revid', 'file_id', 'q', 'remember', 'compare_revid', 'sort')
def set_context(map):
t_context.map = dict((k, v) for (k, v) in map.iteritems() if k in _valid)
def get_context(**overrides):
"""
return a context map that may be overriden by specific values passed in,
but only contains keys from the list of valid context keys.
if 'clear' is set, only the 'remember' context value will be added, and
all other context will be omitted.
"""
map = dict()
if overrides.get('clear', False):
map['remember'] = t_context.map.get('remember', None)
else:
map.update(t_context.map)
overrides = dict((k, v) for (k, v) in overrides.iteritems() if k in _valid)
map.update(overrides)
return map
|