~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Robert Collins
  • Date: 2005-09-28 05:25:54 UTC
  • mfrom: (1185.1.42)
  • mto: (1092.2.18)
  • mto: This revision was merged to the branch mainline in revision 1397.
  • Revision ID: robertc@robertcollins.net-20050928052554-beb985505f77ea6a
update symlink branch to integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
# would help with validation and shell completion.
33
33
 
34
34
 
 
35
# TODO: Help messages for options.
 
36
 
 
37
# TODO: Define arguments by objects, rather than just using names.
 
38
# Those objects can specify the expected type of the argument, which
 
39
# would help with validation and shell completion.
 
40
 
 
41
 
35
42
 
36
43
import sys
37
44
import os
41
48
import bzrlib
42
49
import bzrlib.trace
43
50
from bzrlib.trace import mutter, note, log_error, warning
44
 
from bzrlib.errors import BzrError, BzrCheckError, BzrCommandError
45
 
from bzrlib.branch import find_branch
 
51
from bzrlib.errors import BzrError, BzrCheckError, BzrCommandError, NotBranchError
 
52
from bzrlib.revisionspec import RevisionSpec
46
53
from bzrlib import BZRDIR
47
54
 
48
55
plugin_cmds = {}
76
83
def _parse_revision_str(revstr):
77
84
    """This handles a revision string -> revno.
78
85
 
79
 
    This always returns a list.  The list will have one element for 
80
 
 
81
 
    It supports integers directly, but everything else it
82
 
    defers for passing to Branch.get_revision_info()
 
86
    This always returns a list.  The list will have one element for
 
87
    each revision.
83
88
 
84
89
    >>> _parse_revision_str('234')
85
 
    [234]
 
90
    [<RevisionSpec_int 234>]
86
91
    >>> _parse_revision_str('234..567')
87
 
    [234, 567]
 
92
    [<RevisionSpec_int 234>, <RevisionSpec_int 567>]
88
93
    >>> _parse_revision_str('..')
89
 
    [None, None]
 
94
    [<RevisionSpec None>, <RevisionSpec None>]
90
95
    >>> _parse_revision_str('..234')
91
 
    [None, 234]
 
96
    [<RevisionSpec None>, <RevisionSpec_int 234>]
92
97
    >>> _parse_revision_str('234..')
93
 
    [234, None]
 
98
    [<RevisionSpec_int 234>, <RevisionSpec None>]
94
99
    >>> _parse_revision_str('234..456..789') # Maybe this should be an error
95
 
    [234, 456, 789]
 
100
    [<RevisionSpec_int 234>, <RevisionSpec_int 456>, <RevisionSpec_int 789>]
96
101
    >>> _parse_revision_str('234....789') # Error?
97
 
    [234, None, 789]
 
102
    [<RevisionSpec_int 234>, <RevisionSpec None>, <RevisionSpec_int 789>]
98
103
    >>> _parse_revision_str('revid:test@other.com-234234')
99
 
    ['revid:test@other.com-234234']
 
104
    [<RevisionSpec_revid revid:test@other.com-234234>]
100
105
    >>> _parse_revision_str('revid:test@other.com-234234..revid:test@other.com-234235')
101
 
    ['revid:test@other.com-234234', 'revid:test@other.com-234235']
 
106
    [<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_revid revid:test@other.com-234235>]
102
107
    >>> _parse_revision_str('revid:test@other.com-234234..23')
103
 
    ['revid:test@other.com-234234', 23]
 
108
    [<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_int 23>]
104
109
    >>> _parse_revision_str('date:2005-04-12')
105
 
    ['date:2005-04-12']
 
110
    [<RevisionSpec_date date:2005-04-12>]
106
111
    >>> _parse_revision_str('date:2005-04-12 12:24:33')
107
 
    ['date:2005-04-12 12:24:33']
 
112
    [<RevisionSpec_date date:2005-04-12 12:24:33>]
108
113
    >>> _parse_revision_str('date:2005-04-12T12:24:33')
109
 
    ['date:2005-04-12T12:24:33']
 
114
    [<RevisionSpec_date date:2005-04-12T12:24:33>]
110
115
    >>> _parse_revision_str('date:2005-04-12,12:24:33')
111
 
    ['date:2005-04-12,12:24:33']
 
116
    [<RevisionSpec_date date:2005-04-12,12:24:33>]
112
117
    >>> _parse_revision_str('-5..23')
113
 
    [-5, 23]
 
118
    [<RevisionSpec_int -5>, <RevisionSpec_int 23>]
114
119
    >>> _parse_revision_str('-5')
115
 
    [-5]
 
120
    [<RevisionSpec_int -5>]
116
121
    >>> _parse_revision_str('123a')
117
 
    ['123a']
 
122
    Traceback (most recent call last):
 
123
      ...
 
124
    BzrError: No namespace registered for string: '123a'
118
125
    >>> _parse_revision_str('abc')
119
 
    ['abc']
 
126
    Traceback (most recent call last):
 
127
      ...
 
128
    BzrError: No namespace registered for string: 'abc'
120
129
    """
