1
# (C) 2005 Matt Mackall
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
import difflib, sys, struct
28
n = a.find("\n", n) + 1
33
(al, ap) = linesplit(a)
34
(bl, bp) = linesplit(b)
36
d = difflib.SequenceMatcher(None, al, bl)
38
for o, m, n, s, t in d.get_opcodes():
39
if o == 'equal': continue
40
ops.append((ap[m], ap[n], "".join(bl[s:t])))
47
b += struct.pack(">lll", f[0], f[1], len(f[2])) + f[2]
51
return tobinary(diff(a, b))
57
for p1, p2, sub in ops:
69
m, n, l = struct.unpack(">lll", p)
70
ops.append((m, n, b[12:12 + l]))
76
return patch(t, frombinary(b))