~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Aaron Bentley
  • Date: 2005-09-19 02:33:09 UTC
  • mfrom: (1185.3.27)
  • mto: (1185.1.29)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: aaron.bentley@utoronto.ca-20050919023309-24e8871f7f8b31cf
Merged latest from mpool

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
# would help with validation and shell completion.
26
26
 
27
27
 
 
28
# TODO: Help messages for options.
 
29
 
 
30
# TODO: Define arguments by objects, rather than just using names.
 
31
# Those objects can specify the expected type of the argument, which
 
32
# would help with validation and shell completion.
 
33
 
 
34
 
28
35
 
29
36
import sys
30
37
import os
35
42
import bzrlib.trace
36
43
from bzrlib.trace import mutter, note, log_error, warning
37
44
from bzrlib.errors import BzrError, BzrCheckError, BzrCommandError, NotBranchError
38
 
from bzrlib.branch import find_branch
 
45
from bzrlib.revisionspec import RevisionSpec
39
46
from bzrlib import BZRDIR
40
47
 
41
48
plugin_cmds = {}
69
76
def _parse_revision_str(revstr):
70
77
    """This handles a revision string -> revno.
71
78
 
72
 
    This always returns a list.  The list will have one element for 
73
 
 
74
 
    It supports integers directly, but everything else it
75
 
    defers for passing to Branch.get_revision_info()
 
79
    This always returns a list.  The list will have one element for
 
80
    each revision.
76
81
 
77
82
    >>> _parse_revision_str('234')
78
 
    [234]
 
83
    [<RevisionSpec_int 234>]
79
84
    >>> _parse_revision_str('234..567')
80
 
    [234, 567]
 
85
    [<RevisionSpec_int 234>, <RevisionSpec_int 567>]
81
86
    >>> _parse_revision_str('..')
82
 
    [None, None]
 
87
    [<RevisionSpec None>, <RevisionSpec None>]
83
88
    >>> _parse_revision_str('..234')
84
 
    [None, 234]
 
89
    [<RevisionSpec None>, <RevisionSpec_int 234>]
85
90
    >>> _parse_revision_str('234..')
86
 
    [234, None]
 
91
    [<RevisionSpec_int 234>, <RevisionSpec None>]
87
92
    >>> _parse_revision_str('234..456..789') # Maybe this should be an error
88
 
    [234, 456, 789]
 
93
    [<RevisionSpec_int 234>, <RevisionSpec_int 456>, <RevisionSpec_int 789>]
89
94
    >>> _parse_revision_str('234....789') # Error?
90
 
    [234, None, 789]
 
95
    [<RevisionSpec_int 234>, <RevisionSpec None>, <RevisionSpec_int 789>]
91
96
    >>> _parse_revision_str('revid:test@other.com-234234')
92
 
    ['revid:test@other.com-234234']
 
97
    [<RevisionSpec_revid revid:test@other.com-234234>]
93
98
    >>> _parse_revision_str('revid:test@other.com-234234..revid:test@other.com-234235')
94
 
    ['revid:test@other.com-234234', 'revid:test@other.com-234235']
 
99
    [<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_revid revid:test@other.com-234235>]
95
100
    >>> _parse_revision_str('revid:test@other.com-234234..23')
96
 
    ['revid:test@other.com-234234', 23]
 
101
    [<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_int 23>]
97
102
    >>> _parse_revision_str('date:2005-04-12')
98
 
    ['date:2005-04-12']
 
103
    [<RevisionSpec_date date:2005-04-12>]
99
104
    >>> _parse_revision_str('date:2005-04-12 12:24:33')
100
 
    ['date:2005-04-12 12:24:33']
 
105
    [<RevisionSpec_date date:2005-04-12 12:24:33>]
101
106
    >>> _parse_revision_str('date:2005-04-12T12:24:33')
102
 
    ['date:2005-04-12T12:24:33']
 
107
    [<RevisionSpec_date date:2005-04-12T12:24:33>]
103
108
    >>> _parse_revision_str('date:2005-04-12,12:24:33')
104
 
    ['date:2005-04-12,12:24:33']
 
109
    [<RevisionSpec_date date:2005-04-12,12:24:33>]
105
110
    >>> _parse_revision_str('-5..23')
106
 
    [-5, 23]
 
111
    [<RevisionSpec_int -5>, <RevisionSpec_int 23>]
107
112
    >>> _parse_revision_str('-5')
108
 
    [-5]
 
113
    [<RevisionSpec_int -5>]
109
114
    >>> _parse_revision_str('123a')
110
 
    ['123a']
 
115
    Traceback (most recent call last):
 
116
      ...
 
117
    BzrError: No namespace registered for string: '123a'
111
118
    >>> _parse_revision_str('abc')
112
 
    ['abc']
 
119
    Traceback (most recent call last):
 
120
      ...
 
121
    BzrError: No namespace registered for string: 'abc'
113
122
    """
