##// END OF EJS Templates
patch: include file name in binary patch error messages...
Patrick Mezard -
r16523:72706841 stable
parent child Browse files
Show More
@@ -1,1883 +1,1885 b''
1 1 # patch.py - patch file parsing routines
2 2 #
3 3 # Copyright 2006 Brendan Cully <brendan@kublai.com>
4 4 # Copyright 2007 Chris Mason <chris.mason@oracle.com>
5 5 #
6 6 # This software may be used and distributed according to the terms of the
7 7 # GNU General Public License version 2 or any later version.
8 8
9 9 import cStringIO, email.Parser, os, errno, re
10 10 import tempfile, zlib, shutil
11 11
12 12 from i18n import _
13 13 from node import hex, nullid, short
14 14 import base85, mdiff, scmutil, util, diffhelpers, copies, encoding, error
15 15 import context
16 16
17 17 gitre = re.compile('diff --git a/(.*) b/(.*)')
18 18
19 19 class PatchError(Exception):
20 20 pass
21 21
22 22
23 23 # public functions
24 24
25 25 def split(stream):
26 26 '''return an iterator of individual patches from a stream'''
27 27 def isheader(line, inheader):
28 28 if inheader and line[0] in (' ', '\t'):
29 29 # continuation
30 30 return True
31 31 if line[0] in (' ', '-', '+'):
32 32 # diff line - don't check for header pattern in there
33 33 return False
34 34 l = line.split(': ', 1)
35 35 return len(l) == 2 and ' ' not in l[0]
36 36
37 37 def chunk(lines):
38 38 return cStringIO.StringIO(''.join(lines))
39 39
40 40 def hgsplit(stream, cur):
41 41 inheader = True
42 42
43 43 for line in stream:
44 44 if not line.strip():
45 45 inheader = False
46 46 if not inheader and line.startswith('# HG changeset patch'):
47 47 yield chunk(cur)
48 48 cur = []
49 49 inheader = True
50 50
51 51 cur.append(line)
52 52
53 53 if cur:
54 54 yield chunk(cur)
55 55
56 56 def mboxsplit(stream, cur):
57 57 for line in stream:
58 58 if line.startswith('From '):
59 59 for c in split(chunk(cur[1:])):
60 60 yield c
61 61 cur = []
62 62
63 63 cur.append(line)
64 64
65 65 if cur:
66 66 for c in split(chunk(cur[1:])):
67 67 yield c
68 68
69 69 def mimesplit(stream, cur):
70 70 def msgfp(m):
71 71 fp = cStringIO.StringIO()
72 72 g = email.Generator.Generator(fp, mangle_from_=False)
73 73 g.flatten(m)
74 74 fp.seek(0)
75 75 return fp
76 76
77 77 for line in stream:
78 78 cur.append(line)
79 79 c = chunk(cur)
80 80
81 81 m = email.Parser.Parser().parse(c)
82 82 if not m.is_multipart():
83 83 yield msgfp(m)
84 84 else:
85 85 ok_types = ('text/plain', 'text/x-diff', 'text/x-patch')
86 86 for part in m.walk():
87 87 ct = part.get_content_type()
88 88 if ct not in ok_types:
89 89 continue
90 90 yield msgfp(part)
91 91
92 92 def headersplit(stream, cur):
93 93 inheader = False
94 94
95 95 for line in stream:
96 96 if not inheader and isheader(line, inheader):
97 97 yield chunk(cur)
98 98 cur = []
99 99 inheader = True
100 100 if inheader and not isheader(line, inheader):
101 101 inheader = False
102 102
103 103 cur.append(line)
104 104
105 105 if cur:
106 106 yield chunk(cur)
107 107
108 108 def remainder(cur):
109 109 yield chunk(cur)
110 110
111 111 class fiter(object):
112 112 def __init__(self, fp):
113 113 self.fp = fp
114 114
115 115 def __iter__(self):
116 116 return self
117 117
118 118 def next(self):
119 119 l = self.fp.readline()
120 120 if not l:
121 121 raise StopIteration
122 122 return l
123 123
124 124 inheader = False
125 125 cur = []
126 126
127 127 mimeheaders = ['content-type']
128 128
129 129 if not util.safehasattr(stream, 'next'):
130 130 # http responses, for example, have readline but not next
131 131 stream = fiter(stream)
132 132
133 133 for line in stream:
134 134 cur.append(line)
135 135 if line.startswith('# HG changeset patch'):
136 136 return hgsplit(stream, cur)
137 137 elif line.startswith('From '):
138 138 return mboxsplit(stream, cur)
139 139 elif isheader(line, inheader):
140 140 inheader = True
141 141 if line.split(':', 1)[0].lower() in mimeheaders:
142 142 # let email parser handle this
143 143 return mimesplit(stream, cur)
144 144 elif line.startswith('--- ') and inheader:
145 145 # No evil headers seen by diff start, split by hand
146 146 return headersplit(stream, cur)
147 147 # Not enough info, keep reading
148 148
149 149 # if we are here, we have a very plain patch
150 150 return remainder(cur)
151 151
152 152 def extract(ui, fileobj):
153 153 '''extract patch from data read from fileobj.
154 154
155 155 patch can be a normal patch or contained in an email message.
156 156
157 157 return tuple (filename, message, user, date, branch, node, p1, p2).
158 158 Any item in the returned tuple can be None. If filename is None,
159 159 fileobj did not contain a patch. Caller must unlink filename when done.'''
160 160
161 161 # attempt to detect the start of a patch
162 162 # (this heuristic is borrowed from quilt)
163 163 diffre = re.compile(r'^(?:Index:[ \t]|diff[ \t]|RCS file: |'
164 164 r'retrieving revision [0-9]+(\.[0-9]+)*$|'
165 165 r'---[ \t].*?^\+\+\+[ \t]|'
166 166 r'\*\*\*[ \t].*?^---[ \t])', re.MULTILINE|re.DOTALL)
167 167
168 168 fd, tmpname = tempfile.mkstemp(prefix='hg-patch-')
169 169 tmpfp = os.fdopen(fd, 'w')
170 170 try:
171 171 msg = email.Parser.Parser().parse(fileobj)
172 172
173 173 subject = msg['Subject']
174 174 user = msg['From']
175 175 if not subject and not user:
176 176 # Not an email, restore parsed headers if any
177 177 subject = '\n'.join(': '.join(h) for h in msg.items()) + '\n'
178 178
179 179 gitsendmail = 'git-send-email' in msg.get('X-Mailer', '')
180 180 # should try to parse msg['Date']
181 181 date = None
182 182 nodeid = None
183 183 branch = None
184 184 parents = []
185 185
186 186 if subject:
187 187 if subject.startswith('[PATCH'):
188 188 pend = subject.find(']')
189 189 if pend >= 0:
190 190 subject = subject[pend + 1:].lstrip()
191 191 subject = re.sub(r'\n[ \t]+', ' ', subject)
192 192 ui.debug('Subject: %s\n' % subject)
193 193 if user:
194 194 ui.debug('From: %s\n' % user)
195 195 diffs_seen = 0
196 196 ok_types = ('text/plain', 'text/x-diff', 'text/x-patch')
197 197 message = ''
198 198 for part in msg.walk():
199 199 content_type = part.get_content_type()
200 200 ui.debug('Content-Type: %s\n' % content_type)
201 201 if content_type not in ok_types:
202 202 continue
203 203 payload = part.get_payload(decode=True)
204 204 m = diffre.search(payload)
205 205 if m:
206 206 hgpatch = False
207 207 hgpatchheader = False
208 208 ignoretext = False
209 209
210 210 ui.debug('found patch at byte %d\n' % m.start(0))
211 211 diffs_seen += 1
212 212 cfp = cStringIO.StringIO()
213 213 for line in payload[:m.start(0)].splitlines():
214 214 if line.startswith('# HG changeset patch') and not hgpatch:
215 215 ui.debug('patch generated by hg export\n')
216 216 hgpatch = True
217 217 hgpatchheader = True
218 218 # drop earlier commit message content
219 219 cfp.seek(0)
220 220 cfp.truncate()
221 221 subject = None
222 222 elif hgpatchheader:
223 223 if line.startswith('# User '):
224 224 user = line[7:]
225 225 ui.debug('From: %s\n' % user)
226 226 elif line.startswith("# Date "):
227 227 date = line[7:]
228 228 elif line.startswith("# Branch "):
229 229 branch = line[9:]
230 230 elif line.startswith("# Node ID "):
231 231 nodeid = line[10:]
232 232 elif line.startswith("# Parent "):
233 233 parents.append(line[9:].lstrip())
234 234 elif not line.startswith("# "):
235 235 hgpatchheader = False
236 236 elif line == '---' and gitsendmail:
237 237 ignoretext = True
238 238 if not hgpatchheader and not ignoretext:
239 239 cfp.write(line)
240 240 cfp.write('\n')
241 241 message = cfp.getvalue()
242 242 if tmpfp:
243 243 tmpfp.write(payload)
244 244 if not payload.endswith('\n'):
245 245 tmpfp.write('\n')
246 246 elif not diffs_seen and message and content_type == 'text/plain':
247 247 message += '\n' + payload
248 248 except:
249 249 tmpfp.close()
250 250 os.unlink(tmpname)
251 251 raise
252 252
253 253 if subject and not message.startswith(subject):
254 254 message = '%s\n%s' % (subject, message)
255 255 tmpfp.close()
256 256 if not diffs_seen:
257 257 os.unlink(tmpname)
258 258 return None, message, user, date, branch, None, None, None
259 259 p1 = parents and parents.pop(0) or None
260 260 p2 = parents and parents.pop(0) or None
261 261 return tmpname, message, user, date, branch, nodeid, p1, p2
262 262
263 263 class patchmeta(object):
264 264 """Patched file metadata
265 265
266 266 'op' is the performed operation within ADD, DELETE, RENAME, MODIFY
267 267 or COPY. 'path' is patched file path. 'oldpath' is set to the
268 268 origin file when 'op' is either COPY or RENAME, None otherwise. If
269 269 file mode is changed, 'mode' is a tuple (islink, isexec) where
270 270 'islink' is True if the file is a symlink and 'isexec' is True if
271 271 the file is executable. Otherwise, 'mode' is None.
272 272 """
273 273 def __init__(self, path):
274 274 self.path = path
275 275 self.oldpath = None
276 276 self.mode = None
277 277 self.op = 'MODIFY'
278 278 self.binary = False
279 279
280 280 def setmode(self, mode):
281 281 islink = mode & 020000
282 282 isexec = mode & 0100
283 283 self.mode = (islink, isexec)
284 284
285 285 def copy(self):
286 286 other = patchmeta(self.path)
287 287 other.oldpath = self.oldpath
288 288 other.mode = self.mode
289 289 other.op = self.op
290 290 other.binary = self.binary
291 291 return other
292 292
293 293 def _ispatchinga(self, afile):
294 294 if afile == '/dev/null':
295 295 return self.op == 'ADD'
296 296 return afile == 'a/' + (self.oldpath or self.path)
297 297
298 298 def _ispatchingb(self, bfile):
299 299 if bfile == '/dev/null':
300 300 return self.op == 'DELETE'
301 301 return bfile == 'b/' + self.path
302 302
303 303 def ispatching(self, afile, bfile):
304 304 return self._ispatchinga(afile) and self._ispatchingb(bfile)
305 305
306 306 def __repr__(self):
307 307 return "<patchmeta %s %r>" % (self.op, self.path)
308 308
309 309 def readgitpatch(lr):
310 310 """extract git-style metadata about patches from <patchname>"""
311 311
312 312 # Filter patch for git information
313 313 gp = None
314 314 gitpatches = []
315 315 for line in lr:
316 316 line = line.rstrip(' \r\n')
317 317 if line.startswith('diff --git'):
318 318 m = gitre.match(line)
319 319 if m:
320 320 if gp:
321 321 gitpatches.append(gp)
322 322 dst = m.group(2)
323 323 gp = patchmeta(dst)
324 324 elif gp:
325 325 if line.startswith('--- '):
326 326 gitpatches.append(gp)
327 327 gp = None
328 328 continue
329 329 if line.startswith('rename from '):
330 330 gp.op = 'RENAME'
331 331 gp.oldpath = line[12:]
332 332 elif line.startswith('rename to '):
333 333 gp.path = line[10:]
334 334 elif line.startswith('copy from '):
335 335 gp.op = 'COPY'
336 336 gp.oldpath = line[10:]
337 337 elif line.startswith('copy to '):
338 338 gp.path = line[8:]
339 339 elif line.startswith('deleted file'):
340 340 gp.op = 'DELETE'
341 341 elif line.startswith('new file mode '):
342 342 gp.op = 'ADD'
343 343 gp.setmode(int(line[-6:], 8))
344 344 elif line.startswith('new mode '):
345 345 gp.setmode(int(line[-6:], 8))
346 346 elif line.startswith('GIT binary patch'):
347 347 gp.binary = True
348 348 if gp:
349 349 gitpatches.append(gp)
350 350
351 351 return gitpatches
352 352
353 353 class linereader(object):
354 354 # simple class to allow pushing lines back into the input stream
355 355 def __init__(self, fp):
356 356 self.fp = fp
357 357 self.buf = []
358 358
359 359 def push(self, line):
360 360 if line is not None:
361 361 self.buf.append(line)
362 362
363 363 def readline(self):
364 364 if self.buf:
365 365 l = self.buf[0]
366 366 del self.buf[0]
367 367 return l
368 368 return self.fp.readline()
369 369
370 370 def __iter__(self):
371 371 while True:
372 372 l = self.readline()
373 373 if not l:
374 374 break
375 375 yield l
376 376
377 377 class abstractbackend(object):
378 378 def __init__(self, ui):
379 379 self.ui = ui
380 380
381 381 def getfile(self, fname):
382 382 """Return target file data and flags as a (data, (islink,
383 383 isexec)) tuple.
384 384 """
385 385 raise NotImplementedError
386 386
387 387 def setfile(self, fname, data, mode, copysource):
388 388 """Write data to target file fname and set its mode. mode is a
389 389 (islink, isexec) tuple. If data is None, the file content should
390 390 be left unchanged. If the file is modified after being copied,
391 391 copysource is set to the original file name.
392 392 """
393 393 raise NotImplementedError
394 394
395 395 def unlink(self, fname):
396 396 """Unlink target file."""
397 397 raise NotImplementedError
398 398
399 399 def writerej(self, fname, failed, total, lines):
400 400 """Write rejected lines for fname. total is the number of hunks
401 401 which failed to apply and total the total number of hunks for this
402 402 files.
403 403 """
404 404 pass
405 405
406 406 def exists(self, fname):
407 407 raise NotImplementedError
408 408
409 409 class fsbackend(abstractbackend):
410 410 def __init__(self, ui, basedir):
411 411 super(fsbackend, self).__init__(ui)
412 412 self.opener = scmutil.opener(basedir)
413 413
414 414 def _join(self, f):
415 415 return os.path.join(self.opener.base, f)
416 416
417 417 def getfile(self, fname):
418 418 path = self._join(fname)
419 419 if os.path.islink(path):
420 420 return (os.readlink(path), (True, False))
421 421 isexec = False
422 422 try:
423 423 isexec = os.lstat(path).st_mode & 0100 != 0
424 424 except OSError, e:
425 425 if e.errno != errno.ENOENT:
426 426 raise
427 427 return (self.opener.read(fname), (False, isexec))
428 428
429 429 def setfile(self, fname, data, mode, copysource):
430 430 islink, isexec = mode
431 431 if data is None:
432 432 util.setflags(self._join(fname), islink, isexec)
433 433 return
434 434 if islink:
435 435 self.opener.symlink(data, fname)
436 436 else:
437 437 self.opener.write(fname, data)
438 438 if isexec:
439 439 util.setflags(self._join(fname), False, True)
440 440
441 441 def unlink(self, fname):
442 442 try:
443 443 util.unlinkpath(self._join(fname))
444 444 except OSError, inst:
445 445 if inst.errno != errno.ENOENT:
446 446 raise
447 447
448 448 def writerej(self, fname, failed, total, lines):
449 449 fname = fname + ".rej"
450 450 self.ui.warn(
451 451 _("%d out of %d hunks FAILED -- saving rejects to file %s\n") %
452 452 (failed, total, fname))
453 453 fp = self.opener(fname, 'w')
454 454 fp.writelines(lines)
455 455 fp.close()
456 456
457 457 def exists(self, fname):
458 458 return os.path.lexists(self._join(fname))
459 459
460 460 class workingbackend(fsbackend):
461 461 def __init__(self, ui, repo, similarity):
462 462 super(workingbackend, self).__init__(ui, repo.root)
463 463 self.repo = repo
464 464 self.similarity = similarity
465 465 self.removed = set()
466 466 self.changed = set()
467 467 self.copied = []
468 468
469 469 def _checkknown(self, fname):
470 470 if self.repo.dirstate[fname] == '?' and self.exists(fname):
471 471 raise PatchError(_('cannot patch %s: file is not tracked') % fname)
472 472
473 473 def setfile(self, fname, data, mode, copysource):
474 474 self._checkknown(fname)
475 475 super(workingbackend, self).setfile(fname, data, mode, copysource)
476 476 if copysource is not None:
477 477 self.copied.append((copysource, fname))
478 478 self.changed.add(fname)
479 479
480 480 def unlink(self, fname):
481 481 self._checkknown(fname)
482 482 super(workingbackend, self).unlink(fname)
483 483 self.removed.add(fname)
484 484 self.changed.add(fname)
485 485
486 486 def close(self):
487 487 wctx = self.repo[None]
488 488 addremoved = set(self.changed)
489 489 for src, dst in self.copied:
490 490 scmutil.dirstatecopy(self.ui, self.repo, wctx, src, dst)
491 491 if self.removed:
492 492 wctx.forget(sorted(self.removed))
493 493 for f in self.removed:
494 494 if f not in self.repo.dirstate:
495 495 # File was deleted and no longer belongs to the
496 496 # dirstate, it was probably marked added then
497 497 # deleted, and should not be considered by
498 498 # addremove().
499 499 addremoved.discard(f)
500 500 if addremoved:
501 501 cwd = self.repo.getcwd()
502 502 if cwd:
503 503 addremoved = [util.pathto(self.repo.root, cwd, f)
504 504 for f in addremoved]
505 505 scmutil.addremove(self.repo, addremoved, similarity=self.similarity)
506 506 return sorted(self.changed)
507 507
508 508 class filestore(object):
509 509 def __init__(self, maxsize=None):
510 510 self.opener = None
511 511 self.files = {}
512 512 self.created = 0
513 513 self.maxsize = maxsize
514 514 if self.maxsize is None:
515 515 self.maxsize = 4*(2**20)
516 516 self.size = 0
517 517 self.data = {}
518 518
519 519 def setfile(self, fname, data, mode, copied=None):
520 520 if self.maxsize < 0 or (len(data) + self.size) <= self.maxsize:
521 521 self.data[fname] = (data, mode, copied)
522 522 self.size += len(data)
523 523 else:
524 524 if self.opener is None:
525 525 root = tempfile.mkdtemp(prefix='hg-patch-')
526 526 self.opener = scmutil.opener(root)
527 527 # Avoid filename issues with these simple names
528 528 fn = str(self.created)
529 529 self.opener.write(fn, data)
530 530 self.created += 1
531 531 self.files[fname] = (fn, mode, copied)
532 532
533 533 def getfile(self, fname):
534 534 if fname in self.data:
535 535 return self.data[fname]
536 536 if not self.opener or fname not in self.files:
537 537 raise IOError()
538 538 fn, mode, copied = self.files[fname]
539 539 return self.opener.read(fn), mode, copied
540 540
541 541 def close(self):
542 542 if self.opener:
543 543 shutil.rmtree(self.opener.base)
544 544
545 545 class repobackend(abstractbackend):
546 546 def __init__(self, ui, repo, ctx, store):
547 547 super(repobackend, self).__init__(ui)
548 548 self.repo = repo
549 549 self.ctx = ctx
550 550 self.store = store
551 551 self.changed = set()
552 552 self.removed = set()
553 553 self.copied = {}
554 554
555 555 def _checkknown(self, fname):
556 556 if fname not in self.ctx:
557 557 raise PatchError(_('cannot patch %s: file is not tracked') % fname)
558 558
559 559 def getfile(self, fname):
560 560 try:
561 561 fctx = self.ctx[fname]
562 562 except error.LookupError:
563 563 raise IOError()
564 564 flags = fctx.flags()
565 565 return fctx.data(), ('l' in flags, 'x' in flags)
566 566
567 567 def setfile(self, fname, data, mode, copysource):
568 568 if copysource:
569 569 self._checkknown(copysource)
570 570 if data is None:
571 571 data = self.ctx[fname].data()
572 572 self.store.setfile(fname, data, mode, copysource)
573 573 self.changed.add(fname)
574 574 if copysource:
575 575 self.copied[fname] = copysource
576 576
577 577 def unlink(self, fname):
578 578 self._checkknown(fname)
579 579 self.removed.add(fname)
580 580
581 581 def exists(self, fname):
582 582 return fname in self.ctx
583 583
584 584 def close(self):
585 585 return self.changed | self.removed
586 586
587 587 # @@ -start,len +start,len @@ or @@ -start +start @@ if len is 1
588 588 unidesc = re.compile('@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@')
589 589 contextdesc = re.compile('(?:---|\*\*\*) (\d+)(?:,(\d+))? (?:---|\*\*\*)')
590 590 eolmodes = ['strict', 'crlf', 'lf', 'auto']
591 591
592 592 class patchfile(object):
593 593 def __init__(self, ui, gp, backend, store, eolmode='strict'):
594 594 self.fname = gp.path
595 595 self.eolmode = eolmode
596 596 self.eol = None
597 597 self.backend = backend
598 598 self.ui = ui
599 599 self.lines = []
600 600 self.exists = False
601 601 self.missing = True
602 602 self.mode = gp.mode
603 603 self.copysource = gp.oldpath
604 604 self.create = gp.op in ('ADD', 'COPY', 'RENAME')
605 605 self.remove = gp.op == 'DELETE'
606 606 try:
607 607 if self.copysource is None:
608 608 data, mode = backend.getfile(self.fname)
609 609 self.exists = True
610 610 else:
611 611 data, mode = store.getfile(self.copysource)[:2]
612 612 self.exists = backend.exists(self.fname)
613 613 self.missing = False
614 614 if data:
615 615 self.lines = mdiff.splitnewlines(data)
616 616 if self.mode is None:
617 617 self.mode = mode
618 618 if self.lines:
619 619 # Normalize line endings
620 620 if self.lines[0].endswith('\r\n'):
621 621 self.eol = '\r\n'
622 622 elif self.lines[0].endswith('\n'):
623 623 self.eol = '\n'
624 624 if eolmode != 'strict':
625 625 nlines = []
626 626 for l in self.lines:
627 627 if l.endswith('\r\n'):
628 628 l = l[:-2] + '\n'
629 629 nlines.append(l)
630 630 self.lines = nlines
631 631 except IOError:
632 632 if self.create:
633 633 self.missing = False
634 634 if self.mode is None:
635 635 self.mode = (False, False)
636 636 if self.missing:
637 637 self.ui.warn(_("unable to find '%s' for patching\n") % self.fname)
638 638
639 639 self.hash = {}
640 640 self.dirty = 0
641 641 self.offset = 0
642 642 self.skew = 0
643 643 self.rej = []
644 644 self.fileprinted = False
645 645 self.printfile(False)
646 646 self.hunks = 0
647 647
648 648 def writelines(self, fname, lines, mode):
649 649 if self.eolmode == 'auto':
650 650 eol = self.eol
651 651 elif self.eolmode == 'crlf':
652 652 eol = '\r\n'
653 653 else:
654 654 eol = '\n'
655 655
656 656 if self.eolmode != 'strict' and eol and eol != '\n':
657 657 rawlines = []
658 658 for l in lines:
659 659 if l and l[-1] == '\n':
660 660 l = l[:-1] + eol
661 661 rawlines.append(l)
662 662 lines = rawlines
663 663
664 664 self.backend.setfile(fname, ''.join(lines), mode, self.copysource)
665 665
666 666 def printfile(self, warn):
667 667 if self.fileprinted:
668 668 return
669 669 if warn or self.ui.verbose:
670 670 self.fileprinted = True
671 671 s = _("patching file %s\n") % self.fname
672 672 if warn:
673 673 self.ui.warn(s)
674 674 else:
675 675 self.ui.note(s)
676 676
677 677
678 678 def findlines(self, l, linenum):
679 679 # looks through the hash and finds candidate lines. The
680 680 # result is a list of line numbers sorted based on distance
681 681 # from linenum
682 682
683 683 cand = self.hash.get(l, [])
684 684 if len(cand) > 1:
685 685 # resort our list of potentials forward then back.
686 686 cand.sort(key=lambda x: abs(x - linenum))
687 687 return cand
688 688
689 689 def write_rej(self):
690 690 # our rejects are a little different from patch(1). This always
691 691 # creates rejects in the same form as the original patch. A file
692 692 # header is inserted so that you can run the reject through patch again
693 693 # without having to type the filename.
694 694 if not self.rej:
695 695 return
696 696 base = os.path.basename(self.fname)
697 697 lines = ["--- %s\n+++ %s\n" % (base, base)]
698 698 for x in self.rej:
699 699 for l in x.hunk:
700 700 lines.append(l)
701 701 if l[-1] != '\n':
702 702 lines.append("\n\ No newline at end of file\n")
703 703 self.backend.writerej(self.fname, len(self.rej), self.hunks, lines)
704 704
705 705 def apply(self, h):
706 706 if not h.complete():
707 707 raise PatchError(_("bad hunk #%d %s (%d %d %d %d)") %
708 708 (h.number, h.desc, len(h.a), h.lena, len(h.b),
709 709 h.lenb))
710 710
711 711 self.hunks += 1
712 712
713 713 if self.missing:
714 714 self.rej.append(h)
715 715 return -1
716 716
717 717 if self.exists and self.create:
718 718 if self.copysource:
719 719 self.ui.warn(_("cannot create %s: destination already "
720 720 "exists\n" % self.fname))
721 721 else:
722 722 self.ui.warn(_("file %s already exists\n") % self.fname)
723 723 self.rej.append(h)
724 724 return -1
725 725
726 726 if isinstance(h, binhunk):
727 727 if self.remove:
728 728 self.backend.unlink(self.fname)
729 729 else:
730 730 self.lines[:] = h.new()
731 731 self.offset += len(h.new())
732 732 self.dirty = True
733 733 return 0
734 734
735 735 horig = h
736 736 if (self.eolmode in ('crlf', 'lf')
737 737 or self.eolmode == 'auto' and self.eol):
738 738 # If new eols are going to be normalized, then normalize
739 739 # hunk data before patching. Otherwise, preserve input
740 740 # line-endings.
741 741 h = h.getnormalized()
742 742
743 743 # fast case first, no offsets, no fuzz
744 744 old, oldstart, new, newstart = h.fuzzit(0, False)
745 745 oldstart += self.offset
746 746 orig_start = oldstart
747 747 # if there's skew we want to emit the "(offset %d lines)" even
748 748 # when the hunk cleanly applies at start + skew, so skip the
749 749 # fast case code
750 750 if (self.skew == 0 and
751 751 diffhelpers.testhunk(old, self.lines, oldstart) == 0):
752 752 if self.remove:
753 753 self.backend.unlink(self.fname)
754 754 else:
755 755 self.lines[oldstart:oldstart + len(old)] = new
756 756 self.offset += len(new) - len(old)
757 757 self.dirty = True
758 758 return 0
759 759
760 760 # ok, we couldn't match the hunk. Lets look for offsets and fuzz it
761 761 self.hash = {}
762 762 for x, s in enumerate(self.lines):
763 763 self.hash.setdefault(s, []).append(x)
764 764
765 765 for fuzzlen in xrange(3):
766 766 for toponly in [True, False]:
767 767 old, oldstart, new, newstart = h.fuzzit(fuzzlen, toponly)
768 768 oldstart = oldstart + self.offset + self.skew
769 769 oldstart = min(oldstart, len(self.lines))
770 770 if old:
771 771 cand = self.findlines(old[0][1:], oldstart)
772 772 else:
773 773 # Only adding lines with no or fuzzed context, just
774 774 # take the skew in account
775 775 cand = [oldstart]
776 776
777 777 for l in cand:
778 778 if not old or diffhelpers.testhunk(old, self.lines, l) == 0:
779 779 self.lines[l : l + len(old)] = new
780 780 self.offset += len(new) - len(old)
781 781 self.skew = l - orig_start
782 782 self.dirty = True
783 783 offset = l - orig_start - fuzzlen
784 784 if fuzzlen:
785 785 msg = _("Hunk #%d succeeded at %d "
786 786 "with fuzz %d "
787 787 "(offset %d lines).\n")
788 788 self.printfile(True)
789 789 self.ui.warn(msg %
790 790 (h.number, l + 1, fuzzlen, offset))
791 791 else:
792 792 msg = _("Hunk #%d succeeded at %d "
793 793 "(offset %d lines).\n")
794 794 self.ui.note(msg % (h.number, l + 1, offset))
795 795 return fuzzlen
796 796 self.printfile(True)
797 797 self.ui.warn(_("Hunk #%d FAILED at %d\n") % (h.number, orig_start))
798 798 self.rej.append(horig)
799 799 return -1
800 800
801 801 def close(self):
802 802 if self.dirty:
803 803 self.writelines(self.fname, self.lines, self.mode)
804 804 self.write_rej()
805 805 return len(self.rej)
806 806
807 807 class hunk(object):
808 808 def __init__(self, desc, num, lr, context):
809 809 self.number = num
810 810 self.desc = desc
811 811 self.hunk = [desc]
812 812 self.a = []
813 813 self.b = []
814 814 self.starta = self.lena = None
815 815 self.startb = self.lenb = None
816 816 if lr is not None:
817 817 if context:
818 818 self.read_context_hunk(lr)
819 819 else:
820 820 self.read_unified_hunk(lr)
821 821
822 822 def getnormalized(self):
823 823 """Return a copy with line endings normalized to LF."""
824 824
825 825 def normalize(lines):
826 826 nlines = []
827 827 for line in lines:
828 828 if line.endswith('\r\n'):
829 829 line = line[:-2] + '\n'
830 830 nlines.append(line)
831 831 return nlines
832 832
833 833 # Dummy object, it is rebuilt manually
834 834 nh = hunk(self.desc, self.number, None, None)
835 835 nh.number = self.number
836 836 nh.desc = self.desc
837 837 nh.hunk = self.hunk
838 838 nh.a = normalize(self.a)
839 839 nh.b = normalize(self.b)
840 840 nh.starta = self.starta
841 841 nh.startb = self.startb
842 842 nh.lena = self.lena
843 843 nh.lenb = self.lenb
844 844 return nh
845 845
846 846 def read_unified_hunk(self, lr):
847 847 m = unidesc.match(self.desc)
848 848 if not m:
849 849 raise PatchError(_("bad hunk #%d") % self.number)
850 850 self.starta, self.lena, self.startb, self.lenb = m.groups()
851 851 if self.lena is None:
852 852 self.lena = 1
853 853 else:
854 854 self.lena = int(self.lena)
855 855 if self.lenb is None:
856 856 self.lenb = 1
857 857 else:
858 858 self.lenb = int(self.lenb)
859 859 self.starta = int(self.starta)
860 860 self.startb = int(self.startb)
861 861 diffhelpers.addlines(lr, self.hunk, self.lena, self.lenb, self.a, self.b)
862 862 # if we hit eof before finishing out the hunk, the last line will
863 863 # be zero length. Lets try to fix it up.
864 864 while len(self.hunk[-1]) == 0:
865 865 del self.hunk[-1]
866 866 del self.a[-1]
867 867 del self.b[-1]
868 868 self.lena -= 1
869 869 self.lenb -= 1
870 870 self._fixnewline(lr)
871 871
872 872 def read_context_hunk(self, lr):
873 873 self.desc = lr.readline()
874 874 m = contextdesc.match(self.desc)
875 875 if not m:
876 876 raise PatchError(_("bad hunk #%d") % self.number)
877 877 self.starta, aend = m.groups()
878 878 self.starta = int(self.starta)
879 879 if aend is None:
880 880 aend = self.starta
881 881 self.lena = int(aend) - self.starta
882 882 if self.starta:
883 883 self.lena += 1
884 884 for x in xrange(self.lena):
885 885 l = lr.readline()
886 886 if l.startswith('---'):
887 887 # lines addition, old block is empty
888 888 lr.push(l)
889 889 break
890 890 s = l[2:]
891 891 if l.startswith('- ') or l.startswith('! '):
892 892 u = '-' + s
893 893 elif l.startswith(' '):
894 894 u = ' ' + s
895 895 else:
896 896 raise PatchError(_("bad hunk #%d old text line %d") %
897 897 (self.number, x))
898 898 self.a.append(u)
899 899 self.hunk.append(u)
900 900
901 901 l = lr.readline()
902 902 if l.startswith('\ '):
903 903 s = self.a[-1][:-1]
904 904 self.a[-1] = s
905 905 self.hunk[-1] = s
906 906 l = lr.readline()
907 907 m = contextdesc.match(l)
908 908 if not m:
909 909 raise PatchError(_("bad hunk #%d") % self.number)
910 910 self.startb, bend = m.groups()
911 911 self.startb = int(self.startb)
912 912 if bend is None:
913 913 bend = self.startb
914 914 self.lenb = int(bend) - self.startb
915 915 if self.startb:
916 916 self.lenb += 1
917 917 hunki = 1
918 918 for x in xrange(self.lenb):
919 919 l = lr.readline()
920 920 if l.startswith('\ '):
921 921 # XXX: the only way to hit this is with an invalid line range.
922 922 # The no-eol marker is not counted in the line range, but I
923 923 # guess there are diff(1) out there which behave differently.
924 924 s = self.b[-1][:-1]
925 925 self.b[-1] = s
926 926 self.hunk[hunki - 1] = s
927 927 continue
928 928 if not l:
929 929 # line deletions, new block is empty and we hit EOF
930 930 lr.push(l)
931 931 break
932 932 s = l[2:]
933 933 if l.startswith('+ ') or l.startswith('! '):
934 934 u = '+' + s
935 935 elif l.startswith(' '):
936 936 u = ' ' + s
937 937 elif len(self.b) == 0:
938 938 # line deletions, new block is empty
939 939 lr.push(l)
940 940 break
941 941 else:
942 942 raise PatchError(_("bad hunk #%d old text line %d") %
943 943 (self.number, x))
944 944 self.b.append(s)
945 945 while True:
946 946 if hunki >= len(self.hunk):
947 947 h = ""
948 948 else:
949 949 h = self.hunk[hunki]
950 950 hunki += 1
951 951 if h == u:
952 952 break
953 953 elif h.startswith('-'):
954 954 continue
955 955 else:
956 956 self.hunk.insert(hunki - 1, u)
957 957 break
958 958
959 959 if not self.a:
960 960 # this happens when lines were only added to the hunk
961 961 for x in self.hunk:
962 962 if x.startswith('-') or x.startswith(' '):
963 963 self.a.append(x)
964 964 if not self.b:
965 965 # this happens when lines were only deleted from the hunk
966 966 for x in self.hunk:
967 967 if x.startswith('+') or x.startswith(' '):
968 968 self.b.append(x[1:])
969 969 # @@ -start,len +start,len @@
970 970 self.desc = "@@ -%d,%d +%d,%d @@\n" % (self.starta, self.lena,
971 971 self.startb, self.lenb)
972 972 self.hunk[0] = self.desc
973 973 self._fixnewline(lr)
974 974
975 975 def _fixnewline(self, lr):
976 976 l = lr.readline()
977 977 if l.startswith('\ '):
978 978 diffhelpers.fix_newline(self.hunk, self.a, self.b)
979 979 else:
980 980 lr.push(l)
981 981
982 982 def complete(self):
983 983 return len(self.a) == self.lena and len(self.b) == self.lenb
984 984
985 985 def _fuzzit(self, old, new, fuzz, toponly):
986 986 # this removes context lines from the top and bottom of list 'l'. It
987 987 # checks the hunk to make sure only context lines are removed, and then
988 988 # returns a new shortened list of lines.
989 989 fuzz = min(fuzz, len(old))
990 990 if fuzz:
991 991 top = 0
992 992 bot = 0
993 993 hlen = len(self.hunk)
994 994 for x in xrange(hlen - 1):
995 995 # the hunk starts with the @@ line, so use x+1
996 996 if self.hunk[x + 1][0] == ' ':
997 997 top += 1
998 998 else:
999 999 break
1000 1000 if not toponly:
1001 1001 for x in xrange(hlen - 1):
1002 1002 if self.hunk[hlen - bot - 1][0] == ' ':
1003 1003 bot += 1
1004 1004 else:
1005 1005 break
1006 1006
1007 1007 bot = min(fuzz, bot)
1008 1008 top = min(fuzz, top)
1009 1009 return old[top:len(old)-bot], new[top:len(new)-bot], top
1010 1010 return old, new, 0
1011 1011
1012 1012 def fuzzit(self, fuzz, toponly):
1013 1013 old, new, top = self._fuzzit(self.a, self.b, fuzz, toponly)
1014 1014 oldstart = self.starta + top
1015 1015 newstart = self.startb + top
1016 1016 # zero length hunk ranges already have their start decremented
1017 1017 if self.lena:
1018 1018 oldstart -= 1
1019 1019 if self.lenb:
1020 1020 newstart -= 1
1021 1021 return old, oldstart, new, newstart
1022 1022
1023 1023 class binhunk(object):
1024 1024 'A binary patch file. Only understands literals so far.'
1025 def __init__(self, lr):
1025 def __init__(self, lr, fname):
1026 1026 self.text = None
1027 1027 self.hunk = ['GIT binary patch\n']
1028 self._fname = fname
1028 1029 self._read(lr)
1029 1030
1030 1031 def complete(self):
1031 1032 return self.text is not None
1032 1033
1033 1034 def new(self):
1034 1035 return [self.text]
1035 1036
1036 1037 def _read(self, lr):
1037 1038 line = lr.readline()
1038 1039 self.hunk.append(line)
1039 1040 while line and not line.startswith('literal '):
1040 1041 line = lr.readline()
1041 1042 self.hunk.append(line)
1042 1043 if not line:
1043 raise PatchError(_('could not extract binary patch'))
1044 raise PatchError(_('could not extract "%s" binary data')
1045 % self._fname)
1044 1046 size = int(line[8:].rstrip())
1045 1047 dec = []
1046 1048 line = lr.readline()
1047 1049 self.hunk.append(line)
1048 1050 while len(line) > 1:
1049 1051 l = line[0]
1050 1052 if l <= 'Z' and l >= 'A':
1051 1053 l = ord(l) - ord('A') + 1
1052 1054 else:
1053 1055 l = ord(l) - ord('a') + 27
1054 1056 try:
1055 1057 dec.append(base85.b85decode(line[1:-1])[:l])
1056 1058 except ValueError, e:
1057 raise PatchError(_('could not decode binary patch: %s')
1058 % str(e))
1059 raise PatchError(_('could not decode "%s" binary patch: %s')
1060 % (self._fname, str(e)))
1059 1061 line = lr.readline()
1060 1062 self.hunk.append(line)
1061 1063 text = zlib.decompress(''.join(dec))
1062 1064 if len(text) != size:
1063 raise PatchError(_('binary patch is %d bytes, not %d') %
1064 len(text), size)
1065 raise PatchError(_('"%s" length is %d bytes, should be %d')
1066 % (self._fname, len(text), size))
1065 1067 self.text = text
1066 1068
1067 1069 def parsefilename(str):
1068 1070 # --- filename \t|space stuff
1069 1071 s = str[4:].rstrip('\r\n')
1070 1072 i = s.find('\t')
1071 1073 if i < 0:
1072 1074 i = s.find(' ')
1073 1075 if i < 0:
1074 1076 return s
1075 1077 return s[:i]
1076 1078
1077 1079 def pathstrip(path, strip):
1078 1080 pathlen = len(path)
1079 1081 i = 0
1080 1082 if strip == 0:
1081 1083 return '', path.rstrip()
1082 1084 count = strip
1083 1085 while count > 0:
1084 1086 i = path.find('/', i)
1085 1087 if i == -1:
1086 1088 raise PatchError(_("unable to strip away %d of %d dirs from %s") %
1087 1089 (count, strip, path))
1088 1090 i += 1
1089 1091 # consume '//' in the path
1090 1092 while i < pathlen - 1 and path[i] == '/':
1091 1093 i += 1
1092 1094 count -= 1
1093 1095 return path[:i].lstrip(), path[i:].rstrip()
1094 1096
1095 1097 def makepatchmeta(backend, afile_orig, bfile_orig, hunk, strip):
1096 1098 nulla = afile_orig == "/dev/null"
1097 1099 nullb = bfile_orig == "/dev/null"
1098 1100 create = nulla and hunk.starta == 0 and hunk.lena == 0
1099 1101 remove = nullb and hunk.startb == 0 and hunk.lenb == 0
1100 1102 abase, afile = pathstrip(afile_orig, strip)
1101 1103 gooda = not nulla and backend.exists(afile)
1102 1104 bbase, bfile = pathstrip(bfile_orig, strip)
1103 1105 if afile == bfile:
1104 1106 goodb = gooda
1105 1107 else:
1106 1108 goodb = not nullb and backend.exists(bfile)
1107 1109 missing = not goodb and not gooda and not create
1108 1110
1109 1111 # some diff programs apparently produce patches where the afile is
1110 1112 # not /dev/null, but afile starts with bfile
1111 1113 abasedir = afile[:afile.rfind('/') + 1]
1112 1114 bbasedir = bfile[:bfile.rfind('/') + 1]
1113 1115 if (missing and abasedir == bbasedir and afile.startswith(bfile)
1114 1116 and hunk.starta == 0 and hunk.lena == 0):
1115 1117 create = True
1116 1118 missing = False
1117 1119
1118 1120 # If afile is "a/b/foo" and bfile is "a/b/foo.orig" we assume the
1119 1121 # diff is between a file and its backup. In this case, the original
1120 1122 # file should be patched (see original mpatch code).
1121 1123 isbackup = (abase == bbase and bfile.startswith(afile))
1122 1124 fname = None
1123 1125 if not missing:
1124 1126 if gooda and goodb:
1125 1127 fname = isbackup and afile or bfile
1126 1128 elif gooda:
1127 1129 fname = afile
1128 1130
1129 1131 if not fname:
1130 1132 if not nullb:
1131 1133 fname = isbackup and afile or bfile
1132 1134 elif not nulla:
1133 1135 fname = afile
1134 1136 else:
1135 1137 raise PatchError(_("undefined source and destination files"))
1136 1138
1137 1139 gp = patchmeta(fname)
1138 1140 if create:
1139 1141 gp.op = 'ADD'
1140 1142 elif remove:
1141 1143 gp.op = 'DELETE'
1142 1144 return gp
1143 1145
1144 1146 def scangitpatch(lr, firstline):
1145 1147 """
1146 1148 Git patches can emit:
1147 1149 - rename a to b
1148 1150 - change b
1149 1151 - copy a to c
1150 1152 - change c
1151 1153
1152 1154 We cannot apply this sequence as-is, the renamed 'a' could not be
1153 1155 found for it would have been renamed already. And we cannot copy
1154 1156 from 'b' instead because 'b' would have been changed already. So
1155 1157 we scan the git patch for copy and rename commands so we can
1156 1158 perform the copies ahead of time.
1157 1159 """
1158 1160 pos = 0
1159 1161 try:
1160 1162 pos = lr.fp.tell()
1161 1163 fp = lr.fp
1162 1164 except IOError:
1163 1165 fp = cStringIO.StringIO(lr.fp.read())
1164 1166 gitlr = linereader(fp)
1165 1167 gitlr.push(firstline)
1166 1168 gitpatches = readgitpatch(gitlr)
1167 1169 fp.seek(pos)
1168 1170 return gitpatches
1169 1171
1170 1172 def iterhunks(fp):
1171 1173 """Read a patch and yield the following events:
1172 1174 - ("file", afile, bfile, firsthunk): select a new target file.
1173 1175 - ("hunk", hunk): a new hunk is ready to be applied, follows a
1174 1176 "file" event.
1175 1177 - ("git", gitchanges): current diff is in git format, gitchanges
1176 1178 maps filenames to gitpatch records. Unique event.
1177 1179 """
1178 1180 afile = ""
1179 1181 bfile = ""
1180 1182 state = None
1181 1183 hunknum = 0
1182 1184 emitfile = newfile = False
1183 1185 gitpatches = None
1184 1186
1185 1187 # our states
1186 1188 BFILE = 1
1187 1189 context = None
1188 1190 lr = linereader(fp)
1189 1191
1190 1192 while True:
1191 1193 x = lr.readline()
1192 1194 if not x:
1193 1195 break
1194 1196 if state == BFILE and (
1195 1197 (not context and x[0] == '@')
1196 1198 or (context is not False and x.startswith('***************'))
1197 1199 or x.startswith('GIT binary patch')):
1198 1200 gp = None
1199 1201 if (gitpatches and
1200 1202 gitpatches[-1].ispatching(afile, bfile)):
1201 1203 gp = gitpatches.pop()
1202 1204 if x.startswith('GIT binary patch'):
1203 h = binhunk(lr)
1205 h = binhunk(lr, gp.path)
1204 1206 else:
1205 1207 if context is None and x.startswith('***************'):
1206 1208 context = True
1207 1209 h = hunk(x, hunknum + 1, lr, context)
1208 1210 hunknum += 1
1209 1211 if emitfile:
1210 1212 emitfile = False
1211 1213 yield 'file', (afile, bfile, h, gp and gp.copy() or None)
1212 1214 yield 'hunk', h
1213 1215 elif x.startswith('diff --git'):
1214 1216 m = gitre.match(x)
1215 1217 if not m:
1216 1218 continue
1217 1219 if gitpatches is None:
1218 1220 # scan whole input for git metadata
1219 1221 gitpatches = scangitpatch(lr, x)
1220 1222 yield 'git', [g.copy() for g in gitpatches
1221 1223 if g.op in ('COPY', 'RENAME')]
1222 1224 gitpatches.reverse()
1223 1225 afile = 'a/' + m.group(1)
1224 1226 bfile = 'b/' + m.group(2)
1225 1227 while gitpatches and not gitpatches[-1].ispatching(afile, bfile):
1226 1228 gp = gitpatches.pop()
1227 1229 yield 'file', ('a/' + gp.path, 'b/' + gp.path, None, gp.copy())
1228 1230 if not gitpatches:
1229 1231 raise PatchError(_('failed to synchronize metadata for "%s"')
1230 1232 % afile[2:])
1231 1233 gp = gitpatches[-1]
1232 1234 newfile = True
1233 1235 elif x.startswith('---'):
1234 1236 # check for a unified diff
1235 1237 l2 = lr.readline()
1236 1238 if not l2.startswith('+++'):
1237 1239 lr.push(l2)
1238 1240 continue
1239 1241 newfile = True
1240 1242 context = False
1241 1243 afile = parsefilename(x)
1242 1244 bfile = parsefilename(l2)
1243 1245 elif x.startswith('***'):
1244 1246 # check for a context diff
1245 1247 l2 = lr.readline()
1246 1248 if not l2.startswith('---'):
1247 1249 lr.push(l2)
1248 1250 continue
1249 1251 l3 = lr.readline()
1250 1252 lr.push(l3)
1251 1253 if not l3.startswith("***************"):
1252 1254 lr.push(l2)
1253 1255 continue
1254 1256 newfile = True
1255 1257 context = True
1256 1258 afile = parsefilename(x)
1257 1259 bfile = parsefilename(l2)
1258 1260
1259 1261 if newfile:
1260 1262 newfile = False
1261 1263 emitfile = True
1262 1264 state = BFILE
1263 1265 hunknum = 0
1264 1266
1265 1267 while gitpatches:
1266 1268 gp = gitpatches.pop()
1267 1269 yield 'file', ('a/' + gp.path, 'b/' + gp.path, None, gp.copy())
1268 1270
1269 1271 def applydiff(ui, fp, backend, store, strip=1, eolmode='strict'):
1270 1272 """Reads a patch from fp and tries to apply it.
1271 1273
1272 1274 Returns 0 for a clean patch, -1 if any rejects were found and 1 if
1273 1275 there was any fuzz.
1274 1276
1275 1277 If 'eolmode' is 'strict', the patch content and patched file are
1276 1278 read in binary mode. Otherwise, line endings are ignored when
1277 1279 patching then normalized according to 'eolmode'.
1278 1280 """
1279 1281 return _applydiff(ui, fp, patchfile, backend, store, strip=strip,
1280 1282 eolmode=eolmode)
1281 1283
1282 1284 def _applydiff(ui, fp, patcher, backend, store, strip=1,
1283 1285 eolmode='strict'):
1284 1286
1285 1287 def pstrip(p):
1286 1288 return pathstrip(p, strip - 1)[1]
1287 1289
1288 1290 rejects = 0
1289 1291 err = 0
1290 1292 current_file = None
1291 1293
1292 1294 for state, values in iterhunks(fp):
1293 1295 if state == 'hunk':
1294 1296 if not current_file:
1295 1297 continue
1296 1298 ret = current_file.apply(values)
1297 1299 if ret > 0:
1298 1300 err = 1
1299 1301 elif state == 'file':
1300 1302 if current_file:
1301 1303 rejects += current_file.close()
1302 1304 current_file = None
1303 1305 afile, bfile, first_hunk, gp = values
1304 1306 if gp:
1305 1307 gp.path = pstrip(gp.path)
1306 1308 if gp.oldpath:
1307 1309 gp.oldpath = pstrip(gp.oldpath)
1308 1310 else:
1309 1311 gp = makepatchmeta(backend, afile, bfile, first_hunk, strip)
1310 1312 if gp.op == 'RENAME':
1311 1313 backend.unlink(gp.oldpath)
1312 1314 if not first_hunk:
1313 1315 if gp.op == 'DELETE':
1314 1316 backend.unlink(gp.path)
1315 1317 continue
1316 1318 data, mode = None, None
1317 1319 if gp.op in ('RENAME', 'COPY'):
1318 1320 data, mode = store.getfile(gp.oldpath)[:2]
1319 1321 if gp.mode:
1320 1322 mode = gp.mode
1321 1323 if gp.op == 'ADD':
1322 1324 # Added files without content have no hunk and
1323 1325 # must be created
1324 1326 data = ''
1325 1327 if data or mode:
1326 1328 if (gp.op in ('ADD', 'RENAME', 'COPY')
1327 1329 and backend.exists(gp.path)):
1328 1330 raise PatchError(_("cannot create %s: destination "
1329 1331 "already exists") % gp.path)
1330 1332 backend.setfile(gp.path, data, mode, gp.oldpath)
1331 1333 continue
1332 1334 try:
1333 1335 current_file = patcher(ui, gp, backend, store,
1334 1336 eolmode=eolmode)
1335 1337 except PatchError, inst:
1336 1338 ui.warn(str(inst) + '\n')
1337 1339 current_file = None
1338 1340 rejects += 1
1339 1341 continue
1340 1342 elif state == 'git':
1341 1343 for gp in values:
1342 1344 path = pstrip(gp.oldpath)
1343 1345 data, mode = backend.getfile(path)
1344 1346 store.setfile(path, data, mode)
1345 1347 else:
1346 1348 raise util.Abort(_('unsupported parser state: %s') % state)
1347 1349
1348 1350 if current_file:
1349 1351 rejects += current_file.close()
1350 1352
1351 1353 if rejects:
1352 1354 return -1
1353 1355 return err
1354 1356
1355 1357 def _externalpatch(ui, repo, patcher, patchname, strip, files,
1356 1358 similarity):
1357 1359 """use <patcher> to apply <patchname> to the working directory.
1358 1360 returns whether patch was applied with fuzz factor."""
1359 1361
1360 1362 fuzz = False
1361 1363 args = []
1362 1364 cwd = repo.root
1363 1365 if cwd:
1364 1366 args.append('-d %s' % util.shellquote(cwd))
1365 1367 fp = util.popen('%s %s -p%d < %s' % (patcher, ' '.join(args), strip,
1366 1368 util.shellquote(patchname)))
1367 1369 try:
1368 1370 for line in fp:
1369 1371 line = line.rstrip()
1370 1372 ui.note(line + '\n')
1371 1373 if line.startswith('patching file '):
1372 1374 pf = util.parsepatchoutput(line)
1373 1375 printed_file = False
1374 1376 files.add(pf)
1375 1377 elif line.find('with fuzz') >= 0:
1376 1378 fuzz = True
1377 1379 if not printed_file:
1378 1380 ui.warn(pf + '\n')
1379 1381 printed_file = True
1380 1382 ui.warn(line + '\n')
1381 1383 elif line.find('saving rejects to file') >= 0:
1382 1384 ui.warn(line + '\n')
1383 1385 elif line.find('FAILED') >= 0:
1384 1386 if not printed_file:
1385 1387 ui.warn(pf + '\n')
1386 1388 printed_file = True
1387 1389 ui.warn(line + '\n')
1388 1390 finally:
1389 1391 if files:
1390 1392 cfiles = list(files)
1391 1393 cwd = repo.getcwd()
1392 1394 if cwd:
1393 1395 cfiles = [util.pathto(repo.root, cwd, f)
1394 1396 for f in cfiles]
1395 1397 scmutil.addremove(repo, cfiles, similarity=similarity)
1396 1398 code = fp.close()
1397 1399 if code:
1398 1400 raise PatchError(_("patch command failed: %s") %
1399 1401 util.explainexit(code)[0])
1400 1402 return fuzz
1401 1403
1402 1404 def patchbackend(ui, backend, patchobj, strip, files=None, eolmode='strict'):
1403 1405 if files is None:
1404 1406 files = set()
1405 1407 if eolmode is None:
1406 1408 eolmode = ui.config('patch', 'eol', 'strict')
1407 1409 if eolmode.lower() not in eolmodes:
1408 1410 raise util.Abort(_('unsupported line endings type: %s') % eolmode)
1409 1411 eolmode = eolmode.lower()
1410 1412
1411 1413 store = filestore()
1412 1414 try:
1413 1415 fp = open(patchobj, 'rb')
1414 1416 except TypeError:
1415 1417 fp = patchobj
1416 1418 try:
1417 1419 ret = applydiff(ui, fp, backend, store, strip=strip,
1418 1420 eolmode=eolmode)
1419 1421 finally:
1420 1422 if fp != patchobj:
1421 1423 fp.close()
1422 1424 files.update(backend.close())
1423 1425 store.close()
1424 1426 if ret < 0:
1425 1427 raise PatchError(_('patch failed to apply'))
1426 1428 return ret > 0
1427 1429
1428 1430 def internalpatch(ui, repo, patchobj, strip, files=None, eolmode='strict',
1429 1431 similarity=0):
1430 1432 """use builtin patch to apply <patchobj> to the working directory.
1431 1433 returns whether patch was applied with fuzz factor."""
1432 1434 backend = workingbackend(ui, repo, similarity)
1433 1435 return patchbackend(ui, backend, patchobj, strip, files, eolmode)
1434 1436
1435 1437 def patchrepo(ui, repo, ctx, store, patchobj, strip, files=None,
1436 1438 eolmode='strict'):
1437 1439 backend = repobackend(ui, repo, ctx, store)
1438 1440 return patchbackend(ui, backend, patchobj, strip, files, eolmode)
1439 1441
1440 1442 def makememctx(repo, parents, text, user, date, branch, files, store,
1441 1443 editor=None):
1442 1444 def getfilectx(repo, memctx, path):
1443 1445 data, (islink, isexec), copied = store.getfile(path)
1444 1446 return context.memfilectx(path, data, islink=islink, isexec=isexec,
1445 1447 copied=copied)
1446 1448 extra = {}
1447 1449 if branch:
1448 1450 extra['branch'] = encoding.fromlocal(branch)
1449 1451 ctx = context.memctx(repo, parents, text, files, getfilectx, user,
1450 1452 date, extra)
1451 1453 if editor:
1452 1454 ctx._text = editor(repo, ctx, [])
1453 1455 return ctx
1454 1456
1455 1457 def patch(ui, repo, patchname, strip=1, files=None, eolmode='strict',
1456 1458 similarity=0):
1457 1459 """Apply <patchname> to the working directory.
1458 1460
1459 1461 'eolmode' specifies how end of lines should be handled. It can be:
1460 1462 - 'strict': inputs are read in binary mode, EOLs are preserved
1461 1463 - 'crlf': EOLs are ignored when patching and reset to CRLF
1462 1464 - 'lf': EOLs are ignored when patching and reset to LF
1463 1465 - None: get it from user settings, default to 'strict'
1464 1466 'eolmode' is ignored when using an external patcher program.
1465 1467
1466 1468 Returns whether patch was applied with fuzz factor.
1467 1469 """
1468 1470 patcher = ui.config('ui', 'patch')
1469 1471 if files is None:
1470 1472 files = set()
1471 1473 try:
1472 1474 if patcher:
1473 1475 return _externalpatch(ui, repo, patcher, patchname, strip,
1474 1476 files, similarity)
1475 1477 return internalpatch(ui, repo, patchname, strip, files, eolmode,
1476 1478 similarity)
1477 1479 except PatchError, err:
1478 1480 raise util.Abort(str(err))
1479 1481
1480 1482 def changedfiles(ui, repo, patchpath, strip=1):
1481 1483 backend = fsbackend(ui, repo.root)
1482 1484 fp = open(patchpath, 'rb')
1483 1485 try:
1484 1486 changed = set()
1485 1487 for state, values in iterhunks(fp):
1486 1488 if state == 'file':
1487 1489 afile, bfile, first_hunk, gp = values
1488 1490 if gp:
1489 1491 gp.path = pathstrip(gp.path, strip - 1)[1]
1490 1492 if gp.oldpath:
1491 1493 gp.oldpath = pathstrip(gp.oldpath, strip - 1)[1]
1492 1494 else:
1493 1495 gp = makepatchmeta(backend, afile, bfile, first_hunk, strip)
1494 1496 changed.add(gp.path)
1495 1497 if gp.op == 'RENAME':
1496 1498 changed.add(gp.oldpath)
1497 1499 elif state not in ('hunk', 'git'):
1498 1500 raise util.Abort(_('unsupported parser state: %s') % state)
1499 1501 return changed
1500 1502 finally:
1501 1503 fp.close()
1502 1504
1503 1505 def b85diff(to, tn):
1504 1506 '''print base85-encoded binary diff'''
1505 1507 def gitindex(text):
1506 1508 if not text:
1507 1509 return hex(nullid)
1508 1510 l = len(text)
1509 1511 s = util.sha1('blob %d\0' % l)
1510 1512 s.update(text)
1511 1513 return s.hexdigest()
1512 1514
1513 1515 def fmtline(line):
1514 1516 l = len(line)
1515 1517 if l <= 26:
1516 1518 l = chr(ord('A') + l - 1)
1517 1519 else:
1518 1520 l = chr(l - 26 + ord('a') - 1)
1519 1521 return '%c%s\n' % (l, base85.b85encode(line, True))
1520 1522
1521 1523 def chunk(text, csize=52):
1522 1524 l = len(text)
1523 1525 i = 0
1524 1526 while i < l:
1525 1527 yield text[i:i + csize]
1526 1528 i += csize
1527 1529
1528 1530 tohash = gitindex(to)
1529 1531 tnhash = gitindex(tn)
1530 1532 if tohash == tnhash:
1531 1533 return ""
1532 1534
1533 1535 # TODO: deltas
1534 1536 ret = ['index %s..%s\nGIT binary patch\nliteral %s\n' %
1535 1537 (tohash, tnhash, len(tn))]
1536 1538 for l in chunk(zlib.compress(tn)):
1537 1539 ret.append(fmtline(l))
1538 1540 ret.append('\n')
1539 1541 return ''.join(ret)
1540 1542
1541 1543 class GitDiffRequired(Exception):
1542 1544 pass
1543 1545
1544 1546 def diffopts(ui, opts=None, untrusted=False, section='diff'):
1545 1547 def get(key, name=None, getter=ui.configbool):
1546 1548 return ((opts and opts.get(key)) or
1547 1549 getter(section, name or key, None, untrusted=untrusted))
1548 1550 return mdiff.diffopts(
1549 1551 text=opts and opts.get('text'),
1550 1552 git=get('git'),
1551 1553 nodates=get('nodates'),
1552 1554 showfunc=get('show_function', 'showfunc'),
1553 1555 ignorews=get('ignore_all_space', 'ignorews'),
1554 1556 ignorewsamount=get('ignore_space_change', 'ignorewsamount'),
1555 1557 ignoreblanklines=get('ignore_blank_lines', 'ignoreblanklines'),
1556 1558 context=get('unified', getter=ui.config))
1557 1559
1558 1560 def diff(repo, node1=None, node2=None, match=None, changes=None, opts=None,
1559 1561 losedatafn=None, prefix=''):
1560 1562 '''yields diff of changes to files between two nodes, or node and
1561 1563 working directory.
1562 1564
1563 1565 if node1 is None, use first dirstate parent instead.
1564 1566 if node2 is None, compare node1 with working directory.
1565 1567
1566 1568 losedatafn(**kwarg) is a callable run when opts.upgrade=True and
1567 1569 every time some change cannot be represented with the current
1568 1570 patch format. Return False to upgrade to git patch format, True to
1569 1571 accept the loss or raise an exception to abort the diff. It is
1570 1572 called with the name of current file being diffed as 'fn'. If set
1571 1573 to None, patches will always be upgraded to git format when
1572 1574 necessary.
1573 1575
1574 1576 prefix is a filename prefix that is prepended to all filenames on
1575 1577 display (used for subrepos).
1576 1578 '''
1577 1579
1578 1580 if opts is None:
1579 1581 opts = mdiff.defaultopts
1580 1582
1581 1583 if not node1 and not node2:
1582 1584 node1 = repo.dirstate.p1()
1583 1585
1584 1586 def lrugetfilectx():
1585 1587 cache = {}
1586 1588 order = []
1587 1589 def getfilectx(f, ctx):
1588 1590 fctx = ctx.filectx(f, filelog=cache.get(f))
1589 1591 if f not in cache:
1590 1592 if len(cache) > 20:
1591 1593 del cache[order.pop(0)]
1592 1594 cache[f] = fctx.filelog()
1593 1595 else:
1594 1596 order.remove(f)
1595 1597 order.append(f)
1596 1598 return fctx
1597 1599 return getfilectx
1598 1600 getfilectx = lrugetfilectx()
1599 1601
1600 1602 ctx1 = repo[node1]
1601 1603 ctx2 = repo[node2]
1602 1604
1603 1605 if not changes:
1604 1606 changes = repo.status(ctx1, ctx2, match=match)
1605 1607 modified, added, removed = changes[:3]
1606 1608
1607 1609 if not modified and not added and not removed:
1608 1610 return []
1609 1611
1610 1612 revs = None
1611 1613 if not repo.ui.quiet:
1612 1614 hexfunc = repo.ui.debugflag and hex or short
1613 1615 revs = [hexfunc(node) for node in [node1, node2] if node]
1614 1616
1615 1617 copy = {}
1616 1618 if opts.git or opts.upgrade:
1617 1619 copy = copies.pathcopies(ctx1, ctx2)
1618 1620
1619 1621 difffn = lambda opts, losedata: trydiff(repo, revs, ctx1, ctx2,
1620 1622 modified, added, removed, copy, getfilectx, opts, losedata, prefix)
1621 1623 if opts.upgrade and not opts.git:
1622 1624 try:
1623 1625 def losedata(fn):
1624 1626 if not losedatafn or not losedatafn(fn=fn):
1625 1627 raise GitDiffRequired()
1626 1628 # Buffer the whole output until we are sure it can be generated
1627 1629 return list(difffn(opts.copy(git=False), losedata))
1628 1630 except GitDiffRequired:
1629 1631 return difffn(opts.copy(git=True), None)
1630 1632 else:
1631 1633 return difffn(opts, None)
1632 1634
1633 1635 def difflabel(func, *args, **kw):
1634 1636 '''yields 2-tuples of (output, label) based on the output of func()'''
1635 1637 headprefixes = [('diff', 'diff.diffline'),
1636 1638 ('copy', 'diff.extended'),
1637 1639 ('rename', 'diff.extended'),
1638 1640 ('old', 'diff.extended'),
1639 1641 ('new', 'diff.extended'),
1640 1642 ('deleted', 'diff.extended'),
1641 1643 ('---', 'diff.file_a'),
1642 1644 ('+++', 'diff.file_b')]
1643 1645 textprefixes = [('@', 'diff.hunk'),
1644 1646 ('-', 'diff.deleted'),
1645 1647 ('+', 'diff.inserted')]
1646 1648 head = False
1647 1649 for chunk in func(*args, **kw):
1648 1650 lines = chunk.split('\n')
1649 1651 for i, line in enumerate(lines):
1650 1652 if i != 0:
1651 1653 yield ('\n', '')
1652 1654 if head:
1653 1655 if line.startswith('@'):
1654 1656 head = False
1655 1657 else:
1656 1658 if line and not line[0] in ' +-@\\':
1657 1659 head = True
1658 1660 stripline = line
1659 1661 if not head and line and line[0] in '+-':
1660 1662 # highlight trailing whitespace, but only in changed lines
1661 1663 stripline = line.rstrip()
1662 1664 prefixes = textprefixes
1663 1665 if head:
1664 1666 prefixes = headprefixes
1665 1667 for prefix, label in prefixes:
1666 1668 if stripline.startswith(prefix):
1667 1669 yield (stripline, label)
1668 1670 break
1669 1671 else:
1670 1672 yield (line, '')
1671 1673 if line != stripline:
1672 1674 yield (line[len(stripline):], 'diff.trailingwhitespace')
1673 1675
1674 1676 def diffui(*args, **kw):
1675 1677 '''like diff(), but yields 2-tuples of (output, label) for ui.write()'''
1676 1678 return difflabel(diff, *args, **kw)
1677 1679
1678 1680
1679 1681 def _addmodehdr(header, omode, nmode):
1680 1682 if omode != nmode:
1681 1683 header.append('old mode %s\n' % omode)
1682 1684 header.append('new mode %s\n' % nmode)
1683 1685
1684 1686 def trydiff(repo, revs, ctx1, ctx2, modified, added, removed,
1685 1687 copy, getfilectx, opts, losedatafn, prefix):
1686 1688
1687 1689 def join(f):
1688 1690 return os.path.join(prefix, f)
1689 1691
1690 1692 date1 = util.datestr(ctx1.date())
1691 1693 man1 = ctx1.manifest()
1692 1694
1693 1695 gone = set()
1694 1696 gitmode = {'l': '120000', 'x': '100755', '': '100644'}
1695 1697
1696 1698 copyto = dict([(v, k) for k, v in copy.items()])
1697 1699
1698 1700 if opts.git:
1699 1701 revs = None
1700 1702
1701 1703 for f in sorted(modified + added + removed):
1702 1704 to = None
1703 1705 tn = None
1704 1706 dodiff = True
1705 1707 header = []
1706 1708 if f in man1:
1707 1709 to = getfilectx(f, ctx1).data()
1708 1710 if f not in removed:
1709 1711 tn = getfilectx(f, ctx2).data()
1710 1712 a, b = f, f
1711 1713 if opts.git or losedatafn:
1712 1714 if f in added:
1713 1715 mode = gitmode[ctx2.flags(f)]
1714 1716 if f in copy or f in copyto:
1715 1717 if opts.git:
1716 1718 if f in copy:
1717 1719 a = copy[f]
1718 1720 else:
1719 1721 a = copyto[f]
1720 1722 omode = gitmode[man1.flags(a)]
1721 1723 _addmodehdr(header, omode, mode)
1722 1724 if a in removed and a not in gone:
1723 1725 op = 'rename'
1724 1726 gone.add(a)
1725 1727 else:
1726 1728 op = 'copy'
1727 1729 header.append('%s from %s\n' % (op, join(a)))
1728 1730 header.append('%s to %s\n' % (op, join(f)))
1729 1731 to = getfilectx(a, ctx1).data()
1730 1732 else:
1731 1733 losedatafn(f)
1732 1734 else:
1733 1735 if opts.git:
1734 1736 header.append('new file mode %s\n' % mode)
1735 1737 elif ctx2.flags(f):
1736 1738 losedatafn(f)
1737 1739 # In theory, if tn was copied or renamed we should check
1738 1740 # if the source is binary too but the copy record already
1739 1741 # forces git mode.
1740 1742 if util.binary(tn):
1741 1743 if opts.git:
1742 1744 dodiff = 'binary'
1743 1745 else:
1744 1746 losedatafn(f)
1745 1747 if not opts.git and not tn:
1746 1748 # regular diffs cannot represent new empty file
1747 1749 losedatafn(f)
1748 1750 elif f in removed:
1749 1751 if opts.git:
1750 1752 # have we already reported a copy above?
1751 1753 if ((f in copy and copy[f] in added
1752 1754 and copyto[copy[f]] == f) or
1753 1755 (f in copyto and copyto[f] in added
1754 1756 and copy[copyto[f]] == f)):
1755 1757 dodiff = False
1756 1758 else:
1757 1759 header.append('deleted file mode %s\n' %
1758 1760 gitmode[man1.flags(f)])
1759 1761 elif not to or util.binary(to):
1760 1762 # regular diffs cannot represent empty file deletion
1761 1763 losedatafn(f)
1762 1764 else:
1763 1765 oflag = man1.flags(f)
1764 1766 nflag = ctx2.flags(f)
1765 1767 binary = util.binary(to) or util.binary(tn)
1766 1768 if opts.git:
1767 1769 _addmodehdr(header, gitmode[oflag], gitmode[nflag])
1768 1770 if binary:
1769 1771 dodiff = 'binary'
1770 1772 elif binary or nflag != oflag:
1771 1773 losedatafn(f)
1772 1774 if opts.git:
1773 1775 header.insert(0, mdiff.diffline(revs, join(a), join(b), opts))
1774 1776
1775 1777 if dodiff:
1776 1778 if dodiff == 'binary':
1777 1779 text = b85diff(to, tn)
1778 1780 else:
1779 1781 text = mdiff.unidiff(to, date1,
1780 1782 # ctx2 date may be dynamic
1781 1783 tn, util.datestr(ctx2.date()),
1782 1784 join(a), join(b), revs, opts=opts)
1783 1785 if header and (text or len(header) > 1):
1784 1786 yield ''.join(header)
1785 1787 if text:
1786 1788 yield text
1787 1789
1788 1790 def diffstatsum(stats):
1789 1791 maxfile, maxtotal, addtotal, removetotal, binary = 0, 0, 0, 0, False
1790 1792 for f, a, r, b in stats:
1791 1793 maxfile = max(maxfile, encoding.colwidth(f))
1792 1794 maxtotal = max(maxtotal, a + r)
1793 1795 addtotal += a
1794 1796 removetotal += r
1795 1797 binary = binary or b
1796 1798
1797 1799 return maxfile, maxtotal, addtotal, removetotal, binary
1798 1800
1799 1801 def diffstatdata(lines):
1800 1802 diffre = re.compile('^diff .*-r [a-z0-9]+\s(.*)$')
1801 1803
1802 1804 results = []
1803 1805 filename, adds, removes, isbinary = None, 0, 0, False
1804 1806
1805 1807 def addresult():
1806 1808 if filename:
1807 1809 results.append((filename, adds, removes, isbinary))
1808 1810
1809 1811 for line in lines:
1810 1812 if line.startswith('diff'):
1811 1813 addresult()
1812 1814 # set numbers to 0 anyway when starting new file
1813 1815 adds, removes, isbinary = 0, 0, False
1814 1816 if line.startswith('diff --git'):
1815 1817 filename = gitre.search(line).group(1)
1816 1818 elif line.startswith('diff -r'):
1817 1819 # format: "diff -r ... -r ... filename"
1818 1820 filename = diffre.search(line).group(1)
1819 1821 elif line.startswith('+') and not line.startswith('+++ '):
1820 1822 adds += 1
1821 1823 elif line.startswith('-') and not line.startswith('--- '):
1822 1824 removes += 1
1823 1825 elif (line.startswith('GIT binary patch') or
1824 1826 line.startswith('Binary file')):
1825 1827 isbinary = True
1826 1828 addresult()
1827 1829 return results
1828 1830
1829 1831 def diffstat(lines, width=80, git=False):
1830 1832 output = []
1831 1833 stats = diffstatdata(lines)
1832 1834 maxname, maxtotal, totaladds, totalremoves, hasbinary = diffstatsum(stats)
1833 1835
1834 1836 countwidth = len(str(maxtotal))
1835 1837 if hasbinary and countwidth < 3:
1836 1838 countwidth = 3
1837 1839 graphwidth = width - countwidth - maxname - 6
1838 1840 if graphwidth < 10:
1839 1841 graphwidth = 10
1840 1842
1841 1843 def scale(i):
1842 1844 if maxtotal <= graphwidth:
1843 1845 return i
1844 1846 # If diffstat runs out of room it doesn't print anything,
1845 1847 # which isn't very useful, so always print at least one + or -
1846 1848 # if there were at least some changes.
1847 1849 return max(i * graphwidth // maxtotal, int(bool(i)))
1848 1850
1849 1851 for filename, adds, removes, isbinary in stats:
1850 1852 if isbinary:
1851 1853 count = 'Bin'
1852 1854 else:
1853 1855 count = adds + removes
1854 1856 pluses = '+' * scale(adds)
1855 1857 minuses = '-' * scale(removes)
1856 1858 output.append(' %s%s | %*s %s%s\n' %
1857 1859 (filename, ' ' * (maxname - encoding.colwidth(filename)),
1858 1860 countwidth, count, pluses, minuses))
1859 1861
1860 1862 if stats:
1861 1863 output.append(_(' %d files changed, %d insertions(+), %d deletions(-)\n')
1862 1864 % (len(stats), totaladds, totalremoves))
1863 1865
1864 1866 return ''.join(output)
1865 1867
1866 1868 def diffstatui(*args, **kw):
1867 1869 '''like diffstat(), but yields 2-tuples of (output, label) for
1868 1870 ui.write()
1869 1871 '''
1870 1872
1871 1873 for line in diffstat(*args, **kw).splitlines():
1872 1874 if line and line[-1] in '+-':
1873 1875 name, graph = line.rsplit(' ', 1)
1874 1876 yield (name + ' ', '')
1875 1877 m = re.search(r'\++', graph)
1876 1878 if m:
1877 1879 yield (m.group(0), 'diffstat.inserted')
1878 1880 m = re.search(r'-+', graph)
1879 1881 if m:
1880 1882 yield (m.group(0), 'diffstat.deleted')
1881 1883 else:
1882 1884 yield (line, '')
1883 1885 yield ('\n', '')
@@ -1,529 +1,560 b''
1 1 $ "$TESTDIR/hghave" symlink || exit 80
2 2
3 3 $ hg init
4 4
5 5 New file:
6 6
7 7 $ hg import -d "1000000 0" -mnew - <<EOF
8 8 > diff --git a/new b/new
9 9 > new file mode 100644
10 10 > index 0000000..7898192
11 11 > --- /dev/null
12 12 > +++ b/new
13 13 > @@ -0,0 +1 @@
14 14 > +a
15 15 > EOF
16 16 applying patch from stdin
17 17
18 18 $ hg tip -q
19 19 0:ae3ee40d2079
20 20
21 21 New empty file:
22 22
23 23 $ hg import -d "1000000 0" -mempty - <<EOF
24 24 > diff --git a/empty b/empty
25 25 > new file mode 100644
26 26 > EOF
27 27 applying patch from stdin
28 28
29 29 $ hg tip -q
30 30 1:ab199dc869b5
31 31
32 32 $ hg locate empty
33 33 empty
34 34
35 35 chmod +x:
36 36
37 37 $ hg import -d "1000000 0" -msetx - <<EOF
38 38 > diff --git a/new b/new
39 39 > old mode 100644
40 40 > new mode 100755
41 41 > EOF
42 42 applying patch from stdin
43 43
44 44 $ hg tip -q
45 45 2:3a34410f282e
46 46
47 47 $ test -x new
48 48
49 49 Copy:
50 50
51 51 $ hg import -d "1000000 0" -mcopy - <<EOF
52 52 > diff --git a/new b/copy
53 53 > old mode 100755
54 54 > new mode 100644
55 55 > similarity index 100%
56 56 > copy from new
57 57 > copy to copy
58 58 > diff --git a/new b/copyx
59 59 > similarity index 100%
60 60 > copy from new
61 61 > copy to copyx
62 62 > EOF
63 63 applying patch from stdin
64 64
65 65 $ hg tip -q
66 66 3:37bacb7ca14d
67 67
68 68 $ if "$TESTDIR/hghave" -q execbit; then
69 69 > test -f copy -a ! -x copy || echo bad
70 70 > test -x copyx || echo bad
71 71 > else
72 72 > test -f copy || echo bad
73 73 > fi
74 74
75 75 $ cat copy
76 76 a
77 77
78 78 $ hg cat copy
79 79 a
80 80
81 81 Rename:
82 82
83 83 $ hg import -d "1000000 0" -mrename - <<EOF
84 84 > diff --git a/copy b/rename
85 85 > similarity index 100%
86 86 > rename from copy
87 87 > rename to rename
88 88 > EOF
89 89 applying patch from stdin
90 90
91 91 $ hg tip -q
92 92 4:47b81a94361d
93 93
94 94 $ hg locate
95 95 copyx
96 96 empty
97 97 new
98 98 rename
99 99
100 100 Delete:
101 101
102 102 $ hg import -d "1000000 0" -mdelete - <<EOF
103 103 > diff --git a/copyx b/copyx
104 104 > deleted file mode 100755
105 105 > index 7898192..0000000
106 106 > --- a/copyx
107 107 > +++ /dev/null
108 108 > @@ -1 +0,0 @@
109 109 > -a
110 110 > EOF
111 111 applying patch from stdin
112 112
113 113 $ hg tip -q
114 114 5:d9b001d98336
115 115
116 116 $ hg locate
117 117 empty
118 118 new
119 119 rename
120 120
121 121 $ test -f copyx
122 122 [1]
123 123
124 124 Regular diff:
125 125
126 126 $ hg import -d "1000000 0" -mregular - <<EOF
127 127 > diff --git a/rename b/rename
128 128 > index 7898192..72e1fe3 100644
129 129 > --- a/rename
130 130 > +++ b/rename
131 131 > @@ -1 +1,5 @@
132 132 > a
133 133 > +a
134 134 > +a
135 135 > +a
136 136 > +a
137 137 > EOF
138 138 applying patch from stdin
139 139
140 140 $ hg tip -q
141 141 6:ebe901e7576b
142 142
143 143 Copy and modify:
144 144
145 145 $ hg import -d "1000000 0" -mcopymod - <<EOF
146 146 > diff --git a/rename b/copy2
147 147 > similarity index 80%
148 148 > copy from rename
149 149 > copy to copy2
150 150 > index 72e1fe3..b53c148 100644
151 151 > --- a/rename
152 152 > +++ b/copy2
153 153 > @@ -1,5 +1,5 @@
154 154 > a
155 155 > a
156 156 > -a
157 157 > +b
158 158 > a
159 159 > a
160 160 > EOF
161 161 applying patch from stdin
162 162
163 163 $ hg tip -q
164 164 7:18f368958ecd
165 165
166 166 $ hg cat copy2
167 167 a
168 168 a
169 169 b
170 170 a
171 171 a
172 172
173 173 Rename and modify:
174 174
175 175 $ hg import -d "1000000 0" -mrenamemod - <<EOF
176 176 > diff --git a/copy2 b/rename2
177 177 > similarity index 80%
178 178 > rename from copy2
179 179 > rename to rename2
180 180 > index b53c148..8f81e29 100644
181 181 > --- a/copy2
182 182 > +++ b/rename2
183 183 > @@ -1,5 +1,5 @@
184 184 > a
185 185 > a
186 186 > b
187 187 > -a
188 188 > +c
189 189 > a
190 190 > EOF
191 191 applying patch from stdin
192 192
193 193 $ hg tip -q
194 194 8:c32b0d7e6f44
195 195
196 196 $ hg locate copy2
197 197 [1]
198 198 $ hg cat rename2
199 199 a
200 200 a
201 201 b
202 202 c
203 203 a
204 204
205 205 One file renamed multiple times:
206 206
207 207 $ hg import -d "1000000 0" -mmultirenames - <<EOF
208 208 > diff --git a/rename2 b/rename3
209 209 > rename from rename2
210 210 > rename to rename3
211 211 > diff --git a/rename2 b/rename3-2
212 212 > rename from rename2
213 213 > rename to rename3-2
214 214 > EOF
215 215 applying patch from stdin
216 216
217 217 $ hg tip -q
218 218 9:034a6bf95330
219 219
220 220 $ hg log -vr. --template '{rev} {files} / {file_copies}\n'
221 221 9 rename2 rename3 rename3-2 / rename3 (rename2)rename3-2 (rename2)
222 222
223 223 $ hg locate rename2 rename3 rename3-2
224 224 rename3
225 225 rename3-2
226 226
227 227 $ hg cat rename3
228 228 a
229 229 a
230 230 b
231 231 c
232 232 a
233 233
234 234 $ hg cat rename3-2
235 235 a
236 236 a
237 237 b
238 238 c
239 239 a
240 240
241 241 $ echo foo > foo
242 242 $ hg add foo
243 243 $ hg ci -m 'add foo'
244 244
245 245 Binary files and regular patch hunks:
246 246
247 247 $ hg import -d "1000000 0" -m binaryregular - <<EOF
248 248 > diff --git a/binary b/binary
249 249 > new file mode 100644
250 250 > index 0000000000000000000000000000000000000000..593f4708db84ac8fd0f5cc47c634f38c013fe9e4
251 251 > GIT binary patch
252 252 > literal 4
253 253 > Lc\${NkU|;|M00aO5
254 254 >
255 255 > diff --git a/foo b/foo2
256 256 > rename from foo
257 257 > rename to foo2
258 258 > EOF
259 259 applying patch from stdin
260 260
261 261 $ hg tip -q
262 262 11:c39bce63e786
263 263
264 264 $ cat foo2
265 265 foo
266 266
267 267 $ hg manifest --debug | grep binary
268 268 045c85ba38952325e126c70962cc0f9d9077bc67 644 binary
269 269
270 270 Multiple binary files:
271 271
272 272 $ hg import -d "1000000 0" -m multibinary - <<EOF
273 273 > diff --git a/mbinary1 b/mbinary1
274 274 > new file mode 100644
275 275 > index 0000000000000000000000000000000000000000..593f4708db84ac8fd0f5cc47c634f38c013fe9e4
276 276 > GIT binary patch
277 277 > literal 4
278 278 > Lc\${NkU|;|M00aO5
279 279 >
280 280 > diff --git a/mbinary2 b/mbinary2
281 281 > new file mode 100644
282 282 > index 0000000000000000000000000000000000000000..112363ac1917b417ffbd7f376ca786a1e5fa7490
283 283 > GIT binary patch
284 284 > literal 5
285 285 > Mc\${NkU|\`?^000jF3jhEB
286 286 >
287 287 > EOF
288 288 applying patch from stdin
289 289
290 290 $ hg tip -q
291 291 12:30b530085242
292 292
293 293 $ hg manifest --debug | grep mbinary
294 294 045c85ba38952325e126c70962cc0f9d9077bc67 644 mbinary1
295 295 a874b471193996e7cb034bb301cac7bdaf3e3f46 644 mbinary2
296 296
297 297 Filenames with spaces:
298 298
299 299 $ hg import -d "1000000 0" -m spaces - <<EOF
300 300 > diff --git a/foo bar b/foo bar
301 301 > new file mode 100644
302 302 > index 0000000..257cc56
303 303 > --- /dev/null
304 304 > +++ b/foo bar
305 305 > @@ -0,0 +1 @@
306 306 > +foo
307 307 > EOF
308 308 applying patch from stdin
309 309
310 310 $ hg tip -q
311 311 13:04750ef42fb3
312 312
313 313 $ cat "foo bar"
314 314 foo
315 315
316 316 Copy then modify the original file:
317 317
318 318 $ hg import -d "1000000 0" -m copy-mod-orig - <<EOF
319 319 > diff --git a/foo2 b/foo2
320 320 > index 257cc56..fe08ec6 100644
321 321 > --- a/foo2
322 322 > +++ b/foo2
323 323 > @@ -1 +1,2 @@
324 324 > foo
325 325 > +new line
326 326 > diff --git a/foo2 b/foo3
327 327 > similarity index 100%
328 328 > copy from foo2
329 329 > copy to foo3
330 330 > EOF
331 331 applying patch from stdin
332 332
333 333 $ hg tip -q
334 334 14:c4cd9cdeaa74
335 335
336 336 $ cat foo3
337 337 foo
338 338
339 339 Move text file and patch as binary
340 340
341 341 $ echo a > text2
342 342 $ hg ci -Am0
343 343 adding text2
344 344 $ hg import -d "1000000 0" -m rename-as-binary - <<"EOF"
345 345 > diff --git a/text2 b/binary2
346 346 > rename from text2
347 347 > rename to binary2
348 348 > index 78981922613b2afb6025042ff6bd878ac1994e85..10efcb362e9f3b3420fcfbfc0e37f3dc16e29757
349 349 > GIT binary patch
350 350 > literal 5
351 351 > Mc$`b*O5$Pw00T?_*Z=?k
352 352 >
353 353 > EOF
354 354 applying patch from stdin
355 355
356 356 $ cat binary2
357 357 a
358 358 b
359 359 \x00 (no-eol) (esc)
360 360
361 361 $ hg st --copies --change .
362 362 A binary2
363 363 text2
364 364 R text2
365 365
366 366 Invalid base85 content
367
367 368 $ hg rollback
368 369 repository tip rolled back to revision 15 (undo import)
369 370 working directory now based on revision 15
370 371 $ hg revert -aq
371 372 $ hg import -d "1000000 0" -m invalid-binary - <<"EOF"
372 373 > diff --git a/text2 b/binary2
373 374 > rename from text2
374 375 > rename to binary2
375 376 > index 78981922613b2afb6025042ff6bd878ac1994e85..10efcb362e9f3b3420fcfbfc0e37f3dc16e29757
376 377 > GIT binary patch
377 378 > literal 5
378 379 > Mc$`b*O.$Pw00T?_*Z=?k
379 380 >
380 381 > EOF
381 382 applying patch from stdin
382 abort: could not decode binary patch: bad base85 character at position 6
383 abort: could not decode "binary2" binary patch: bad base85 character at position 6
383 384 [255]
385
386 $ hg revert -aq
387 $ hg import -d "1000000 0" -m rename-as-binary - <<"EOF"
388 > diff --git a/text2 b/binary2
389 > rename from text2
390 > rename to binary2
391 > index 78981922613b2afb6025042ff6bd878ac1994e85..10efcb362e9f3b3420fcfbfc0e37f3dc16e29757
392 > GIT binary patch
393 > literal 6
394 > Mc$`b*O5$Pw00T?_*Z=?k
395 >
396 > EOF
397 applying patch from stdin
398 abort: "binary2" length is 5 bytes, should be 6
399 [255]
400
401 $ hg revert -aq
402 $ hg import -d "1000000 0" -m rename-as-binary - <<"EOF"
403 > diff --git a/text2 b/binary2
404 > rename from text2
405 > rename to binary2
406 > index 78981922613b2afb6025042ff6bd878ac1994e85..10efcb362e9f3b3420fcfbfc0e37f3dc16e29757
407 > GIT binary patch
408 > Mc$`b*O5$Pw00T?_*Z=?k
409 >
410 > EOF
411 applying patch from stdin
412 abort: could not extract "binary2" binary data
413 [255]
414
384 415 $ cd ..
385 416
386 417 Consecutive import with renames (issue2459)
387 418
388 419 $ hg init issue2459
389 420 $ cd issue2459
390 421 $ hg import --no-commit --force - <<EOF
391 422 > diff --git a/a b/a
392 423 > new file mode 100644
393 424 > EOF
394 425 applying patch from stdin
395 426 $ hg import --no-commit --force - <<EOF
396 427 > diff --git a/a b/b
397 428 > rename from a
398 429 > rename to b
399 430 > EOF
400 431 applying patch from stdin
401 432 a has not been committed yet, so no copy data will be stored for b.
402 433 $ hg debugstate
403 434 a 0 -1 unset b
404 435 $ hg ci -m done
405 436 $ cd ..
406 437
407 438 Renames and strip
408 439
409 440 $ hg init renameandstrip
410 441 $ cd renameandstrip
411 442 $ echo a > a
412 443 $ hg ci -Am adda
413 444 adding a
414 445 $ hg import --no-commit -p2 - <<EOF
415 446 > diff --git a/foo/a b/foo/b
416 447 > rename from foo/a
417 448 > rename to foo/b
418 449 > EOF
419 450 applying patch from stdin
420 451 $ hg st --copies
421 452 A b
422 453 a
423 454 R a
424 455
425 456 Renames, similarity and git diff
426 457
427 458 $ hg revert -aC
428 459 undeleting a
429 460 forgetting b
430 461 $ rm b
431 462 $ hg import --similarity 90 --no-commit - <<EOF
432 463 > diff --git a/a b/b
433 464 > rename from a
434 465 > rename to b
435 466 > EOF
436 467 applying patch from stdin
437 468 $ hg st --copies
438 469 A b
439 470 a
440 471 R a
441 472 $ cd ..
442 473
443 474 Pure copy with existing destination
444 475
445 476 $ hg init copytoexisting
446 477 $ cd copytoexisting
447 478 $ echo a > a
448 479 $ echo b > b
449 480 $ hg ci -Am add
450 481 adding a
451 482 adding b
452 483 $ hg import --no-commit - <<EOF
453 484 > diff --git a/a b/b
454 485 > copy from a
455 486 > copy to b
456 487 > EOF
457 488 applying patch from stdin
458 489 abort: cannot create b: destination already exists
459 490 [255]
460 491 $ cat b
461 492 b
462 493
463 494 Copy and changes with existing destination
464 495
465 496 $ hg import --no-commit - <<EOF
466 497 > diff --git a/a b/b
467 498 > copy from a
468 499 > copy to b
469 500 > --- a/a
470 501 > +++ b/b
471 502 > @@ -1,1 +1,2 @@
472 503 > a
473 504 > +b
474 505 > EOF
475 506 applying patch from stdin
476 507 cannot create b: destination already exists
477 508 1 out of 1 hunks FAILED -- saving rejects to file b.rej
478 509 abort: patch failed to apply
479 510 [255]
480 511 $ cat b
481 512 b
482 513
483 514 $ ln -s b linkb
484 515 $ hg add linkb
485 516 $ hg ci -m addlinkb
486 517 $ hg import --no-commit - <<EOF
487 518 > diff --git a/linkb b/linkb
488 519 > deleted file mode 120000
489 520 > --- a/linkb
490 521 > +++ /dev/null
491 522 > @@ -1,1 +0,0 @@
492 523 > -badhunk
493 524 > \ No newline at end of file
494 525 > EOF
495 526 applying patch from stdin
496 527 patching file linkb
497 528 Hunk #1 FAILED at 0
498 529 1 out of 1 hunks FAILED -- saving rejects to file linkb.rej
499 530 abort: patch failed to apply
500 531 [255]
501 532 $ hg st
502 533 ? b.rej
503 534 ? linkb.rej
504 535
505 536 Test corner case involving copies and multiple hunks (issue3384)
506 537
507 538 $ hg revert -qa
508 539 $ hg import --no-commit - <<EOF
509 540 > diff --git a/a b/c
510 541 > copy from a
511 542 > copy to c
512 543 > --- a/a
513 544 > +++ b/c
514 545 > @@ -1,1 +1,2 @@
515 546 > a
516 547 > +a
517 548 > @@ -2,1 +2,2 @@
518 549 > a
519 550 > +a
520 551 > diff --git a/a b/a
521 552 > --- a/a
522 553 > +++ b/a
523 554 > @@ -1,1 +1,2 @@
524 555 > a
525 556 > +b
526 557 > EOF
527 558 applying patch from stdin
528 559
529 560 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now