blob: 940c3413b34ce469d99b6de8bbc41f93f705df47 [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -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
Simran Basib9a1b732015-08-20 12:19:28 -070017import os
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070018import sys
Simran Basib9a1b732015-08-20 12:19:28 -070019
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070020from command import Command
Chad Jones87636f22012-06-14 16:53:40 -070021from git_config import IsId
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070022from git_command import git
Simran Basib9a1b732015-08-20 12:19:28 -070023import gitc_utils
Shawn O. Pearce0f0dfa32009-04-18 14:53:39 -070024from progress import Progress
Simran Basib9a1b732015-08-20 12:19:28 -070025from project import SyncBuffer
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070026
27class Start(Command):
28 common = True
29 helpSummary = "Start a new branch for development"
30 helpUsage = """
Ficus Kirkpatrick6f6cd772009-04-22 17:27:12 -070031%prog <newbranchname> [--all | <project>...]
Shawn O. Pearce06e556d2009-04-18 11:19:01 -070032"""
33 helpDescription = """
34'%prog' begins a new branch of development, starting from the
35revision specified in the manifest.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070036"""
37
Ficus Kirkpatrick6f6cd772009-04-22 17:27:12 -070038 def _Options(self, p):
39 p.add_option('--all',
40 dest='all', action='store_true',
41 help='begin branch in all projects')
42
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070043 def Execute(self, opt, args):
44 if not args:
45 self.Usage()
46
47 nb = args[0]
48 if not git.check_ref_format('heads/%s' % nb):
Sarah Owenscecd1d82012-11-01 22:59:27 -070049 print("error: '%s' is not a valid name" % nb, file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070050 sys.exit(1)
51
Shawn O. Pearce0a389e92009-04-10 16:21:18 -070052 err = []
Ficus Kirkpatrick6f6cd772009-04-22 17:27:12 -070053 projects = []
54 if not opt.all:
55 projects = args[1:]
56 if len(projects) < 1:
Sarah Owenscecd1d82012-11-01 22:59:27 -070057 print("error: at least one project must be specified", file=sys.stderr)
Ficus Kirkpatrick6f6cd772009-04-22 17:27:12 -070058 sys.exit(1)
59
Simran Basib9a1b732015-08-20 12:19:28 -070060 if self.gitc_manifest:
61 all_projects = self.GetProjects(projects, manifest=self.gitc_manifest,
62 missing_ok=True)
63 for project in all_projects:
64 if project.old_revision:
65 project.already_synced = True
66 else:
67 project.already_synced = False
68 project.old_revision = project.revisionExpr
Simran Basib9a1b732015-08-20 12:19:28 -070069 project.revisionExpr = None
70 # Save the GITC manifest.
71 gitc_utils.save_manifest(self.gitc_manifest)
Shawn O. Pearce0f0dfa32009-04-18 14:53:39 -070072
Simran Basib9a1b732015-08-20 12:19:28 -070073 all_projects = self.GetProjects(projects,
74 missing_ok=bool(self.gitc_manifest))
David Pursehouse8a68ff92012-09-24 12:15:13 +090075 pm = Progress('Starting %s' % nb, len(all_projects))
76 for project in all_projects:
Shawn O. Pearce0f0dfa32009-04-18 14:53:39 -070077 pm.update()
Dan Willemsen5ea32d12015-09-08 13:27:20 -070078
Simran Basib9a1b732015-08-20 12:19:28 -070079 if self.gitc_manifest:
Dan Willemsen5ea32d12015-09-08 13:27:20 -070080 gitc_project = self.gitc_manifest.paths[project.relpath]
81 # Sync projects that have not been opened.
Simran Basib9a1b732015-08-20 12:19:28 -070082 if not gitc_project.already_synced:
83 proj_localdir = os.path.join(self.gitc_manifest.gitc_client_dir,
84 project.relpath)
85 project.worktree = proj_localdir
86 if not os.path.exists(proj_localdir):
87 os.makedirs(proj_localdir)
88 project.Sync_NetworkHalf()
89 sync_buf = SyncBuffer(self.manifest.manifestProject.config)
90 project.Sync_LocalHalf(sync_buf)
Dan Willemsen5ea32d12015-09-08 13:27:20 -070091 project.revisionId = gitc_project.old_revision
Simran Basib9a1b732015-08-20 12:19:28 -070092
Chad Jones87636f22012-06-14 16:53:40 -070093 # If the current revision is a specific SHA1 then we can't push back
Max Liu5fb8ed22014-06-23 14:48:16 +080094 # to it; so substitute with dest_branch if defined, or with manifest
95 # default revision instead.
Simran Basib9a1b732015-08-20 12:19:28 -070096 branch_merge = ''
Chad Jones87636f22012-06-14 16:53:40 -070097 if IsId(project.revisionExpr):
Max Liu5fb8ed22014-06-23 14:48:16 +080098 if project.dest_branch:
Simran Basib9a1b732015-08-20 12:19:28 -070099 branch_merge = project.dest_branch
Max Liu5fb8ed22014-06-23 14:48:16 +0800100 else:
Simran Basib9a1b732015-08-20 12:19:28 -0700101 branch_merge = self.manifest.default.revisionExpr
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700102
Simran Basib9a1b732015-08-20 12:19:28 -0700103 if not project.StartBranch(nb, branch_merge=branch_merge):
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700104 err.append(project)
Shawn O. Pearce0f0dfa32009-04-18 14:53:39 -0700105 pm.end()
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700106
107 if err:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700108 for p in err:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700109 print("error: %s/: cannot start %s" % (p.relpath, nb),
110 file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700111 sys.exit(1)