~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/cmd_version_info.py

  • Committer: Andrew Bennetts
  • Date: 2008-02-07 07:05:13 UTC
  • mto: This revision was merged to the branch mainline in revision 3398.
  • Revision ID: andrew.bennetts@canonical.com-20080207070513-u7tvul100g1yn6n7
Add a comment to the new CSS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
 
2
#
 
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.
 
7
#
 
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.
 
12
#
 
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
 
16
 
 
17
"""Commands for generating snapshot information about a bzr tree."""
 
18
 
 
19
from bzrlib.lazy_import import lazy_import
 
20
lazy_import(globals(), """
 
21
from bzrlib import (
 
22
    branch,
 
23
    errors,
 
24
    workingtree,
 
25
    )
 
26
""")
 
27
from bzrlib import (
 
28
    version_info_formats,
 
29
    )
 
30
from bzrlib.commands import Command
 
31
from bzrlib.option import Option, RegistryOption
 
32
 
 
33
 
 
34
def _parse_version_info_format(format):
 
35
    """Convert a string passed by the user into a VersionInfoFormat.
 
36
 
 
37
    This looks in the version info format registry, and if the format
 
38
    cannot be found, generates a useful error exception.
 
39
    """
 
40
    try:
 
41
        return version_info_formats.get_builder(format)
 
42
    except KeyError:
 
43
        formats = version_info_formats.get_builder_formats()
 
44
        raise errors.BzrCommandError('No known version info format %s.'
 
45
                                     ' Supported types are: %s'
 
46
                                     % (format, formats))
 
47
 
 
48
 
 
49
class cmd_version_info(Command):
 
50
    """Show version information about this tree.
 
51
 
 
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.
 
55
 
 
56
    For example::
 
57
 
 
58
      bzr version-info --custom \\
 
59
        --template="#define VERSION_INFO \\"Project 1.2.3 (r{revno})\\"\\n"
 
60
 
 
61
    will produce a C header file with formatted string containing the
 
62
    current revision number. Other supported variables in templates are:
 
63
 
 
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,
 
70
                  otherwise 1
 
71
    """
 
72
 
 
73
    takes_options = [RegistryOption('format',
 
74
                            'Select the output format.',
 
75
                            version_info_formats.format_registry,
 
76
                            value_switches=True),
 
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.'),
 
84
                     ]
 
85
    takes_args = ['location?']
 
86
 
 
87
    encoding_type = 'exact'
 
88
 
 
89
    def run(self, location=None, format=None,
 
90
            all=False, check_clean=False, include_history=False,
 
91
            include_file_revisions=False, template=None):
 
92
 
 
93
        if location is None:
 
94
            location = '.'
 
95
 
 
96
        if format is None:
 
97
            format = version_info_formats.format_registry.get()
 
98
 
 
99
        wt = None
 
100
        try:
 
101
            wt = workingtree.WorkingTree.open_containing(location)[0]
 
102
        except errors.NoWorkingTree:
 
103
            b = branch.Branch.open(location)
 
104
        else:
 
105
            b = wt.branch
 
106
 
 
107
        if all:
 
108
            include_history = True
 
109
            check_clean = True
 
110
            include_file_revisions=True
 
111
 
 
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,
 
116
                template=template)
 
117
        builder.generate(self.outf)