~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-10-04 06:44:50 UTC
  • mto: (1185.13.3)
  • mto: This revision was merged to the branch mainline in revision 1403.
  • Revision ID: mbp@sourcefrog.net-20051004064450-6437da8f84d41517
- add test that upgrade completes successfully

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.
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]
 
87
    [<RevisionSpec_int 234>, <RevisionSpec_int 456>, <RevisionSpec_int 789>]
89
88
    >>> _parse_revision_str('234....789') # Error?
90
 
    [234, None, 789]
 
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'
113
116
    """
114
117
    import re
115
118
    old_format_re = re.compile('\d*:\d*')
116
119
    m = old_format_re.match(revstr)
 
120
    revs = []
117
121
    if m:
118
122
        warning('Colon separator for revision numbers is deprecated.'
119
123
                ' Use .. instead')
120
 
        revs = []
121
124
        for rev in revstr.split(':'):
122
125
            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)
 
126
                revs.append(RevisionSpec(int(rev)))
 
127
            else:
 
128
                revs.append(RevisionSpec(None))
 
129
    else:
 
130
        for x in revstr.split('..'):
 
131
            if not x:
 
132
                revs.append(RevisionSpec(None))
 
133
            else:
 
134
                revs.append(RevisionSpec(x))
136
135
    return revs
137
136
 
138
137
 
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
138
def _builtin_commands():
154
139
    import bzrlib.builtins
155
140
    r = {}
342
327
    return parsed
343
328
 
344
329
 
345
 
 
346
 
 
347
330
# list of all available options; the rhs can be either None for an
348
331
# option that takes no argument, or a constructor function that checks
349
332
# the type.
350
333
OPTIONS = {
351
334
    'all':                    None,
 
335
    'basis':                  str,
352
336
    'diff-options':           str,
353
337
    'help':                   None,
354
338
    'file':                   unicode,
370
354
    'long':                   None,
371
355
    'root':                   str,
372
356
    'no-backup':              None,
373
 
    'merge-type':             get_merge_type,
374
357
    'pattern':                str,
375
358
    }
376
359
 
403
386
    >>> parse_args('commit --message=biter'.split())
404
387
    (['commit'], {'message': u'biter'})
405
388
    >>> parse_args('log -r 500'.split())
406
 
    (['log'], {'revision': [500]})
 
389
    (['log'], {'revision': [<RevisionSpec_int 500>]})
407
390
    >>> parse_args('log -r500..600'.split())
408
 
    (['log'], {'revision': [500, 600]})
 
391
    (['log'], {'revision': [<RevisionSpec_int 500>, <RevisionSpec_int 600>]})
409
392
    >>> 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]})
 
393
    (['log'], {'verbose': True, 'revision': [<RevisionSpec_int 500>, <RevisionSpec_int 600>]})
 
394
    >>> parse_args('log -rrevno:500..600'.split()) #the r takes an argument
 
395
    (['log'], {'revision': [<RevisionSpec_revno revno:500>, <RevisionSpec_int 600>]})
413
396
    """
414
397
    args = []
415
398
    opts = {}
536
519
def apply_profiled(the_callable, *args, **kwargs):
537
520
    import hotshot
538
521
    import tempfile
 
522
    import hotshot.stats
539
523
    pffileno, pfname = tempfile.mkstemp()
540
524
    try:
541
525
        prof = hotshot.Profile(pfname)
543
527
            ret = prof.runcall(the_callable, *args, **kwargs) or 0
544
528
        finally:
545
529
            prof.close()
546
 
 
547
 
        import hotshot.stats
548
530
        stats = hotshot.stats.load(pfname)
549
 
        #stats.strip_dirs()
550
 
        stats.sort_stats('time')
 
531
        stats.strip_dirs()
 
532
        stats.sort_stats('cum')   # 'time'
551
533
        ## XXX: Might like to write to stderr or the trace file instead but
552
534
        ## print_stats seems hardcoded to stdout
553
535
        stats.print_stats(20)
554
 
 
555
536
        return ret
556
537
    finally:
557
538
        os.close(pffileno)
582
563
    --profile
583
564
        Run under the Python profiler.
584
565
    """
 
566
    # Load all of the transport methods
 
567
    import bzrlib.transport.local, bzrlib.transport.http
585
568
    
586
569
    argv = [a.decode(bzrlib.user_encoding) for a in argv]
587
570
 
635
618
    bzrlib.trace.log_startup(argv)
636
619
    bzrlib.ui.ui_factory = bzrlib.ui.TextUIFactory()
637
620
 
 
621
    return run_bzr_catch_errors(argv[1:])
 
622
 
 
623
 
 
624
def run_bzr_catch_errors(argv):
638
625
    try:
639
626
        try:
640
 
            return run_bzr(argv[1:])
641
 
        finally:
642
 
            # do this here inside the exception wrappers to catch EPIPE
643
 
            sys.stdout.flush()
 
627
            try:
 
628
                return run_bzr(argv)
 
629
            finally:
 
630
                # do this here inside the exception wrappers to catch EPIPE
 
631
                sys.stdout.flush()
 
632
        #wrap common errors as CommandErrors.
 
633
        except (NotBranchError,), e:
 
634
            raise BzrCommandError(str(e))
644
635
    except BzrCommandError, e:
645
636
        # command line syntax error, etc
646
637
        log_error(str(e))
652
643
        bzrlib.trace.log_exception('assertion failed: ' + str(e))
653
644
        return 3
654
645
    except KeyboardInterrupt, e:
655
 
        bzrlib.trace.note('interrupted')
 
646
        bzrlib.trace.log_exception('interrupted')
656
647
        return 2
657
648
    except Exception, e:
658
649
        import errno
665
656
            bzrlib.trace.log_exception()
666
657
            return 2
667
658
 
668
 
 
669
659
if __name__ == '__main__':
670
660
    sys.exit(main(sys.argv))