blob: 0c60d78c18772522c747319850aa1cace15c8b88 [file] [log] [blame]
Mike Frysingerf6013762019-06-13 02:30:51 -04001# -*- coding:utf-8 -*-
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
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 Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
Simran Basib9a1b732015-08-20 12:19:28 -070018import os
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070019import sys
Simran Basib9a1b732015-08-20 12:19:28 -070020
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021from command import Command
Zac Livingston9ead97b2017-06-13 08:29:04 -060022from git_config import IsImmutable
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070023from git_command import git
Simran Basib9a1b732015-08-20 12:19:28 -070024import gitc_utils
Shawn O. Pearce0f0dfa32009-04-18 14:53:39 -070025from progress import Progress
Simran Basib9a1b732015-08-20 12:19:28 -070026from project import SyncBuffer
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070027
28class Start(Command):
29 common = True
30 helpSummary = "Start a new branch for development"
31 helpUsage = """
Ficus Kirkpatrick6f6cd772009-04-22 17:27:12 -070032%prog <newbranchname> [--all | <project>...]
Shawn O. Pearce06e556d2009-04-18 11:19:01 -070033"""
34 helpDescription = """
35'%prog' begins a new branch of development, starting from the
36revision specified in the manifest.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070037"""
38
Ficus Kirkpatrick6f6cd772009-04-22 17:27:12 -070039 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 Projectcf31fe92008-10-21 07:00:00 -070044 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 Owenscecd1d82012-11-01 22:59:27 -070050 print("error: '%s' is not a valid name" % nb, file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070051 sys.exit(1)
52
Shawn O. Pearce0a389e92009-04-10 16:21:18 -070053 err = []
Ficus Kirkpatrick6f6cd772009-04-22 17:27:12 -070054 projects = []
55 if not opt.all:
56 projects = args[1:]
57 if len(projects) < 1:
Vadim Bendeburye5c0ea02014-09-05 10:26:31 -070058 projects = ['.',] # start it in the local project by default
Ficus Kirkpatrick6f6cd772009-04-22 17:27:12 -070059
Dan Willemsen04197a52015-10-07 16:53:10 -070060 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 Basib9a1b732015-08-20 12:19:28 -070065 if self.gitc_manifest:
Dan Willemsen04197a52015-10-07 16:53:10 -070066 gitc_projects = self.GetProjects(projects, manifest=self.gitc_manifest,
67 missing_ok=True)
68 for project in gitc_projects:
Simran Basib9a1b732015-08-20 12:19:28 -070069 if project.old_revision:
70 project.already_synced = True
71 else:
72 project.already_synced = False
73 project.old_revision = project.revisionExpr
Simran Basib9a1b732015-08-20 12:19:28 -070074 project.revisionExpr = None
75 # Save the GITC manifest.
76 gitc_utils.save_manifest(self.gitc_manifest)
Shawn O. Pearce0f0dfa32009-04-18 14:53:39 -070077
Dan Willemsen04197a52015-10-07 16:53:10 -070078 # Make sure we have a valid CWD
79 if not os.path.exists(os.getcwd()):
80 os.chdir(self.manifest.topdir)
81
David Pursehouse8a68ff92012-09-24 12:15:13 +090082 pm = Progress('Starting %s' % nb, len(all_projects))
83 for project in all_projects:
Shawn O. Pearce0f0dfa32009-04-18 14:53:39 -070084 pm.update()
Dan Willemsen5ea32d12015-09-08 13:27:20 -070085
Simran Basib9a1b732015-08-20 12:19:28 -070086 if self.gitc_manifest:
Dan Willemsen5ea32d12015-09-08 13:27:20 -070087 gitc_project = self.gitc_manifest.paths[project.relpath]
88 # Sync projects that have not been opened.
Simran Basib9a1b732015-08-20 12:19:28 -070089 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 Willemsen5ea32d12015-09-08 13:27:20 -070098 project.revisionId = gitc_project.old_revision
Simran Basib9a1b732015-08-20 12:19:28 -070099
Zac Livingston9ead97b2017-06-13 08:29:04 -0600100 # 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 Basib9a1b732015-08-20 12:19:28 -0700103 branch_merge = ''
Zac Livingston9ead97b2017-06-13 08:29:04 -0600104 if IsImmutable(project.revisionExpr):
Max Liu5fb8ed22014-06-23 14:48:16 +0800105 if project.dest_branch:
Simran Basib9a1b732015-08-20 12:19:28 -0700106 branch_merge = project.dest_branch
Max Liu5fb8ed22014-06-23 14:48:16 +0800107 else:
Simran Basib9a1b732015-08-20 12:19:28 -0700108 branch_merge = self.manifest.default.revisionExpr
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700109
Simran Basib9a1b732015-08-20 12:19:28 -0700110 if not project.StartBranch(nb, branch_merge=branch_merge):
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700111 err.append(project)
Shawn O. Pearce0f0dfa32009-04-18 14:53:39 -0700112 pm.end()
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700113
114 if err:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700115 for p in err:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700116 print("error: %s/: cannot start %s" % (p.relpath, nb),
117 file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700118 sys.exit(1)