Kiln » TortoiseHg » TortoiseHg
Clone URL:  
hglib.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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
# hglib.py - Mercurial API wrappers for TortoiseHg # # Copyright 2007 Steve Borho <steve@borho.org> # # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. import os import sys import shlex import time import urllib from mercurial import ui, util, extensions, match, bundlerepo, cmdutil from mercurial import dispatch, encoding, templatefilters, filemerge, error from mercurial import demandimport demandimport.disable() try: # hg >= 1.9 from mercurial.scmutil import canonpath, userrcpath user_rcpath = userrcpath except (ImportError, AttributeError): # hg <= 1.8 from mercurial.util import canonpath, user_rcpath try: # hg >= 1.9 from mercurial.util import localpath except ImportError: # hg <= 1.8 from mercurial.hg import localpath try: # hg >= 1.9 from mercurial.util import hidepassword, removeauth except ImportError: # hg <= 1.8 from mercurial.url import hidepassword, removeauth demandimport.enable() _encoding = encoding.encoding _encodingmode = encoding.encodingmode _fallbackencoding = encoding.fallbackencoding # extensions which can cause problem with TortoiseHg _extensions_blacklist = ('color', 'pager', 'progress') from tortoisehg.util import paths from tortoisehg.util.hgversion import hgversion from tortoisehg.util.i18n import _, ngettext def tounicode(s): """ Convert the encoding of string from MBCS to Unicode. Based on mercurial.util.tolocal(). Return 'unicode' type string. """ if s is None: return None if isinstance(s, unicode): return s for e in ('utf-8', _encoding): try: return s.decode(e, 'strict') except UnicodeDecodeError: pass return s.decode(_fallbackencoding, 'replace') def fromunicode(s, errors='strict'): """ Convert the encoding of string from Unicode to MBCS. Return 'str' type string. If you don't want an exception for conversion failure, specify errors='replace'. """ if s is None: return None s = unicode(s) # s can be QtCore.QString for enc in (_encoding, _fallbackencoding): try: return s.encode(enc) except UnicodeEncodeError: pass return s.encode(_encoding, errors) # last ditch def toutf(s): """ Convert the encoding of string from MBCS to UTF-8. Return 'str' type string. """ if s is None: return None return tounicode(s).encode('utf-8').replace('\0','') def fromutf(s): """ Convert the encoding of string from UTF-8 to MBCS Return 'str' type string. """ if s is None: return None try: return s.decode('utf-8').encode(_encoding) except (UnicodeDecodeError, UnicodeEncodeError): pass try: return s.decode('utf-8').encode(_fallbackencoding) except (UnicodeDecodeError, UnicodeEncodeError): pass u = s.decode('utf-8', 'replace') # last ditch return u.encode(_encoding, 'replace') _tabwidth = None def gettabwidth(ui): global _tabwidth if _tabwidth is not None: return _tabwidth tabwidth = ui.config('tortoisehg', 'tabwidth') try: tabwidth = int(tabwidth) if tabwidth < 1 or tabwidth > 16: tabwidth = 0 except (ValueError, TypeError): tabwidth = 0 _tabwidth = tabwidth return tabwidth _maxdiff = None def getmaxdiffsize(ui): global _maxdiff if _maxdiff is not None: return _maxdiff maxdiff = ui.config('tortoisehg', 'maxdiff') try: maxdiff = int(maxdiff) if maxdiff < 1: maxdiff = sys.maxint except (ValueError, TypeError): maxdiff = 1024 # 1MB by default _maxdiff = maxdiff * 1024 return _maxdiff _deadbranch = None def getdeadbranch(ui): '''return a list of dead branch names in UTF-8''' global _deadbranch if _deadbranch is None: db = toutf(ui.config('tortoisehg', 'deadbranch', '')) dblist = [b.strip() for b in db.split(',')] _deadbranch = dblist return _deadbranch def getlivebranch(repo): '''return a list of live branch names in UTF-8''' lives = [] deads = getdeadbranch(repo.ui) cl = repo.changelog for branch, heads in repo.branchmap().iteritems(): # branch encoded in UTF-8 if branch in deads: # ignore branch names in tortoisehg.deadbranch continue bheads = [h for h in heads if ('close' not in cl.read(h)[5])] if not bheads: # ignore branches with all heads closed continue lives.append(branch.replace('\0', '')) return lives def getlivebheads(repo): '''return a list of revs of live branch heads''' bheads = [] for b, ls in repo.branchmap().iteritems(): bheads += [repo[x] for x in ls] heads = [x.rev() for x in bheads if not x.extra().get('close')] heads.sort() heads.reverse() return heads _hidetags = None def gethidetags(ui): global _hidetags if _hidetags is None: tags = toutf(ui.config('tortoisehg', 'hidetags', '')) taglist = [t.strip() for t in tags.split()] _hidetags = taglist return _hidetags def getfilteredtags(repo): filtered = [] hides = gethidetags(repo.ui) for tag in list(repo.tags()): if tag not in hides: filtered.append(tag) return filtered def getrawctxtags(changectx): '''Returns the tags for changectx, converted to UTF-8 but unfiltered for hidden tags''' value = [toutf(tag) for tag in changectx.tags()] if len(value) == 0: return None return value def getctxtags(changectx): '''Returns all unhidden tags for changectx, converted to UTF-8''' value = getrawctxtags(changectx) if value: htlist = gethidetags(changectx._repo.ui) tags = [tag for tag in value if tag not in htlist] if len(tags) == 0: return None return tags return None def getmqpatchtags(repo): '''Returns all tag names used by MQ patches, or []''' if hasattr(repo, 'mq'): repo.mq.parse_series() return repo.mq.series[:] else: return [] def getcurrentqqueue(repo): """Return the name of the current patch queue.""" if not hasattr(repo, 'mq'): return None cur = os.path.basename(repo.mq.path) if cur.startswith('patches-'): cur = cur[8:] return cur def diffexpand(line): 'Expand tabs in a line of diff/patch text' if _tabwidth is None: gettabwidth(ui.ui()) if not _tabwidth or len(line) < 2: return line return line[0] + line[1:].expandtabs(_tabwidth) _fontconfig = None def getfontconfig(_ui=None): global _fontconfig if _fontconfig is None: if _ui is None: _ui = ui.ui() # defaults _fontconfig = {'fontcomment': 'monospace 10', 'fontdiff': 'monospace 10', 'fontlist': 'sans 9', 'fontlog': 'monospace 10'} # overwrite defaults with configured values for name, val in _ui.configitems('gtools'): if val and name.startswith('font'): _fontconfig[name] = val return _fontconfig def invalidaterepo(repo): repo.dirstate.invalidate() for attr in ('_bookmarks', '_bookmarkcurrent'): if attr in repo.__dict__: delattr(repo, attr) if isinstance(repo, bundlerepo.bundlerepository): # Work around a bug in hg-1.3. repo.invalidate() breaks # overlay bundlerepos return repo.invalidate() if 'mq' in repo.__dict__: #do not create if it does not exist repo.mq.invalidate() def enabledextensions(): """Return the {name: shortdesc} dict of enabled extensions shortdesc is in local encoding. """ return extensions.enabled()[0] def allextensions(): """Return the {name: shortdesc} dict of known extensions shortdesc is in local encoding. """ enabledexts = enabledextensions() disabledexts = extensions.disabled()[0] exts = (disabledexts or {}).copy() exts.update(enabledexts) return exts def validateextensions(enabledexts): """Report extensions which should be disabled Returns the dict {name: message} of extensions expected to be disabled. message is 'utf-8'-encoded string. """ exts = {} if os.name != 'posix': exts['inotify'] = _('inotify is not supported on this platform') if 'win32text' in enabledexts: exts['eol'] = _('eol is incompatible with win32text') if 'eol' in enabledexts: exts['win32text'] = _('win32text is incompatible with eol') if 'perfarce' in enabledexts: exts['hgsubversion'] = _('hgsubversion is incompatible with perfarce') if 'hgsubversion' in enabledexts: exts['perfarce'] = _('perfarce is incompatible with hgsubversion') return exts def loadextension(ui, name): # Between Mercurial revisions 1.2 and 1.3, extensions.load() stopped # calling uisetup() after loading an extension. This could do # unexpected things if you use an hg version < 1.3 extensions.load(ui, name, None) mod = extensions.find(name) uisetup = getattr(mod, 'uisetup', None) if uisetup: uisetup(ui) def _loadextensionwithblacklist(orig, ui, name, path): if name.startswith('hgext.') or name.startswith('hgext/'): shortname = name[6:] else: shortname = name if shortname in _extensions_blacklist and not path: # only bundled ext return return orig(ui, name, path) def wrapextensionsloader(): """Wrap extensions.load(ui, name) for blacklist to take effect""" extensions.wrapfunction(extensions, 'load', _loadextensionwithblacklist) def canonpaths(list): 'Get canonical paths (relative to root) for list of files' # This is a horrible hack. Please remove this when HG acquires a # decent case-folding solution. canonpats = [] cwd = os.getcwd() root = paths.find_root(cwd) for f in list: try: canonpats.append(canonpath(root, cwd, f)) except util.Abort: # Attempt to resolve case folding conflicts. fu = f.upper() cwdu = cwd.upper() if fu.startswith(cwdu): canonpats.append(canonpath(root, cwd, f[len(cwd+os.sep):])) else: # May already be canonical canonpats.append(f) return canonpats def escapepath(path): 'Before passing a file path to hg API, it may need escaping' p = path if '[' in p or '{' in p or '*' in p or '?' in p: return 'path:' + p else: return p def normpats(pats): 'Normalize file patterns' normpats = [] for pat in pats: kind, p = match._patsplit(pat, None) if kind: normpats.append(pat) else: if '[' in p or '{' in p or '*' in p or '?' in p: normpats.append('glob:' + p) else: normpats.append('path:' + p) return normpats def mergetools(ui, values=None): 'returns the configured merge tools and the internal ones' if values == None: values = [] seen = values[:] for key, value in ui.configitems('merge-tools'): t = key.split('.')[0] if t not in seen: seen.append(t) # Ensure the tool is installed if filemerge._findtool(ui, t): values.append(t) values.append('internal:merge') values.append('internal:prompt') values.append('internal:dump') values.append('internal:local') values.append('internal:other') values.append('internal:fail') return values _difftools = None def difftools(ui): global _difftools if _difftools: return _difftools def fixup_extdiff(diffopts): if '$child' not in diffopts: diffopts.append('$parent1') diffopts.append('$child') if '$parent2' in diffopts: mergeopts = diffopts[:] diffopts.remove('$parent2') else: mergeopts = [] return diffopts, mergeopts tools = {} for cmd, path in ui.configitems('extdiff'): if cmd.startswith('cmd.'): cmd = cmd[4:] if not path: path = cmd diffopts = ui.config('extdiff', 'opts.' + cmd, '') diffopts = shlex.split(diffopts) diffopts, mergeopts = fixup_extdiff(diffopts) tools[cmd] = [path, diffopts, mergeopts] elif cmd.startswith('opts.'): continue else: # command = path opts if path: diffopts = shlex.split(path) path = diffopts.pop(0) else: path, diffopts = cmd, [] diffopts, mergeopts = fixup_extdiff(diffopts) tools[cmd] = [path, diffopts, mergeopts] mt = [] mergetools(ui, mt) for t in mt: if t.startswith('internal:'): continue dopts = ui.config('merge-tools', t + '.diffargs', '') mopts = ui.config('merge-tools', t + '.diff3args', '') dopts, mopts = shlex.split(dopts), shlex.split(mopts) tools[t] = [filemerge._findtool(ui, t), dopts, mopts] _difftools = tools return tools def hgcmd_toq(q, label, args): ''' Run an hg command in a background thread, pipe all output to a Queue object. Assumes command is completely noninteractive. ''' class Qui(ui.ui): def __init__(self, src=None): super(Qui, self).__init__(src) self.setconfig('ui', 'interactive', 'off') def write(self, *args, **opts): if self._buffers: self._buffers[-1].extend([str(a) for a in args]) else: for a in args: if label: q.put((str(a), opts.get('label', ''))) else: q.put(str(a)) def plain(self): return True u = Qui() oldterm = os.environ.get('TERM') os.environ['TERM'] = 'dumb' ret = dispatch._dispatch(u, list(args)) if oldterm: os.environ['TERM'] = oldterm return ret def get_reponame(repo): if repo.ui.config('tortoisehg', 'fullpath', False): name = repo.root elif repo.ui.config('web', 'name', False): name = repo.ui.config('web', 'name') else: name = os.path.basename(repo.root) return toutf(name) def displaytime(date): return util.datestr(date, '%Y-%m-%d %H:%M:%S %1%2') def utctime(date): return time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(date[0])) agescales = [ ((lambda n: ngettext("%d year", "%d years", n)), 3600 * 24 * 365), ((lambda n: ngettext("%d month", "%d months", n)), 3600 * 24 * 30), ((lambda n: ngettext("%d week", "%d weeks", n)), 3600 * 24 * 7), ((lambda n: ngettext("%d day", "%d days", n)), 3600 * 24), ((lambda n: ngettext("%d hour", "%d hours", n)), 3600), ((lambda n: ngettext("%d minute", "%d minutes", n)), 60), ((lambda n: ngettext("%d second", "%d seconds", n)), 1), ] def age(date): '''turn a (timestamp, tzoff) tuple into an age string.''' # This is i18n-ed version of mercurial.templatefilters.age(). now = time.time() then = date[0] if then > now: return _('in the future') delta = int(now - then) if delta == 0: return _('now') if delta > agescales[0][1] * 2: return util.shortdate(date) for t, s in agescales: n = delta // s if n >= 2 or s == 1: return t(n) % n def username(user): author = templatefilters.person(user) if not author: author = util.shortuser(user) return author def user(ctx): ''' Get the username of the change context. Does not abort and just returns an empty string if ctx is a working context and no username has been set in mercurial's config. ''' try: user = ctx.user() except error.Abort: if ctx._rev is not None: raise # ctx is a working context and probably no username has # been configured in mercurial's config user = '' return user def get_revision_desc(fctx, curpath=None): """return the revision description as a string""" author = tounicode(username(fctx.user())) rev = fctx.linkrev() # If the source path matches the current path, don't bother including it. if curpath and curpath == fctx.path(): source = '' else: source = '(%s)' % fctx.path() date = age(fctx.date()) l = tounicode(fctx.description()).replace('\0', '').splitlines() summary = l and l[0] or '' return '%s@%s%s:%s "%s"' % (author, rev, source, date, summary) def validate_synch_path(path, repo): ''' Validate the path that must be used to sync operations (pull, push, outgoing and incoming) ''' return_path = path for alias, path_aux in repo.ui.configitems('paths'): if path == alias: return_path = path_aux elif path == hidepassword(path_aux): return_path = path_aux return return_path def is_rev_current(repo, rev): ''' Returns True if the revision indicated by 'rev' is the current working directory parent. If rev is '' or None, it is assumed to mean 'tip'. ''' if rev in ('', None): rev = 'tip' rev = repo.lookup(rev) parents = repo.parents() if len(parents) > 1: return False return rev == parents[0].node() def export(repo, revs, template='hg-%h.patch', fp=None, switch_parent=False, opts=None): ''' export changesets as hg patches. Mercurial moved patch.export to cmdutil.export after version 1.5 (change e764f24a45ee in mercurial). ''' try: return cmdutil.export(repo, revs, template, fp, switch_parent, opts) except AttributeError: from mercurial import patch return patch.export(repo, revs, template, fp, switch_parent, opts) def getDeepestSubrepoContainingFile(wfile, ctx): """ Given a filename and context, get the deepest subrepo that contains the file Also return the corresponding subrepo context and the filename relative to its containing subrepo """ if wfile in ctx.manifest(): return '', wfile, ctx for wsub in ctx.substate: if wfile.startswith(wsub): srev = ctx.substate[wsub][1] stype = ctx.substate[wsub][2] if stype != 'hg': continue if not os.path.exists(ctx._repo.wjoin(wsub)): # Maybe the repository does not exist in the working copy? continue try: sctx = ctx.sub(wsub)._repo[srev] except: # The selected revision does not exist in the working copy continue wfileinsub = wfile[len(wsub)+1:] if wfileinsub in sctx.substate or wfileinsub in sctx.manifest(): return wsub, wfileinsub, sctx else: wsubsub, wfileinsub, sctx = \ getDeepestSubrepoContainingFile(wfileinsub, sctx) if wsubsub is None: return None, wfile, ctx else: return os.path.join(wsub, wsubsub), wfileinsub, sctx return None, wfile, ctx def netlocsplit(netloc): '''split [user[:passwd]@]host[:port] into 4-tuple.''' a = netloc.find('@') if a == -1: user, passwd = None, None else: userpass, netloc = netloc[:a], netloc[a + 1:] c = userpass.find(':') if c == -1: user, passwd = urllib.unquote(userpass), None else: user = urllib.unquote(userpass[:c]) passwd = urllib.unquote(userpass[c + 1:]) c = netloc.find(':') if c == -1: host, port = netloc, None else: host, port = netloc[:c], netloc[c + 1:] return host, port, user, passwd