2012-01-23 18:45:41 +01:00
|
|
|
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license
|
|
|
|
# that can be found in the LICENSE file in the root of the source
|
|
|
|
# tree. An additional intellectual property rights grant can be found
|
|
|
|
# in the file PATENTS. All contributing project authors may
|
|
|
|
# be found in the AUTHORS file in the root of the source tree.
|
2011-05-30 13:51:34 +02:00
|
|
|
|
2012-01-26 22:24:23 +01:00
|
|
|
def _LicenseHeader(input_api):
|
|
|
|
"""Returns the license header regexp."""
|
|
|
|
license_header = (
|
2012-01-23 18:45:41 +01:00
|
|
|
r'.*? Copyright \(c\) %(year)s The WebRTC project authors\. '
|
|
|
|
r'All Rights Reserved\.\n'
|
|
|
|
r'.*?\n'
|
|
|
|
r'.*? Use of this source code is governed by a BSD-style license\n'
|
2011-05-30 13:51:34 +02:00
|
|
|
r'.*? that can be found in the LICENSE file in the root of the source\n'
|
2012-01-23 18:45:41 +01:00
|
|
|
r'.*? tree\. An additional intellectual property rights grant can be '
|
|
|
|
r'found\n'
|
|
|
|
r'.*? in the file PATENTS\. All contributing project authors may\n'
|
|
|
|
r'.*? be found in the AUTHORS file in the root of the source tree\.\n'
|
|
|
|
) % {
|
|
|
|
'year': input_api.time.strftime('%Y'),
|
|
|
|
}
|
2012-01-26 22:24:23 +01:00
|
|
|
return license_header
|
2011-05-30 13:51:34 +02:00
|
|
|
|
2012-01-26 22:24:23 +01:00
|
|
|
def _CommonChecks(input_api, output_api):
|
|
|
|
"""Checks common to both upload and commit."""
|
2011-05-30 13:51:34 +02:00
|
|
|
results = []
|
2012-01-23 18:45:41 +01:00
|
|
|
results.extend(input_api.canned_checks.CheckLongLines(
|
2012-01-26 22:24:23 +01:00
|
|
|
input_api, output_api))
|
2012-01-23 18:45:41 +01:00
|
|
|
results.extend(input_api.canned_checks.CheckChangeHasNoTabs(
|
|
|
|
input_api, output_api))
|
2012-01-26 22:24:23 +01:00
|
|
|
results.extend(input_api.canned_checks.CheckChangeHasNoStrayWhitespace(
|
|
|
|
input_api, output_api))
|
|
|
|
results.extend(input_api.canned_checks.CheckChangeTodoHasOwner(
|
|
|
|
input_api, output_api))
|
2012-01-23 18:45:41 +01:00
|
|
|
results.extend(input_api.canned_checks.CheckLicense(
|
2012-01-26 22:24:23 +01:00
|
|
|
input_api, output_api, _LicenseHeader(input_api)))
|
|
|
|
return results
|
2011-05-30 13:51:34 +02:00
|
|
|
|
2012-01-26 22:24:23 +01:00
|
|
|
def CheckChangeOnUpload(input_api, output_api):
|
|
|
|
results = []
|
|
|
|
results.extend(_CommonChecks(input_api, output_api))
|
2012-01-23 18:45:41 +01:00
|
|
|
return results
|
2011-05-30 13:51:34 +02:00
|
|
|
|
2012-01-23 18:45:41 +01:00
|
|
|
def CheckChangeOnCommit(input_api, output_api):
|
2011-06-09 09:07:24 +02:00
|
|
|
results = []
|
2012-01-26 22:24:23 +01:00
|
|
|
results.extend(_CommonChecks(input_api, output_api))
|
2011-06-09 09:07:24 +02:00
|
|
|
results.extend(input_api.canned_checks.CheckOwners(input_api, output_api))
|
2012-01-26 22:24:23 +01:00
|
|
|
results.extend(input_api.canned_checks.CheckChangeWasUploaded(
|
|
|
|
input_api, output_api))
|
|
|
|
results.extend(input_api.canned_checks.CheckChangeHasDescription(
|
|
|
|
input_api, output_api))
|
2011-06-09 09:07:24 +02:00
|
|
|
return results
|