121
130
    import re
122
131
    old_format_re = re.compile('\d*:\d*')
123
132
    m = old_format_re.match(revstr)
 
133
    revs = []
124
134
    if m:
125
135
        warning('Colon separator for revision numbers is deprecated.'
126
136
                ' Use .. instead')
127
 
        revs = []
128
137
        for rev in revstr.split(':'):
129
138
            if rev:
130
 
                revs.append(int(rev))
131
 
            else:
132
 
                revs.append(None)
133
 
        return revs
134
 
    revs = []
135
 
    for x in revstr.split('..'):
136
 
        if not x:
137
 
            revs.append(None)
138
 
        else:
139
 
            try:
140
 
                revs.append(int(x))
141
 
            except ValueError:
142
 
                revs.append(x)
 
139
                revs.append(RevisionSpec(int(rev)))
 
140
            else:
 
141
                revs.append(RevisionSpec(None))
 
142
    else:
 
143
        for x in revstr.split('..'):
 
144
            if not x:
 
145
                revs.append(RevisionSpec(None))
 
146
            else:
 
147
                revs.append(RevisionSpec(x))
143
148
    return revs
144
149
 
145
150
 
155
160
        msg = "No known merge type %s. Supported types are:\n%s" %\
156
161
            (typestring, type_list)
157
162
        raise BzrCommandError(msg)
158
 
    
159
 
 
160
 
def get_merge_type(typestring):
161
 
    """Attempt to find the merge class/factory associated with a string."""
162
 
    from merge import merge_types
163
 
    try:
164
 
        return merge_types[typestring][0]
165
 
    except KeyError:
166
 
        templ = '%s%%7s: %%s' % (' '*12)
167
 
        lines = [templ % (f[0], f[1][1]) for f in merge_types.iteritems()]
168
 
        type_list = '\n'.join(lines)
169
 
        msg = "No known merge type %s. Supported types are:\n%s" %\
170
 
            (typestring, type_list)
171
 
        raise BzrCommandError(msg)
172
163
 
173
164
 
174
165
def _builtin_commands():
422
413
    >>> parse_args('commit --message=biter'.split())
423
414
    (['commit'], {'message': u'biter'})
424
415
    >>> parse_args('log -r 500'.split())
425
 
    (['log'], {'revision': [500]})
 
416
    (['log'], {'revision': [<RevisionSpec_int 500>]})
426
417
    >>> parse_args('log -r500..600'.split())
427
 
    (['log'], {'revision': [500, 600]})
 
418
    (['log'], {'revision': [<RevisionSpec_int 500>, <RevisionSpec_int 600>]})
428
419
    >>> parse_args('log -vr500..600'.split())
429
 
    (['log'], {'verbose': True, 'revision': [500, 600]})
430
 
    >>> parse_args('log -rv500..600'.split()) #the r takes an argument
431
 
    (['log'], {'revision': ['v500', 600]})
 
420
    (['log'], {'verbose': True, 'revision': [<RevisionSpec_int 500>, <RevisionSpec_int 600>]})
 
421
    >>> parse_args('log -rrevno:500..600'.split()) #the r takes an argument
 
422
    (['log'], {'revision': [<RevisionSpec_revno revno:500>, <RevisionSpec_int 600>]})
432
423
    """
433
424
    args = []
434
425
    opts = {}
654
645
    bzrlib.trace.log_startup(argv)
655
646
    bzrlib.ui.ui_factory = bzrlib.ui.TextUIFactory()
656
647
 
 
648
    return run_bzr_catch_errors(argv[1:])
 
649
 
 
650
 
 
651
def run_bzr_catch_errors(argv):
657
652
    try:
658
653
        try:
659
 
            return run_bzr(argv[1:])
660
 
        finally:
661
 
            # do this here inside the exception wrappers to catch EPIPE
662
 
            sys.stdout.flush()
 
654
            try:
 
655
                return run_bzr(argv)
 
656
            finally:
 
657
                # do this here inside the exception wrappers to catch EPIPE
 
658
                sys.stdout.flush()
 
659
        #wrap common errors as CommandErrors.
 
660
        except (NotBranchError,), e:
 
661
            raise BzrCommandError(str(e))
663
662
    except BzrCommandError, e:
664
663
        # command line syntax error, etc
665
664
        log_error(str(e))