hgk.py
309 lines
| 10.8 KiB
| text/x-python
|
PythonLexer
/ hgext / hgk.py
Vadim Gelfer
|
r2432 | # Minimal support for git commands on an hg repository | ||
# | ||||
Vadim Gelfer
|
r2859 | # Copyright 2005, 2006 Chris Mason <mason@suse.com> | ||
Vadim Gelfer
|
r2432 | # | ||
# This software may be used and distributed according to the terms | ||||
# of the GNU General Public License, incorporated herein by reference. | ||||
Josef "Jeff" Sipek
|
r2908 | from mercurial.demandload import * | ||
demandload(globals(), 'time sys signal os') | ||||
Brendan Cully
|
r3093 | demandload(globals(), 'mercurial:hg,fancyopts,commands,ui,util,patch,revlog') | ||
Vadim Gelfer
|
r2432 | |||
Benoit Boissinot
|
r3063 | def difftree(ui, repo, node1=None, node2=None, *files, **opts): | ||
Vadim Gelfer
|
r2432 | """diff trees from two commits""" | ||
Benoit Boissinot
|
r3063 | def __difftree(repo, node1, node2, files=[]): | ||
Vadim Gelfer
|
r2432 | if node2: | ||
change = repo.changelog.read(node2) | ||||
mmap2 = repo.manifest.read(change[0]) | ||||
Benoit Boissinot
|
r3063 | status = repo.status(node1, node2, files=files)[:5] | ||
modified, added, removed, deleted, unknown = status | ||||
Vadim Gelfer
|
r2432 | else: | ||
Benoit Boissinot
|
r3063 | status = repo.status(node1, files=files)[:5] | ||
modified, added, removed, deleted, unknown = status | ||||
Vadim Gelfer
|
r2432 | if not node1: | ||
node1 = repo.dirstate.parents()[0] | ||||
change = repo.changelog.read(node1) | ||||
mmap = repo.manifest.read(change[0]) | ||||
Benoit Boissinot
|
r3069 | empty = hg.short(hg.nullid) | ||
Vadim Gelfer
|
r2432 | |||
for f in modified: | ||||
# TODO get file permissions | ||||
TK Soh
|
r3059 | print ":100664 100664 %s %s M\t%s\t%s" % (hg.short(mmap[f]), | ||
hg.short(mmap2[f]), | ||||
f, f) | ||||
Vadim Gelfer
|
r2432 | for f in added: | ||
Benoit Boissinot
|
r3069 | print ":000000 100664 %s %s N\t%s\t%s" % (empty, | ||
TK Soh
|
r3059 | hg.short(mmap2[f]), | ||
f, f) | ||||
Vadim Gelfer
|
r2432 | for f in removed: | ||
TK Soh
|
r3059 | print ":100664 000000 %s %s D\t%s\t%s" % (hg.short(mmap[f]), | ||
Benoit Boissinot
|
r3069 | empty, | ||
TK Soh
|
r3059 | f, f) | ||
Vadim Gelfer
|
r2432 | ## | ||
while True: | ||||
if opts['stdin']: | ||||
try: | ||||
line = raw_input().split(' ') | ||||
node1 = line[0] | ||||
if len(line) > 1: | ||||
node2 = line[1] | ||||
else: | ||||
node2 = None | ||||
except EOFError: | ||||
break | ||||
node1 = repo.lookup(node1) | ||||
if node2: | ||||
node2 = repo.lookup(node2) | ||||
else: | ||||
node2 = node1 | ||||
node1 = repo.changelog.parents(node1)[0] | ||||
if opts['patch']: | ||||
if opts['pretty']: | ||||
catcommit(repo, node2, "") | ||||
Benoit Boissinot
|
r3067 | patch.diff(repo, node1, node2, | ||
files=files, | ||||
opts=patch.diffopts(ui, {'git': True})) | ||||
Vadim Gelfer
|
r2432 | else: | ||
Benoit Boissinot
|
r3063 | __difftree(repo, node1, node2, files=files) | ||
Vadim Gelfer
|
r2432 | if not opts['stdin']: | ||
break | ||||
def catcommit(repo, n, prefix, changes=None): | ||||
nlprefix = '\n' + prefix; | ||||
(p1, p2) = repo.changelog.parents(n) | ||||
TK Soh
|
r3059 | (h, h1, h2) = map(hg.short, (n, p1, p2)) | ||
Vadim Gelfer
|
r2432 | (i1, i2) = map(repo.changelog.rev, (p1, p2)) | ||
if not changes: | ||||
changes = repo.changelog.read(n) | ||||
TK Soh
|
r3059 | print "tree %s" % (hg.short(changes[0])) | ||
Thomas Arendsen Hein
|
r3578 | if i1 != hg.nullrev: print "parent %s" % (h1) | ||
if i2 != hg.nullrev: print "parent %s" % (h2) | ||||
Vadim Gelfer
|
r2432 | date_ar = changes[2] | ||
date = int(float(date_ar[0])) | ||||
lines = changes[4].splitlines() | ||||
Brendan Cully
|
r2525 | if lines and lines[-1].startswith('committer:'): | ||
Vadim Gelfer
|
r2432 | committer = lines[-1].split(': ')[1].rstrip() | ||
else: | ||||
committer = changes[1] | ||||
print "author %s %s %s" % (changes[1], date, date_ar[1]) | ||||
print "committer %s %s %s" % (committer, date, date_ar[1]) | ||||
Brendan Cully
|
r3092 | print "revision %d" % repo.changelog.rev(n) | ||
Vadim Gelfer
|
r2432 | print "" | ||
if prefix != "": | ||||
print "%s%s" % (prefix, changes[4].replace('\n', nlprefix).strip()) | ||||
else: | ||||
print changes[4] | ||||
if prefix: | ||||
sys.stdout.write('\0') | ||||
def base(ui, repo, node1, node2): | ||||
"""Output common ancestor information""" | ||||
node1 = repo.lookup(node1) | ||||
node2 = repo.lookup(node2) | ||||
n = repo.changelog.ancestor(node1, node2) | ||||
TK Soh
|
r3059 | print hg.short(n) | ||
Vadim Gelfer
|
r2432 | |||
def catfile(ui, repo, type=None, r=None, **opts): | ||||
"""cat a specific revision""" | ||||
# in stdin mode, every line except the commit is prefixed with two | ||||
# spaces. This way the our caller can find the commit without magic | ||||
# strings | ||||
# | ||||
prefix = "" | ||||
if opts['stdin']: | ||||
try: | ||||
(type, r) = raw_input().split(' '); | ||||
prefix = " " | ||||
except EOFError: | ||||
return | ||||
else: | ||||
if not type or not r: | ||||
ui.warn("cat-file: type or revision not supplied\n") | ||||
commands.help_(ui, 'cat-file') | ||||
while r: | ||||
if type != "commit": | ||||
sys.stderr.write("aborting hg cat-file only understands commits\n") | ||||
sys.exit(1); | ||||
n = repo.lookup(r) | ||||
catcommit(repo, n, prefix) | ||||
if opts['stdin']: | ||||
try: | ||||
(type, r) = raw_input().split(' '); | ||||
except EOFError: | ||||
break | ||||
else: | ||||
break | ||||
# git rev-tree is a confusing thing. You can supply a number of | ||||
# commit sha1s on the command line, and it walks the commit history | ||||
# telling you which commits are reachable from the supplied ones via | ||||
# a bitmask based on arg position. | ||||
# you can specify a commit to stop at by starting the sha1 with ^ | ||||
def revtree(args, repo, full="tree", maxnr=0, parents=False): | ||||
def chlogwalk(): | ||||
ch = repo.changelog | ||||
count = ch.count() | ||||
i = count | ||||
l = [0] * 100 | ||||
chunk = 100 | ||||
while True: | ||||
if chunk > i: | ||||
chunk = i | ||||
i = 0 | ||||
else: | ||||
i -= chunk | ||||
for x in xrange(0, chunk): | ||||
if i + x >= count: | ||||
l[chunk - x:] = [0] * (chunk - x) | ||||
break | ||||
if full != None: | ||||
l[x] = ch.read(ch.node(i + x)) | ||||
else: | ||||
l[x] = 1 | ||||
for x in xrange(chunk-1, -1, -1): | ||||
if l[x] != 0: | ||||
yield (i + x, full != None and l[x] or None) | ||||
if i == 0: | ||||
break | ||||
# calculate and return the reachability bitmask for sha | ||||
def is_reachable(ar, reachable, sha): | ||||
if len(ar) == 0: | ||||
return 1 | ||||
mask = 0 | ||||
Benoit Boissinot
|
r3473 | for i in xrange(len(ar)): | ||
Vadim Gelfer
|
r2432 | if sha in reachable[i]: | ||
mask |= 1 << i | ||||
return mask | ||||
reachable = [] | ||||
stop_sha1 = [] | ||||
want_sha1 = [] | ||||
count = 0 | ||||
# figure out which commits they are asking for and which ones they | ||||
# want us to stop on | ||||
Benoit Boissinot
|
r3473 | for i in xrange(len(args)): | ||
Vadim Gelfer
|
r2432 | if args[i].startswith('^'): | ||
s = repo.lookup(args[i][1:]) | ||||
stop_sha1.append(s) | ||||
want_sha1.append(s) | ||||
elif args[i] != 'HEAD': | ||||
want_sha1.append(repo.lookup(args[i])) | ||||
# calculate the graph for the supplied commits | ||||
Benoit Boissinot
|
r3473 | for i in xrange(len(want_sha1)): | ||
Vadim Gelfer
|
r2432 | reachable.append({}); | ||
n = want_sha1[i]; | ||||
visit = [n]; | ||||
reachable[i][n] = 1 | ||||
while visit: | ||||
n = visit.pop(0) | ||||
if n in stop_sha1: | ||||
continue | ||||
for p in repo.changelog.parents(n): | ||||
if p not in reachable[i]: | ||||
reachable[i][p] = 1 | ||||
visit.append(p) | ||||
if p in stop_sha1: | ||||
continue | ||||
# walk the repository looking for commits that are in our | ||||
# reachability graph | ||||
for i, changes in chlogwalk(): | ||||
n = repo.changelog.node(i) | ||||
mask = is_reachable(want_sha1, reachable, n) | ||||
if mask: | ||||
parentstr = "" | ||||
if parents: | ||||
pp = repo.changelog.parents(n) | ||||
if pp[0] != hg.nullid: | ||||
TK Soh
|
r3059 | parentstr += " " + hg.short(pp[0]) | ||
Vadim Gelfer
|
r2432 | if pp[1] != hg.nullid: | ||
TK Soh
|
r3059 | parentstr += " " + hg.short(pp[1]) | ||
Vadim Gelfer
|
r2432 | if not full: | ||
TK Soh
|
r3059 | print hg.short(n) + parentstr | ||
Benoit Boissinot
|
r3064 | elif full == "commit": | ||
TK Soh
|
r3059 | print hg.short(n) + parentstr | ||
Vadim Gelfer
|
r2432 | catcommit(repo, n, ' ', changes) | ||
else: | ||||
(p1, p2) = repo.changelog.parents(n) | ||||
TK Soh
|
r3059 | (h, h1, h2) = map(hg.short, (n, p1, p2)) | ||
Vadim Gelfer
|
r2432 | (i1, i2) = map(repo.changelog.rev, (p1, p2)) | ||
date = changes[2][0] | ||||
print "%s %s:%s" % (date, h, mask), | ||||
mask = is_reachable(want_sha1, reachable, p1) | ||||
Thomas Arendsen Hein
|
r3578 | if i1 != hg.nullrev and mask > 0: | ||
Vadim Gelfer
|
r2432 | print "%s:%s " % (h1, mask), | ||
mask = is_reachable(want_sha1, reachable, p2) | ||||
Thomas Arendsen Hein
|
r3578 | if i2 != hg.nullrev and mask > 0: | ||
Vadim Gelfer
|
r2432 | print "%s:%s " % (h2, mask), | ||
print "" | ||||
if maxnr and count >= maxnr: | ||||
break | ||||
count += 1 | ||||
Brendan Cully
|
r3093 | def revparse(ui, repo, *revs, **opts): | ||
"""Parse given revisions""" | ||||
def revstr(rev): | ||||
if rev == 'HEAD': | ||||
rev = 'tip' | ||||
return revlog.hex(repo.lookup(rev)) | ||||
for r in revs: | ||||
revrange = r.split(':', 1) | ||||
ui.write('%s\n' % revstr(revrange[0])) | ||||
if len(revrange) == 2: | ||||
ui.write('^%s\n' % revstr(revrange[1])) | ||||
Vadim Gelfer
|
r2432 | # git rev-list tries to order things by date, and has the ability to stop | ||
# at a given commit without walking the whole repo. TODO add the stop | ||||
# parameter | ||||
def revlist(ui, repo, *revs, **opts): | ||||
"""print revisions""" | ||||
if opts['header']: | ||||
full = "commit" | ||||
else: | ||||
full = None | ||||
copy = [x for x in revs] | ||||
revtree(copy, repo, full, opts['max_count'], opts['parents']) | ||||
Brendan Cully
|
r3093 | def view(ui, repo, *etc, **opts): | ||
Vadim Gelfer
|
r2432 | "start interactive history viewer" | ||
os.chdir(repo.root) | ||||
TK Soh
|
r3180 | optstr = ' '.join(['--%s %s' % (k, v) for k, v in opts.iteritems() if v]) | ||
cmd = ui.config("hgk", "path", "hgk") + " %s %s" % (optstr, " ".join(etc)) | ||||
ui.debug("running %s\n" % cmd) | ||||
os.system(cmd) | ||||
Vadim Gelfer
|
r2432 | |||
cmdtable = { | ||||
Matt Mackall
|
r3800 | "^view": (view, | ||
Brendan Cully
|
r3093 | [('l', 'limit', '', 'limit number of changes displayed')], | ||
'hg view [-l LIMIT] [REVRANGE]'), | ||||
Vadim Gelfer
|
r2432 | "debug-diff-tree": (difftree, [('p', 'patch', None, 'generate patch'), | ||
('r', 'recursive', None, 'recursive'), | ||||
('P', 'pretty', None, 'pretty'), | ||||
('s', 'stdin', None, 'stdin'), | ||||
('C', 'copy', None, 'detect copies'), | ||||
('S', 'search', "", 'search')], | ||||
Benoit Boissinot
|
r3063 | "hg git-diff-tree [options] node1 node2 [files...]"), | ||
Vadim Gelfer
|
r2432 | "debug-cat-file": (catfile, [('s', 'stdin', None, 'stdin')], | ||
"hg debug-cat-file [options] type file"), | ||||
"debug-merge-base": (base, [], "hg debug-merge-base node node"), | ||||
Brendan Cully
|
r3093 | 'debug-rev-parse': (revparse, | ||
[('', 'default', '', 'ignored')], | ||||
"hg debug-rev-parse rev"), | ||||
Vadim Gelfer
|
r2432 | "debug-rev-list": (revlist, [('H', 'header', None, 'header'), | ||
('t', 'topo-order', None, 'topo-order'), | ||||
('p', 'parents', None, 'parents'), | ||||
('n', 'max-count', 0, 'max-count')], | ||||
"hg debug-rev-list [options] revs"), | ||||
} | ||||