~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/option.py

  • Committer: Robert Collins
  • Date: 2005-10-17 21:20:18 UTC
  • mfrom: (1461)
  • mto: This revision was merged to the branch mainline in revision 1462.
  • Revision ID: robertc@robertcollins.net-20051017212018-5e2a78c67f36a026
merge from integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 2005 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
 
 
18
import re
 
19
 
 
20
import bzrlib.commands
 
21
from bzrlib.trace import warning, mutter
 
22
from bzrlib.revisionspec import RevisionSpec
 
23
 
 
24
 
 
25
def _parse_revision_str(revstr):
 
26
    """This handles a revision string -> revno.
 
27
 
 
28
    This always returns a list.  The list will have one element for
 
29
    each revision specifier supplied.
 
30
 
 
31
    >>> _parse_revision_str('234')
 
32
    [<RevisionSpec_int 234>]
 
33
    >>> _parse_revision_str('234..567')
 
34
    [<RevisionSpec_int 234>, <RevisionSpec_int 567>]
 
35
    >>> _parse_revision_str('..')
 
36
    [<RevisionSpec None>, <RevisionSpec None>]
 
37
    >>> _parse_revision_str('..234')
 
38
    [<RevisionSpec None>, <RevisionSpec_int 234>]
 
39
    >>> _parse_revision_str('234..')
 
40
    [<RevisionSpec_int 234>, <RevisionSpec None>]
 
41
    >>> _parse_revision_str('234..456..789') # Maybe this should be an error
 
42
    [<RevisionSpec_int 234>, <RevisionSpec_int 456>, <RevisionSpec_int 789>]
 
43
    >>> _parse_revision_str('234....789') #Error ?
 
44
    [<RevisionSpec_int 234>, <RevisionSpec None>, <RevisionSpec_int 789>]
 
45
    >>> _parse_revision_str('revid:test@other.com-234234')
 
46
    [<RevisionSpec_revid revid:test@other.com-234234>]
 
47
    >>> _parse_revision_str('revid:test@other.com-234234..revid:test@other.com-234235')
 
48
    [<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_revid revid:test@other.com-234235>]
 
49
    >>> _parse_revision_str('revid:test@other.com-234234..23')
 
50
    [<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_int 23>]
 
51
    >>> _parse_revision_str('date:2005-04-12')
 
52
    [<RevisionSpec_date date:2005-04-12>]
 
53
    >>> _parse_revision_str('date:2005-04-12 12:24:33')
 
54
    [<RevisionSpec_date date:2005-04-12 12:24:33>]
 
55
    >>> _parse_revision_str('date:2005-04-12T12:24:33')
 
56
    [<RevisionSpec_date date:2005-04-12T12:24:33>]
 
57
    >>> _parse_revision_str('date:2005-04-12,12:24:33')
 
58
    [<RevisionSpec_date date:2005-04-12,12:24:33>]
 
59
    >>> _parse_revision_str('-5..23')
 
60
    [<RevisionSpec_int -5>, <RevisionSpec_int 23>]
 
61
    >>> _parse_revision_str('-5')
 
62
    [<RevisionSpec_int -5>]
 
63
    >>> _parse_revision_str('123a')
 
64
    Traceback (most recent call last):
 
65
      ...
 
66
    BzrError: No namespace registered for string: '123a'
 
67
    >>> _parse_revision_str('abc')
 
68
    Traceback (most recent call last):
 
69
      ...
 
70
    BzrError: No namespace registered for string: 'abc'
 
71
    >>> _parse_revision_str('branch:../branch2')
 
72
    [<RevisionSpec_branch branch:../branch2>]
 
73
    """
 
74
    # TODO: Maybe move this into revisionspec.py
 
75
    old_format_re = re.compile('\d*:\d*')
 
76
    m = old_format_re.match(revstr)
 
77
    revs = []
 
78
    if m:
 
79
        warning('Colon separator for revision numbers is deprecated.'
 
80
                ' Use .. instead')
 
81
        for rev in revstr.split(':'):
 
82
            if rev:
 
83
                revs.append(RevisionSpec(int(rev)))
 
84
            else:
 
85
                revs.append(RevisionSpec(None))
 
86
    else:
 
87
        next_prefix = None
 
88
        for x in revstr.split('..'):
 
89
            if not x:
 
90
                revs.append(RevisionSpec(None))
 
