blob: 30c3fe5172f9476fa0dfd42855721cea0b7e75e1 [file] [log] [blame]
Darryl Green7c2dd582018-03-01 14:53:49 +00001#!/usr/bin/env python3
Darryl Green78696802018-04-06 11:23:22 +01002"""
3This file is part of Mbed TLS (https://tls.mbed.org)
4
5Copyright (c) 2018, Arm Limited, All Rights Reserved
6
7Purpose
8
9This script is a small wrapper around the abi-compliance-checker and
10abi-dumper tools, applying them to compare the ABI and API of the library
11files from two different Git revisions within an Mbed TLS repository.
Darryl Greene62f9bb2019-02-21 13:09:26 +000012The results of the comparison are either formatted as HTML and stored at
Darryl Green4cde8a02019-03-05 15:21:32 +000013a configurable location, or are given as a brief list of problems.
Darryl Greene62f9bb2019-02-21 13:09:26 +000014Returns 0 on success, 1 on ABI/API non-compliance, and 2 if there is an error
15while running the script. Note: must be run from Mbed TLS root.
Darryl Green78696802018-04-06 11:23:22 +010016"""
Darryl Green7c2dd582018-03-01 14:53:49 +000017
18import os
19import sys
20import traceback
21import shutil
22import subprocess
23import argparse
24import logging
25import tempfile
Darryl Green9f357d62019-02-25 11:35:05 +000026import fnmatch
Darryl Green0d1ca512019-04-09 09:14:17 +010027from types import SimpleNamespace
Darryl Green7c2dd582018-03-01 14:53:49 +000028
Darryl Greene62f9bb2019-02-21 13:09:26 +000029import xml.etree.ElementTree as ET
30
Darryl Green7c2dd582018-03-01 14:53:49 +000031
32class AbiChecker(object):
Gilles Peskine712afa72019-02-25 20:36:52 +010033 """API and ABI checker."""
Darryl Green7c2dd582018-03-01 14:53:49 +000034
Darryl Green0d1ca512019-04-09 09:14:17 +010035 def __init__(self, old_version, new_version, configuration):
Gilles Peskine712afa72019-02-25 20:36:52 +010036 """Instantiate the API/ABI checker.
37
Darryl Green7c1a7332019-03-05 16:25:38 +000038 old_version: RepoVersion containing details to compare against
39 new_version: RepoVersion containing details to check
Darryl Greenf67e3492019-04-12 15:17:02 +010040 configuration.report_dir: directory for output files
41 configuration.keep_all_reports: if false, delete old reports
42 configuration.brief: if true, output shorter report to stdout
43 configuration.skip_file: path to file containing symbols and types to skip
Gilles Peskine712afa72019-02-25 20:36:52 +010044 """
Darryl Green7c2dd582018-03-01 14:53:49 +000045 self.repo_path = "."
46 self.log = None
Darryl Green0d1ca512019-04-09 09:14:17 +010047 self.verbose = configuration.verbose
Darryl Green3a5f6c82019-03-05 16:30:39 +000048 self._setup_logger()
Darryl Green0d1ca512019-04-09 09:14:17 +010049 self.report_dir = os.path.abspath(configuration.report_dir)
50 self.keep_all_reports = configuration.keep_all_reports
Darryl Green492bc402019-04-11 15:50:41 +010051 self.can_remove_report_dir = not (os.path.exists(self.report_dir) or
Darryl Green0d1ca512019-04-09 09:14:17 +010052 self.keep_all_reports)
Darryl Green7c1a7332019-03-05 16:25:38 +000053 self.old_version = old_version
54 self.new_version = new_version
Darryl Green0d1ca512019-04-09 09:14:17 +010055 self.skip_file = configuration.skip_file
56 self.brief = configuration.brief
Darryl Green7c2dd582018-03-01 14:53:49 +000057 self.git_command = "git"
58 self.make_command = "make"
59
Gilles Peskine712afa72019-02-25 20:36:52 +010060 @staticmethod
61 def check_repo_path():
Darryl Greena6f430f2018-03-15 10:12:06 +000062 current_dir = os.path.realpath('.')
63 root_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
64 if current_dir != root_dir:
Darryl Green7c2dd582018-03-01 14:53:49 +000065 raise Exception("Must be run from Mbed TLS root")
66
Darryl Green3a5f6c82019-03-05 16:30:39 +000067 def _setup_logger(self):
Darryl Green7c2dd582018-03-01 14:53:49 +000068 self.log = logging.getLogger()
Darryl Green3c3da792019-03-08 11:30:04 +000069 if self.verbose:
70 self.log.setLevel(logging.DEBUG)
71 else:
72 self.log.setLevel(logging.INFO)
Darryl Green7c2dd582018-03-01 14:53:49 +000073 self.log.addHandler(logging.StreamHandler())
74
Gilles Peskine712afa72019-02-25 20:36:52 +010075 @staticmethod
76 def check_abi_tools_are_installed():
Darryl Green7c2dd582018-03-01 14:53:49 +000077 for command in ["abi-dumper", "abi-compliance-checker"]:
78 if not shutil.which(command):
79 raise Exception("{} not installed, aborting".format(command))
80
Darryl Green3a5f6c82019-03-05 16:30:39 +000081 def _get_clean_worktree_for_git_revision(self, version):
Darryl Green7c1a7332019-03-05 16:25:38 +000082 """Make a separate worktree with version.revision checked out.
Gilles Peskine712afa72019-02-25 20:36:52 +010083 Do not modify the current worktree."""
Darryl Green7c2dd582018-03-01 14:53:49 +000084 git_worktree_path = tempfile.mkdtemp()
Darryl Green7c1a7332019-03-05 16:25:38 +000085 if version.repository:
Darryl Green3c3da792019-03-08 11:30:04 +000086 self.log.debug(
Darryl Greenda84e322019-02-19 16:59:33 +000087 "Checking out git worktree for revision {} from {}".format(
Darryl Green7c1a7332019-03-05 16:25:38 +000088 version.revision, version.repository
Darryl Greenda84e322019-02-19 16:59:33 +000089 )
90 )
Darryl Greenb2ee0b82019-04-12 16:24:25 +010091 fetch_output = subprocess.check_output(
Darryl Green7c1a7332019-03-05 16:25:38 +000092 [self.git_command, "fetch",
93 version.repository, version.revision],
Darryl Greenda84e322019-02-19 16:59:33 +000094 cwd=self.repo_path,
Darryl Greenda84e322019-02-19 16:59:33 +000095 stderr=subprocess.STDOUT
96 )
Darryl Green3c3da792019-03-08 11:30:04 +000097 self.log.debug(fetch_output.decode("utf-8"))
Darryl Greenda84e322019-02-19 16:59:33 +000098 worktree_rev = "FETCH_HEAD"
99 else:
Darryl Green3c3da792019-03-08 11:30:04 +0000100 self.log.debug("Checking out git worktree for revision {}".format(
Darryl Green7c1a7332019-03-05 16:25:38 +0000101 version.revision
102 ))
103 worktree_rev = version.revision
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100104 worktree_output = subprocess.check_output(
Darryl Greenda84e322019-02-19 16:59:33 +0000105 [self.git_command, "worktree", "add", "--detach",
106 git_worktree_path, worktree_rev],
Darryl Green7c2dd582018-03-01 14:53:49 +0000107 cwd=self.repo_path,
Darryl Green7c2dd582018-03-01 14:53:49 +0000108 stderr=subprocess.STDOUT
109 )
Darryl Green3c3da792019-03-08 11:30:04 +0000110 self.log.debug(worktree_output.decode("utf-8"))
Darryl Green7c2dd582018-03-01 14:53:49 +0000111 return git_worktree_path
112
Darryl Green3a5f6c82019-03-05 16:30:39 +0000113 def _update_git_submodules(self, git_worktree_path, version):
Darryl Green8184df52019-04-05 17:06:17 +0100114 """If the crypto submodule is present, initialize it.
115 if version.crypto_revision exists, update it to that revision,
116 otherwise update it to the default revision"""
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100117 update_output = subprocess.check_output(
Jaeden Ameroffeb1b82018-11-02 16:35:09 +0000118 [self.git_command, "submodule", "update", "--init", '--recursive'],
119 cwd=git_worktree_path,
Jaeden Ameroffeb1b82018-11-02 16:35:09 +0000120 stderr=subprocess.STDOUT
121 )
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100122 self.log.debug(update_output.decode("utf-8"))
Darryl Greene29ce702019-03-05 15:23:25 +0000123 if not (os.path.exists(os.path.join(git_worktree_path, "crypto"))
Darryl Green7c1a7332019-03-05 16:25:38 +0000124 and version.crypto_revision):
Darryl Greene29ce702019-03-05 15:23:25 +0000125 return
126
Darryl Green7c1a7332019-03-05 16:25:38 +0000127 if version.crypto_repository:
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100128 fetch_output = subprocess.check_output(
Darryl Green1d95c532019-03-08 11:12:19 +0000129 [self.git_command, "fetch", version.crypto_repository,
130 version.crypto_revision],
Darryl Greene29ce702019-03-05 15:23:25 +0000131 cwd=os.path.join(git_worktree_path, "crypto"),
Darryl Greene29ce702019-03-05 15:23:25 +0000132 stderr=subprocess.STDOUT
133 )
Darryl Green3c3da792019-03-08 11:30:04 +0000134 self.log.debug(fetch_output.decode("utf-8"))
Darryl Green1d95c532019-03-08 11:12:19 +0000135 crypto_rev = "FETCH_HEAD"
136 else:
137 crypto_rev = version.crypto_revision
138
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100139 checkout_output = subprocess.check_output(
Darryl Green1d95c532019-03-08 11:12:19 +0000140 [self.git_command, "checkout", crypto_rev],
141 cwd=os.path.join(git_worktree_path, "crypto"),
Darryl Green1d95c532019-03-08 11:12:19 +0000142 stderr=subprocess.STDOUT
143 )
Darryl Green3c3da792019-03-08 11:30:04 +0000144 self.log.debug(checkout_output.decode("utf-8"))
Jaeden Ameroffeb1b82018-11-02 16:35:09 +0000145
Darryl Green3a5f6c82019-03-05 16:30:39 +0000146 def _build_shared_libraries(self, git_worktree_path, version):
Gilles Peskine712afa72019-02-25 20:36:52 +0100147 """Build the shared libraries in the specified worktree."""
Darryl Green7c2dd582018-03-01 14:53:49 +0000148 my_environment = os.environ.copy()
149 my_environment["CFLAGS"] = "-g -Og"
150 my_environment["SHARED"] = "1"
Darryl Greend2dba362019-05-09 13:03:05 +0100151 if os.path.exists(os.path.join(git_worktree_path, "crypto")):
152 my_environment["USE_CRYPTO_SUBMODULE"] = "1"
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100153 make_output = subprocess.check_output(
Darryl Greenddf25a62019-02-28 11:52:39 +0000154 [self.make_command, "lib"],
Darryl Green7c2dd582018-03-01 14:53:49 +0000155 env=my_environment,
156 cwd=git_worktree_path,
Darryl Green7c2dd582018-03-01 14:53:49 +0000157 stderr=subprocess.STDOUT
158 )
Darryl Green3c3da792019-03-08 11:30:04 +0000159 self.log.debug(make_output.decode("utf-8"))
Darryl Greenf025d532019-04-12 15:18:02 +0100160 for root, _dirs, files in os.walk(git_worktree_path):
Darryl Green9f357d62019-02-25 11:35:05 +0000161 for file in fnmatch.filter(files, "*.so"):
Darryl Green7c1a7332019-03-05 16:25:38 +0000162 version.modules[os.path.splitext(file)[0]] = (
Darryl Green3e7a9802019-02-27 16:53:40 +0000163 os.path.join(root, file)
Darryl Green9f357d62019-02-25 11:35:05 +0000164 )
Darryl Green7c2dd582018-03-01 14:53:49 +0000165
Darryl Green8184df52019-04-05 17:06:17 +0100166 def _get_abi_dumps_from_shared_libraries(self, version):
Gilles Peskine712afa72019-02-25 20:36:52 +0100167 """Generate the ABI dumps for the specified git revision.
Darryl Green8184df52019-04-05 17:06:17 +0100168 The shared libraries must have been built and the module paths
169 present in version.modules."""
Darryl Green7c1a7332019-03-05 16:25:38 +0000170 for mbed_module, module_path in version.modules.items():
Darryl Green7c2dd582018-03-01 14:53:49 +0000171 output_path = os.path.join(
Darryl Greenfe9a6752019-04-04 14:39:33 +0100172 self.report_dir, "{}-{}-{}.dump".format(
173 mbed_module, version.revision, version.version
Darryl Green3e7a9802019-02-27 16:53:40 +0000174 )
Darryl Green7c2dd582018-03-01 14:53:49 +0000175 )
176 abi_dump_command = [
177 "abi-dumper",
Darryl Green9f357d62019-02-25 11:35:05 +0000178 module_path,
Darryl Green7c2dd582018-03-01 14:53:49 +0000179 "-o", output_path,
Darryl Green7c1a7332019-03-05 16:25:38 +0000180 "-lver", version.revision
Darryl Green7c2dd582018-03-01 14:53:49 +0000181 ]
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100182 abi_dump_output = subprocess.check_output(
Darryl Green7c2dd582018-03-01 14:53:49 +0000183 abi_dump_command,
Darryl Green7c2dd582018-03-01 14:53:49 +0000184 stderr=subprocess.STDOUT
185 )
Darryl Green3c3da792019-03-08 11:30:04 +0000186 self.log.debug(abi_dump_output.decode("utf-8"))
Darryl Green7c1a7332019-03-05 16:25:38 +0000187 version.abi_dumps[mbed_module] = output_path
Darryl Green7c2dd582018-03-01 14:53:49 +0000188
Darryl Green3a5f6c82019-03-05 16:30:39 +0000189 def _cleanup_worktree(self, git_worktree_path):
Gilles Peskine712afa72019-02-25 20:36:52 +0100190 """Remove the specified git worktree."""
Darryl Green7c2dd582018-03-01 14:53:49 +0000191 shutil.rmtree(git_worktree_path)
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100192 worktree_output = subprocess.check_output(
Darryl Green7c2dd582018-03-01 14:53:49 +0000193 [self.git_command, "worktree", "prune"],
194 cwd=self.repo_path,
Darryl Green7c2dd582018-03-01 14:53:49 +0000195 stderr=subprocess.STDOUT
196 )
Darryl Green3c3da792019-03-08 11:30:04 +0000197 self.log.debug(worktree_output.decode("utf-8"))
Darryl Green7c2dd582018-03-01 14:53:49 +0000198
Darryl Green3a5f6c82019-03-05 16:30:39 +0000199 def _get_abi_dump_for_ref(self, version):
Gilles Peskine712afa72019-02-25 20:36:52 +0100200 """Generate the ABI dumps for the specified git revision."""
Darryl Green3a5f6c82019-03-05 16:30:39 +0000201 git_worktree_path = self._get_clean_worktree_for_git_revision(version)
202 self._update_git_submodules(git_worktree_path, version)
203 self._build_shared_libraries(git_worktree_path, version)
Darryl Green8184df52019-04-05 17:06:17 +0100204 self._get_abi_dumps_from_shared_libraries(version)
Darryl Green3a5f6c82019-03-05 16:30:39 +0000205 self._cleanup_worktree(git_worktree_path)
Darryl Green7c2dd582018-03-01 14:53:49 +0000206
Darryl Green3a5f6c82019-03-05 16:30:39 +0000207 def _remove_children_with_tag(self, parent, tag):
Darryl Greene62f9bb2019-02-21 13:09:26 +0000208 children = parent.getchildren()
209 for child in children:
210 if child.tag == tag:
211 parent.remove(child)
212 else:
Darryl Green3a5f6c82019-03-05 16:30:39 +0000213 self._remove_children_with_tag(child, tag)
Darryl Greene62f9bb2019-02-21 13:09:26 +0000214
Darryl Green3a5f6c82019-03-05 16:30:39 +0000215 def _remove_extra_detail_from_report(self, report_root):
Darryl Greene62f9bb2019-02-21 13:09:26 +0000216 for tag in ['test_info', 'test_results', 'problem_summary',
Darryl Green8184df52019-04-05 17:06:17 +0100217 'added_symbols', 'removed_symbols', 'affected']:
Darryl Green3a5f6c82019-03-05 16:30:39 +0000218 self._remove_children_with_tag(report_root, tag)
Darryl Greene62f9bb2019-02-21 13:09:26 +0000219
220 for report in report_root:
221 for problems in report.getchildren()[:]:
222 if not problems.getchildren():
223 report.remove(problems)
224
Darryl Green7c2dd582018-03-01 14:53:49 +0000225 def get_abi_compatibility_report(self):
Gilles Peskine712afa72019-02-25 20:36:52 +0100226 """Generate a report of the differences between the reference ABI
Darryl Green8184df52019-04-05 17:06:17 +0100227 and the new ABI. ABI dumps from self.old_version and self.new_version
228 must be available."""
Darryl Green7c2dd582018-03-01 14:53:49 +0000229 compatibility_report = ""
230 compliance_return_code = 0
Darryl Green7c1a7332019-03-05 16:25:38 +0000231 shared_modules = list(set(self.old_version.modules.keys()) &
232 set(self.new_version.modules.keys()))
Darryl Green3e7a9802019-02-27 16:53:40 +0000233 for mbed_module in shared_modules:
Darryl Green7c2dd582018-03-01 14:53:49 +0000234 output_path = os.path.join(
235 self.report_dir, "{}-{}-{}.html".format(
Darryl Green7c1a7332019-03-05 16:25:38 +0000236 mbed_module, self.old_version.revision,
237 self.new_version.revision
Darryl Green7c2dd582018-03-01 14:53:49 +0000238 )
239 )
240 abi_compliance_command = [
241 "abi-compliance-checker",
242 "-l", mbed_module,
Darryl Green7c1a7332019-03-05 16:25:38 +0000243 "-old", self.old_version.abi_dumps[mbed_module],
244 "-new", self.new_version.abi_dumps[mbed_module],
Darryl Green7c2dd582018-03-01 14:53:49 +0000245 "-strict",
Darryl Greene62f9bb2019-02-21 13:09:26 +0000246 "-report-path", output_path,
Darryl Green7c2dd582018-03-01 14:53:49 +0000247 ]
Darryl Greenc2883a22019-02-20 15:01:56 +0000248 if self.skip_file:
249 abi_compliance_command += ["-skip-symbols", self.skip_file,
250 "-skip-types", self.skip_file]
Darryl Greene62f9bb2019-02-21 13:09:26 +0000251 if self.brief:
252 abi_compliance_command += ["-report-format", "xml",
253 "-stdout"]
Darryl Greenb2ee0b82019-04-12 16:24:25 +0100254 try:
255 subprocess.check_output(
256 abi_compliance_command,
257 stderr=subprocess.STDOUT
258 )
259 except subprocess.CalledProcessError as err:
260 if err.returncode == 1:
261 compliance_return_code = 1
262 if self.brief:
263 self.log.info(
264 "Compatibility issues found for {}".format(mbed_module)
265 )
266 report_root = ET.fromstring(err.output.decode("utf-8"))
267 self._remove_extra_detail_from_report(report_root)
268 self.log.info(ET.tostring(report_root).decode("utf-8"))
269 else:
270 self.can_remove_report_dir = False
271 compatibility_report += (
272 "Compatibility issues found for {}, "
273 "for details see {}\n".format(mbed_module, output_path)
274 )
275 else:
276 raise err
277 else:
Darryl Green7c2dd582018-03-01 14:53:49 +0000278 compatibility_report += (
279 "No compatibility issues for {}\n".format(mbed_module)
280 )
Darryl Greene62f9bb2019-02-21 13:09:26 +0000281 if not (self.keep_all_reports or self.brief):
Darryl Green7c2dd582018-03-01 14:53:49 +0000282 os.remove(output_path)
Darryl Green7c1a7332019-03-05 16:25:38 +0000283 os.remove(self.old_version.abi_dumps[mbed_module])
284 os.remove(self.new_version.abi_dumps[mbed_module])
Darryl Green3d3d5522019-02-25 17:01:55 +0000285 if self.can_remove_report_dir:
Darryl Green7c2dd582018-03-01 14:53:49 +0000286 os.rmdir(self.report_dir)
287 self.log.info(compatibility_report)
288 return compliance_return_code
289
290 def check_for_abi_changes(self):
Gilles Peskine712afa72019-02-25 20:36:52 +0100291 """Generate a report of ABI differences
292 between self.old_rev and self.new_rev."""
Darryl Green7c2dd582018-03-01 14:53:49 +0000293 self.check_repo_path()
294 self.check_abi_tools_are_installed()
Darryl Green3a5f6c82019-03-05 16:30:39 +0000295 self._get_abi_dump_for_ref(self.old_version)
296 self._get_abi_dump_for_ref(self.new_version)
Darryl Green7c2dd582018-03-01 14:53:49 +0000297 return self.get_abi_compatibility_report()
298
299
300def run_main():
301 try:
302 parser = argparse.ArgumentParser(
303 description=(
Darryl Green418527b2018-04-16 12:02:29 +0100304 """This script is a small wrapper around the
305 abi-compliance-checker and abi-dumper tools, applying them
306 to compare the ABI and API of the library files from two
307 different Git revisions within an Mbed TLS repository.
Darryl Greene62f9bb2019-02-21 13:09:26 +0000308 The results of the comparison are either formatted as HTML and
Darryl Green4cde8a02019-03-05 15:21:32 +0000309 stored at a configurable location, or are given as a brief list
310 of problems. Returns 0 on success, 1 on ABI/API non-compliance,
311 and 2 if there is an error while running the script.
312 Note: must be run from Mbed TLS root."""
Darryl Green7c2dd582018-03-01 14:53:49 +0000313 )
314 )
315 parser.add_argument(
Darryl Green3c3da792019-03-08 11:30:04 +0000316 "-v", "--verbose", action="store_true",
317 help="set verbosity level",
318 )
319 parser.add_argument(
Darryl Green418527b2018-04-16 12:02:29 +0100320 "-r", "--report-dir", type=str, default="reports",
Darryl Green7c2dd582018-03-01 14:53:49 +0000321 help="directory where reports are stored, default is reports",
322 )
323 parser.add_argument(
Darryl Green418527b2018-04-16 12:02:29 +0100324 "-k", "--keep-all-reports", action="store_true",
Darryl Green7c2dd582018-03-01 14:53:49 +0000325 help="keep all reports, even if there are no compatibility issues",
326 )
327 parser.add_argument(
Darryl Greenc5132ff2019-03-01 09:54:44 +0000328 "-o", "--old-rev", type=str, help="revision for old version.",
329 required=True,
Darryl Green7c2dd582018-03-01 14:53:49 +0000330 )
331 parser.add_argument(
Darryl Greenc5132ff2019-03-01 09:54:44 +0000332 "-or", "--old-repo", type=str, help="repository for old version."
Darryl Green9f357d62019-02-25 11:35:05 +0000333 )
334 parser.add_argument(
Darryl Greenc5132ff2019-03-01 09:54:44 +0000335 "-oc", "--old-crypto-rev", type=str,
336 help="revision for old crypto submodule."
Darryl Green7c2dd582018-03-01 14:53:49 +0000337 )
Darryl Greenc2883a22019-02-20 15:01:56 +0000338 parser.add_argument(
Darryl Greenc5132ff2019-03-01 09:54:44 +0000339 "-ocr", "--old-crypto-repo", type=str,
340 help="repository for old crypto submodule."
341 )
342 parser.add_argument(
343 "-n", "--new-rev", type=str, help="revision for new version",
344 required=True,
345 )
346 parser.add_argument(
347 "-nr", "--new-repo", type=str, help="repository for new version."
348 )
349 parser.add_argument(
350 "-nc", "--new-crypto-rev", type=str,
351 help="revision for new crypto version"
352 )
353 parser.add_argument(
354 "-ncr", "--new-crypto-repo", type=str,
355 help="repository for new crypto submodule."
Darryl Green9f357d62019-02-25 11:35:05 +0000356 )
357 parser.add_argument(
Darryl Greenc2883a22019-02-20 15:01:56 +0000358 "-s", "--skip-file", type=str,
359 help="path to file containing symbols and types to skip"
360 )
Darryl Greene62f9bb2019-02-21 13:09:26 +0000361 parser.add_argument(
362 "-b", "--brief", action="store_true",
363 help="output only the list of issues to stdout, instead of a full report",
364 )
Darryl Green7c2dd582018-03-01 14:53:49 +0000365 abi_args = parser.parse_args()
Darryl Green492bc402019-04-11 15:50:41 +0100366 if os.path.isfile(abi_args.report_dir):
367 print("Error: {} is not a directory".format(abi_args.report_dir))
368 parser.exit()
Darryl Green0d1ca512019-04-09 09:14:17 +0100369 old_version = SimpleNamespace(
370 version="old",
371 repository=abi_args.old_repo,
372 revision=abi_args.old_rev,
373 crypto_repository=abi_args.old_crypto_repo,
374 crypto_revision=abi_args.old_crypto_rev,
375 abi_dumps={},
376 modules={}
Darryl Green8184df52019-04-05 17:06:17 +0100377 )
Darryl Green0d1ca512019-04-09 09:14:17 +0100378 new_version = SimpleNamespace(
379 version="new",
380 repository=abi_args.new_repo,
381 revision=abi_args.new_rev,
382 crypto_repository=abi_args.new_crypto_repo,
383 crypto_revision=abi_args.new_crypto_rev,
384 abi_dumps={},
385 modules={}
Darryl Green8184df52019-04-05 17:06:17 +0100386 )
Darryl Green0d1ca512019-04-09 09:14:17 +0100387 configuration = SimpleNamespace(
388 verbose=abi_args.verbose,
389 report_dir=abi_args.report_dir,
390 keep_all_reports=abi_args.keep_all_reports,
391 brief=abi_args.brief,
392 skip_file=abi_args.skip_file
Darryl Green7c2dd582018-03-01 14:53:49 +0000393 )
Darryl Green0d1ca512019-04-09 09:14:17 +0100394 abi_check = AbiChecker(old_version, new_version, configuration)
Darryl Green7c2dd582018-03-01 14:53:49 +0000395 return_code = abi_check.check_for_abi_changes()
396 sys.exit(return_code)
Gilles Peskinee915d532019-02-25 21:39:42 +0100397 except Exception: # pylint: disable=broad-except
398 # Print the backtrace and exit explicitly so as to exit with
399 # status 2, not 1.
Darryl Greena6f430f2018-03-15 10:12:06 +0000400 traceback.print_exc()
Darryl Green7c2dd582018-03-01 14:53:49 +0000401 sys.exit(2)
402
403
404if __name__ == "__main__":
405 run_main()