1
# Copyright (C) 2005, 2006 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
"""Commands for generating snapshot information about a bzr tree."""
19
from bzrlib.lazy_import import lazy_import
20
lazy_import(globals(), """
30
from bzrlib.commands import Command
31
from bzrlib.option import Option, RegistryOption
34
def _parse_version_info_format(format):
35
"""Convert a string passed by the user into a VersionInfoFormat.
37
This looks in the version info format registry, and if the format
38
cannot be found, generates a useful error exception.
41
return version_info_formats.get_builder(format)
43
formats = version_info_formats.get_builder_formats()
44
raise errors.BzrCommandError('No known version info format %s.'
45
' Supported types are: %s'
49
class cmd_version_info(Command):
50
"""Show version information about this tree.
52
You can use this command to add information about version into
53
source code of an application. The output can be in one of the
54
supported formats or in a custom format based on a template.
58
bzr version-info --custom \\
59
--template="#define VERSION_INFO \\"Project 1.2.3 (r{revno})\\"\\n"
61
will produce a C header file with formatted string containing the
62
current revision number. Other supported variables in templates are:
64
* {date} - date of the last revision
65
* {build_date} - current date
66
* {revno} - revision number
67
* {revision_id} - revision id
68
* {branch_nick} - branch nickname
69
* {clean} - 0 if the source tree contains uncommitted changes,
73
takes_options = [RegistryOption('format',
74
'Select the output format.',
75
version_info_formats.format_registry,
77
Option('all', help='Include all possible information.'),
78
Option('check-clean', help='Check if tree is clean.'),
79
Option('include-history',
80
help='Include the revision-history.'),
81
Option('include-file-revisions',
82
help='Include the last revision for each file.'),
83
Option('template', type=str, help='Template for the output.'),
85
takes_args = ['location?']
87
encoding_type = 'exact'
89
def run(self, location=None, format=None,
90
all=False, check_clean=False, include_history=False,
91
include_file_revisions=False, template=None):
97
format = version_info_formats.format_registry.get()
101
wt = workingtree.WorkingTree.open_containing(location)[0]
102
except errors.NoWorkingTree:
103
b = branch.Branch.open(location)
108
include_history = True
110
include_file_revisions=True
112
builder = format(b, working_tree=wt,
113
check_for_clean=check_clean,
114
include_revision_history=include_history,
115
include_file_revisions=include_file_revisions,
117
builder.generate(self.outf)