blob: 4374a9d0784a24b1ee99a3d3466b08c06a6736e7 [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',
53 help='File to save the manifest to',
54 metavar='-|NAME.xml')
55
56 def _Output(self, opt):
57 if opt.output_file == '-':
58 fd = sys.stdout
59 else:
60 fd = open(opt.output_file, 'w')
61 self.manifest.Save(fd,
62 peg_rev = opt.peg_rev)
63 fd.close()
64 if opt.output_file != '-':
65 print >>sys.stderr, 'Saved manifest to %s' % opt.output_file
66
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080067 def Execute(self, opt, args):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -080068 if args:
69 self.Usage()
70
71 if opt.output_file is not None:
72 self._Output(opt)
73 return
74
75 print >>sys.stderr, 'error: no operation to perform'
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080076 print >>sys.stderr, 'error: see repo help manifest'
77 sys.exit(1)