blob: 0ea45c3f0744df3887a78abf147b769bf0765d03 [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
16import os
17import 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):
Pierre Tardye5a21222011-03-24 16:28:18 +010036 p.add_option('-c','--cherry-pick',
37 dest='cherrypick', action='store_true',
38 help="cherry-pick instead of checkout")
Erwan Mahea94f1622011-08-19 13:56:09 +020039 p.add_option('-r','--revert',
40 dest='revert', action='store_true',
41 help="revert instead of checkout")
Pierre Tardy3d125942012-05-04 12:18:12 +020042 p.add_option('-f','--ff-only',
43 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:
72 print >>sys.stderr, \
73 '[%s] change %d/%d not found' \
74 % (project.name, change_id, ps_id)
75 sys.exit(1)
76
Erwan Mahea94f1622011-08-19 13:56:09 +020077 if not opt.revert and not dl.commits:
Shawn O. Pearce632768b2008-10-23 11:58:52 -070078 print >>sys.stderr, \
79 '[%s] change %d/%d has already been merged' \
80 % (project.name, change_id, ps_id)
81 continue
82
83 if len(dl.commits) > 1:
84 print >>sys.stderr, \
85 '[%s] %d/%d depends on %d unmerged changes:' \
86 % (project.name, change_id, ps_id, len(dl.commits))
87 for c in dl.commits:
88 print >>sys.stderr, ' %s' % (c)
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)