blob: cd1965310ab24972458000f3f4ef8ab8e4624c79 [file] [log] [blame]
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -08001#
2# Copyright (C) 2009 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
16import os
17import sys
18
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080019from command import PagedCommand
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080020
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080021class Manifest(PagedCommand):
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080022 common = False
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080023 helpSummary = "Manifest inspection utility"
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080024 helpUsage = """
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080025%prog [-o {-|NAME.xml} [-r]]
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080026"""
27 _helpDescription = """
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080028
29With the -o option, exports the current manifest for inspection.
30The manifest and (if present) local_manifest.xml are combined
31together to produce a single manifest file. This file can be stored
32in a Git repository for use during future 'repo init' invocations.
33
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080034"""
35
36 @property
37 def helpDescription(self):
38 help = self._helpDescription + '\n'
39 r = os.path.dirname(__file__)
40 r = os.path.dirname(r)
41 fd = open(os.path.join(r, 'docs', 'manifest-format.txt'))
42 for line in fd:
43 help += line
44 fd.close()
45 return help
46
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080047 def _Options(self, p):
48 p.add_option('-r', '--revision-as-HEAD',
49 dest='peg_rev', action='store_true',
50 help='Save revisions as current HEAD')
51 p.add_option('-o', '--output-file',
52 dest='output_file',
Conley Owens918ff852012-08-07 10:44:01 -070053 default='-',
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080054 help='File to save the manifest to',
55 metavar='-|NAME.xml')
56
57 def _Output(self, opt):
58 if opt.output_file == '-':
59 fd = sys.stdout
60 else:
61 fd = open(opt.output_file, 'w')
62 self.manifest.Save(fd,
63 peg_rev = opt.peg_rev)
64 fd.close()
65 if opt.output_file != '-':
66 print >>sys.stderr, 'Saved manifest to %s' % opt.output_file
67
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080068 def Execute(self, opt, args):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080069 if args:
70 self.Usage()
71
72 if opt.output_file is not None:
73 self._Output(opt)
74 return
75
76 print >>sys.stderr, 'error: no operation to perform'
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080077 print >>sys.stderr, 'error: see repo help manifest'
78 sys.exit(1)