Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Side by Side Diff: patch.py

Issue 7065074: git diff can have 'new file mode' for new files and 'new mode' for current files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # coding=utf8 1 # coding=utf8
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 """Utility functions to handle patches.""" 5 """Utility functions to handle patches."""
6 6
7 import posixpath 7 import posixpath
8 import os 8 import os
9 import re 9 import re
10 10
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 208
209 # Cheap check to make sure the file name is at least mentioned in the 209 # Cheap check to make sure the file name is at least mentioned in the
210 # 'diff' header. That the only remaining invariant. 210 # 'diff' header. That the only remaining invariant.
211 if not self.filename in self.diff_header: 211 if not self.filename in self.diff_header:
212 self._fail('Diff seems corrupted.') 212 self._fail('Diff seems corrupted.')
213 213
214 def _verify_git_header_process_line(self, lines, line, last_line, old, new): 214 def _verify_git_header_process_line(self, lines, line, last_line, old, new):
215 """Processes a single line of the header. 215 """Processes a single line of the header.
216 216
217 Returns True if it should continue looping. 217 Returns True if it should continue looping.
218
219 Format is described to
220 http://www.kernel.org/pub/software/scm/git/docs/git-diff.html
218 """ 221 """
219 # Handle these: 222 # Handle these:
220 # rename from <> 223 # rename from <>
221 # copy from <> 224 # copy from <>
222 match = re.match(r'^(rename|copy) from (.+)$', line) 225 match = re.match(r'^(rename|copy) from (.+)$', line)
223 if match: 226 if match:
224 if old != match.group(2): 227 if old != match.group(2):
225 self._fail('Unexpected git diff input name for line %s.' % line) 228 self._fail('Unexpected git diff input name for line %s.' % line)
226 if not lines or not lines[0].startswith('%s to ' % match.group(1)): 229 if not lines or not lines[0].startswith('%s to ' % match.group(1)):
227 self._fail( 230 self._fail(
228 'Confused %s from/to git diff for line %s.' % 231 'Confused %s from/to git diff for line %s.' %
229 (match.group(1), line)) 232 (match.group(1), line))
230 return 233 return
231 234
232 # Handle these: 235 # Handle these:
233 # rename to <> 236 # rename to <>
234 # copy to <> 237 # copy to <>
235 match = re.match(r'^(rename|copy) to (.+)$', line) 238 match = re.match(r'^(rename|copy) to (.+)$', line)
236 if match: 239 if match:
237 if new != match.group(2): 240 if new != match.group(2):
238 self._fail('Unexpected git diff output name for line %s.' % line) 241 self._fail('Unexpected git diff output name for line %s.' % line)
239 if not last_line.startswith('%s from ' % match.group(1)): 242 if not last_line.startswith('%s from ' % match.group(1)):
240 self._fail( 243 self._fail(
241 'Confused %s from/to git diff for line %s.' % 244 'Confused %s from/to git diff for line %s.' %
242 (match.group(1), line)) 245 (match.group(1), line))
243 return 246 return
244 247
245 # Handle "new file mode \d{6}" 248 # Handle "new(| file) mode \d{6}"
246 match = re.match(r'^new file mode (\d{6})$', line) 249 match = re.match(r'^new(| file) mode (\d{6})$', line)
Dirk Pranke 2011/06/04 20:05:48 Not sure the comment tells you anything the line d
247 if match: 250 if match:
248 mode = match.group(1) 251 mode = match.group(2)
249 # Only look at owner ACL for executable. 252 # Only look at owner ACL for executable.
253 # TODO(maruel): Add support to remove a property.
250 if bool(int(mode[4]) & 1): 254 if bool(int(mode[4]) & 1):
251 self.svn_properties.append(('svn:executable', '*')) 255 self.svn_properties.append(('svn:executable', '*'))
252 256
253 # Handle "--- " 257 # Handle "--- "
254 match = re.match(r'^--- (.*)$', line) 258 match = re.match(r'^--- (.*)$', line)
255 if match: 259 if match:
256 if last_line[:3] in ('---', '+++'): 260 if last_line[:3] in ('---', '+++'):
257 self._fail('--- and +++ are reversed') 261 self._fail('--- and +++ are reversed')
258 self.is_new = match.group(1) == '/dev/null' 262 self.is_new = match.group(1) == '/dev/null'
259 # TODO(maruel): Use self.source_file. 263 # TODO(maruel): Use self.source_file.
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 for patch in self.patches: 351 for patch in self.patches:
348 patch.set_relpath(relpath) 352 patch.set_relpath(relpath)
349 353
350 def __iter__(self): 354 def __iter__(self):
351 for patch in self.patches: 355 for patch in self.patches:
352 yield patch 356 yield patch
353 357
354 @property 358 @property
355 def filenames(self): 359 def filenames(self):
356 return [p.filename for p in self.patches] 360 return [p.filename for p in self.patches]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698