- Notifications
You must be signed in to change notification settings - Fork 31.8k
/
Copy pathndiff.py
executable file
·133 lines (108 loc) · 3.72 KB
/
ndiff.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
#! /usr/bin/env python
# Module ndiff version 1.7.0
# Released to the public domain 08-Dec-2000,
# by Tim Peters (tim.one@home.com).
# Provided as-is; use at your own risk; no warranty; no promises; enjoy!
# ndiff.py is now simply a front-end to the difflib.ndiff() function.
# Originally, it contained the difflib.SequenceMatcher class as well.
# This completes the raiding of reusable code from this formerly
# self-contained script.
"""ndiff [-q] file1 file2
or
ndiff (-r1 | -r2) < ndiff_output > file1_or_file2
Print a human-friendly file difference report to stdout. Both inter-
and intra-line differences are noted. In the second form, recreate file1
(-r1) or file2 (-r2) on stdout, from an ndiff report on stdin.
In the first form, if -q ("quiet") is not specified, the first two lines
of output are
-: file1
+: file2
Each remaining line begins with a two-letter code:
"- " line unique to file1
"+ " line unique to file2
" " line common to both files
"? " line not present in either input file
Lines beginning with "? " attempt to guide the eye to intraline
differences, and were not present in either input file. These lines can be
confusing if the source files contain tab characters.
The first file can be recovered by retaining only lines that begin with
" " or "- ", and deleting those 2-character prefixes; use ndiff with -r1.
The second file can be recovered similarly, but by retaining only " " and
"+ " lines; use ndiff with -r2; or, on Unix, the second file can be
recovered by piping the output through
sed -n '/^[+ ] /s/^..//p'
"""
__version__=1, 7, 0
importdifflib, sys
deffail(msg):
out=sys.stderr.write
out(msg+"\n\n")
out(__doc__)
return0
# open a file & return the file object; gripe and return 0 if it
# couldn't be opened
deffopen(fname):
try:
returnopen(fname, 'U')
exceptIOError, detail:
returnfail("couldn't open "+fname+": "+str(detail))
# open two files & spray the diff to stdout; return false iff a problem
deffcompare(f1name, f2name):
f1=fopen(f1name)
f2=fopen(f2name)
ifnotf1ornotf2:
return0
a=f1.readlines(); f1.close()
b=f2.readlines(); f2.close()
forlineindifflib.ndiff(a, b):
printline,
return1
# crack args (sys.argv[1:] is normal) & compare;
# return false iff a problem
defmain(args):
importgetopt
try:
opts, args=getopt.getopt(args, "qr:")
exceptgetopt.error, detail:
returnfail(str(detail))
noisy=1
qseen=rseen=0
foropt, valinopts:
ifopt=="-q":
qseen=1
noisy=0
elifopt=="-r":
rseen=1
whichfile=val
ifqseenandrseen:
returnfail("can't specify both -q and -r")
ifrseen:
ifargs:
returnfail("no args allowed with -r option")
ifwhichfilein ("1", "2"):
restore(whichfile)
return1
returnfail("-r value must be 1 or 2")
iflen(args) !=2:
returnfail("need 2 filename args")
f1name, f2name=args
ifnoisy:
print'-:', f1name
print'+:', f2name
returnfcompare(f1name, f2name)
# read ndiff output from stdin, and print file1 (which=='1') or
# file2 (which=='2') to stdout
defrestore(which):
restored=difflib.restore(sys.stdin.readlines(), which)
sys.stdout.writelines(restored)
if__name__=='__main__':
args=sys.argv[1:]
if"-profile"inargs:
importprofile, pstats
args.remove("-profile")
statf="ndiff.pro"
profile.run("main(args)", statf)
stats=pstats.Stats(statf)
stats.strip_dirs().sort_stats('time').print_stats()
else:
main(args)