blob: c8c22bf07d80aced791d534b41d305fe55dc6838 [file] [log] [blame]
Hector Dearman534765e2017-11-01 11:17:38 +00001# Copyright (C) 2017 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Sami Kyostilab27619f2017-12-13 19:22:16 +000015import subprocess
16
17
Hector Dearman534765e2017-11-01 11:17:38 +000018def CheckChange(input, output):
Sami Kyostilab27619f2017-12-13 19:22:16 +000019 # There apparently is no way to wrap strings in blueprints, so ignore long
20 # lines in them.
21 long_line_sources = lambda x: input.FilterSourceFile(
22 x, white_list=".*", black_list=['Android[.]bp'])
23
Hector Dearman534765e2017-11-01 11:17:38 +000024 results = []
25 results += input.canned_checks.CheckDoNotSubmit(input, output)
26 results += input.canned_checks.CheckChangeHasNoTabs(input, output)
Sami Kyostilab27619f2017-12-13 19:22:16 +000027 results += input.canned_checks.CheckLongLines(
28 input, output, 80, source_file_filter=long_line_sources)
Hector Dearman534765e2017-11-01 11:17:38 +000029 results += input.canned_checks.CheckPatchFormatted(input, output)
30 results += input.canned_checks.CheckGNFormatted(input, output)
Sami Kyostilab27619f2017-12-13 19:22:16 +000031 results += CheckAndroidBlueprint(input, output)
Primiano Tuccic5010802018-01-19 17:13:21 +000032 results += CheckMergedTraceConfigProto(input, output)
Hector Dearman534765e2017-11-01 11:17:38 +000033 return results
34
Sami Kyostilab27619f2017-12-13 19:22:16 +000035
Hector Dearman534765e2017-11-01 11:17:38 +000036def CheckChangeOnUpload(input_api, output_api):
37 return CheckChange(input_api, output_api)
38
Sami Kyostilab27619f2017-12-13 19:22:16 +000039
Hector Dearman534765e2017-11-01 11:17:38 +000040def CheckChangeOnCommit(input_api, output_api):
41 return CheckChange(input_api, output_api)
42
Sami Kyostilab27619f2017-12-13 19:22:16 +000043
44def CheckAndroidBlueprint(input_api, output_api):
45 # If no GN files were modified, bail out.
46 build_file_filter = lambda x: input_api.FilterSourceFile(
47 x,
48 white_list=('.*BUILD[.]gn$', '.*[.]gni$', 'tools/gen_android_bp'))
49 if not input_api.AffectedSourceFiles(build_file_filter):
50 return []
51
52 with open('Android.bp') as f:
53 current_blueprint = f.read()
54 new_blueprint = subprocess.check_output(
55 ['tools/gen_android_bp', '--output', '/dev/stdout'])
56
57 if current_blueprint != new_blueprint:
58 return [
59 output_api.PresubmitError(
60 'Android.bp is out of date. Please run tools/gen_android_bp '
61 'to update it.')
62 ]
63 return []
Primiano Tuccic5010802018-01-19 17:13:21 +000064
65
66def CheckMergedTraceConfigProto(input_api, output_api):
67 tool = 'tools/gen_merged_trace_config'
68 build_file_filter = lambda x: input_api.FilterSourceFile(
69 x,
70 white_list=('protos/perfetto/config/.*[.]proto$', tool))
71 if not input_api.AffectedSourceFiles(build_file_filter):
72 return []
73 if subprocess.call([tool, '--check-only']):
74 return [
75 output_api.PresubmitError(
76 'trace_config_merged.proto is out of date. Please run ' +
77 tool + ' to update it.')
78 ]
79 return []