OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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 """Access the commit queue from the command line. | 6 """Access the commit queue from the command line. |
7 """ | 7 """ |
8 | 8 |
9 __version__ = '0.1' | 9 __version__ = '0.1' |
10 | 10 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
70 help='Rietveld server, default: %default') | 70 help='Rietveld server, default: %default') |
71 auth.add_auth_options(parser) | 71 auth.add_auth_options(parser) |
72 | 72 |
73 # Call the original function with the modified parser. | 73 # Call the original function with the modified parser. |
74 return fn(parser, args, *extra_args, **kwargs) | 74 return fn(parser, args, *extra_args, **kwargs) |
75 | 75 |
76 hook.func_usage_more = '[options]' | 76 hook.func_usage_more = '[options]' |
77 return hook | 77 return hook |
78 | 78 |
79 | 79 |
80 def set_commit(obj, issue, flag): | 80 def _apply_on_issue(fun, obj, issue): |
81 """Sets the commit bit flag on an issue.""" | 81 """Applies function 'fun' on an issue.""" |
82 try: | 82 try: |
83 patchset = obj.get_issue_properties(issue, False)['patchsets'][-1] | 83 fun(obj.get_issue_properties(issue, False)) |
tandrii(chromium)
2015/11/30 13:54:09
this should be return, IMO, even though this CL wo
Michael Achenbach
2015/11/30 13:57:10
Done. Also explicitly made the functions return 0
| |
84 print obj.set_flag(issue, patchset, 'commit', flag) | |
85 except urllib2.HTTPError, e: | 84 except urllib2.HTTPError, e: |
86 if e.code == 404: | 85 if e.code == 404: |
87 print >> sys.stderr, 'Issue %d doesn\'t exist.' % issue | 86 print >> sys.stderr, 'Issue %d doesn\'t exist.' % issue |
88 elif e.code == 403: | 87 elif e.code == 403: |
89 print >> sys.stderr, 'Access denied to issue %d.' % issue | 88 print >> sys.stderr, 'Access denied to issue %d.' % issue |
90 else: | 89 else: |
91 raise | 90 raise |
92 return 1 | 91 return 1 |
93 | 92 |
93 def get_commit(obj, issue): | |
94 """Gets the commit bit flag of an issue.""" | |
95 def _get_commit(properties): | |
96 print int(properties['commit']) | |
97 _apply_on_issue(_get_commit, obj, issue) | |
98 | |
99 def set_commit(obj, issue, flag): | |
100 """Sets the commit bit flag on an issue.""" | |
101 def _set_commit(properties): | |
102 print obj.set_flag(issue, properties['patchsets'][-1], 'commit', flag) | |
103 _apply_on_issue(_set_commit, obj, issue) | |
104 | |
94 @need_issue | 105 @need_issue |
95 def CMDset(parser, args): | 106 def CMDset(parser, args): |
96 """Sets the commit bit.""" | 107 """Sets the commit bit.""" |
97 options, args, obj = parser.parse_args(args) | 108 options, args, obj = parser.parse_args(args) |
98 if args: | 109 if args: |
99 parser.error('Unrecognized args: %s' % ' '.join(args)) | 110 parser.error('Unrecognized args: %s' % ' '.join(args)) |
100 return set_commit(obj, options.issue, '1') | 111 return set_commit(obj, options.issue, '1') |
101 | 112 |
113 @need_issue | |
114 def CMDget(parser, args): | |
115 """Gets the commit bit.""" | |
116 options, args, obj = parser.parse_args(args) | |
117 if args: | |
118 parser.error('Unrecognized args: %s' % ' '.join(args)) | |
119 return get_commit(obj, options.issue) | |
102 | 120 |
103 @need_issue | 121 @need_issue |
104 def CMDclear(parser, args): | 122 def CMDclear(parser, args): |
105 """Clears the commit bit.""" | 123 """Clears the commit bit.""" |
106 options, args, obj = parser.parse_args(args) | 124 options, args, obj = parser.parse_args(args) |
107 if args: | 125 if args: |
108 parser.error('Unrecognized args: %s' % ' '.join(args)) | 126 parser.error('Unrecognized args: %s' % ' '.join(args)) |
109 return set_commit(obj, options.issue, '0') | 127 return set_commit(obj, options.issue, '0') |
110 | 128 |
111 | 129 |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
243 return CMDhelp(parser, args) | 261 return CMDhelp(parser, args) |
244 | 262 |
245 | 263 |
246 if __name__ == "__main__": | 264 if __name__ == "__main__": |
247 fix_encoding.fix_encoding() | 265 fix_encoding.fix_encoding() |
248 try: | 266 try: |
249 sys.exit(main()) | 267 sys.exit(main()) |
250 except KeyboardInterrupt: | 268 except KeyboardInterrupt: |
251 sys.stderr.write('interrupted\n') | 269 sys.stderr.write('interrupted\n') |
252 sys.exit(1) | 270 sys.exit(1) |
OLD | NEW |