Chromium Code Reviews

Issue 23250002: Split generic subcommand code off its own module. (Closed)

Created:
7 years, 4 months ago by M-A Ruel
Modified:
7 years, 4 months ago
Reviewers:
iannucci
CC:
chromium-reviews, Dirk Pranke, cmp-cc_chromium.org, iannucci+depot_tools_chromium.org, ilevy-cc_chromium.org, csharp, Vadim Sh.
Visibility:
Public.

Description

Split generic subcommand code off its own module. Use the code in git_cl.py, since it was the more evolved. Add documentation and clean up the structure along the way. This makes it possible to easily reuse the generic subcommand handling code. As a first step, only git_cl.py is using it. Eventually, gclient and gcl could be switch over. R=iannucci@chromium.org BUG= Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=218072

Patch Set 1 #

Patch Set 2 : fix typo #

Patch Set 3 : improvements #

Patch Set 4 : make 'tool help cmd' work even if the OptionParser would break on missing required argument #

Patch Set 5 : typo #

Total comments: 12

Patch Set 6 : OOO design #

Total comments: 2

Patch Set 7 : rename functions #

Patch Set 8 : Remove __main__ fallback, add docstring to notify the user to use __name__ #

Patch Set 9 : shorter, no need for meta-property .module #

Patch Set 10 : More features #

Patch Set 11 : fix git cl help badcommand #

Patch Set 12 : No more ending whitespace in usage: line #

Total comments: 1
Unified diffs Side-by-side diffs Stats (+221 lines, -113 lines)
M git_cl.py View 13 chunks +20 lines, -113 lines 0 comments
A subcommand.py View 1 chunk +201 lines, -0 lines 1 comment

Messages

Total messages: 12 (0 generated)
M-A Ruel
I'm doing it so I can reuse it for isolate.py. I wanted to do this ...
7 years, 4 months ago (2013-08-15 16:30:23 UTC) #1
iannucci
https://codereview.chromium.org/23250002/diff/14001/subcommand.py File subcommand.py (right): https://codereview.chromium.org/23250002/diff/14001/subcommand.py#newcode41 subcommand.py:41: MAIN_MODULE = sys.modules['__main__'] Hm.. I don't like this (esp. ...
7 years, 4 months ago (2013-08-15 20:46:03 UTC) #2
M-A Ruel
https://codereview.chromium.org/23250002/diff/14001/subcommand.py File subcommand.py (right): https://codereview.chromium.org/23250002/diff/14001/subcommand.py#newcode41 subcommand.py:41: MAIN_MODULE = sys.modules['__main__'] On 2013/08/15 20:46:04, iannucci wrote: > ...
7 years, 4 months ago (2013-08-15 20:56:55 UTC) #3
M-A Ruel
https://codereview.chromium.org/23250002/diff/19001/subcommand.py File subcommand.py (right): https://codereview.chromium.org/23250002/diff/19001/subcommand.py#newcode65 subcommand.py:65: return sys.modules.get(self.module_name) or sys.modules.get('__main__') This is tricky because: - ...
7 years, 4 months ago (2013-08-15 21:08:27 UTC) #4
iannucci
https://codereview.chromium.org/23250002/diff/19001/subcommand.py File subcommand.py (right): https://codereview.chromium.org/23250002/diff/19001/subcommand.py#newcode61 subcommand.py:61: self.module_name = module Why not def __init__(self, module=None): self.module ...
7 years, 4 months ago (2013-08-15 21:18:52 UTC) #5
iannucci
https://codereview.chromium.org/23250002/diff/14001/subcommand.py File subcommand.py (right): https://codereview.chromium.org/23250002/diff/14001/subcommand.py#newcode49 subcommand.py:49: return hook On 2013/08/15 20:56:55, M-A Ruel wrote: > ...
7 years, 4 months ago (2013-08-15 21:23:22 UTC) #6
M-A Ruel
On 2013/08/15 21:23:22, iannucci wrote: > Also, if you're going to require the @usage decorator ...
7 years, 4 months ago (2013-08-16 13:47:20 UTC) #7
M-A Ruel
On 2013/08/16 13:47:20, M-A Ruel wrote: > On 2013/08/15 21:23:22, iannucci wrote: > > Also, ...
7 years, 4 months ago (2013-08-16 13:51:11 UTC) #8
M-A Ruel
Ok, I'm silly. Improved documentation to alert that __name__ must always be used. This fixes ...
7 years, 4 months ago (2013-08-16 14:00:15 UTC) #9
iannucci
Ok, this lgtm :) https://codereview.chromium.org/23250002/diff/34003/subcommand.py File subcommand.py (right): https://codereview.chromium.org/23250002/diff/34003/subcommand.py#newcode73 subcommand.py:73: itself with 'script'. __name__ always ...
7 years, 4 months ago (2013-08-16 19:53:06 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/maruel@chromium.org/23250002/34003
7 years, 4 months ago (2013-08-16 20:04:17 UTC) #11
commit-bot: I haz the power
7 years, 4 months ago (2013-08-16 20:06:19 UTC) #12
Message was sent while issue was closed.
Change committed as 218072

Powered by Google App Engine