Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 16 | from __future__ import print_function |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 17 | import re |
| 18 | import sys |
| 19 | |
| 20 | from command import Command |
Rob Ward | 1829101 | 2014-02-02 11:42:05 +0000 | [diff] [blame] | 21 | from error import GitError |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 22 | |
| 23 | CHANGE_RE = re.compile(r'^([1-9][0-9]*)(?:[/\.-]([1-9][0-9]*))?$') |
| 24 | |
| 25 | class Download(Command): |
| 26 | common = True |
| 27 | helpSummary = "Download and checkout a change" |
| 28 | helpUsage = """ |
| 29 | %prog {project change[/patchset]}... |
| 30 | """ |
| 31 | helpDescription = """ |
| 32 | The '%prog' command downloads a change from the review system and |
| 33 | makes it available in your project's local working directory. |
| 34 | """ |
| 35 | |
| 36 | def _Options(self, p): |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 37 | p.add_option('-c', '--cherry-pick', |
Pierre Tardy | e5a2122 | 2011-03-24 16:28:18 +0100 | [diff] [blame] | 38 | dest='cherrypick', action='store_true', |
| 39 | help="cherry-pick instead of checkout") |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 40 | p.add_option('-r', '--revert', |
Erwan Mahe | a94f162 | 2011-08-19 13:56:09 +0200 | [diff] [blame] | 41 | dest='revert', action='store_true', |
| 42 | help="revert instead of checkout") |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 43 | p.add_option('-f', '--ff-only', |
Pierre Tardy | 3d12594 | 2012-05-04 12:18:12 +0200 | [diff] [blame] | 44 | dest='ffonly', action='store_true', |
| 45 | help="force fast-forward merge") |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 46 | |
| 47 | def _ParseChangeIds(self, args): |
Thiago Farina | de8b2c4 | 2009-09-09 00:41:34 -0400 | [diff] [blame] | 48 | if not args: |
| 49 | self.Usage() |
| 50 | |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 51 | to_get = [] |
| 52 | project = None |
| 53 | |
| 54 | for a in args: |
| 55 | m = CHANGE_RE.match(a) |
| 56 | if m: |
| 57 | if not project: |
| 58 | self.Usage() |
| 59 | chg_id = int(m.group(1)) |
| 60 | if m.group(2): |
| 61 | ps_id = int(m.group(2)) |
| 62 | else: |
| 63 | ps_id = 1 |
| 64 | to_get.append((project, chg_id, ps_id)) |
| 65 | else: |
| 66 | project = self.GetProjects([a])[0] |
| 67 | return to_get |
| 68 | |
| 69 | def Execute(self, opt, args): |
| 70 | for project, change_id, ps_id in self._ParseChangeIds(args): |
| 71 | dl = project.DownloadPatchSet(change_id, ps_id) |
| 72 | if not dl: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 73 | print('[%s] change %d/%d not found' |
| 74 | % (project.name, change_id, ps_id), |
| 75 | file=sys.stderr) |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 76 | sys.exit(1) |
| 77 | |
Erwan Mahe | a94f162 | 2011-08-19 13:56:09 +0200 | [diff] [blame] | 78 | if not opt.revert and not dl.commits: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 79 | print('[%s] change %d/%d has already been merged' |
| 80 | % (project.name, change_id, ps_id), |
| 81 | file=sys.stderr) |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 82 | continue |
| 83 | |
| 84 | if len(dl.commits) > 1: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 85 | print('[%s] %d/%d depends on %d unmerged changes:' \ |
| 86 | % (project.name, change_id, ps_id, len(dl.commits)), |
| 87 | file=sys.stderr) |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 88 | for c in dl.commits: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 89 | print(' %s' % (c), file=sys.stderr) |
Pierre Tardy | e5a2122 | 2011-03-24 16:28:18 +0100 | [diff] [blame] | 90 | if opt.cherrypick: |
Rob Ward | 1829101 | 2014-02-02 11:42:05 +0000 | [diff] [blame] | 91 | try: |
| 92 | project._CherryPick(dl.commit) |
| 93 | except GitError: |
| 94 | print('[%s] Could not complete the cherry-pick of %s' \ |
| 95 | % (project.name, dl.commit), file=sys.stderr) |
Scott Anderson | 0936aea | 2014-10-17 15:37:12 -0400 | [diff] [blame] | 96 | sys.exit(1) |
Rob Ward | 1829101 | 2014-02-02 11:42:05 +0000 | [diff] [blame] | 97 | |
Erwan Mahe | a94f162 | 2011-08-19 13:56:09 +0200 | [diff] [blame] | 98 | elif opt.revert: |
| 99 | project._Revert(dl.commit) |
Pierre Tardy | 3d12594 | 2012-05-04 12:18:12 +0200 | [diff] [blame] | 100 | elif opt.ffonly: |
| 101 | project._FastForward(dl.commit, ffonly=True) |
Pierre Tardy | e5a2122 | 2011-03-24 16:28:18 +0100 | [diff] [blame] | 102 | else: |
| 103 | project._Checkout(dl.commit) |