2009-03-04 22:26:50 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 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.
|
|
|
|
|
2012-11-02 05:59:27 +00:00
|
|
|
from __future__ import print_function
|
2009-03-04 22:26:50 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2009-03-05 18:32:38 +00:00
|
|
|
from command import PagedCommand
|
2009-03-04 22:26:50 +00:00
|
|
|
|
2009-03-05 18:32:38 +00:00
|
|
|
class Manifest(PagedCommand):
|
2009-03-04 22:26:50 +00:00
|
|
|
common = False
|
2009-03-05 18:32:38 +00:00
|
|
|
helpSummary = "Manifest inspection utility"
|
2009-03-04 22:26:50 +00:00
|
|
|
helpUsage = """
|
2009-03-05 18:32:38 +00:00
|
|
|
%prog [-o {-|NAME.xml} [-r]]
|
2009-03-04 22:26:50 +00:00
|
|
|
"""
|
|
|
|
_helpDescription = """
|
2009-03-05 18:32:38 +00:00
|
|
|
|
|
|
|
With the -o option, exports the current manifest for inspection.
|
|
|
|
The manifest and (if present) local_manifest.xml are combined
|
|
|
|
together to produce a single manifest file. This file can be stored
|
|
|
|
in a Git repository for use during future 'repo init' invocations.
|
|
|
|
|
2009-03-04 22:26:50 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def helpDescription(self):
|
2012-09-24 03:15:13 +00:00
|
|
|
helptext = self._helpDescription + '\n'
|
2009-03-04 22:26:50 +00:00
|
|
|
r = os.path.dirname(__file__)
|
|
|
|
r = os.path.dirname(r)
|
|
|
|
fd = open(os.path.join(r, 'docs', 'manifest-format.txt'))
|
|
|
|
for line in fd:
|
2012-09-24 03:15:13 +00:00
|
|
|
helptext += line
|
2009-03-04 22:26:50 +00:00
|
|
|
fd.close()
|
2012-09-24 03:15:13 +00:00
|
|
|
return helptext
|
2009-03-04 22:26:50 +00:00
|
|
|
|
2009-03-05 18:32:38 +00:00
|
|
|
def _Options(self, p):
|
|
|
|
p.add_option('-r', '--revision-as-HEAD',
|
|
|
|
dest='peg_rev', action='store_true',
|
|
|
|
help='Save revisions as current HEAD')
|
2012-09-29 03:21:57 +00:00
|
|
|
p.add_option('--suppress-upstream-revision', dest='peg_rev_upstream',
|
|
|
|
default=True, action='store_false',
|
|
|
|
help='If in -r mode, do not write the upstream field. '
|
|
|
|
'Only of use if the branch names for a sha1 manifest are '
|
|
|
|
'sensitive.')
|
2009-03-05 18:32:38 +00:00
|
|
|
p.add_option('-o', '--output-file',
|
|
|
|
dest='output_file',
|
2012-08-07 17:44:01 +00:00
|
|
|
default='-',
|
2009-03-05 18:32:38 +00:00
|
|
|
help='File to save the manifest to',
|
|
|
|
metavar='-|NAME.xml')
|
|
|
|
|
|
|
|
def _Output(self, opt):
|
|
|
|
if opt.output_file == '-':
|
|
|
|
fd = sys.stdout
|
|
|
|
else:
|
|
|
|
fd = open(opt.output_file, 'w')
|
|
|
|
self.manifest.Save(fd,
|
2012-09-29 03:21:57 +00:00
|
|
|
peg_rev = opt.peg_rev,
|
|
|
|
peg_rev_upstream = opt.peg_rev_upstream)
|
2009-03-05 18:32:38 +00:00
|
|
|
fd.close()
|
|
|
|
if opt.output_file != '-':
|
2012-11-02 05:59:27 +00:00
|
|
|
print('Saved manifest to %s' % opt.output_file, file=sys.stderr)
|
2009-03-05 18:32:38 +00:00
|
|
|
|
2009-03-04 22:26:50 +00:00
|
|
|
def Execute(self, opt, args):
|
2009-03-05 18:32:38 +00:00
|
|
|
if args:
|
|
|
|
self.Usage()
|
|
|
|
|
|
|
|
if opt.output_file is not None:
|
|
|
|
self._Output(opt)
|
|
|
|
return
|
|
|
|
|
2012-11-02 05:59:27 +00:00
|
|
|
print('error: no operation to perform', file=sys.stderr)
|
|
|
|
print('error: see repo help manifest', file=sys.stderr)
|
2009-03-04 22:26:50 +00:00
|
|
|
sys.exit(1)
|