114
123
    import re
115
124
    old_format_re = re.compile('\d*:\d*')
116
125
    m = old_format_re.match(revstr)
 
126
    revs = []
117
127
    if m:
118
128
        warning('Colon separator for revision numbers is deprecated.'
119
129
                ' Use .. instead')
120
 
        revs = []
121
130
        for rev in revstr.split(':'):
122
131
            if rev:
123
 
                revs.append(int(rev))
124
 
            else:
125
 
                revs.append(None)
126
 
        return revs
127
 
    revs = []
128
 
    for x in revstr.split('..'):
129
 
        if not x:
130
 
            revs.append(None)
131
 
        else:
132
 
            try:
133
 
                revs.append(int(x))
134
 
            except ValueError:
135
 
                revs.append(x)
 
132
                revs.append(RevisionSpec(int(rev)))
 
133
            else:
 
134
                revs.append(RevisionSpec(None))
 
135
    else:
 
136
        for x in revstr.split('..'):
 
137
            if not x:
 
138
                revs.append(RevisionSpec(None))
 
139
            else:
 
140
                revs.append(RevisionSpec(x))
136
141
    return revs
137
142
 
138
143
 
148
153
        msg = "No known merge type %s. Supported types are:\n%s" %\
149
154
            (typestring, type_list)
150
155
        raise BzrCommandError(msg)
151
 
    
152
 
 
153
 
def get_merge_type(typestring):
154
 
    """Attempt to find the merge class/factory associated with a string."""
155
 
    from merge import merge_types
156
 
    try:
157
 
        return merge_types[typestring][0]
158
 
    except KeyError:
159
 
        templ = '%s%%7s: %%s' % (' '*12)
160
 
        lines = [templ % (f[0], f[1][1]) for f in merge_types.iteritems()]
161
 
        type_list = '\n'.join(lines)
162
 
        msg = "No known merge type %s. Supported types are:\n%s" %\
163
 
            (typestring, type_list)
164
 
        raise BzrCommandError(msg)
165
156
 
166
157
 
167
158
def _builtin_commands():
356
347
    return parsed
357
348
 
358
349
 
359
 
 
360
 
 
361
350
# list of all available options; the rhs can be either None for an
362
351
# option that takes no argument, or a constructor function that checks
363
352
# the type.
417
406
    >>> parse_args('commit --message=biter'.split())
418
407
    (['commit'], {'message': u'biter'})
419
408
    >>> parse_args('log -r 500'.split())
420
 
    (['log'], {'revision': [500]})
 
409
    (['log'], {'revision': [<RevisionSpec_int 500>]})
421
410
    >>> parse_args('log -r500..600'.split())
422
 
    (['log'], {'revision': [500, 600]})
 
411
    (['log'], {'revision': [<RevisionSpec_int 500>, <RevisionSpec_int 600>]})
423
412
    >>> parse_args('log -vr500..600'.split())
424
 
    (['log'], {'verbose': True, 'revision': [500, 600]})
425
 
    >>> parse_args('log -rv500..600'.split()) #the r takes an argument
426
 
    (['log'], {'revision': ['v500', 600]})
 
413
    (['log'], {'verbose': True, 'revision': [<RevisionSpec_int 500>, <RevisionSpec_int 600>]})
 
414
    >>> parse_args('log -rrevno:500..600'.split()) #the r takes an argument
 
415
    (['log'], {'revision': [<RevisionSpec_revno revno:500>, <RevisionSpec_int 600>]})
427
416
    """
428
417
    args = []
429
418
    opts = {}
649
638
    bzrlib.trace.log_startup(argv)
650
639
    bzrlib.ui.ui_factory = bzrlib.ui.TextUIFactory()
651
640
 
 
641
    return run_bzr_catch_errors(argv[1:])
 
642
 
 
643
 
 
644
def run_bzr_catch_errors(argv):
652
645
    try:
653
646
        try:
654
647
            try:
655
 
                return run_bzr(argv[1:])
 
648
                return run_bzr(argv)
656
649
            finally:
657
650
                # do this here inside the exception wrappers to catch EPIPE
658
651
                sys.stdout.flush()