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 and Gerrit.""" | 8 """A git-command for integrating reviews on Rietveld and Gerrit.""" |
9 | 9 |
10 from __future__ import print_function | 10 from __future__ import print_function |
(...skipping 3438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3449 @subcommand.usage('[issue_number]') | 3449 @subcommand.usage('[issue_number]') |
3450 def CMDissue(parser, args): | 3450 def CMDissue(parser, args): |
3451 """Sets or displays the current code review issue number. | 3451 """Sets or displays the current code review issue number. |
3452 | 3452 |
3453 Pass issue number 0 to clear the current issue. | 3453 Pass issue number 0 to clear the current issue. |
3454 """ | 3454 """ |
3455 parser.add_option('-r', '--reverse', action='store_true', | 3455 parser.add_option('-r', '--reverse', action='store_true', |
3456 help='Lookup the branch(es) for the specified issues. If ' | 3456 help='Lookup the branch(es) for the specified issues. If ' |
3457 'no issues are specified, all branches with mapped ' | 3457 'no issues are specified, all branches with mapped ' |
3458 'issues will be listed.') | 3458 'issues will be listed.') |
3459 parser.add_option('--json', help='Path to JSON output file.') | |
3459 _add_codereview_select_options(parser) | 3460 _add_codereview_select_options(parser) |
3460 options, args = parser.parse_args(args) | 3461 options, args = parser.parse_args(args) |
3461 _process_codereview_select_options(parser, options) | 3462 _process_codereview_select_options(parser, options) |
3462 | 3463 |
3463 if options.reverse: | 3464 if options.reverse: |
3464 branches = RunGit(['for-each-ref', 'refs/heads', | 3465 branches = RunGit(['for-each-ref', 'refs/heads', |
3465 '--format=%(refname:short)']).splitlines() | 3466 '--format=%(refname:short)']).splitlines() |
3466 | 3467 |
3467 # Reverse issue lookup. | 3468 # Reverse issue lookup. |
3468 issue_branch_map = {} | 3469 issue_branch_map = {} |
3469 for branch in branches: | 3470 for branch in branches: |
3470 cl = Changelist(branchref=branch) | 3471 cl = Changelist(branchref=branch) |
3471 issue_branch_map.setdefault(cl.GetIssue(), []).append(branch) | 3472 issue_branch_map.setdefault(cl.GetIssue(), []).append(branch) |
3472 if not args: | 3473 if not args: |
3473 args = sorted(issue_branch_map.iterkeys()) | 3474 args = sorted(issue_branch_map.iterkeys()) |
3475 result = {} | |
3474 for issue in args: | 3476 for issue in args: |
3475 if not issue: | 3477 if not issue: |
3476 continue | 3478 continue |
3479 result[int(issue)] = issue_branch_map.get(int(issue)) | |
3477 print('Branch for issue number %s: %s' % ( | 3480 print('Branch for issue number %s: %s' % ( |
3478 issue, ', '.join(issue_branch_map.get(int(issue)) or ('None',)))) | 3481 issue, ', '.join(issue_branch_map.get(int(issue)) or ('None',)))) |
3482 if options.json: | |
3483 with open(options.json, 'w') as f: | |
tandrii(chromium)
2016/08/22 10:04:31
this should be a function for easy testing. Smth l
| |
3484 json.dump(result, f) | |
3479 else: | 3485 else: |
3480 cl = Changelist(codereview=options.forced_codereview) | 3486 cl = Changelist(codereview=options.forced_codereview) |
3481 if len(args) > 0: | 3487 if len(args) > 0: |
3482 try: | 3488 try: |
3483 issue = int(args[0]) | 3489 issue = int(args[0]) |
3484 except ValueError: | 3490 except ValueError: |
3485 DieWithError('Pass a number to set the issue or none to list it.\n' | 3491 DieWithError('Pass a number to set the issue or none to list it.\n' |
3486 'Maybe you want to run git cl status?') | 3492 'Maybe you want to run git cl status?') |
3487 cl.SetIssue(issue) | 3493 cl.SetIssue(issue) |
3488 print('Issue number: %s (%s)' % (cl.GetIssue(), cl.GetIssueURL())) | 3494 print('Issue number: %s (%s)' % (cl.GetIssue(), cl.GetIssueURL())) |
3495 if options.json: | |
3496 with open(options.json, 'w') as f: | |
3497 json.dump({ | |
3498 'issue': cl.GetIssue(), | |
3499 'issue_url': cl.GetIssueURL(), | |
3500 }, f) | |
3489 return 0 | 3501 return 0 |
3490 | 3502 |
3491 | 3503 |
3492 def CMDcomments(parser, args): | 3504 def CMDcomments(parser, args): |
3493 """Shows or posts review comments for any changelist.""" | 3505 """Shows or posts review comments for any changelist.""" |
3494 parser.add_option('-a', '--add-comment', dest='comment', | 3506 parser.add_option('-a', '--add-comment', dest='comment', |
3495 help='comment to add to an issue') | 3507 help='comment to add to an issue') |
3496 parser.add_option('-i', dest='issue', | 3508 parser.add_option('-i', dest='issue', |
3497 help="review issue id (defaults to current issue)") | 3509 help="review issue id (defaults to current issue)") |
3498 parser.add_option('-j', '--json-file', | 3510 parser.add_option('-j', '--json-file', |
(...skipping 1688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5187 if __name__ == '__main__': | 5199 if __name__ == '__main__': |
5188 # These affect sys.stdout so do it outside of main() to simplify mocks in | 5200 # These affect sys.stdout so do it outside of main() to simplify mocks in |
5189 # unit testing. | 5201 # unit testing. |
5190 fix_encoding.fix_encoding() | 5202 fix_encoding.fix_encoding() |
5191 setup_color.init() | 5203 setup_color.init() |
5192 try: | 5204 try: |
5193 sys.exit(main(sys.argv[1:])) | 5205 sys.exit(main(sys.argv[1:])) |
5194 except KeyboardInterrupt: | 5206 except KeyboardInterrupt: |
5195 sys.stderr.write('interrupted\n') | 5207 sys.stderr.write('interrupted\n') |
5196 sys.exit(1) | 5208 sys.exit(1) |
OLD | NEW |