extdiff.py
192 lines
| 7.6 KiB
| text/x-python
|
PythonLexer
/ hgext / extdiff.py
Vadim Gelfer
|
r2333 | # extdiff.py - external diff program support for mercurial | ||
# | ||||
# Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> | ||||
# | ||||
# This software may be used and distributed according to the terms | ||||
# of the GNU General Public License, incorporated herein by reference. | ||||
# | ||||
Giorgos Keramidas
|
r2913 | # The `extdiff' Mercurial extension allows you to use external programs | ||
# to compare revisions, or revision with working dir. The external diff | ||||
# programs are called with a configurable set of options and two | ||||
# non-option arguments: paths to directories containing snapshots of | ||||
# files to compare. | ||||
Vadim Gelfer
|
r2333 | # | ||
Giorgos Keramidas
|
r2913 | # To enable this extension: | ||
Vadim Gelfer
|
r2333 | # | ||
# [extensions] | ||||
# hgext.extdiff = | ||||
# | ||||
Giorgos Keramidas
|
r2913 | # The `extdiff' extension also allows to configure new diff commands, so | ||
# you do not need to type "hg extdiff -p kdiff3" always. | ||||
Vadim Gelfer
|
r2333 | # | ||
# [extdiff] | ||||
Giorgos Keramidas
|
r2913 | # # add new command that runs GNU diff(1) in 'context diff' mode | ||
# cmd.cdiff = gdiff | ||||
# opts.cdiff = -Nprc5 | ||||
Mathieu Clabaut
|
r3127 | |||
Vadim Gelfer
|
r2333 | # # add new command called vdiff, runs kdiff3 | ||
# cmd.vdiff = kdiff3 | ||||
Mathieu Clabaut
|
r3127 | |||
Vadim Gelfer
|
r2333 | # # add new command called meld, runs meld (no need to name twice) | ||
# cmd.meld = | ||||
Mathieu Clabaut
|
r3127 | |||
"Mathieu Clabaut "
|
r2675 | # # add new command called vimdiff, runs gvimdiff with DirDiff plugin | ||
# #(see http://www.vim.org/scripts/script.php?script_id=102) | ||||
Mathieu Clabaut
|
r3127 | # # Non english user, be sure to put "let g:DirDiffDynamicDiffText = 1" in | ||
# # your .vimrc | ||||
# cmd.vimdiff = gvim | ||||
# opts.vimdiff = -f '+next' '+execute "DirDiff" argv(0) argv(1)' | ||||
Vadim Gelfer
|
r2333 | # | ||
Giorgos Keramidas
|
r2913 | # Each custom diff commands can have two parts: a `cmd' and an `opts' | ||
# part. The cmd.xxx option defines the name of an executable program | ||||
# that will be run, and opts.xxx defines a set of command-line options | ||||
# which will be inserted to the command between the program name and | ||||
# the files/directories to diff (i.e. the cdiff example above). | ||||
# | ||||
# You can use -I/-X and list of file or directory names like normal | ||||
# "hg diff" command. The `extdiff' extension makes snapshots of only | ||||
# needed files, so running the external diff program will actually be | ||||
# pretty fast (at least faster than having to compare the entire tree). | ||||
Vadim Gelfer
|
r2333 | |||
Matt Mackall
|
r3891 | from mercurial.i18n import _ | ||
Vadim Gelfer
|
r2333 | from mercurial.node import * | ||
Matt Mackall
|
r3877 | from mercurial import cmdutil, util | ||
import os, shutil, tempfile | ||||
Vadim Gelfer
|
r2333 | |||
Vadim Gelfer
|
r2906 | def dodiff(ui, repo, diffcmd, diffopts, pats, opts): | ||
Vadim Gelfer
|
r2333 | def snapshot_node(files, node): | ||
'''snapshot files as of some revision''' | ||||
Benoit Boissinot
|
r3977 | mf = repo.changectx(node).manifest() | ||
Andrei Vermel
|
r4088 | dirname = os.path.basename(repo.root) | ||
if dirname == "": | ||||
dirname = "root" | ||||
dirname = '%s.%s' % (dirname, short(node)) | ||||
Vadim Gelfer
|
r2333 | base = os.path.join(tmproot, dirname) | ||
os.mkdir(base) | ||||
if not ui.quiet: | ||||
ui.write_err(_('making snapshot of %d files from rev %s\n') % | ||||
(len(files), short(node))) | ||||
for fn in files: | ||||
Benoit Boissinot
|
r3330 | if not fn in mf: | ||
# skipping new file after a merge ? | ||||
continue | ||||
Vadim Gelfer
|
r2333 | wfn = util.pconvert(fn) | ||
ui.note(' %s\n' % wfn) | ||||
dest = os.path.join(base, wfn) | ||||
destdir = os.path.dirname(dest) | ||||
if not os.path.isdir(destdir): | ||||
os.makedirs(destdir) | ||||
Matt Mackall
|
r4005 | data = repo.wwritedata(wfn, repo.file(wfn).read(mf[wfn])) | ||
Alexis S. L. Carvalho
|
r4096 | open(dest, 'wb').write(data) | ||
Vadim Gelfer
|
r2333 | return dirname | ||
def snapshot_wdir(files): | ||||
'''snapshot files from working directory. | ||||
if not using snapshot, -I/-X does not work and recursive diff | ||||
in tools like kdiff3 and meld displays too many files.''' | ||||
dirname = os.path.basename(repo.root) | ||||
Andrei Vermel
|
r4088 | if dirname == "": | ||
dirname = "root" | ||||
Vadim Gelfer
|
r2333 | base = os.path.join(tmproot, dirname) | ||
os.mkdir(base) | ||||
if not ui.quiet: | ||||
ui.write_err(_('making snapshot of %d files from working dir\n') % | ||||
(len(files))) | ||||
for fn in files: | ||||
wfn = util.pconvert(fn) | ||||
ui.note(' %s\n' % wfn) | ||||
dest = os.path.join(base, wfn) | ||||
destdir = os.path.dirname(dest) | ||||
if not os.path.isdir(destdir): | ||||
os.makedirs(destdir) | ||||
Alexis S. L. Carvalho
|
r4089 | fp = open(dest, 'wb') | ||
Vadim Gelfer
|
r2333 | for chunk in util.filechunkiter(repo.wopener(wfn)): | ||
fp.write(chunk) | ||||
return dirname | ||||
Thomas Arendsen Hein
|
r3707 | node1, node2 = cmdutil.revpair(repo, opts['rev']) | ||
Brendan Cully
|
r2902 | files, matchfn, anypats = cmdutil.matchpats(repo, pats, opts) | ||
Vadim Gelfer
|
r2875 | modified, added, removed, deleted, unknown = repo.status( | ||
node1, node2, files, match=matchfn)[:5] | ||||
Vadim Gelfer
|
r2333 | if not (modified or added or removed): | ||
return 0 | ||||
tmproot = tempfile.mkdtemp(prefix='extdiff.') | ||||
try: | ||||
dir1 = snapshot_node(modified + removed, node1) | ||||
if node2: | ||||
dir2 = snapshot_node(modified + added, node2) | ||||
else: | ||||
dir2 = snapshot_wdir(modified + added) | ||||
Vadim Gelfer
|
r2906 | cmdline = ('%s %s %s %s' % | ||
TK Soh
|
r3074 | (util.shellquote(diffcmd), ' '.join(diffopts), | ||
Vadim Gelfer
|
r2906 | util.shellquote(dir1), util.shellquote(dir2))) | ||
ui.debug('running %r in %s\n' % (cmdline, tmproot)) | ||||
util.system(cmdline, cwd=tmproot) | ||||
Vadim Gelfer
|
r2333 | return 1 | ||
finally: | ||||
ui.note(_('cleaning up temp directory\n')) | ||||
shutil.rmtree(tmproot) | ||||
def extdiff(ui, repo, *pats, **opts): | ||||
'''use external program to diff repository (or selected files) | ||||
Show differences between revisions for the specified files, using | ||||
Vadim Gelfer
|
r2906 | an external program. The default program used is diff, with | ||
default options "-Npru". | ||||
Vadim Gelfer
|
r2333 | To select a different program, use the -p option. The program | ||
will be passed the names of two directories to compare. To pass | ||||
additional options to the program, use the -o option. These will | ||||
be passed before the names of the directories to compare. | ||||
When two revision arguments are given, then changes are | ||||
shown between those revisions. If only one revision is | ||||
specified then that revision is compared to the working | ||||
directory, and, when no revisions are specified, the | ||||
working directory files are compared to its parent.''' | ||||
TK Soh
|
r3129 | program = opts['program'] or 'diff' | ||
if opts['program']: | ||||
option = opts['option'] | ||||
else: | ||||
option = opts['option'] or ['-Npru'] | ||||
return dodiff(ui, repo, program, option, pats, opts) | ||||
Vadim Gelfer
|
r2333 | |||
cmdtable = { | ||||
"extdiff": | ||||
(extdiff, | ||||
[('p', 'program', '', _('comparison program to run')), | ||||
('o', 'option', [], _('pass option to comparison program')), | ||||
('r', 'rev', [], _('revision')), | ||||
('I', 'include', [], _('include names matching the given patterns')), | ||||
('X', 'exclude', [], _('exclude names matching the given patterns'))], | ||||
_('hg extdiff [OPT]... [FILE]...')), | ||||
} | ||||
def uisetup(ui): | ||||
for cmd, path in ui.configitems('extdiff'): | ||||
if not cmd.startswith('cmd.'): continue | ||||
cmd = cmd[4:] | ||||
if not path: path = cmd | ||||
Vadim Gelfer
|
r2906 | diffopts = ui.config('extdiff', 'opts.' + cmd, '') | ||
diffopts = diffopts and [diffopts] or [] | ||||
TK Soh
|
r2959 | def save(cmd, path, diffopts): | ||
Vadim Gelfer
|
r2333 | '''use closure to save diff command to use''' | ||
def mydiff(ui, repo, *pats, **opts): | ||||
Vadim Gelfer
|
r2906 | return dodiff(ui, repo, path, diffopts, pats, opts) | ||
mydiff.__doc__ = '''use %(path)r to diff repository (or selected files) | ||||
Vadim Gelfer
|
r2333 | |||
Show differences between revisions for the specified | ||||
Vadim Gelfer
|
r2906 | files, using the %(path)r program. | ||
Vadim Gelfer
|
r2333 | |||
When two revision arguments are given, then changes are | ||||
shown between those revisions. If only one revision is | ||||
specified then that revision is compared to the working | ||||
directory, and, when no revisions are specified, the | ||||
Vadim Gelfer
|
r2906 | working directory files are compared to its parent.''' % { | ||
'path': path, | ||||
} | ||||
Vadim Gelfer
|
r2333 | return mydiff | ||
TK Soh
|
r2959 | cmdtable[cmd] = (save(cmd, path, diffopts), | ||
Vadim Gelfer
|
r2333 | cmdtable['extdiff'][1][1:], | ||
Thomas Arendsen Hein
|
r4730 | _('hg %s [OPTION]... [FILE]...') % cmd) | ||