~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help.py

  • Committer: Robert Collins
  • Date: 2006-05-24 08:14:45 UTC
  • mfrom: (1725.1.1 benchmark)
  • mto: (1725.2.6 commit)
  • mto: This revision was merged to the branch mainline in revision 1729.
  • Revision ID: robertc@robertcollins.net-20060524081445-c046b4406ffc8dfa
(rbc)Merge in benchmark --lsprof-timed lsprofiling feature. (Robert Collins, Martin Pool).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 2005, 2006 by 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
# TODO: Some way to get a list of external commands (defined by shell
 
18
# scripts) so that they can be included in the help listing as well.
 
19
# It should be enough to just list the plugin directory and look for
 
20
# executable files with reasonable names.
 
21
 
 
22
# TODO: `help commands --all` should show hidden commands
 
23
import textwrap
 
24
 
 
25
global_help = \
 
26
"""Bazaar-NG -- a free distributed version-control tool
 
27
http://bazaar-vcs.org/
 
28
 
 
29
Basic commands:
 
30
 
 
31
  bzr init           makes this directory a versioned branch
 
32
  bzr branch         make a copy of another branch
 
33
 
 
34
  bzr add            make files or directories versioned
 
35
  bzr ignore         ignore a file or pattern
 
36
  bzr mv             move or rename a versioned file
 
37
 
 
38
  bzr status         summarize changes in working copy
 
39
  bzr diff           show detailed diffs
 
40
 
 
41
  bzr merge          pull in changes from another branch
 
42
  bzr commit         save some or all changes
 
43
 
 
44
  bzr log            show history of changes
 
45
  bzr check          validate storage
 
46
 
 
47
  bzr help init      more help on e.g. init command
 
48
  bzr help commands  list all commands
 
49
"""
 
50
 
 
51
 
 
52
import sys
 
53
 
 
54
 
 
55
def help(topic=None, outfile = None):
 
56
    if outfile == None:
 
57
        outfile = sys.stdout
 
58
    if topic == None:
 
59
        outfile.write(global_help)
 
60
    elif topic == 'commands':
 
61
        help_commands(outfile = outfile)
 
62
    else:
 
63
        help_on_command(topic, outfile = outfile)
 
64
 
 
65
 
 
66
def command_usage(cmd_object):
 
67
    """Return single-line grammar for command.
 
68
 
 
69
    Only describes arguments, not options.
 
70
    """
 
71
    s = 'bzr ' + cmd_object.name() + ' '
 
72
    for aname in cmd_object.takes_args:
 
73
        aname = aname.upper()
 
74
        if aname[-1] in ['$', '+']:
 
75
            aname = aname[:-1] + '...'
 
76
        elif aname[-1] == '?':
 
77
            aname = '[' + aname[:-1] + ']'
 
78
        elif aname[-1] == '*':
 
79
            aname = '[' + aname[:-1] + '...]'
 
80
        s += aname + ' '
 
81
            
 
82
    assert s[-1] == ' '
 
83
    s = s[:-1]
 
84
    
 
85
    return s
 
86
 
 
87
 
 
88
def help_on_command(cmdname, outfile=None):
 
89
    from bzrlib.commands import get_cmd_object
 
90
 
 
91
    cmdname = str(cmdname)
 
92
 
 
93
    if outfile == None:
 
94
        outfile = sys.stdout
 
95
 
 
96
    cmd_object = get_cmd_object(cmdname)
 
97
 
 
98
    doc = cmd_object.help()
 
99
    if doc == None:
 
100
        raise NotImplementedError("sorry, no detailed help yet for %r" % cmdname)
 
101
 
 
102
    print >>outfile, 'usage:', command_usage(cmd_object) 
 
103
 
 
104
    if cmd_object.aliases:
 
105
        print >>outfile, 'aliases:',
 
106
        print >>outfile, ', '.join(cmd_object.aliases)
 
107
 
 
108
    print >>outfile
 
109
 
 
110
    outfile.write(doc)
 
111
    if doc[-1] != '\n':
 
112
        outfile.write('\n')
 
113
    help_on_command_options(cmd_object, outfile)
 
114
 
 
115
 
 
116
def help_on_command_options(cmd, outfile=None):
 
117
    from bzrlib.option import Option
 
118
    options = cmd.options()
 
119
    if not options:
 
120
        return
 
121
    if outfile == None:
 
122
        outfile = sys.stdout
 
123
    outfile.write('\noptions:\n')
 
124
    for option_name, option in sorted(options.items()):
 
125
        l = '    --' + option_name
 
126
        if option.type is not None:
 
127
            l += ' ' + option.argname.upper()
 
128
        short_name = option.short_name()
 
129
        if short_name:
 
130
            assert len(short_name) == 1
 
131
            l += ', -' + short_name
 
132
        l += (30 - len(l)) * ' ' + option.help
 
133
        # TODO: split help over multiple lines with correct indenting and 
 
134
        # wrapping
 
135
        wrapped = textwrap.fill(l, initial_indent='', subsequent_indent=30*' ')
 
136
        outfile.write(wrapped + '\n')
 
137
 
 
138
 
 
139
def help_commands(outfile=None):
 
140
    """List all commands"""
 
141
    from bzrlib.commands import (builtin_command_names,
 
142
                                 plugin_command_names,
 
143
                                 get_cmd_object)
 
144
 
 
145
    if outfile == None:
 
146
        outfile = sys.stdout
 
147
 
 
148
    names = set()                       # to eliminate duplicates
 
149
    names.update(builtin_command_names())
 
150
    names.update(plugin_command_names())
 
151
    names = list(names)
 
152
    names.sort()
 
153
 
 
154
    for cmd_name in names:
 
155
        cmd_object = get_cmd_object(cmd_name)
 
156
        if cmd_object.hidden:
 
157
            continue
 
158
        print >>outfile, command_usage(cmd_object)
 
159
        cmd_help = cmd_object.help()
 
160
        if cmd_help:
 
161
            firstline = cmd_help.split('\n', 1)[0]
 
162
            print >>outfile, '        ' + firstline
 
163