91
            elif x[-1] == ':':
 
92
                # looks like a namespace:.. has happened
 
93
                next_prefix = x + '..'
 
94
            else:
 
95
                if next_prefix is not None:
 
96
                    x = next_prefix + x
 
97
                revs.append(RevisionSpec(x))
 
98
                next_prefix = None
 
99
        if next_prefix is not None:
 
100
            revs.append(RevisionSpec(next_prefix))
 
101
    return revs
 
102
 
 
103
 
 
104
def _parse_merge_type(typestring):
 
105
    return bzrlib.commands.get_merge_type(typestring)
 
106
 
 
107
 
 
108
class Option(object):
 
109
    """Description of a command line option"""
 
110
    # TODO: Some way to show in help a description of the option argument
 
111
 
 
112
    OPTIONS = {}
 
113
    SHORT_OPTIONS = {}
 
114
 
 
115
    def __init__(self, name, help='', type=None, argname=None):
 
116
        """Make a new command option.
 
117
 
 
118
        name -- regular name of the command, used in the double-dash
 
119
            form and also as the parameter to the command's run() 
 
120
            method.
 
121
 
 
122
        help -- help message displayed in command help
 
123
 
 
124
        type -- function called to parse the option argument, or 
 
125
            None (default) if this option doesn't take an argument.
 
126
 
 
127
        argname -- name of option argument, if any
 
128
        """
 
129
        # TODO: perhaps a subclass that automatically does 
 
130
        # --option, --no-option for reversable booleans
 
131
        self.name = name
 
132
        self.help = help
 
133
        self.type = type
 
134
        if type is None:
 
135
            assert argname is None
 
136
        elif argname is None:
 
137
            argname = 'ARG'
 
138
        self.argname = argname
 
139
 
 
140
    def short_name(self):
 
141
        """Return the single character option for this command, if any.
 
142
 
 
143
        Short options are globally registered.
 
144
        """
 
145
        return Option.SHORT_OPTIONS.get(self.name)
 
146
 
 
147
 
 
148
def _global_option(name, **kwargs):
 
149
    """Register o as a global option."""
 
150
    Option.OPTIONS[name] = Option(name, **kwargs)
 
151
 
 
152
_global_option('all')
 
153
_global_option('basis', type=str)
 
154
_global_option('diff-options', type=str)
 
155
_global_option('help',
 
156
               help='show help message')
 
157
_global_option('file', type=unicode)
 
158
_global_option('force')
 
159
_global_option('format', type=unicode)
 
160
_global_option('forward')
 
161
_global_option('message', type=unicode)
 
162
_global_option('no-recurse')
 
163
_global_option('profile',
 
164
               help='show performance profiling information')
 
165
_global_option('revision', type=_parse_revision_str)
 
166
_global_option('short')
 
167
_global_option('show-ids', 
 
168
               help='show internal object ids')
 
169
_global_option('timezone', 
 
170
               type=str,
 
171
               help='display timezone as local, original, or utc')
 
172
_global_option('verbose',
 
173
               help='display more information')
 
174
_global_option('version')
 
175
_global_option('email')
 
176
_global_option('update')
 
177
_global_option('long')
 
178
_global_option('root', type=str)
 
179
_global_option('no-backup')
 
180
_global_option('merge-type', type=_parse_merge_type)
 
181
_global_option('pattern', type=str)
 
182
_global_option('quiet')
 
183
_global_option('remember')
 
184
 
 
185
 
 
186
def _global_short(short_name, long_name):
 
187
    assert short_name not in Option.SHORT_OPTIONS
 
188
    Option.SHORT_OPTIONS[short_name] = Option.OPTIONS[long_name]
 
189
    
 
190
 
 
191
Option.SHORT_OPTIONS['F'] = Option.OPTIONS['file']
 
192
Option.SHORT_OPTIONS['h'] = Option.OPTIONS['help']
 
193
Option.SHORT_OPTIONS['m'] = Option.OPTIONS['message']
 
194
Option.SHORT_OPTIONS['r'] = Option.OPTIONS['revision']
 
195
Option.SHORT_OPTIONS['v'] = Option.OPTIONS['verbose']
 
196
Option.SHORT_OPTIONS['l'] = Option.OPTIONS['long']
 
197
Option.SHORT_OPTIONS['q'] = Option.OPTIONS['quiet']