Mike Frysinger | f601376 | 2019-06-13 02:30:51 -0400 | [diff] [blame] | 1 | # -*- coding:utf-8 -*- |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2 | # |
| 3 | # Copyright (C) 2008 The Android Open Source Project |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 17 | from __future__ import print_function |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 18 | import os |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 19 | import sys |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 20 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 21 | from command import Command |
Zac Livingston | 9ead97b | 2017-06-13 08:29:04 -0600 | [diff] [blame] | 22 | from git_config import IsImmutable |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 23 | from git_command import git |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 24 | import gitc_utils |
Shawn O. Pearce | 0f0dfa3 | 2009-04-18 14:53:39 -0700 | [diff] [blame] | 25 | from progress import Progress |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 26 | from project import SyncBuffer |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 27 | |
| 28 | class Start(Command): |
| 29 | common = True |
| 30 | helpSummary = "Start a new branch for development" |
| 31 | helpUsage = """ |
Ficus Kirkpatrick | 6f6cd77 | 2009-04-22 17:27:12 -0700 | [diff] [blame] | 32 | %prog <newbranchname> [--all | <project>...] |
Shawn O. Pearce | 06e556d | 2009-04-18 11:19:01 -0700 | [diff] [blame] | 33 | """ |
| 34 | helpDescription = """ |
| 35 | '%prog' begins a new branch of development, starting from the |
| 36 | revision specified in the manifest. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 37 | """ |
| 38 | |
Ficus Kirkpatrick | 6f6cd77 | 2009-04-22 17:27:12 -0700 | [diff] [blame] | 39 | def _Options(self, p): |
| 40 | p.add_option('--all', |
| 41 | dest='all', action='store_true', |
| 42 | help='begin branch in all projects') |
| 43 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 44 | def Execute(self, opt, args): |
| 45 | if not args: |
| 46 | self.Usage() |
| 47 | |
| 48 | nb = args[0] |
| 49 | if not git.check_ref_format('heads/%s' % nb): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 50 | print("error: '%s' is not a valid name" % nb, file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 51 | sys.exit(1) |
| 52 | |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 53 | err = [] |
Ficus Kirkpatrick | 6f6cd77 | 2009-04-22 17:27:12 -0700 | [diff] [blame] | 54 | projects = [] |
| 55 | if not opt.all: |
| 56 | projects = args[1:] |
| 57 | if len(projects) < 1: |
Vadim Bendebury | e5c0ea0 | 2014-09-05 10:26:31 -0700 | [diff] [blame] | 58 | projects = ['.',] # start it in the local project by default |
Ficus Kirkpatrick | 6f6cd77 | 2009-04-22 17:27:12 -0700 | [diff] [blame] | 59 | |
Dan Willemsen | 04197a5 | 2015-10-07 16:53:10 -0700 | [diff] [blame] | 60 | all_projects = self.GetProjects(projects, |
| 61 | missing_ok=bool(self.gitc_manifest)) |
| 62 | |
| 63 | # This must happen after we find all_projects, since GetProjects may need |
| 64 | # the local directory, which will disappear once we save the GITC manifest. |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 65 | if self.gitc_manifest: |
Dan Willemsen | 04197a5 | 2015-10-07 16:53:10 -0700 | [diff] [blame] | 66 | gitc_projects = self.GetProjects(projects, manifest=self.gitc_manifest, |
| 67 | missing_ok=True) |
| 68 | for project in gitc_projects: |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 69 | if project.old_revision: |
| 70 | project.already_synced = True |
| 71 | else: |
| 72 | project.already_synced = False |
| 73 | project.old_revision = project.revisionExpr |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 74 | project.revisionExpr = None |
| 75 | # Save the GITC manifest. |
| 76 | gitc_utils.save_manifest(self.gitc_manifest) |
Shawn O. Pearce | 0f0dfa3 | 2009-04-18 14:53:39 -0700 | [diff] [blame] | 77 | |
Dan Willemsen | 04197a5 | 2015-10-07 16:53:10 -0700 | [diff] [blame] | 78 | # Make sure we have a valid CWD |
| 79 | if not os.path.exists(os.getcwd()): |
| 80 | os.chdir(self.manifest.topdir) |
| 81 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 82 | pm = Progress('Starting %s' % nb, len(all_projects)) |
| 83 | for project in all_projects: |
Shawn O. Pearce | 0f0dfa3 | 2009-04-18 14:53:39 -0700 | [diff] [blame] | 84 | pm.update() |
Dan Willemsen | 5ea32d1 | 2015-09-08 13:27:20 -0700 | [diff] [blame] | 85 | |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 86 | if self.gitc_manifest: |
Dan Willemsen | 5ea32d1 | 2015-09-08 13:27:20 -0700 | [diff] [blame] | 87 | gitc_project = self.gitc_manifest.paths[project.relpath] |
| 88 | # Sync projects that have not been opened. |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 89 | if not gitc_project.already_synced: |
| 90 | proj_localdir = os.path.join(self.gitc_manifest.gitc_client_dir, |
| 91 | project.relpath) |
| 92 | project.worktree = proj_localdir |
| 93 | if not os.path.exists(proj_localdir): |
| 94 | os.makedirs(proj_localdir) |
| 95 | project.Sync_NetworkHalf() |
| 96 | sync_buf = SyncBuffer(self.manifest.manifestProject.config) |
| 97 | project.Sync_LocalHalf(sync_buf) |
Dan Willemsen | 5ea32d1 | 2015-09-08 13:27:20 -0700 | [diff] [blame] | 98 | project.revisionId = gitc_project.old_revision |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 99 | |
Zac Livingston | 9ead97b | 2017-06-13 08:29:04 -0600 | [diff] [blame] | 100 | # If the current revision is immutable, such as a SHA1, a tag or |
| 101 | # a change, then we can't push back to it. Substitute with |
| 102 | # dest_branch, if defined; or with manifest default revision instead. |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 103 | branch_merge = '' |
Zac Livingston | 9ead97b | 2017-06-13 08:29:04 -0600 | [diff] [blame] | 104 | if IsImmutable(project.revisionExpr): |
Max Liu | 5fb8ed2 | 2014-06-23 14:48:16 +0800 | [diff] [blame] | 105 | if project.dest_branch: |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 106 | branch_merge = project.dest_branch |
Max Liu | 5fb8ed2 | 2014-06-23 14:48:16 +0800 | [diff] [blame] | 107 | else: |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 108 | branch_merge = self.manifest.default.revisionExpr |
Dan Willemsen | 5ea32d1 | 2015-09-08 13:27:20 -0700 | [diff] [blame] | 109 | |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 110 | if not project.StartBranch(nb, branch_merge=branch_merge): |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 111 | err.append(project) |
Shawn O. Pearce | 0f0dfa3 | 2009-04-18 14:53:39 -0700 | [diff] [blame] | 112 | pm.end() |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 113 | |
| 114 | if err: |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 115 | for p in err: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 116 | print("error: %s/: cannot start %s" % (p.relpath, nb), |
| 117 | file=sys.stderr) |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 118 | sys.exit(1) |