blob: 471e88b5537e1f0b06ca0c59c53ab8da66ea7eaf [file] [log] [blame]
Shawn O. Pearce632768b2008-10-23 11:58:52 -07001#
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 Owenscecd1d82012-11-01 22:59:27 -070016from __future__ import print_function
Shawn O. Pearce632768b2008-10-23 11:58:52 -070017import re
18import sys
19
20from command import Command
21
22CHANGE_RE = re.compile(r'^([1-9][0-9]*)(?:[/\.-]([1-9][0-9]*))?$')
23
24class Download(Command):
25 common = True
26 helpSummary = "Download and checkout a change"
27 helpUsage = """
28%prog {project change[/patchset]}...
29"""
30 helpDescription = """
31The '%prog' command downloads a change from the review system and
32makes it available in your project's local working directory.
33"""
34
35 def _Options(self, p):
David Pursehouse8f62fb72012-11-14 12:09:38 +090036 p.add_option('-c', '--cherry-pick',
Pierre Tardye5a21222011-03-24 16:28:18 +010037 dest='cherrypick', action='store_true',
38 help="cherry-pick instead of checkout")
David Pursehouse8f62fb72012-11-14 12:09:38 +090039 p.add_option('-r', '--revert',
Erwan Mahea94f1622011-08-19 13:56:09 +020040 dest='revert', action='store_true',
41 help="revert instead of checkout")
David Pursehouse8f62fb72012-11-14 12:09:38 +090042 p.add_option('-f', '--ff-only',
Pierre Tardy3d125942012-05-04 12:18:12 +020043 dest='ffonly', action='store_true',
44 help="force fast-forward merge")
Shawn O. Pearce632768b2008-10-23 11:58:52 -070045
46 def _ParseChangeIds(self, args):
Thiago Farinade8b2c42009-09-09 00:41:34 -040047 if not args:
48 self.Usage()
49
Shawn O. Pearce632768b2008-10-23 11:58:52 -070050 to_get = []
51 project = None
52
53 for a in args:
54 m = CHANGE_RE.match(a)
55 if m:
56 if not project:
57 self.Usage()
58 chg_id = int(m.group(1))
59 if m.group(2):
60 ps_id = int(m.group(2))
61 else:
62 ps_id = 1
63 to_get.append((project, chg_id, ps_id))
64 else:
65 project = self.GetProjects([a])[0]
66 return to_get
67
68 def Execute(self, opt, args):
69 for project, change_id, ps_id in self._ParseChangeIds(args):
70 dl = project.DownloadPatchSet(change_id, ps_id)
71 if not dl:
Sarah Owenscecd1d82012-11-01 22:59:27 -070072 print('[%s] change %d/%d not found'
73 % (project.name, change_id, ps_id),
74 file=sys.stderr)
Shawn O. Pearce632768b2008-10-23 11:58:52 -070075 sys.exit(1)
76
Erwan Mahea94f1622011-08-19 13:56:09 +020077 if not opt.revert and not dl.commits:
Sarah Owenscecd1d82012-11-01 22:59:27 -070078 print('[%s] change %d/%d has already been merged'
79 % (project.name, change_id, ps_id),
80 file=sys.stderr)
Shawn O. Pearce632768b2008-10-23 11:58:52 -070081 continue
82
83 if len(dl.commits) > 1:
Sarah Owenscecd1d82012-11-01 22:59:27 -070084 print('[%s] %d/%d depends on %d unmerged changes:' \
85 % (project.name, change_id, ps_id, len(dl.commits)),
86 file=sys.stderr)
Shawn O. Pearce632768b2008-10-23 11:58:52 -070087 for c in dl.commits:
Sarah Owenscecd1d82012-11-01 22:59:27 -070088 print(' %s' % (c), file=sys.stderr)
Pierre Tardye5a21222011-03-24 16:28:18 +010089 if opt.cherrypick:
90 project._CherryPick(dl.commit)
Erwan Mahea94f1622011-08-19 13:56:09 +020091 elif opt.revert:
92 project._Revert(dl.commit)
Pierre Tardy3d125942012-05-04 12:18:12 +020093 elif opt.ffonly:
94 project._FastForward(dl.commit, ffonly=True)
Pierre Tardye5a21222011-03-24 16:28:18 +010095 else:
96 project._Checkout(dl.commit)