Kiln » TortoiseHg » TortoiseHg
Clone URL:  
csinfo.py
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
# csinfo.py - embeddable changeset summary # # Copyright 2009 Yuki KODAMA <endflow.net@gmail.com> # # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. '''embeddable changeset summary''' import re import os import gtk from mercurial import patch, util from mercurial.node import short, hex from tortoisehg.util.i18n import _ from tortoisehg.util import hglib, paths from tortoisehg.hgtk import gtklib PANEL_DEFAULT = ('rev', 'summary', 'user', 'date', 'branch', 'tags') def create(repo, target=None, style=None, custom=None, **kargs): return CachedFactory(repo, custom, style, target, **kargs)() def factory(*args, **kargs): return CachedFactory(*args, **kargs) def panelstyle(**kargs): kargs['type'] = 'panel' if 'contents' not in kargs: kargs['contents'] = PANEL_DEFAULT return kargs def labelstyle(**kargs): kargs['type'] = 'label' return kargs def custom(**kargs): return kargs class CachedFactory(object): def __init__(self, repo, custom=None, style=None, target=None, withupdate=False, widgetcache=False): if repo is None: raise _('must be specified repository') self.repo = repo self.target = target if custom is None: custom = {} self.custom = custom if style is None: style = panelstyle() self.csstyle = style self.info = CachedSummaryInfo() self.withupdate = withupdate if widgetcache: self.cache = {} def __call__(self, target=None, style=None, custom=None, repo=None): # try to create a context object if target is None: target = self.target if repo is None: repo = self.repo if style is None: style = self.csstyle else: # need to override styles newstyle = self.csstyle.copy() newstyle.update(style) style = newstyle if custom is None: custom = self.custom else: # need to override customs newcustom = self.custom.copy() newcustom.update(custom) custom = newcustom if 'type' not in style: raise _("must be specified 'type' in style") type = style['type'] assert type in ('panel', 'label') # check widgets cache if target is None or repo is None: key = None else: key = type + str(target) + str(style) + str(custom) + repo.root if hasattr(self, 'cache') and key: try: return self.cache[key] except KeyError: pass # create widget args = (target, style, custom, repo, self.info) if type == 'panel': widget = SummaryPanel(*args) else: widget = SummaryLabel(*args) if hasattr(self, 'cache') and key: self.cache[key] = widget if self.withupdate: widget.update() return widget class UnknownItem(Exception): pass def create_context(repo, target): if repo is None or target is None: return None ctx = PatchContext(repo, target) if ctx is None: ctx = ChangesetContext(repo, target) return ctx def ChangesetContext(repo, rev): if repo is None or rev is None: return None try: ctx = repo[rev] except (hglib.LookupError, hglib.RepoLookupError, hglib.RepoError): ctx = None return ctx def PatchContext(repo, patchpath, cache={}): if repo is None or patchpath is None: return None # check path if not os.path.isabs(patchpath) or not os.path.isfile(patchpath): return None # check cache mtime = os.path.getmtime(patchpath) key = repo.root + patchpath holder = cache.get(key, None) if holder is not None and mtime == holder[0]: return holder[1] # create a new context object ctx = patchctx(patchpath, repo) cache[key] = (mtime, ctx) return ctx class patchctx(object): def __init__(self, patchpath, repo): self._path = patchpath self._patchname = os.path.basename(patchpath) self._repo = repo pf = open(patchpath) try: data = patch.extract(self._repo.ui, pf) tmpfile, msg, user, date, branch, node, p1, p2 = data if tmpfile: os.unlink(tmpfile) finally: pf.close() self._node = node self._user = user and hglib.toutf(user) or '' self._date = date and util.parsedate(date) or None self._desc = msg and hglib.toutf(msg.rstrip('\r\n')) or '' self._branch = branch and hglib.toutf(branch) or '' self._parents = [] for p in (p1, p2): if not p: continue try: self._parents.append(repo[p]) except (hglib.LookupError, hglib.RepoLookupError, hglib.RepoError): self._parents.append(p) def __str__(self): return short(self.node()) def __int__(self): return self.rev() def node(self): return self._node def rev(self): return None def hex(self): return hex(self.node()) def user(self): return self._user def date(self): return self._date def description(self): return self._desc def branch(self): return self._branch def tags(self): return () def parents(self): return self._parents def children(self): return () class SummaryInfo(object): LABELS = {'rev': _('rev:'), 'revnum': _('rev:'), 'revid': _('rev:'), 'summary': _('summary:'), 'user': _('user:'), 'age': _('age:'), 'date': _('date:'), 'branch': _('branch:'), 'tags': _('tags:'), 'rawbranch': _('branch:'), 'rawtags': _('tags:')} def __init__(self): pass def get_data(self, item, *args): widget, ctx, custom = args def default_func(widget, item, ctx): return None def preset_func(widget, item, ctx): if item == 'rev': revnum = self.get_data('revnum', *args) revid = self.get_data('revid', *args) return '%s (%s)' % (revnum, revid) elif item == 'revnum': return str(ctx.rev()) elif item == 'revid': return str(ctx) elif item == 'desc': return hglib.toutf(ctx.description().replace('\0', '')) elif item == 'summary': desc = self.get_data('desc', *args) value = desc.split('\n')[0][:80] if len(value) == 0: return None return value elif item == 'user': return hglib.toutf(ctx.user()) elif item == 'date': return hglib.displaytime(ctx.date()) elif item == 'age': return hglib.age(ctx.date()) elif item == 'rawbranch': return hglib.toutf(ctx.branch()) elif item == 'branch': value = self.get_data('rawbranch', *args) if value: repo = ctx._repo if ctx.node() not in repo.branchtags().values(): return None dblist = repo.ui.config('tortoisehg', 'deadbranch', '') if dblist and value in [hglib.toutf(b.strip()) \ for b in dblist.split(',')]: return None return value elif item == 'rawtags': value = [hglib.toutf(tag) for tag in ctx.tags()] if len(value) == 0: return None return value elif item == 'tags': value = self.get_data('rawtags', *args) if value: repo = ctx._repo htags = repo.ui.config('tortoisehg', 'hidetags', '') htags = [hglib.toutf(b.strip()) for b in htags.split()] value = [tag for tag in value if tag not in htags] if len(value) == 0: return None return value elif item == 'ishead': return len(ctx.children()) == 0 raise UnknownItem(item) if custom.has_key('data'): try: return custom['data'](widget, item, ctx) except UnknownItem: pass try: return preset_func(widget, item, ctx) except UnknownItem: pass return default_func(widget, item, ctx) def get_label(self, item, widget, ctx, custom): def default_func(widget, item): return '' def preset_func(widget, item): try: return self.LABELS[item] except KeyError: raise UnknownItem(item) if custom.has_key('label'): try: return custom['label'](widget, item) except UnknownItem: pass try: return preset_func(widget, item) except UnknownItem: pass return default_func(widget, item) def get_markup(self, item, widget, ctx, custom): def default_func(widget, item, value): return '' def preset_func(widget, item, value): if item in ('rev', 'revnum', 'revid'): return gtklib.markup(value, face='monospace', size='9000') elif item in ('rawbranch', 'branch'): return gtklib.markup(' %s ' % value, color='black', background='#aaffaa') elif item in ('rawtags', 'tags'): opts = dict(color='black', background='#ffffaa') tags = [gtklib.markup(' %s ' % tag, **opts) for tag in value] return ' '.join(tags) elif item in ('desc', 'summary', 'user', 'date', 'age'): return gtklib.markup(value) raise UnknownItem(item) value = self.get_data(item, widget, ctx, custom) if value is None: return None if custom.has_key('markup'): try: return custom['markup'](widget, item, value) except UnknownItem: pass try: return preset_func(widget, item, value) except UnknownItem: pass return default_func(widget, item, value) class CachedSummaryInfo(SummaryInfo): def __init__(self): SummaryInfo.__init__(self) self.cache = {} def try_cache(self, target, func, *args): item, widget, ctx, custom = args ctxstr = ctx._repo.root + ctx.hex() key = target + item + ctxstr + str(custom) try: return self.cache[key] except KeyError: pass self.cache[key] = value = func(self, *args) return value def get_data(self, *args): return self.try_cache('data', SummaryInfo.get_data, *args) def get_label(self, *args): return self.try_cache('label', SummaryInfo.get_label, *args) def get_markup(self, *args): return self.try_cache('markup', SummaryInfo.get_markup, *args) class SummaryBase(object): def __init__(self, target, custom, repo, info=None): if target is None: self.target = None else: self.target = str(target) self.custom = custom self.repo = repo if info is None: info = SummaryInfo() self.info = info self.ctx = create_context(repo, self.target) def get_data(self, item): return self.info.get_data(item, self, self.ctx, self.custom) def get_label(self, item): return self.info.get_label(item, self, self.ctx, self.custom) def get_markup(self, item): return self.info.get_markup(item, self, self.ctx, self.custom) def update(self, target=None, custom=None, repo=None): if target is None: target = self.target if target is not None: target = str(target) if custom is not None: self.custom = custom if repo is None: repo = self.repo self.ctx = create_context(repo, target) if self.ctx is None: return False # cannot update self.target = target self.repo = repo return True class SummaryPanel(SummaryBase, gtk.Frame): def __init__(self, target, style, custom, repo, info=None): SummaryBase.__init__(self, target, custom, repo, info) gtk.Frame.__init__(self) self.set_shadow_type(gtk.SHADOW_NONE) self.csstyle = style # layout table for contents self.table = gtklib.LayoutTable(ypad=1, headopts={'weight': 'bold'}) self.add(self.table) def update(self, target=None, style=None, custom=None, repo=None): if not SummaryBase.update(self, target, custom, repo): return False # cannot update if style is not None: self.csstyle = style if 'label' in self.csstyle: label = self.csstyle['label'] assert isinstance(label, basestring) self.set_label(label) self.set_shadow_type(gtk.SHADOW_ETCHED_IN) if 'margin' in self.csstyle: margin = self.csstyle['margin'] # 'border' range is 0-65535 assert isinstance(margin, (int, long)) assert 0 <= margin and margin <= 65535 self.set_border_width(margin) if 'padding' in self.csstyle: padding = self.csstyle['padding'] # 'border' range is 0-65535 assert isinstance(padding, (int, long)) assert 0 <= padding and padding <= 65535 self.table.set_border_width(padding) contents = self.csstyle.get('contents', None) assert contents sel = self.csstyle.get('selectable', False) assert isinstance(sel, bool) # build info self.table.clear_rows() for item in contents: markups = self.get_markup(item) if not markups: continue if isinstance(markups, basestring): markups = (markups,) for text in markups: body = gtk.Label() body.set_markup(text) body.set_selectable(sel) self.table.add_row(self.get_label(item), body) self.show_all() return True class SummaryLabel(SummaryBase, gtk.Label): def __init__(self, target, style, custom, repo, info=None): SummaryBase.__init__(self, target, custom, repo, info) gtk.Label.__init__(self) self.set_alignment(0, 0.5) self.csstyle = style def update(self, target=None, style=None, custom=None, repo=None): if not SummaryBase.update(self, target, custom, repo): return False # cannot update if style is not None: self.csstyle = style if 'selectable' in self.csstyle: sel = self.csstyle['selectable'] assert isinstance(sel, bool) self.set_selectable(sel) if 'width' in self.csstyle or 'height' in self.csstyle: width = self.csstyle.get('width', -1) assert isinstance(width, (int, long)) height = self.csstyle.get('height', -1) assert isinstance(height, (int, long)) self.set_size_request(width, height) self.set_line_wrap(True) contents = self.csstyle.get('contents', None) assert contents # build info info = '' pat = re.compile(r'(?:(?<=%%)|(?<!%)%\()(\w+)(?:\)s)') for snip in contents: # extract all placeholders items = pat.findall(snip) # fetch required data data = {} for item in items: markups = self.get_markup(item) if not markups: continue if isinstance(markups, basestring): markups = (markups,) data[item] = ', '.join(markups) if len(data) == 0: continue # insert data & append to label info += snip % data self.set_markup(info)