~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Robert Collins
  • Date: 2005-10-11 08:31:29 UTC
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051011083129-fa720bc6cd6c039f
inline and simplify branch.find_branch_root, it should just try to create a branch at each step, which is simpler than probing for a specific dir and has less round trips.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
# Those objects can specify the expected type of the argument, which
25
25
# would help with validation and shell completion.
26
26
 
27
 
 
 
27
# TODO: "--profile=cum", to change sort order.  Is there any value in leaving
 
28
# the profile output behind so it can be interactively examined?
28
29
 
29
30
import sys
30
31
import os
34
35
import bzrlib
35
36
import bzrlib.trace
36
37
from bzrlib.trace import mutter, note, log_error, warning
37
 
from bzrlib.errors import BzrError, BzrCheckError, BzrCommandError
38
 
from bzrlib.branch import find_branch
 
38
from bzrlib.errors import BzrError, BzrCheckError, BzrCommandError, NotBranchError
 
39
from bzrlib.revisionspec import RevisionSpec
39
40
from bzrlib import BZRDIR
40
41
 
41
42
plugin_cmds = {}
69
70
def _parse_revision_str(revstr):
70
71
    """This handles a revision string -> revno.
71
72
 
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()
 
73
    This always returns a list.  The list will have one element for
 
74
    each revision specifier supplied.
76
75
 
77
76
    >>> _parse_revision_str('234')
78
 
    [234]
 
77
    [<RevisionSpec_int 234>]
79
78
    >>> _parse_revision_str('234..567')
80
 
    [234, 567]
 
79
    [<RevisionSpec_int 234>, <RevisionSpec_int 567>]
81
80
    >>> _parse_revision_str('..')
82
 
    [None, None]
 
81
    [<RevisionSpec None>, <RevisionSpec None>]
83
82
    >>> _parse_revision_str('..234')
84
 
    [None, 234]
 
83
    [<RevisionSpec None>, <RevisionSpec_int 234>]
85
84
    >>> _parse_revision_str('234..')
86
 
    [234, None]
 
85
    [<RevisionSpec_int 234>, <RevisionSpec None>]
87
86
    >>> _parse_revision_str('234..456..789') # Maybe this should be an error
88
 
    [234, 456, 789]
89
 
    >>> _parse_revision_str('234....789') # Error?
90
 
    [234, None, 789]
 
87
    [<RevisionSpec_int 234>, <RevisionSpec_int 456>, <RevisionSpec_int 789>]
 
88
    >>> _parse_revision_str('234....789') #Error ?
 
89
    [<RevisionSpec_int 234>, <RevisionSpec None>, <RevisionSpec_int 789>]
91
90
    >>> _parse_revision_str('revid:test@other.com-234234')
92
 
    ['revid:test@other.com-234234']
 
91
    [<RevisionSpec_revid revid:test@other.com-234234>]
93
92
    >>> _parse_revision_str('revid:test@other.com-234234..revid:test@other.com-234235')
94
 
    ['revid:test@other.com-234234', 'revid:test@other.com-234235']
 
93
    [<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_revid revid:test@other.com-234235>]
95
94
    >>> _parse_revision_str('revid:test@other.com-234234..23')
96
 
    ['revid:test@other.com-234234', 23]
 
95
    [<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_int 23>]
97
96
    >>> _parse_revision_str('date:2005-04-12')
98
 
    ['date:2005-04-12']
 
97
    [<RevisionSpec_date date:2005-04-12>]
99
98
    >>> _parse_revision_str('date:2005-04-12 12:24:33')
100
 
    ['date:2005-04-12 12:24:33']
 
99
    [<RevisionSpec_date date:2005-04-12 12:24:33>]
101
100
    >>> _parse_revision_str('date:2005-04-12T12:24:33')
102
 
    ['date:2005-04-12T12:24:33']
 
101
    [<RevisionSpec_date date:2005-04-12T12:24:33>]
103
102
    >>> _parse_revision_str('date:2005-04-12,12:24:33')
104
 
    ['date:2005-04-12,12:24:33']
 
103
    [<RevisionSpec_date date:2005-04-12,12:24:33>]
105
104
    >>> _parse_revision_str('-5..23')
106
 
    [-5, 23]
 
105
    [<RevisionSpec_int -5>, <RevisionSpec_int 23>]
107
106
    >>> _parse_revision_str('-5')
108
 
    [-5]
 
107
    [<RevisionSpec_int -5>]
109
108
    >>> _parse_revision_str('123a')
110
 
    ['123a']
 
109
    Traceback (most recent call last):
 
110
      ...
 
111
    BzrError: No namespace registered for string: '123a'
111
112
    >>> _parse_revision_str('abc')
112
 
    ['abc']
 
113
    Traceback (most recent call last):
 
114
      ...
 
115
    BzrError: No namespace registered for string: 'abc'
 
116
    >>> _parse_revision_str('branch:../branch2')
 
117
    [<RevisionSpec_branch branch:../branch2>]
113
118
    """
114
119
    import re
115
120
    old_format_re = re.compile('\d*:\d*')
116
121
    m = old_format_re.match(revstr)
 
122
    revs = []
117
123
    if m:
118
124
        warning('Colon separator for revision numbers is deprecated.'
119
125
                ' Use .. instead')
120
 
        revs = []
121
126
        for rev in revstr.split(':'):
122
127
            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)
 
128
                revs.append(RevisionSpec(int(rev)))
 
129
            else:
 
130
                revs.append(RevisionSpec(None))
 
131
    else:
 
132
        next_prefix = None
 
133
        for x in revstr.split('..'):
 
134
            if not x:
 
135
                revs.append(RevisionSpec(None))
 
136
            elif x[-1] == ':':
 
