nick@chromium.org | 3ac1c4e | 2014-01-16 02:44:42 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright 2014 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 | """Redirects to the version of clang-format checked into the Chrome tree. |
| 7 | |
| 8 | clang-format binaries are pulled down from Google Cloud Storage whenever you |
| 9 | sync Chrome, to platform-specific locations. This script knows how to locate |
| 10 | those tools, assuming the script is invoked from inside a Chromium checkout.""" |
| 11 | |
| 12 | import gclient_utils |
| 13 | import os |
| 14 | import subprocess |
| 15 | import sys |
| 16 | |
| 17 | |
| 18 | class NotFoundError(Exception): |
| 19 | """A file could not be found.""" |
| 20 | def __init__(self, e): |
| 21 | Exception.__init__(self, |
| 22 | 'Problem while looking for clang-format in Chromium source tree:\n' |
| 23 | ' %s' % e) |
| 24 | |
| 25 | |
ajm@chromium.org | 0981223 | 2014-02-04 01:38:36 +0000 | [diff] [blame] | 26 | def _FindChromiumSourceRoot(): |
| 27 | """Return the source root of the current chromium checkout, or die trying.""" |
| 28 | # The use of .gn is somewhat incongruous here, but we need a file uniquely |
| 29 | # existing at src/. GN does the same thing at least. |
| 30 | source_root = gclient_utils.FindFileUpwards('.gn') |
nick@chromium.org | 3ac1c4e | 2014-01-16 02:44:42 +0000 | [diff] [blame] | 31 | if not source_root: |
| 32 | raise NotFoundError( |
ajm@chromium.org | 0981223 | 2014-02-04 01:38:36 +0000 | [diff] [blame] | 33 | '.gn file not found in any parent of the current path.') |
nick@chromium.org | 3ac1c4e | 2014-01-16 02:44:42 +0000 | [diff] [blame] | 34 | return source_root |
| 35 | |
| 36 | |
| 37 | def FindClangFormatToolInChromiumTree(): |
| 38 | """Return a path to the clang-format executable, or die trying.""" |
ajm@chromium.org | 0981223 | 2014-02-04 01:38:36 +0000 | [diff] [blame] | 39 | tool_path = os.path.join(_FindChromiumSourceRoot(), 'third_party', |
nick@chromium.org | 3ac1c4e | 2014-01-16 02:44:42 +0000 | [diff] [blame] | 40 | 'clang_format', 'bin', |
| 41 | gclient_utils.GetMacWinOrLinux(), |
| 42 | 'clang-format' + gclient_utils.GetExeSuffix()) |
| 43 | if not os.path.exists(tool_path): |
nick@chromium.org | 8ca1aa3 | 2014-02-25 23:57:03 +0000 | [diff] [blame^] | 44 | raise NotFoundError('File does not exist: %s' % tool_path) |
nick@chromium.org | 3ac1c4e | 2014-01-16 02:44:42 +0000 | [diff] [blame] | 45 | return tool_path |
| 46 | |
| 47 | |
| 48 | def FindClangFormatScriptInChromiumTree(script_name): |
| 49 | """Return a path to a clang-format helper script, or die trying.""" |
ajm@chromium.org | 0981223 | 2014-02-04 01:38:36 +0000 | [diff] [blame] | 50 | script_path = os.path.join(_FindChromiumSourceRoot(), 'third_party', |
thakis@chromium.org | 6813daf | 2014-02-02 19:03:18 +0000 | [diff] [blame] | 51 | 'clang_format', 'script', script_name) |
nick@chromium.org | 3ac1c4e | 2014-01-16 02:44:42 +0000 | [diff] [blame] | 52 | if not os.path.exists(script_path): |
nick@chromium.org | 8ca1aa3 | 2014-02-25 23:57:03 +0000 | [diff] [blame^] | 53 | raise NotFoundError('File does not exist: %s' % script_path) |
nick@chromium.org | 3ac1c4e | 2014-01-16 02:44:42 +0000 | [diff] [blame] | 54 | return script_path |
| 55 | |
| 56 | |
| 57 | def main(args): |
| 58 | try: |
| 59 | tool = FindClangFormatToolInChromiumTree() |
| 60 | except NotFoundError, e: |
| 61 | print >> sys.stderr, e |
| 62 | sys.exit(1) |
| 63 | |
| 64 | # Add some visibility to --help showing where the tool lives, since this |
| 65 | # redirection can be a little opaque. |
| 66 | help_syntax = ('-h', '--help', '-help', '-help-list', '--help-list') |
| 67 | if any(match in args for match in help_syntax): |
| 68 | print '\nDepot tools redirects you to the clang-format at:\n %s\n' % tool |
| 69 | |
| 70 | return subprocess.call([tool] + sys.argv[1:]) |
| 71 | |
| 72 | |
| 73 | if __name__ == '__main__': |
| 74 | sys.exit(main(sys.argv)) |