blob: f1043bba9fdcca373f145451fea3b609ff49a917 [file] [log] [blame]
nick@chromium.org3ac1c4e2014-01-16 02:44:42 +00001#!/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
8clang-format binaries are pulled down from Google Cloud Storage whenever you
9sync Chrome, to platform-specific locations. This script knows how to locate
10those tools, assuming the script is invoked from inside a Chromium checkout."""
11
12import gclient_utils
13import os
14import subprocess
15import sys
16
17
18class 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.org09812232014-02-04 01:38:36 +000026def _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.org3ac1c4e2014-01-16 02:44:42 +000031 if not source_root:
32 raise NotFoundError(
ajm@chromium.org09812232014-02-04 01:38:36 +000033 '.gn file not found in any parent of the current path.')
nick@chromium.org3ac1c4e2014-01-16 02:44:42 +000034 return source_root
35
36
37def FindClangFormatToolInChromiumTree():
38 """Return a path to the clang-format executable, or die trying."""
ajm@chromium.org09812232014-02-04 01:38:36 +000039 tool_path = os.path.join(_FindChromiumSourceRoot(), 'third_party',
nick@chromium.org3ac1c4e2014-01-16 02:44:42 +000040 'clang_format', 'bin',
41 gclient_utils.GetMacWinOrLinux(),
42 'clang-format' + gclient_utils.GetExeSuffix())
43 if not os.path.exists(tool_path):
nick@chromium.org8ca1aa32014-02-25 23:57:03 +000044 raise NotFoundError('File does not exist: %s' % tool_path)
nick@chromium.org3ac1c4e2014-01-16 02:44:42 +000045 return tool_path
46
47
48def FindClangFormatScriptInChromiumTree(script_name):
49 """Return a path to a clang-format helper script, or die trying."""
ajm@chromium.org09812232014-02-04 01:38:36 +000050 script_path = os.path.join(_FindChromiumSourceRoot(), 'third_party',
thakis@chromium.org6813daf2014-02-02 19:03:18 +000051 'clang_format', 'script', script_name)
nick@chromium.org3ac1c4e2014-01-16 02:44:42 +000052 if not os.path.exists(script_path):
nick@chromium.org8ca1aa32014-02-25 23:57:03 +000053 raise NotFoundError('File does not exist: %s' % script_path)
nick@chromium.org3ac1c4e2014-01-16 02:44:42 +000054 return script_path
55
56
57def 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
73if __name__ == '__main__':
74 sys.exit(main(sys.argv))