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

Unified Diff: presubmit_support.py

Issue 6897005: presubmit_support: cache the result of ChangedContents. (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: presubmit_support: cache the result of ChangedContents. Created 9 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/presubmit_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: presubmit_support.py
===================================================================
--- presubmit_support.py (revision 83212)
+++ presubmit_support.py (working copy)
@@ -396,7 +396,7 @@
integer line number (1-based); and
the contents of the line as a string.
- Note: The cariage return (LF or CR) is stripped off.
+ Note: The carriage return (LF or CR) is stripped off.
"""
files = self.AffectedSourceFiles(source_file_filter)
return _RightHandSideLinesImpl(files)
@@ -423,6 +423,8 @@
self._local_root = repository_root
self._is_directory = None
self._properties = {}
+ self._cached_changed_contents = None
+ self._cached_new_contents = None
logging.debug('%s(%s)' % (self.__class__.__name__, self._path))
def ServerPath(self):
@@ -475,13 +477,17 @@
side".
Contents will be empty if the file is a directory or does not exist.
- Note: The cariage returns (LF or CR) are stripped off.
+ Note: The carriage returns (LF or CR) are stripped off.
"""
- if self.IsDirectory():
- return []
- else:
- return gclient_utils.FileRead(self.AbsoluteLocalPath(),
- 'rU').splitlines()
+ if self._cached_new_contents is None:
+ self._cached_new_contents = []
+ if not self.IsDirectory():
+ try:
+ self._cached_new_contents = gclient_utils.FileRead(
+ self.AbsoluteLocalPath(), 'rU').splitlines()
+ except IOError:
+ pass # File not found? That's fine; maybe it was deleted.
+ return self._cached_new_contents[:]
def OldContents(self):
"""Returns an iterator over the lines in the old version of file.
@@ -507,7 +513,9 @@
^@@ <old line num>,<old size> <new line num>,<new size> @@$
"""
- new_lines = []
+ if self._cached_changed_contents is not None:
+ return self._cached_changed_contents[:]
+ self._cached_changed_contents = []
line_num = 0
if self.IsDirectory():
@@ -519,10 +527,10 @@
line_num = int(m.groups(1)[0])
continue
if line.startswith('+') and not line.startswith('++'):
- new_lines.append((line_num, line[1:]))
+ self._cached_changed_contents.append((line_num, line[1:]))
if not line.startswith('-'):
line_num += 1
- return new_lines
+ return self._cached_changed_contents[:]
def __str__(self):
return self.LocalPath()
« no previous file with comments | « no previous file | tests/presubmit_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698