2008-10-21 14:00:00 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2008 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import sys
|
|
|
|
from command import Command
|
2012-06-14 23:53:40 +00:00
|
|
|
from git_config import IsId
|
2008-10-21 14:00:00 +00:00
|
|
|
from git_command import git
|
2009-04-18 21:53:39 +00:00
|
|
|
from progress import Progress
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
class Start(Command):
|
|
|
|
common = True
|
|
|
|
helpSummary = "Start a new branch for development"
|
|
|
|
helpUsage = """
|
2009-04-23 00:27:12 +00:00
|
|
|
%prog <newbranchname> [--all | <project>...]
|
2009-04-18 18:19:01 +00:00
|
|
|
"""
|
|
|
|
helpDescription = """
|
|
|
|
'%prog' begins a new branch of development, starting from the
|
|
|
|
revision specified in the manifest.
|
2008-10-21 14:00:00 +00:00
|
|
|
"""
|
|
|
|
|
2009-04-23 00:27:12 +00:00
|
|
|
def _Options(self, p):
|
|
|
|
p.add_option('--all',
|
|
|
|
dest='all', action='store_true',
|
|
|
|
help='begin branch in all projects')
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
def Execute(self, opt, args):
|
|
|
|
if not args:
|
|
|
|
self.Usage()
|
|
|
|
|
|
|
|
nb = args[0]
|
|
|
|
if not git.check_ref_format('heads/%s' % nb):
|
|
|
|
print >>sys.stderr, "error: '%s' is not a valid name" % nb
|
|
|
|
sys.exit(1)
|
|
|
|
|
2009-04-10 23:21:18 +00:00
|
|
|
err = []
|
2009-04-23 00:27:12 +00:00
|
|
|
projects = []
|
|
|
|
if not opt.all:
|
|
|
|
projects = args[1:]
|
|
|
|
if len(projects) < 1:
|
|
|
|
print >>sys.stderr, "error: at least one project must be specified"
|
|
|
|
sys.exit(1)
|
|
|
|
|
2012-09-24 03:15:13 +00:00
|
|
|
all_projects = self.GetProjects(projects)
|
2009-04-18 21:53:39 +00:00
|
|
|
|
2012-09-24 03:15:13 +00:00
|
|
|
pm = Progress('Starting %s' % nb, len(all_projects))
|
|
|
|
for project in all_projects:
|
2009-04-18 21:53:39 +00:00
|
|
|
pm.update()
|
2012-06-14 23:53:40 +00:00
|
|
|
# If the current revision is a specific SHA1 then we can't push back
|
|
|
|
# to it so substitute the manifest default revision instead.
|
|
|
|
if IsId(project.revisionExpr):
|
|
|
|
project.revisionExpr = self.manifest.default.revisionExpr
|
2009-04-10 23:21:18 +00:00
|
|
|
if not project.StartBranch(nb):
|
|
|
|
err.append(project)
|
2009-04-18 21:53:39 +00:00
|
|
|
pm.end()
|
2009-04-10 23:21:18 +00:00
|
|
|
|
|
|
|
if err:
|
|
|
|
for p in err:
|
2009-04-18 22:04:41 +00:00
|
|
|
print >>sys.stderr,\
|
|
|
|
"error: %s/: cannot start %s" \
|
|
|
|
% (p.relpath, nb)
|
2009-04-10 23:21:18 +00:00
|
|
|
sys.exit(1)
|