blob: 52dcab1ff9cfe19ea6d434c7fbd5bd32a97bb7ce [file] [log] [blame]
Martin v. Löwise064b412004-08-29 16:34:40 +00001""" Command line interface to difflib.py providing diffs in four formats:
Raymond Hettingera33d1772003-06-08 23:04:17 +00002
3* ndiff: lists every line and highlights interline changes.
Martin v. Löwise064b412004-08-29 16:34:40 +00004* context: highlights clusters of changes in a before/after format.
Raymond Hettingera33d1772003-06-08 23:04:17 +00005* unified: highlights clusters of changes in an inline format.
Martin v. Löwise064b412004-08-29 16:34:40 +00006* html: generates side by side comparison with change highlights.
Raymond Hettingera33d1772003-06-08 23:04:17 +00007
8"""
9
10import sys, os, time, difflib, optparse
11
Andrew M. Kuchlinge236b382004-08-09 17:27:55 +000012def main():
Raymond Hettingera33d1772003-06-08 23:04:17 +000013
Andrew M. Kuchlinge236b382004-08-09 17:27:55 +000014 usage = "usage: %prog [options] fromfile tofile"
15 parser = optparse.OptionParser(usage)
16 parser.add_option("-c", action="store_true", default=False, help='Produce a context format diff (default)')
17 parser.add_option("-u", action="store_true", default=False, help='Produce a unified format diff')
Martin v. Löwise064b412004-08-29 16:34:40 +000018 parser.add_option("-m", action="store_true", default=False, help='Produce HTML side by side diff (can use -c and -l in conjunction)')
Andrew M. Kuchlinge236b382004-08-09 17:27:55 +000019 parser.add_option("-n", action="store_true", default=False, help='Produce a ndiff format diff')
20 parser.add_option("-l", "--lines", type="int", default=3, help='Set number of context lines (default 3)')
21 (options, args) = parser.parse_args()
Raymond Hettingera33d1772003-06-08 23:04:17 +000022
Andrew M. Kuchlinge236b382004-08-09 17:27:55 +000023 if len(args) == 0:
24 parser.print_help()
25 sys.exit(1)
26 if len(args) != 2:
27 parser.error("need to specify both a fromfile and tofile")
Raymond Hettingera33d1772003-06-08 23:04:17 +000028
Andrew M. Kuchlinge236b382004-08-09 17:27:55 +000029 n = options.lines
30 fromfile, tofile = args
Raymond Hettingera33d1772003-06-08 23:04:17 +000031
Andrew M. Kuchlinge236b382004-08-09 17:27:55 +000032 fromdate = time.ctime(os.stat(fromfile).st_mtime)
33 todate = time.ctime(os.stat(tofile).st_mtime)
Tim Peters130e37f2004-10-03 19:03:19 +000034 fromlines = open(fromfile, 'U').readlines()
35 tolines = open(tofile, 'U').readlines()
Raymond Hettingera33d1772003-06-08 23:04:17 +000036
Andrew M. Kuchlinge236b382004-08-09 17:27:55 +000037 if options.u:
38 diff = difflib.unified_diff(fromlines, tolines, fromfile, tofile, fromdate, todate, n=n)
39 elif options.n:
40 diff = difflib.ndiff(fromlines, tolines)
Martin v. Löwise064b412004-08-29 16:34:40 +000041 elif options.m:
42 diff = difflib.HtmlDiff().make_file(fromlines,tolines,fromfile,tofile,context=options.c,numlines=n)
Andrew M. Kuchlinge236b382004-08-09 17:27:55 +000043 else:
44 diff = difflib.context_diff(fromlines, tolines, fromfile, tofile, fromdate, todate, n=n)
45
46 sys.stdout.writelines(diff)
47
48if __name__ == '__main__':
49 main()