OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # Copyright (C) 2008 Evan Martin <martine@danga.com> | 6 # Copyright (C) 2008 Evan Martin <martine@danga.com> |
7 | 7 |
8 """A git-command for integrating reviews on Rietveld.""" | 8 """A git-command for integrating reviews on Rietveld.""" |
9 | 9 |
10 import json | 10 import json |
(...skipping 1905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1916 _, args = parser.parse_args(args) | 1916 _, args = parser.parse_args(args) |
1917 if args: | 1917 if args: |
1918 parser.error('Unrecognized args: %s' % ' '.join(args)) | 1918 parser.error('Unrecognized args: %s' % ' '.join(args)) |
1919 cl = Changelist() | 1919 cl = Changelist() |
1920 # Ensure there actually is an issue to close. | 1920 # Ensure there actually is an issue to close. |
1921 cl.GetDescription() | 1921 cl.GetDescription() |
1922 cl.CloseIssue() | 1922 cl.CloseIssue() |
1923 return 0 | 1923 return 0 |
1924 | 1924 |
1925 | 1925 |
1926 def CMDformat(parser, args): | |
1927 """run clang-format on the diff""" | |
1928 parser.add_option('--full', action='store_true', default=False) | |
Greg Spencer (Chromium)
2013/05/02 18:20:11
It might be nice to be able to specify specific fi
M-A Ruel
2013/05/02 20:38:43
Then, this doesn't belong to git-cl. git-cl is not
agable
2013/05/02 20:50:17
Agreed with maruel@ here. If we want an easy comma
| |
1929 opts, args = parser.parse_args(args) | |
1930 if args: | |
1931 parser.error('Unrecognized args: %s' % ' '.join(args)) | |
1932 if opts.full: | |
1933 diff = RunGit(['diff', '--name-only']).split() | |
M-A Ruel
2013/05/02 20:38:43
I'd suggest you to list the valid extensions at th
agable
2013/05/02 20:50:17
I put CLANG_EXTS at the top of this function, not
| |
1934 files = [name for name in diff if | |
1935 any([name.endswith(ext) for ext in ['.cc', '.cpp', '.h']])] | |
1936 if not files: | |
1937 print "Nothing to format." | |
1938 return 0 | |
1939 cmd = ['clang-format', '-i'] + diff | |
1940 RunCommand(cmd) | |
1941 else: | |
1942 diff = RunGit(['diff', '-U0', '@{u}']) | |
M-A Ruel
2013/05/02 20:38:43
Same with filtering on the file names
| |
1943 cfd_path = os.path.join('/usr', 'lib', 'clang-format', | |
1944 'clang-format-diff.py') | |
1945 if not os.path.exists(cfd_path): | |
1946 print >> sys.stderr, 'Could not find clang-format-diff at %s.' % cfd_path | |
1947 return 2 | |
1948 cmd = [sys.executable, '/usr/lib/clang-format/clang-format-diff.py', | |
1949 '-style', 'Chromium'] | |
1950 RunCommand(cmd, stdin=diff) | |
1951 return 0 | |
1952 | |
1953 | |
1926 def Command(name): | 1954 def Command(name): |
1927 return getattr(sys.modules[__name__], 'CMD' + name, None) | 1955 return getattr(sys.modules[__name__], 'CMD' + name, None) |
1928 | 1956 |
1929 | 1957 |
1930 def CMDhelp(parser, args): | 1958 def CMDhelp(parser, args): |
1931 """print list of commands or help for a specific command""" | 1959 """print list of commands or help for a specific command""" |
1932 _, args = parser.parse_args(args) | 1960 _, args = parser.parse_args(args) |
1933 if len(args) == 1: | 1961 if len(args) == 1: |
1934 return main(args + ['--help']) | 1962 return main(args + ['--help']) |
1935 parser.print_help() | 1963 parser.print_help() |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1997 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) | 2025 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) |
1998 | 2026 |
1999 # Not a known command. Default to help. | 2027 # Not a known command. Default to help. |
2000 GenUsage(parser, 'help') | 2028 GenUsage(parser, 'help') |
2001 return CMDhelp(parser, argv) | 2029 return CMDhelp(parser, argv) |
2002 | 2030 |
2003 | 2031 |
2004 if __name__ == '__main__': | 2032 if __name__ == '__main__': |
2005 fix_encoding.fix_encoding() | 2033 fix_encoding.fix_encoding() |
2006 sys.exit(main(sys.argv[1:])) | 2034 sys.exit(main(sys.argv[1:])) |
OLD | NEW |