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.
|
|
|
|
|
2020-09-02 08:31:10 +00:00
|
|
|
import json
|
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
|
|
|
|
2020-02-12 06:20:19 +00:00
|
|
|
|
2009-03-05 18:32:38 +00:00
|
|
|
class Manifest(PagedCommand):
|
2021-06-14 20:05:19 +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 = """
|
2020-02-20 20:49:01 +00:00
|
|
|
%prog [-o {-|NAME.xml}] [-m MANIFEST.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.
|
2020-09-06 18:42:47 +00:00
|
|
|
The manifest and (if present) local_manifests/ are combined
|
2009-03-05 18:32:38 +00:00
|
|
|
together to produce a single manifest file. This file can be stored
|
|
|
|
in a Git repository for use during future 'repo init' invocations.
|
|
|
|
|
2020-04-15 18:24:43 +00:00
|
|
|
The -r option can be used to generate a manifest file with project
|
|
|
|
revisions set to the current commit hash. These are known as
|
|
|
|
"revision locked manifests", as they don't follow a particular branch.
|
|
|
|
In this case, the 'upstream' attribute is set to the ref we were on
|
2020-04-20 14:41:58 +00:00
|
|
|
when the manifest was generated. The 'dest-branch' attribute is set
|
|
|
|
to indicate the remote ref to push changes to via 'repo upload'.
|
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)
|
2019-11-11 10:40:22 +00:00
|
|
|
with open(os.path.join(r, 'docs', 'manifest-format.md')) as fd:
|
|
|
|
for line in fd:
|
|
|
|
helptext += line
|
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',
|
2021-05-04 12:06:36 +00:00
|
|
|
help='save revisions as current HEAD')
|
2020-02-20 20:49:01 +00:00
|
|
|
p.add_option('-m', '--manifest-name',
|
|
|
|
help='temporary manifest to use for this sync', metavar='NAME.xml')
|
2012-09-29 03:21:57 +00:00
|
|
|
p.add_option('--suppress-upstream-revision', dest='peg_rev_upstream',
|
|
|
|
default=True, action='store_false',
|
2021-05-04 12:06:36 +00:00
|
|
|
help='if in -r mode, do not write the upstream field '
|
|
|
|
'(only of use if the branch names for a sha1 manifest are '
|
|
|
|
'sensitive)')
|
2020-04-20 14:41:58 +00:00
|
|
|
p.add_option('--suppress-dest-branch', dest='peg_rev_dest_branch',
|
|
|
|
default=True, action='store_false',
|
2021-05-04 12:06:36 +00:00
|
|
|
help='if in -r mode, do not write the dest-branch field '
|
|
|
|
'(only of use if the branch names for a sha1 manifest are '
|
|
|
|
'sensitive)')
|
2020-09-02 08:31:10 +00:00
|
|
|
p.add_option('--json', default=False, action='store_true',
|
2021-05-04 12:06:36 +00:00
|
|
|
help='output manifest in JSON format (experimental)')
|
2020-09-02 08:31:10 +00:00
|
|
|
p.add_option('--pretty', default=False, action='store_true',
|
2021-05-04 12:06:36 +00:00
|
|
|
help='format output for humans to read')
|
2021-07-02 16:25:48 +00:00
|
|
|
p.add_option('--no-local-manifests', default=False, action='store_true',
|
|
|
|
dest='ignore_local_manifests', help='ignore local manifests')
|
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='-',
|
2021-11-18 22:40:18 +00:00
|
|
|
help='file to save the manifest to. (Filename prefix for multi-tree.)',
|
2009-03-05 18:32:38 +00:00
|
|
|
metavar='-|NAME.xml')
|
|
|
|
|
|
|
|
def _Output(self, opt):
|
2020-02-20 20:49:01 +00:00
|
|
|
# If alternate manifest is specified, override the manifest file that we're using.
|
|
|
|
if opt.manifest_name:
|
|
|
|
self.manifest.Override(opt.manifest_name, False)
|
|
|
|
|
2021-11-18 22:40:18 +00:00
|
|
|
for manifest in self.ManifestList(opt):
|
|
|
|
output_file = opt.output_file
|
|
|
|
if output_file == '-':
|
|
|
|
fd = sys.stdout
|
|
|
|
else:
|
|
|
|
if manifest.path_prefix:
|
|
|
|
output_file = f'{opt.output_file}:{manifest.path_prefix.replace("/", "%2f")}'
|
|
|
|
fd = open(output_file, 'w')
|
|
|
|
|
|
|
|
manifest.SetUseLocalManifests(not opt.ignore_local_manifests)
|
|
|
|
|
|
|
|
if opt.json:
|
|
|
|
print('warning: --json is experimental!', file=sys.stderr)
|
|
|
|
doc = manifest.ToDict(peg_rev=opt.peg_rev,
|
|
|
|
peg_rev_upstream=opt.peg_rev_upstream,
|
|
|
|
peg_rev_dest_branch=opt.peg_rev_dest_branch)
|
|
|
|
|
|
|
|
json_settings = {
|
|
|
|
# JSON style guide says Uunicode characters are fully allowed.
|
|
|
|
'ensure_ascii': False,
|
|
|
|
# We use 2 space indent to match JSON style guide.
|
|
|
|
'indent': 2 if opt.pretty else None,
|
|
|
|
'separators': (',', ': ') if opt.pretty else (',', ':'),
|
|
|
|
'sort_keys': True,
|
|
|
|
}
|
|
|
|
fd.write(json.dumps(doc, **json_settings))
|
|
|
|
else:
|
|
|
|
manifest.Save(fd,
|
|
|
|
peg_rev=opt.peg_rev,
|
|
|
|
peg_rev_upstream=opt.peg_rev_upstream,
|
|
|
|
peg_rev_dest_branch=opt.peg_rev_dest_branch)
|
|
|
|
if output_file != '-':
|
|
|
|
fd.close()
|
|
|
|
if manifest.path_prefix:
|
|
|
|
print(f'Saved {manifest.path_prefix} submanifest to {output_file}',
|
|
|
|
file=sys.stderr)
|
|
|
|
else:
|
|
|
|
print(f'Saved manifest to {output_file}', file=sys.stderr)
|
|
|
|
|
2009-03-05 18:32:38 +00:00
|
|
|
|
2019-08-27 05:10:59 +00:00
|
|
|
def ValidateOptions(self, opt, args):
|
2009-03-05 18:32:38 +00:00
|
|
|
if args:
|
|
|
|
self.Usage()
|
|
|
|
|
2019-08-27 05:10:59 +00:00
|
|
|
def Execute(self, opt, args):
|
|
|
|
self._Output(opt)
|