blob: 0829f18e828923aafdb6e9a2a799e66fb70adf2f [file] [log] [blame]
maruel@google.comfb2b8eb2009-04-23 21:03:42 +00001#!/usr/bin/python
2# Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6"""Enables directory-specific presubmit checks to run at upload and/or commit.
7"""
8
maruel@chromium.orgb7d46902009-06-10 14:12:10 +00009__version__ = '1.3.2'
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000010
11# TODO(joi) Add caching where appropriate/needed. The API is designed to allow
12# caching (between all different invocations of presubmit scripts for a given
13# change). We should add it as our presubmit scripts start feeling slow.
14
15import cPickle # Exposed through the API.
16import cStringIO # Exposed through the API.
17import exceptions
18import fnmatch
19import glob
maruel@chromium.orgdf1595a2009-06-11 02:00:13 +000020import logging
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000021import marshal # Exposed through the API.
22import optparse
23import os # Somewhat exposed through the API.
24import pickle # Exposed through the API.
maruel@chromium.orgce8e46b2009-06-26 22:31:51 +000025import random
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000026import re # Exposed through the API.
27import subprocess # Exposed through the API.
28import sys # Parts exposed through API.
29import tempfile # Exposed through the API.
jam@chromium.org2a891dc2009-08-20 20:33:37 +000030import time
maruel@chromium.orgd7dccf52009-06-06 18:51:58 +000031import traceback # Exposed through the API.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000032import types
maruel@chromium.org1487d532009-06-06 00:22:57 +000033import unittest # Exposed through the API.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000034import urllib2 # Exposed through the API.
maruel@chromium.org1e08c002009-05-28 19:09:33 +000035import warnings
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000036
37# Local imports.
38# TODO(joi) Would be cleaner to factor out utils in gcl to separate module, but
39# for now it would only be a couple of functions so hardly worth it.
40import gcl
maruel@chromium.org46a94102009-05-12 20:32:43 +000041import gclient
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000042import presubmit_canned_checks
43
44
maruel@chromium.orgce8e46b2009-06-26 22:31:51 +000045# Ask for feedback only once in program lifetime.
46_ASKED_FOR_FEEDBACK = False
47
48
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000049class NotImplementedException(Exception):
50 """We're leaving placeholders in a bunch of places to remind us of the
51 design of the API, but we have not implemented all of it yet. Implement as
52 the need arises.
53 """
54 pass
55
56
57def normpath(path):
58 '''Version of os.path.normpath that also changes backward slashes to
59 forward slashes when not running on Windows.
60 '''
61 # This is safe to always do because the Windows version of os.path.normpath
62 # will replace forward slashes with backward slashes.
63 path = path.replace(os.sep, '/')
64 return os.path.normpath(path)
65
66
maruel@google.comfb2b8eb2009-04-23 21:03:42 +000067class OutputApi(object):
68 """This class (more like a module) gets passed to presubmit scripts so that
69 they can specify various types of results.
70 """
71
72 class PresubmitResult(object):
73 """Base class for result objects."""
74
75 def __init__(self, message, items=None, long_text=''):
76 """
77 message: A short one-line message to indicate errors.
78 items: A list of short strings to indicate where errors occurred.
79 long_text: multi-line text output, e.g. from another tool
80 """
81 self._message = message
82 self._items = []
83 if items:
84 self._items = items
85 self._long_text = long_text.rstrip()
86
87 def _Handle(self, output_stream, input_stream, may_prompt=True):
88 """Writes this result to the output stream.
89
90 Args:
91 output_stream: Where to write
92
93 Returns:
94 True if execution may continue, False otherwise.
95 """
96 output_stream.write(self._message)
97 output_stream.write('\n')
98 for item in self._items:
maruel@chromium.org5de13972009-06-10 18:16:06 +000099 output_stream.write(' %s\n' % str(item))
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000100 if self._long_text:
maruel@chromium.orgb0dfd352009-06-10 14:12:54 +0000101 output_stream.write('\n***************\n%s\n***************\n' %
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000102 self._long_text)
103
104 if self.ShouldPrompt() and may_prompt:
105 output_stream.write('Are you sure you want to continue? (y/N): ')
106 response = input_stream.readline()
107 if response.strip().lower() != 'y':
108 return False
109
110 return not self.IsFatal()
111
112 def IsFatal(self):
113 """An error that is fatal stops g4 mail/submit immediately, i.e. before
114 other presubmit scripts are run.
115 """
116 return False
117
118 def ShouldPrompt(self):
119 """Whether this presubmit result should result in a prompt warning."""
120 return False
121
122 class PresubmitError(PresubmitResult):
123 """A hard presubmit error."""
124 def IsFatal(self):
125 return True
126
127 class PresubmitPromptWarning(PresubmitResult):
128 """An warning that prompts the user if they want to continue."""
129 def ShouldPrompt(self):
130 return True
131
132 class PresubmitNotifyResult(PresubmitResult):
133 """Just print something to the screen -- but it's not even a warning."""
134 pass
135
136 class MailTextResult(PresubmitResult):
137 """A warning that should be included in the review request email."""
138 def __init__(self, *args, **kwargs):
139 raise NotImplementedException() # TODO(joi) Implement.
140
141
142class InputApi(object):
143 """An instance of this object is passed to presubmit scripts so they can
144 know stuff about the change they're looking at.
145 """
146
maruel@chromium.org3410d912009-06-09 20:56:16 +0000147 # File extensions that are considered source files from a style guide
148 # perspective. Don't modify this list from a presubmit script!
149 DEFAULT_WHITE_LIST = (
150 # C++ and friends
151 r".*\.c", r".*\.cc", r".*\.cpp", r".*\.h", r".*\.m", r".*\.mm",
152 r".*\.inl", r".*\.asm", r".*\.hxx", r".*\.hpp",
153 # Scripts
154 r".*\.js", r".*\.py", r".*\.json", r".*\.sh", r".*\.rb",
155 # No extension at all
156 r"(^|.*[\\\/])[^.]+$",
157 # Other
158 r".*\.java", r".*\.mk", r".*\.am",
159 )
160
161 # Path regexp that should be excluded from being considered containing source
162 # files. Don't modify this list from a presubmit script!
163 DEFAULT_BLACK_LIST = (
164 r".*\bexperimental[\\\/].*",
165 r".*\bthird_party[\\\/].*",
166 # Output directories (just in case)
167 r".*\bDebug[\\\/].*",
168 r".*\bRelease[\\\/].*",
169 r".*\bxcodebuild[\\\/].*",
170 r".*\bsconsbuild[\\\/].*",
171 # All caps files like README and LICENCE.
maruel@chromium.orgdf1595a2009-06-11 02:00:13 +0000172 r".*\b[A-Z0-9_]+$",
173 # SCM (can happen in dual SCM configuration). (Slightly over aggressive)
174 r".*\.git[\\\/].*",
175 r".*\.svn[\\\/].*",
maruel@chromium.org3410d912009-06-09 20:56:16 +0000176 )
177
maruel@chromium.orgd7dccf52009-06-06 18:51:58 +0000178 def __init__(self, change, presubmit_path, is_committing):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000179 """Builds an InputApi object.
180
181 Args:
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000182 change: A presubmit.Change object.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000183 presubmit_path: The path to the presubmit script being processed.
maruel@chromium.orgd7dccf52009-06-06 18:51:58 +0000184 is_committing: True if the change is about to be committed.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000185 """
maruel@chromium.org9711bba2009-05-22 23:51:39 +0000186 # Version number of the presubmit_support script.
187 self.version = [int(x) for x in __version__.split('.')]
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000188 self.change = change
maruel@chromium.orgd7dccf52009-06-06 18:51:58 +0000189 self.is_committing = is_committing
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000190
191 # We expose various modules and functions as attributes of the input_api
192 # so that presubmit scripts don't have to import them.
193 self.basename = os.path.basename
194 self.cPickle = cPickle
195 self.cStringIO = cStringIO
196 self.os_path = os.path
197 self.pickle = pickle
198 self.marshal = marshal
199 self.re = re
200 self.subprocess = subprocess
201 self.tempfile = tempfile
maruel@chromium.orgd7dccf52009-06-06 18:51:58 +0000202 self.traceback = traceback
maruel@chromium.org1487d532009-06-06 00:22:57 +0000203 self.unittest = unittest
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000204 self.urllib2 = urllib2
205
maruel@chromium.orgc0b22972009-06-25 16:19:14 +0000206 # To easily fork python.
207 self.python_executable = sys.executable
208 self.environ = os.environ
209
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000210 # InputApi.platform is the platform you're currently running on.
211 self.platform = sys.platform
212
213 # The local path of the currently-being-processed presubmit script.
maruel@chromium.org3d235242009-05-15 12:40:48 +0000214 self._current_presubmit_path = os.path.dirname(presubmit_path)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000215
216 # We carry the canned checks so presubmit scripts can easily use them.
217 self.canned_checks = presubmit_canned_checks
218
219 def PresubmitLocalPath(self):
220 """Returns the local path of the presubmit script currently being run.
221
222 This is useful if you don't want to hard-code absolute paths in the
223 presubmit script. For example, It can be used to find another file
224 relative to the PRESUBMIT.py script, so the whole tree can be branched and
225 the presubmit script still works, without editing its content.
226 """
maruel@chromium.org3d235242009-05-15 12:40:48 +0000227 return self._current_presubmit_path
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000228
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000229 def DepotToLocalPath(self, depot_path):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000230 """Translate a depot path to a local path (relative to client root).
231
232 Args:
233 Depot path as a string.
234
235 Returns:
236 The local path of the depot path under the user's current client, or None
237 if the file is not mapped.
238
239 Remember to check for the None case and show an appropriate error!
240 """
maruel@chromium.org46a94102009-05-12 20:32:43 +0000241 local_path = gclient.CaptureSVNInfo(depot_path).get('Path')
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000242 if local_path:
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000243 return local_path
244
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000245 def LocalToDepotPath(self, local_path):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000246 """Translate a local path to a depot path.
247
248 Args:
249 Local path (relative to current directory, or absolute) as a string.
250
251 Returns:
252 The depot path (SVN URL) of the file if mapped, otherwise None.
253 """
maruel@chromium.org46a94102009-05-12 20:32:43 +0000254 depot_path = gclient.CaptureSVNInfo(local_path).get('URL')
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000255 if depot_path:
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000256 return depot_path
257
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000258 def AffectedFiles(self, include_dirs=False, include_deletes=True):
259 """Same as input_api.change.AffectedFiles() except only lists files
260 (and optionally directories) in the same directory as the current presubmit
261 script, or subdirectories thereof.
262 """
maruel@chromium.org3d235242009-05-15 12:40:48 +0000263 dir_with_slash = normpath("%s/" % self.PresubmitLocalPath())
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000264 if len(dir_with_slash) == 1:
265 dir_with_slash = ''
maruel@chromium.org4661e0c2009-06-04 00:45:26 +0000266 return filter(
267 lambda x: normpath(x.AbsoluteLocalPath()).startswith(dir_with_slash),
268 self.change.AffectedFiles(include_dirs, include_deletes))
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000269
270 def LocalPaths(self, include_dirs=False):
271 """Returns local paths of input_api.AffectedFiles()."""
272 return [af.LocalPath() for af in self.AffectedFiles(include_dirs)]
273
274 def AbsoluteLocalPaths(self, include_dirs=False):
275 """Returns absolute local paths of input_api.AffectedFiles()."""
276 return [af.AbsoluteLocalPath() for af in self.AffectedFiles(include_dirs)]
277
278 def ServerPaths(self, include_dirs=False):
279 """Returns server paths of input_api.AffectedFiles()."""
280 return [af.ServerPath() for af in self.AffectedFiles(include_dirs)]
281
maruel@chromium.org77c4f0f2009-05-29 18:53:04 +0000282 def AffectedTextFiles(self, include_deletes=None):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000283 """Same as input_api.change.AffectedTextFiles() except only lists files
284 in the same directory as the current presubmit script, or subdirectories
285 thereof.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000286 """
maruel@chromium.org77c4f0f2009-05-29 18:53:04 +0000287 if include_deletes is not None:
288 warnings.warn("AffectedTextFiles(include_deletes=%s)"
289 " is deprecated and ignored" % str(include_deletes),
290 category=DeprecationWarning,
291 stacklevel=2)
292 return filter(lambda x: x.IsTextFile(),
293 self.AffectedFiles(include_dirs=False, include_deletes=False))
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000294
maruel@chromium.org3410d912009-06-09 20:56:16 +0000295 def FilterSourceFile(self, affected_file, white_list=None, black_list=None):
296 """Filters out files that aren't considered "source file".
297
298 If white_list or black_list is None, InputApi.DEFAULT_WHITE_LIST
299 and InputApi.DEFAULT_BLACK_LIST is used respectively.
300
301 The lists will be compiled as regular expression and
302 AffectedFile.LocalPath() needs to pass both list.
303
304 Note: Copy-paste this function to suit your needs or use a lambda function.
305 """
306 def Find(affected_file, list):
307 for item in list:
maruel@chromium.orgdf1595a2009-06-11 02:00:13 +0000308 local_path = affected_file.LocalPath()
309 if self.re.match(item, local_path):
310 logging.debug("%s matched %s" % (item, local_path))
maruel@chromium.org3410d912009-06-09 20:56:16 +0000311 return True
312 return False
313 return (Find(affected_file, white_list or self.DEFAULT_WHITE_LIST) and
314 not Find(affected_file, black_list or self.DEFAULT_BLACK_LIST))
315
316 def AffectedSourceFiles(self, source_file):
317 """Filter the list of AffectedTextFiles by the function source_file.
318
319 If source_file is None, InputApi.FilterSourceFile() is used.
320 """
321 if not source_file:
322 source_file = self.FilterSourceFile
323 return filter(source_file, self.AffectedTextFiles())
324
325 def RightHandSideLines(self, source_file_filter=None):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000326 """An iterator over all text lines in "new" version of changed files.
327
328 Only lists lines from new or modified text files in the change that are
329 contained by the directory of the currently executing presubmit script.
330
331 This is useful for doing line-by-line regex checks, like checking for
332 trailing whitespace.
333
334 Yields:
335 a 3 tuple:
336 the AffectedFile instance of the current file;
337 integer line number (1-based); and
338 the contents of the line as a string.
maruel@chromium.org1487d532009-06-06 00:22:57 +0000339
340 Note: The cariage return (LF or CR) is stripped off.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000341 """
maruel@chromium.org3410d912009-06-09 20:56:16 +0000342 files = self.AffectedSourceFiles(source_file_filter)
343 return InputApi._RightHandSideLinesImpl(files)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000344
maruel@chromium.org44a17ad2009-06-08 14:14:35 +0000345 def ReadFile(self, file, mode='r'):
346 """Reads an arbitrary file.
thestig@chromium.orgda8cddd2009-08-13 00:25:55 +0000347
maruel@chromium.org44a17ad2009-06-08 14:14:35 +0000348 Deny reading anything outside the repository.
349 """
350 if isinstance(file, AffectedFile):
351 file = file.AbsoluteLocalPath()
352 if not file.startswith(self.change.RepositoryRoot()):
353 raise IOError('Access outside the repository root is denied.')
354 return gcl.ReadFile(file, mode)
355
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000356 @staticmethod
357 def _RightHandSideLinesImpl(affected_files):
358 """Implements RightHandSideLines for InputApi and GclChange."""
359 for af in affected_files:
360 lines = af.NewContents()
361 line_number = 0
362 for line in lines:
363 line_number += 1
364 yield (af, line_number, line)
365
366
367class AffectedFile(object):
368 """Representation of a file in a change."""
369
370 def __init__(self, path, action, repository_root=''):
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000371 self._path = path
372 self._action = action
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000373 self._local_root = repository_root
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000374 self._is_directory = None
375 self._properties = {}
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000376
377 def ServerPath(self):
378 """Returns a path string that identifies the file in the SCM system.
379
380 Returns the empty string if the file does not exist in SCM.
381 """
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000382 return ""
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000383
384 def LocalPath(self):
385 """Returns the path of this file on the local disk relative to client root.
386 """
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000387 return normpath(self._path)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000388
389 def AbsoluteLocalPath(self):
390 """Returns the absolute path of this file on the local disk.
391 """
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000392 return normpath(os.path.join(self._local_root, self.LocalPath()))
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000393
394 def IsDirectory(self):
395 """Returns true if this object is a directory."""
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000396 if self._is_directory is None:
397 path = self.AbsoluteLocalPath()
398 self._is_directory = (os.path.exists(path) and
399 os.path.isdir(path))
400 return self._is_directory
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000401
402 def Action(self):
403 """Returns the action on this opened file, e.g. A, M, D, etc."""
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000404 # TODO(maruel): Somewhat crappy, Could be "A" or "A +" for svn but
405 # different for other SCM.
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000406 return self._action
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000407
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000408 def Property(self, property_name):
409 """Returns the specified SCM property of this file, or None if no such
410 property.
411 """
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000412 return self._properties.get(property_name, None)
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000413
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000414 def IsTextFile(self):
maruel@chromium.org77c4f0f2009-05-29 18:53:04 +0000415 """Returns True if the file is a text file and not a binary file.
thestig@chromium.orgda8cddd2009-08-13 00:25:55 +0000416
maruel@chromium.org77c4f0f2009-05-29 18:53:04 +0000417 Deleted files are not text file."""
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000418 raise NotImplementedError() # Implement when needed
419
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000420 def NewContents(self):
421 """Returns an iterator over the lines in the new version of file.
422
423 The new version is the file in the user's workspace, i.e. the "right hand
424 side".
425
426 Contents will be empty if the file is a directory or does not exist.
maruel@chromium.org1487d532009-06-06 00:22:57 +0000427 Note: The cariage returns (LF or CR) are stripped off.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000428 """
429 if self.IsDirectory():
430 return []
431 else:
432 return gcl.ReadFile(self.AbsoluteLocalPath()).splitlines()
433
434 def OldContents(self):
435 """Returns an iterator over the lines in the old version of file.
436
437 The old version is the file in depot, i.e. the "left hand side".
438 """
439 raise NotImplementedError() # Implement when needed
440
441 def OldFileTempPath(self):
442 """Returns the path on local disk where the old contents resides.
443
444 The old version is the file in depot, i.e. the "left hand side".
445 This is a read-only cached copy of the old contents. *DO NOT* try to
446 modify this file.
447 """
448 raise NotImplementedError() # Implement if/when needed.
449
maruel@chromium.org5de13972009-06-10 18:16:06 +0000450 def __str__(self):
451 return self.LocalPath()
452
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000453
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000454class SvnAffectedFile(AffectedFile):
455 """Representation of a file in a change out of a Subversion checkout."""
456
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000457 def __init__(self, *args, **kwargs):
458 AffectedFile.__init__(self, *args, **kwargs)
459 self._server_path = None
460 self._is_text_file = None
461
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000462 def ServerPath(self):
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000463 if self._server_path is None:
464 self._server_path = gclient.CaptureSVNInfo(
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000465 self.AbsoluteLocalPath()).get('URL', '')
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000466 return self._server_path
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000467
468 def IsDirectory(self):
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000469 if self._is_directory is None:
470 path = self.AbsoluteLocalPath()
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000471 if os.path.exists(path):
472 # Retrieve directly from the file system; it is much faster than
473 # querying subversion, especially on Windows.
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000474 self._is_directory = os.path.isdir(path)
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000475 else:
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000476 self._is_directory = gclient.CaptureSVNInfo(
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000477 path).get('Node Kind') in ('dir', 'directory')
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000478 return self._is_directory
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000479
480 def Property(self, property_name):
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000481 if not property_name in self._properties:
482 self._properties[property_name] = gcl.GetSVNFileProperty(
maruel@chromium.org196f8cb2009-06-11 00:32:06 +0000483 self.AbsoluteLocalPath(), property_name).rstrip()
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000484 return self._properties[property_name]
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000485
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000486 def IsTextFile(self):
maruel@chromium.org15bdffa2009-05-29 11:16:29 +0000487 if self._is_text_file is None:
488 if self.Action() == 'D':
489 # A deleted file is not a text file.
490 self._is_text_file = False
491 elif self.IsDirectory():
492 self._is_text_file = False
493 else:
494 mime_type = gcl.GetSVNFileProperty(self.AbsoluteLocalPath(),
495 'svn:mime-type')
496 self._is_text_file = (not mime_type or mime_type.startswith('text/'))
497 return self._is_text_file
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000498
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000499
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000500class GitAffectedFile(AffectedFile):
501 """Representation of a file in a change out of a git checkout."""
502
503 def __init__(self, *args, **kwargs):
504 AffectedFile.__init__(self, *args, **kwargs)
505 self._server_path = None
506 self._is_text_file = None
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000507
508 def ServerPath(self):
509 if self._server_path is None:
510 raise NotImplementedException() # TODO(maruel) Implement.
511 return self._server_path
512
513 def IsDirectory(self):
514 if self._is_directory is None:
515 path = self.AbsoluteLocalPath()
516 if os.path.exists(path):
517 # Retrieve directly from the file system; it is much faster than
518 # querying subversion, especially on Windows.
519 self._is_directory = os.path.isdir(path)
520 else:
521 # raise NotImplementedException() # TODO(maruel) Implement.
522 self._is_directory = False
523 return self._is_directory
524
525 def Property(self, property_name):
526 if not property_name in self._properties:
527 raise NotImplementedException() # TODO(maruel) Implement.
528 return self._properties[property_name]
529
530 def IsTextFile(self):
531 if self._is_text_file is None:
532 if self.Action() == 'D':
533 # A deleted file is not a text file.
534 self._is_text_file = False
535 elif self.IsDirectory():
536 self._is_text_file = False
537 else:
538 # raise NotImplementedException() # TODO(maruel) Implement.
539 self._is_text_file = os.path.isfile(self.AbsoluteLocalPath())
540 return self._is_text_file
541
542
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000543class Change(object):
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000544 """Describe a change.
545
546 Used directly by the presubmit scripts to query the current change being
547 tested.
thestig@chromium.orgda8cddd2009-08-13 00:25:55 +0000548
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000549 Instance members:
550 tags: Dictionnary of KEY=VALUE pairs found in the change description.
551 self.KEY: equivalent to tags['KEY']
552 """
553
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000554 _AFFECTED_FILES = AffectedFile
555
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000556 # Matches key/value (or "tag") lines in changelist descriptions.
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000557 _TAG_LINE_RE = re.compile(
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000558 '^\s*(?P<key>[A-Z][A-Z_0-9]*)\s*=\s*(?P<value>.*?)\s*$')
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000559
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000560 def __init__(self, name, description, local_root, files, issue, patchset):
561 if files is None:
562 files = []
563 self._name = name
564 self._full_description = description
565 self._local_root = local_root
566 self.issue = issue
567 self.patchset = patchset
thestig@chromium.orgda8cddd2009-08-13 00:25:55 +0000568 self.scm = ''
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000569
570 # From the description text, build up a dictionary of key/value pairs
571 # plus the description minus all key/value or "tag" lines.
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000572 self._description_without_tags = []
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000573 self.tags = {}
maruel@chromium.org8d5c9a52009-06-12 15:59:08 +0000574 for line in self._full_description.splitlines():
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000575 m = self._TAG_LINE_RE.match(line)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000576 if m:
577 self.tags[m.group('key')] = m.group('value')
578 else:
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000579 self._description_without_tags.append(line)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000580
581 # Change back to text and remove whitespace at end.
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000582 self._description_without_tags = '\n'.join(self._description_without_tags)
583 self._description_without_tags = self._description_without_tags.rstrip()
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000584
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000585 self._affected_files = [
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000586 self._AFFECTED_FILES(info[1], info[0].strip(), self._local_root)
587 for info in files
maruel@chromium.orgdbbeedc2009-05-22 20:26:17 +0000588 ]
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000589
maruel@chromium.org92022ec2009-06-11 01:59:28 +0000590 def Name(self):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000591 """Returns the change name."""
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000592 return self._name
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000593
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000594 def DescriptionText(self):
595 """Returns the user-entered changelist description, minus tags.
596
597 Any line in the user-provided description starting with e.g. "FOO="
598 (whitespace permitted before and around) is considered a tag line. Such
599 lines are stripped out of the description this function returns.
600 """
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000601 return self._description_without_tags
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000602
603 def FullDescriptionText(self):
604 """Returns the complete changelist description including tags."""
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000605 return self._full_description
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000606
607 def RepositoryRoot(self):
maruel@chromium.org92022ec2009-06-11 01:59:28 +0000608 """Returns the repository (checkout) root directory for this change,
609 as an absolute path.
610 """
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000611 return self._local_root
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000612
613 def __getattr__(self, attr):
maruel@chromium.org92022ec2009-06-11 01:59:28 +0000614 """Return tags directly as attributes on the object."""
615 if not re.match(r"^[A-Z_]*$", attr):
616 raise AttributeError(self, attr)
maruel@chromium.orge1a524f2009-05-27 14:43:46 +0000617 return self.tags.get(attr)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000618
619 def AffectedFiles(self, include_dirs=False, include_deletes=True):
620 """Returns a list of AffectedFile instances for all files in the change.
621
622 Args:
623 include_deletes: If false, deleted files will be filtered out.
624 include_dirs: True to include directories in the list
625
626 Returns:
627 [AffectedFile(path, action), AffectedFile(path, action)]
628 """
629 if include_dirs:
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000630 affected = self._affected_files
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000631 else:
maruel@chromium.org6ebe68a2009-05-27 23:43:40 +0000632 affected = filter(lambda x: not x.IsDirectory(), self._affected_files)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000633
634 if include_deletes:
635 return affected
636 else:
637 return filter(lambda x: x.Action() != 'D', affected)
638
maruel@chromium.org77c4f0f2009-05-29 18:53:04 +0000639 def AffectedTextFiles(self, include_deletes=None):
640 """Return a list of the existing text files in a change."""
641 if include_deletes is not None:
642 warnings.warn("AffectedTextFiles(include_deletes=%s)"
643 " is deprecated and ignored" % str(include_deletes),
644 category=DeprecationWarning,
645 stacklevel=2)
646 return filter(lambda x: x.IsTextFile(),
647 self.AffectedFiles(include_dirs=False, include_deletes=False))
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000648
649 def LocalPaths(self, include_dirs=False):
650 """Convenience function."""
651 return [af.LocalPath() for af in self.AffectedFiles(include_dirs)]
652
653 def AbsoluteLocalPaths(self, include_dirs=False):
654 """Convenience function."""
655 return [af.AbsoluteLocalPath() for af in self.AffectedFiles(include_dirs)]
656
657 def ServerPaths(self, include_dirs=False):
658 """Convenience function."""
659 return [af.ServerPath() for af in self.AffectedFiles(include_dirs)]
660
661 def RightHandSideLines(self):
662 """An iterator over all text lines in "new" version of changed files.
663
664 Lists lines from new or modified text files in the change.
665
666 This is useful for doing line-by-line regex checks, like checking for
667 trailing whitespace.
668
669 Yields:
670 a 3 tuple:
671 the AffectedFile instance of the current file;
672 integer line number (1-based); and
673 the contents of the line as a string.
674 """
675 return InputApi._RightHandSideLinesImpl(
maruel@chromium.org1e08c002009-05-28 19:09:33 +0000676 filter(lambda x: x.IsTextFile(),
677 self.AffectedFiles(include_deletes=False)))
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000678
679
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000680class SvnChange(Change):
681 _AFFECTED_FILES = SvnAffectedFile
682
thestig@chromium.orgda8cddd2009-08-13 00:25:55 +0000683 def __init__(self, *args, **kwargs):
684 Change.__init__(self, *args, **kwargs)
685 self.scm = 'svn'
686
687 def GetAllModifiedFiles(self):
688 """Get all modified files."""
689 changelists = gcl.GetModifiedFiles()
690 all_modified_files = []
691 for cl in changelists.values():
692 all_modified_files.extend([f[1] for f in cl])
693 return all_modified_files
694
695 def GetModifiedFiles(self):
696 """Get modified files in the current CL."""
697 changelists = gcl.GetModifiedFiles()
698 return [f[1] for f in changelists[self.Name()]]
699
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000700
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000701class GitChange(Change):
702 _AFFECTED_FILES = GitAffectedFile
703
thestig@chromium.orgda8cddd2009-08-13 00:25:55 +0000704 def __init__(self, *args, **kwargs):
705 Change.__init__(self, *args, **kwargs)
706 self.scm = 'git'
707
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000708
maruel@chromium.org4661e0c2009-06-04 00:45:26 +0000709def ListRelevantPresubmitFiles(files, root):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000710 """Finds all presubmit files that apply to a given set of source files.
711
712 Args:
713 files: An iterable container containing file paths.
maruel@chromium.org4661e0c2009-06-04 00:45:26 +0000714 root: Path where to stop searching.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000715
716 Return:
maruel@chromium.org4661e0c2009-06-04 00:45:26 +0000717 List of absolute paths of the existing PRESUBMIT.py scripts.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000718 """
maruel@chromium.org4661e0c2009-06-04 00:45:26 +0000719 entries = []
720 for f in files:
721 f = normpath(os.path.join(root, f))
722 while f:
723 f = os.path.dirname(f)
724 if f in entries:
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000725 break
maruel@chromium.org4661e0c2009-06-04 00:45:26 +0000726 entries.append(f)
727 if f == root:
728 break
729 entries.sort()
730 entries = map(lambda x: os.path.join(x, 'PRESUBMIT.py'), entries)
731 return filter(lambda x: os.path.isfile(x), entries)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000732
733
734class PresubmitExecuter(object):
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000735 def __init__(self, change, committing):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000736 """
737 Args:
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000738 change: The Change object.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000739 committing: True if 'gcl commit' is running, False if 'gcl upload' is.
740 """
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000741 self.change = change
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000742 self.committing = committing
743
744 def ExecPresubmitScript(self, script_text, presubmit_path):
745 """Executes a single presubmit script.
746
747 Args:
748 script_text: The text of the presubmit script.
749 presubmit_path: The path to the presubmit file (this will be reported via
750 input_api.PresubmitLocalPath()).
751
752 Return:
753 A list of result objects, empty if no problems.
754 """
maruel@chromium.orgd7dccf52009-06-06 18:51:58 +0000755 input_api = InputApi(self.change, presubmit_path, self.committing)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000756 context = {}
757 exec script_text in context
758
759 # These function names must change if we make substantial changes to
760 # the presubmit API that are not backwards compatible.
761 if self.committing:
762 function_name = 'CheckChangeOnCommit'
763 else:
764 function_name = 'CheckChangeOnUpload'
765 if function_name in context:
766 context['__args'] = (input_api, OutputApi())
767 result = eval(function_name + '(*__args)', context)
768 if not (isinstance(result, types.TupleType) or
769 isinstance(result, types.ListType)):
770 raise exceptions.RuntimeError(
771 'Presubmit functions must return a tuple or list')
772 for item in result:
773 if not isinstance(item, OutputApi.PresubmitResult):
774 raise exceptions.RuntimeError(
775 'All presubmit results must be of types derived from '
776 'output_api.PresubmitResult')
777 else:
778 result = () # no error since the script doesn't care about current event.
779
780 return result
781
782
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000783def DoPresubmitChecks(change,
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000784 committing,
785 verbose,
786 output_stream,
maruel@chromium.org0ff1fab2009-05-22 13:08:15 +0000787 input_stream,
maruel@chromium.orgb0dfd352009-06-10 14:12:54 +0000788 default_presubmit,
789 may_prompt):
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000790 """Runs all presubmit checks that apply to the files in the change.
791
792 This finds all PRESUBMIT.py files in directories enclosing the files in the
793 change (up to the repository root) and calls the relevant entrypoint function
794 depending on whether the change is being committed or uploaded.
795
796 Prints errors, warnings and notifications. Prompts the user for warnings
797 when needed.
798
799 Args:
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000800 change: The Change object.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000801 committing: True if 'gcl commit' is running, False if 'gcl upload' is.
802 verbose: Prints debug info.
803 output_stream: A stream to write output from presubmit tests to.
804 input_stream: A stream to read input from the user.
maruel@chromium.org0ff1fab2009-05-22 13:08:15 +0000805 default_presubmit: A default presubmit script to execute in any case.
maruel@chromium.orgb0dfd352009-06-10 14:12:54 +0000806 may_prompt: Enable (y/n) questions on warning or error.
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000807
maruel@chromium.orgce8e46b2009-06-26 22:31:51 +0000808 Warning:
809 If may_prompt is true, output_stream SHOULD be sys.stdout and input_stream
810 SHOULD be sys.stdin.
811
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000812 Return:
813 True if execution can continue, False if not.
814 """
jam@chromium.org2a891dc2009-08-20 20:33:37 +0000815 start_time = time.time()
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000816 presubmit_files = ListRelevantPresubmitFiles(change.AbsoluteLocalPaths(True),
817 change.RepositoryRoot())
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000818 if not presubmit_files and verbose:
maruel@chromium.orgf3eee562009-05-27 00:51:10 +0000819 output_stream.write("Warning, no presubmit.py found.\n")
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000820 results = []
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000821 executer = PresubmitExecuter(change, committing)
maruel@chromium.org0ff1fab2009-05-22 13:08:15 +0000822 if default_presubmit:
823 if verbose:
maruel@chromium.orgf3eee562009-05-27 00:51:10 +0000824 output_stream.write("Running default presubmit script.\n")
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000825 fake_path = os.path.join(change.RepositoryRoot(), 'PRESUBMIT.py')
maruel@chromium.org4661e0c2009-06-04 00:45:26 +0000826 results += executer.ExecPresubmitScript(default_presubmit, fake_path)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000827 for filename in presubmit_files:
maruel@chromium.org3d235242009-05-15 12:40:48 +0000828 filename = os.path.abspath(filename)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000829 if verbose:
maruel@chromium.orgf3eee562009-05-27 00:51:10 +0000830 output_stream.write("Running %s\n" % filename)
maruel@chromium.orgc1675e22009-04-27 20:30:48 +0000831 # Accept CRLF presubmit script.
maruel@chromium.org277003e2009-05-01 12:51:43 +0000832 presubmit_script = gcl.ReadFile(filename, 'rU')
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000833 results += executer.ExecPresubmitScript(presubmit_script, filename)
834
835 errors = []
836 notifications = []
837 warnings = []
838 for result in results:
839 if not result.IsFatal() and not result.ShouldPrompt():
840 notifications.append(result)
841 elif result.ShouldPrompt():
842 warnings.append(result)
843 else:
844 errors.append(result)
845
846 error_count = 0
847 for name, items in (('Messages', notifications),
848 ('Warnings', warnings),
849 ('ERRORS', errors)):
850 if items:
maruel@chromium.orgb0dfd352009-06-10 14:12:54 +0000851 output_stream.write('** Presubmit %s **\n' % name)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000852 for item in items:
853 if not item._Handle(output_stream, input_stream,
854 may_prompt=False):
855 error_count += 1
856 output_stream.write('\n')
maruel@chromium.org07bbc212009-06-11 02:08:41 +0000857 if not errors and warnings and may_prompt:
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000858 output_stream.write(
859 'There were presubmit warnings. Sure you want to continue? (y/N): ')
860 response = input_stream.readline()
861 if response.strip().lower() != 'y':
862 error_count += 1
maruel@chromium.orgce8e46b2009-06-26 22:31:51 +0000863
jam@chromium.org2a891dc2009-08-20 20:33:37 +0000864 total_time = time.time() - start_time
865 if total_time > 1.0:
866 print "Presubmit checks took %.1fs to calculate." % total_time
maruel@chromium.orgce8e46b2009-06-26 22:31:51 +0000867 global _ASKED_FOR_FEEDBACK
868 # Ask for feedback one time out of 5.
869 if (len(results) and random.randint(0, 4) == 0 and not _ASKED_FOR_FEEDBACK):
870 output_stream.write("Was the presubmit check useful? Please send feedback "
871 "& hate mail to maruel@chromium.org!\n")
872 _ASKED_FOR_FEEDBACK = True
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000873 return (error_count == 0)
874
875
876def ScanSubDirs(mask, recursive):
877 if not recursive:
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000878 return [x for x in glob.glob(mask) if '.svn' not in x and '.git' not in x]
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000879 else:
880 results = []
881 for root, dirs, files in os.walk('.'):
882 if '.svn' in dirs:
883 dirs.remove('.svn')
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000884 if '.git' in dirs:
885 dirs.remove('.git')
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000886 for name in files:
887 if fnmatch.fnmatch(name, mask):
888 results.append(os.path.join(root, name))
889 return results
890
891
892def ParseFiles(args, recursive):
893 files = []
894 for arg in args:
895 files.extend([('M', file) for file in ScanSubDirs(arg, recursive)])
896 return files
897
898
899def Main(argv):
900 parser = optparse.OptionParser(usage="%prog [options]",
901 version="%prog " + str(__version__))
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000902 parser.add_option("-c", "--commit", action="store_true", default=False,
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000903 help="Use commit instead of upload checks")
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000904 parser.add_option("-u", "--upload", action="store_false", dest='commit',
905 help="Use upload instead of commit checks")
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000906 parser.add_option("-r", "--recursive", action="store_true",
907 help="Act recursively")
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000908 parser.add_option("-v", "--verbose", action="store_true", default=False,
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000909 help="Verbose output")
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000910 parser.add_option("--files")
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000911 parser.add_option("--name", default='no name')
912 parser.add_option("--description", default='')
913 parser.add_option("--issue", type='int', default=0)
914 parser.add_option("--patchset", type='int', default=0)
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000915 parser.add_option("--root", default='')
916 parser.add_option("--default_presubmit")
917 parser.add_option("--may_prompt", action='store_true', default=False)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000918 options, args = parser.parse_args(argv[1:])
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000919 if not options.root:
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000920 options.root = os.getcwd()
921 if os.path.isdir(os.path.join(options.root, '.git')):
922 change_class = GitChange
923 if not options.files:
924 if args:
925 options.files = ParseFiles(args, options.recursive)
926 else:
927 # Grab modified files.
928 raise NotImplementedException() # TODO(maruel) Implement.
929 elif os.path.isdir(os.path.join(options.root, '.svn')):
930 change_class = SvnChange
931 if not options.files:
932 if args:
933 options.files = ParseFiles(args, options.recursive)
934 else:
935 # Grab modified files.
936 files = gclient.CaptureSVNStatus([options.root])
937 else:
938 # Doesn't seem under source control.
939 change_class = Change
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000940 if options.verbose:
maruel@chromium.orgc70a2202009-06-17 12:55:10 +0000941 print "Found %d files." % len(options.files)
942 return not DoPresubmitChecks(change_class(options.name,
943 options.description,
944 options.root,
945 options.files,
946 options.issue,
947 options.patchset),
maruel@chromium.org0ff1fab2009-05-22 13:08:15 +0000948 options.commit,
949 options.verbose,
950 sys.stdout,
951 sys.stdin,
maruel@chromium.org4ff922a2009-06-12 20:20:19 +0000952 options.default_presubmit,
953 options.may_prompt)
maruel@google.comfb2b8eb2009-04-23 21:03:42 +0000954
955
956if __name__ == '__main__':
957 sys.exit(Main(sys.argv))