137
                # looks like a namespace:.. has happened
 
138
                next_prefix = x + '..'
 
139
            else:
 
140
                if next_prefix is not None:
 
141
                    x = next_prefix + x
 
142
                revs.append(RevisionSpec(x))
 
143
                next_prefix = None
 
144
        if next_prefix is not None:
 
145
            revs.append(RevisionSpec(next_prefix))
136
146
    return revs
137
147
 
138
148
 
139
 
def get_merge_type(typestring):
140
 
    """Attempt to find the merge class/factory associated with a string."""
141
 
    from merge import merge_types
142
 
    try:
143
 
        return merge_types[typestring][0]
144
 
    except KeyError:
145
 
        templ = '%s%%7s: %%s' % (' '*12)
146
 
        lines = [templ % (f[0], f[1][1]) for f in merge_types.iteritems()]
147
 
        type_list = '\n'.join(lines)
148
 
        msg = "No known merge type %s. Supported types are:\n%s" %\
149
 
            (typestring, type_list)
150
 
        raise BzrCommandError(msg)
151
 
    
152
 
 
153
149
def _builtin_commands():
154
150
    import bzrlib.builtins
155
151
    r = {}
342
338
    return parsed
343
339
 
344
340
 
345
 
 
346
 
 
347
341
# list of all available options; the rhs can be either None for an
348
342
# option that takes no argument, or a constructor function that checks
349
343
# the type.
350
344
OPTIONS = {
351
345
    'all':                    None,
 
346
    'basis':                  str,
352
347
    'diff-options':           str,
353
348
    'help':                   None,
354
349
    'file':                   unicode,
370
365
    'long':                   None,
371
366
    'root':                   str,
372
367
    'no-backup':              None,
373
 
    'merge-type':             get_merge_type,
374
368
    'pattern':                str,
 
369
    'remember':               None,
375
370
    }
376
371
 
377
372
SHORT_OPTIONS = {
403
398
    >>> parse_args('commit --message=biter'.split())
404
399
    (['commit'], {'message': u'biter'})
405
400
    >>> parse_args('log -r 500'.split())
406
 
    (['log'], {'revision': [500]})
 
401
    (['log'], {'revision': [<RevisionSpec_int 500>]})
407
402
    >>> parse_args('log -r500..600'.split())
408
 
    (['log'], {'revision': [500, 600]})
 
403
    (['log'], {'revision': [<RevisionSpec_int 500>, <RevisionSpec_int 600>]})
409
404
    >>> parse_args('log -vr500..600'.split())
410
 
    (['log'], {'verbose': True, 'revision': [500, 600]})
411
 
    >>> parse_args('log -rv500..600'.split()) #the r takes an argument
412
 
    (['log'], {'revision': ['v500', 600]})
 
405
    (['log'], {'verbose': True, 'revision': [<RevisionSpec_int 500>, <RevisionSpec_int 600>]})
 
406
    >>> parse_args('log -rrevno:500..600'.split()) #the r takes an argument
 
407
    (['log'], {'revision': [<RevisionSpec_revno revno:500>, <RevisionSpec_int 600>]})
413
408
    """
414
409
    args = []
415
410
    opts = {}
536
531
def apply_profiled(the_callable, *args, **kwargs):
537
532
    import hotshot
538
533
    import tempfile
 
534
    import hotshot.stats
539
535
    pffileno, pfname = tempfile.mkstemp()
540
536
    try:
541
537
        prof = hotshot.Profile(pfname)
543
539
            ret = prof.runcall(the_callable, *args, **kwargs) or 0
544
540
        finally:
545
541
            prof.close()
546
 
 
547
 
        import hotshot.stats
548
542
        stats = hotshot.stats.load(pfname)
549
 
        #stats.strip_dirs()
550
 
        stats.sort_stats('time')
 
543
        stats.strip_dirs()
 
544
        stats.sort_stats('cum')   # 'time'
551
545
        ## XXX: Might like to write to stderr or the trace file instead but
552
546
        ## print_stats seems hardcoded to stdout
553
547
        stats.print_stats(20)
554
 
 
555
548
        return ret
556
549
    finally:
557
550
        os.close(pffileno)
582
575
    --profile
583
576
        Run under the Python profiler.
584
577
    """
 
578
    # Load all of the transport methods
 
579
    import bzrlib.transport.local, bzrlib.transport.http
585
580
    
586
581
    argv = [a.decode(bzrlib.user_encoding) for a in argv]
587
582
 
635
630
    bzrlib.trace.log_startup(argv)
636
631
    bzrlib.ui.ui_factory = bzrlib.ui.TextUIFactory()
637
632
 
 
633
    return run_bzr_catch_errors(argv[1:])
 
634
 
 
635
 
 
636
def run_bzr_catch_errors(argv):
638
637
    try:
639
638
        try:
640
 
            return run_bzr(argv[1:])
 
639
            return run_bzr(argv)
641
640
        finally:
642
641
            # do this here inside the exception wrappers to catch EPIPE
643
642
            sys.stdout.flush()
652
651
        bzrlib.trace.log_exception('assertion failed: ' + str(e))
653
652
        return 3
654
653
    except KeyboardInterrupt, e:
655
 
        bzrlib.trace.note('interrupted')
 
654
        bzrlib.trace.log_exception('interrupted')
656
655
        return 2
657
656
    except Exception, e:
658
657
        import errno
662
661
            bzrlib.trace.note('broken pipe')
663
662
            return 2
664
663
        else:
 
664
            ## import pdb
 
665
            ## pdb.pm()
665
666
            bzrlib.trace.log_exception()
666
667
            return 2
667
668
 
668
 
 
669
669
if __name__ == '__main__':
670
670
    sys.exit(main(sys.argv))