~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-12 18:16:35 UTC
  • mfrom: (1185.84.3 bundles)
  • Revision ID: pqm@pqm.ubuntu.com-20060612181635-930f7114f61dbfcb
Hide diffs for old revisions in bundles

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005 by Canonical Ltd
2
 
 
 
1
# Copyright (C) 2006 by Canonical Ltd
 
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
 
 
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
# TODO: probably should say which arguments are candidates for glob
19
19
# expansion on windows and do that at the command level.
20
20
 
21
 
# TODO: Help messages for options.
22
 
 
23
21
# TODO: Define arguments by objects, rather than just using names.
24
22
# Those objects can specify the expected type of the argument, which
25
 
# would help with validation and shell completion.
 
23
# would help with validation and shell completion.  They could also provide
 
24
# help/explanation for that argument in a structured way.
 
25
 
 
26
# TODO: Specific "examples" property on commands for consistent formatting.
26
27
 
27
28
# TODO: "--profile=cum", to change sort order.  Is there any value in leaving
28
29
# the profile output behind so it can be interactively examined?
30
31
import sys
31
32
import os
32
33
from warnings import warn
33
 
from inspect import getdoc
34
34
import errno
 
35
import codecs
35
36
 
36
37
import bzrlib
37
 
import bzrlib.trace
38
 
from bzrlib.trace import mutter, note, log_error, warning, be_quiet
39
 
from bzrlib.errors import (BzrError, 
 
38
from bzrlib.errors import (BzrError,
40
39
                           BzrCheckError,
41
40
                           BzrCommandError,
42
41
                           BzrOptionError,
43
42
                           NotBranchError)
 
43
from bzrlib.option import Option
44
44
from bzrlib.revisionspec import RevisionSpec
45
 
from bzrlib import BZRDIR
46
 
from bzrlib.option import Option
 
45
from bzrlib.symbol_versioning import *
 
46
import bzrlib.trace
 
47
from bzrlib.trace import mutter, note, log_error, warning, be_quiet
47
48
 
48
49
plugin_cmds = {}
49
50
 
50
51
 
51
52
def register_command(cmd, decorate=False):
52
 
    "Utility function to help register a command"
 
53
    """Utility function to help register a command
 
54
 
 
55
    :param cmd: Command subclass to register
 
56
    :param decorate: If true, allow overriding an existing command
 
57
        of the same name; the old command is returned by this function.
 
58
        Otherwise it is an error to try to override an existing command.
 
59
    """
53
60
    global plugin_cmds
54
61
    k = cmd.__name__
55
62
    if k.startswith("cmd_"):
58
65
        k_unsquished = k
59
66
    if not plugin_cmds.has_key(k_unsquished):
60
67
        plugin_cmds[k_unsquished] = cmd
61
 
        mutter('registered plugin command %s', k_unsquished)      
 
68
        mutter('registered plugin command %s', k_unsquished)
62
69
        if decorate and k_unsquished in builtin_command_names():
63
70
            return _builtin_commands()[k_unsquished]
64
71
    elif decorate:
85
92
    builtins = bzrlib.builtins.__dict__
86
93
    for name in builtins:
87
94
        if name.startswith("cmd_"):
88
 
            real_name = _unsquish_command_name(name)        
 
95
            real_name = _unsquish_command_name(name)
89
96
            r[real_name] = builtins[name]
90
97
    return r
91
 
 
92
98
            
93
99
 
94
100
def builtin_command_names():
168
174
        List of argument forms, marked with whether they are optional,
169
175
        repeated, etc.
170
176
 
171
 
                Examples:
172
 
 
173
 
                ['to_location', 'from_branch?', 'file*']
174
 
 
175
 
                'to_location' is required
176
 
                'from_branch' is optional
177
 
                'file' can be specified 0 or more times
 
177
                Examples:
 
178
 
 
179
                ['to_location', 'from_branch?', 'file*']
 
180
 
 
181
                'to_location' is required
 
182
                'from_branch' is optional
 
183
                'file' can be specified 0 or more times
178
184
 
179
185
    takes_options
180
186
        List of options that may be given for this command.  These can
184
190
    hidden
185
191
        If true, this command isn't advertised.  This is typically
186
192
        for commands intended for expert users.
 
193
 
 
194
    encoding_type
 
195
        Command objects will get a 'outf' attribute, which has been
 
196
        setup to properly handle encoding of unicode strings.
 
197
        encoding_type determines what will happen when characters cannot
 
198
        be encoded
 
199
            strict - abort if we cannot decode
 
200
            replace - put in a bogus character (typically '?')
 
201
            exact - do not encode sys.stdout
 
202
 
187
203
    """
188
204
    aliases = []
189
205
    takes_args = []
190
206
    takes_options = []
 
207
    encoding_type = 'strict'
191
208
 
192
209
    hidden = False
193
210
    
208
225
            r[o.name] = o
209
226
        return r
210
227
 
 
228
    def _setup_outf(self):
 
229
        """Return a file linked to stdout, which has proper encoding."""
 
230
        assert self.encoding_type in ['strict', 'exact', 'replace']
 
231
 
 
232
        # Originally I was using self.stdout, but that looks
 
233
        # *way* too much like sys.stdout
 
234
        if self.encoding_type == 'exact':
 
235
            self.outf = sys.stdout
 
236
            return
 
237
 
 
238
        output_encoding = getattr(sys.stdout, 'encoding', None)
 
239
        if not output_encoding:
 
240
            input_encoding = getattr(sys.stdin, 'encoding', None)
 
241
            if not input_encoding:
 
242
                output_encoding = bzrlib.user_encoding
 
243
                mutter('encoding stdout as bzrlib.user_encoding %r', output_encoding)
 
244
            else:
 
245
                output_encoding = input_encoding
 
246
                mutter('encoding stdout as sys.stdin encoding %r', output_encoding)
 
247
        else:
 
248
            mutter('encoding stdout as sys.stdout encoding %r', output_encoding)
 
249
 
 
250
        # use 'replace' so that we don't abort if trying to write out
 
251
        # in e.g. the default C locale.
 
252
        self.outf = codecs.getwriter(output_encoding)(sys.stdout, errors=self.encoding_type)
 
253
        # For whatever reason codecs.getwriter() does not advertise its encoding
 
254
        # it just returns the encoding of the wrapped file, which is completely
 
255
        # bogus. So set the attribute, so we can find the correct encoding later.
 
256
        self.outf.encoding = output_encoding
 
257
 
 
258
    @deprecated_method(zero_eight)
211
259
    def run_argv(self, argv):
212
 
        """Parse command line and run."""
213
 
        args, opts = parse_args(self, argv)
 
260
        """Parse command line and run.
 
261
        
 
262
        See run_argv_aliases for the 0.8 and beyond api.
 
263
        """
 
264
        return self.run_argv_aliases(argv)
 
265
 
 
266
    def run_argv_aliases(self, argv, alias_argv=None):
 
267
        """Parse the command line and run with extra aliases in alias_argv."""
 
268
        args, opts = parse_args(self, argv, alias_argv)
214
269
        if 'help' in opts:  # e.g. bzr add --help
215
270
            from bzrlib.help import help_on_command
216
271
            help_on_command(self.name())
219
274
        allowed_names = self.options().keys()
220
275
        for oname in opts:
221
276
            if oname not in allowed_names:
222
 
                raise BzrCommandError("option '--%s' is not allowed for command %r"
223
 
                                      % (oname, self.name()))
 
277
                raise BzrCommandError("option '--%s' is not allowed for"
 
278
                                      " command %r" % (oname, self.name()))
224
279
        # mix arguments and options into one dictionary
225
280
        cmdargs = _match_argform(self.name(), self.takes_args, args)
226
281
        cmdopts = {}
230
285
        all_cmd_args = cmdargs.copy()
231
286
        all_cmd_args.update(cmdopts)
232
287
 
 
288
        self._setup_outf()
 
289
 
233
290
        return self.run(**all_cmd_args)
234
291
    
235
292
    def run(self):
242
299
        shell error code if not.  It's OK for this method to allow
243
300
        an exception to raise up.
244
301
        """
245
 
        raise NotImplementedError()
246
 
 
 
302
        raise NotImplementedError('no implementation of command %r' 
 
303
                                  % self.name())
247
304
 
248
305
    def help(self):
249
306
        """Return help message for this class."""
 
307
        from inspect import getdoc
250
308
        if self.__doc__ is Command.__doc__:
251
309
            return None
252
310
        return getdoc(self)
286
344
        parsed = [spec, None]
287
345
    return parsed
288
346
 
289
 
def parse_args(command, argv):
 
347
def parse_args(command, argv, alias_argv=None):
290
348
    """Parse command line.
291
349
    
292
350
    Arguments and options are parsed at this level before being passed
297
355
    # TODO: chop up this beast; make it a method of the Command
298
356
    args = []
299
357
    opts = {}
 
358
    alias_opts = {}
300
359
 
301
360
    cmd_options = command.options()
302
361
    argsover = False
303
 
    while argv:
304
 
        a = argv.pop(0)
305
 
        if argsover:
306
 
            args.append(a)
307
 
            continue
308
 
        elif a == '--':
309
 
            # We've received a standalone -- No more flags
310
 
            argsover = True
311
 
            continue
312
 
        if a[0] == '-':
313
 
            # option names must not be unicode
314
 
            a = str(a)
315
 
            optarg = None
316
 
            if a[1] == '-':
317
 
                mutter("  got option %r", a)
318
 
                if '=' in a:
319
 
                    optname, optarg = a[2:].split('=', 1)
320
 
                else:
321
 
                    optname = a[2:]
322
 
                if optname not in cmd_options:
323
 
                    raise BzrOptionError('unknown long option %r for command %s'
324
 
                        % (a, command.name()))
325
 
            else:
326
 
                shortopt = a[1:]
327
 
                if shortopt in Option.SHORT_OPTIONS:
328
 
                    # Multi-character options must have a space to delimit
329
 
                    # their value
330
 
                    # ^^^ what does this mean? mbp 20051014
331
 
                    optname = Option.SHORT_OPTIONS[shortopt].name
332
 
                else:
333
 
                    # Single character short options, can be chained,
334
 
                    # and have their value appended to their name
335
 
                    shortopt = a[1:2]
336
 
                    if shortopt not in Option.SHORT_OPTIONS:
337
 
                        # We didn't find the multi-character name, and we
338
 
                        # didn't find the single char name
339
 
                        raise BzrError('unknown short option %r' % a)
340
 
                    optname = Option.SHORT_OPTIONS[shortopt].name
 
362
    proc_aliasarg = True # Are we processing alias_argv now?
 
363
    for proc_argv in alias_argv, argv:
 
364
        while proc_argv:
 
365
            a = proc_argv.pop(0)
 
366
            if argsover:
 
367
                args.append(a)
 
368
                continue
 
369
            elif a == '--':
 
370
                # We've received a standalone -- No more flags
 
371
                argsover = True
 
372
                continue
 
373
            if a[0] == '-':
 
374
                # option names must not be unicode
 
375
                a = str(a)
 
376
                optarg = None
 
377
                if a[1] == '-':
 
378
                    mutter("  got option %r", a)
 
379
                    if '=' in a:
 
380
                        optname, optarg = a[2:].split('=', 1)
 
381
                    else:
 
382
                        optname = a[2:]
 
383
                    if optname not in cmd_options:
 
384
                        raise BzrOptionError('unknown long option %r for'
 
385
                                             ' command %s' % 
 
386
                                             (a, command.name()))
 
387
                else:
 
388
                    shortopt = a[1:]
 
389
                    if shortopt in Option.SHORT_OPTIONS:
 
390
                        # Multi-character options must have a space to delimit
 
391
                        # their value
 
392
                        # ^^^ what does this mean? mbp 20051014
 
393
                        optname = Option.SHORT_OPTIONS[shortopt].name
 
394
                    else:
 
395
                        # Single character short options, can be chained,
 
396
                        # and have their value appended to their name
 
397
                        shortopt = a[1:2]
 
398
                        if shortopt not in Option.SHORT_OPTIONS:
 
399
                            # We didn't find the multi-character name, and we
 
400
                            # didn't find the single char name
 
401
                            raise BzrError('unknown short option %r' % a)
 
402
                        optname = Option.SHORT_OPTIONS[shortopt].name
341
403
 
342
 
                    if a[2:]:
343
 
                        # There are extra things on this option
344
 
                        # see if it is the value, or if it is another
345
 
                        # short option
346
 
                        optargfn = Option.OPTIONS[optname].type
347
 
                        if optargfn is None:
348
 
                            # This option does not take an argument, so the
349
 
                            # next entry is another short option, pack it back
350
 
                            # into the list
351
 
                            argv.insert(0, '-' + a[2:])
 
404
                        if a[2:]:
 
405
                            # There are extra things on this option
 
406
                            # see if it is the value, or if it is another
 
407
                            # short option
 
408
                            optargfn = Option.OPTIONS[optname].type
 
409
                            if optargfn is None:
 
410
                                # This option does not take an argument, so the
 
411
                                # next entry is another short option, pack it
 
412
                                # back into the list
 
413
                                proc_argv.insert(0, '-' + a[2:])
 
414
                            else:
 
415
                                # This option takes an argument, so pack it
 
416
                                # into the array
 
417
                                optarg = a[2:]
 
418
                
 
419
                    if optname not in cmd_options:
 
420
                        raise BzrOptionError('unknown short option %r for'
 
421
                                             ' command %s' % 
 
422
                                             (shortopt, command.name()))
 
423
                if optname in opts:
 
424
                    # XXX: Do we ever want to support this, e.g. for -r?
 
425
                    if proc_aliasarg:
 
426
                        raise BzrError('repeated option %r' % a)
 
427
                    elif optname in alias_opts:
 
428
                        # Replace what's in the alias with what's in the real
 
429
                        # argument
 
430
                        del alias_opts[optname]
 
431
                        del opts[optname]
 
432
                        proc_argv.insert(0, a)
 
433
                        continue
 
434
                    else:
 
435
                        raise BzrError('repeated option %r' % a)
 
436
                    
 
437
                option_obj = cmd_options[optname]
 
438
                optargfn = option_obj.type
 
439
                if optargfn:
 
440
                    if optarg == None:
 
441
                        if not proc_argv:
 
442
                            raise BzrError('option %r needs an argument' % a)
352
443
                        else:
353
 
                            # This option takes an argument, so pack it
354
 
                            # into the array
355
 
                            optarg = a[2:]
356
 
            
357
 
                if optname not in cmd_options:
358
 
                    raise BzrOptionError('unknown short option %r for command'
359
 
                        ' %s' % (shortopt, command.name()))
360
 
            if optname in opts:
361
 
                # XXX: Do we ever want to support this, e.g. for -r?
362
 
                raise BzrError('repeated option %r' % a)
363
 
                
364
 
            option_obj = cmd_options[optname]
365
 
            optargfn = option_obj.type
366
 
            if optargfn:
367
 
                if optarg == None:
368
 
                    if not argv:
369
 
                        raise BzrError('option %r needs an argument' % a)
370
 
                    else:
371
 
                        optarg = argv.pop(0)
372
 
                opts[optname] = optargfn(optarg)
 
444
                            optarg = proc_argv.pop(0)
 
445
                    opts[optname] = optargfn(optarg)
 
446
                    if proc_aliasarg:
 
447
                        alias_opts[optname] = optargfn(optarg)
 
448
                else:
 
449
                    if optarg != None:
 
450
                        raise BzrError('option %r takes no argument' % optname)
 
451
                    opts[optname] = True
 
452
                    if proc_aliasarg:
 
453
                        alias_opts[optname] = True
373
454
            else:
374
 
                if optarg != None:
375
 
                    raise BzrError('option %r takes no argument' % optname)
376
 
                opts[optname] = True
377
 
        else:
378
 
            args.append(a)
 
455
                args.append(a)
 
456
        proc_aliasarg = False # Done with alias argv
379
457
    return args, opts
380
458
 
381
459
 
447
525
        os.remove(pfname)
448
526
 
449
527
 
450
 
def apply_lsprofiled(the_callable, *args, **kwargs):
 
528
def apply_lsprofiled(filename, the_callable, *args, **kwargs):
451
529
    from bzrlib.lsprof import profile
452
 
    ret,stats = profile(the_callable,*args,**kwargs)
 
530
    import cPickle
 
531
    ret, stats = profile(the_callable, *args, **kwargs)
453
532
    stats.sort()
454
 
    stats.pprint()
 
533
    if filename is None:
 
534
        stats.pprint()
 
535
    else:
 
536
        stats.freeze()
 
537
        cPickle.dump(stats, open(filename, 'w'), 2)
 
538
        print 'Profile data written to %r.' % filename
455
539
    return ret
456
540
 
 
541
 
 
542
def get_alias(cmd):
 
543
    """Return an expanded alias, or None if no alias exists"""
 
544
    import bzrlib.config
 
545
    alias = bzrlib.config.GlobalConfig().get_alias(cmd)
 
546
    if (alias):
 
547
        return alias.split(' ')
 
548
    return None
 
549
 
 
550
 
457
551
def run_bzr(argv):
458
552
    """Execute a command.
459
553
 
462
556
    
463
557
    argv
464
558
       The command-line arguments, without the program name from argv[0]
 
559
       These should already be decoded. All library/test code calling
 
560
       run_bzr should be passing valid strings (don't need decoding).
465
561
    
466
562
    Returns a command status or raises an exception.
467
563
 
471
567
    --no-plugins
472
568
        Do not load plugin modules at all
473
569
 
 
570
    --no-aliases
 
571
        Do not allow aliases
 
572
 
474
573
    --builtin
475
574
        Only use builtin commands.  (Plugins are still allowed to change
476
575
        other behaviour.)
481
580
    --lsprof
482
581
        Run under the Python lsprof profiler.
483
582
    """
484
 
    argv = [a.decode(bzrlib.user_encoding) for a in argv]
 
583
    argv = list(argv)
485
584
 
486
 
    opt_lsprof = opt_profile = opt_no_plugins = opt_builtin = False
 
585
    opt_lsprof = opt_profile = opt_no_plugins = opt_builtin =  \
 
586
                opt_no_aliases = False
 
587
    opt_lsprof_file = None
487
588
 
488
589
    # --no-plugins is handled specially at a very early stage. We need
489
590
    # to load plugins before doing other command parsing so that they
490
591
    # can override commands, but this needs to happen first.
491
592
 
492
 
    for a in argv:
 
593
    argv_copy = []
 
594
    i = 0
 
595
    while i < len(argv):
 
596
        a = argv[i]
493
597
        if a == '--profile':
494
598
            opt_profile = True
495
599
        elif a == '--lsprof':
496
600
            opt_lsprof = True
 
601
        elif a == '--lsprof-file':
 
602
            opt_lsprof_file = argv[i + 1]
 
603
            i += 1
497
604
        elif a == '--no-plugins':
498
605
            opt_no_plugins = True
 
606
        elif a == '--no-aliases':
 
607
            opt_no_aliases = True
499
608
        elif a == '--builtin':
500
609
            opt_builtin = True
501
610
        elif a in ('--quiet', '-q'):
502
611
            be_quiet()
503
612
        else:
504
 
            continue
505
 
        argv.remove(a)
 
613
            argv_copy.append(a)
 
614
        i += 1
506
615
 
507
 
    if (not argv) or (argv[0] == '--help'):
508
 
        from bzrlib.help import help
509
 
        if len(argv) > 1:
510
 
            help(argv[1])
511
 
        else:
512
 
            help()
 
616
    argv = argv_copy
 
617
    if (not argv):
 
618
        from bzrlib.builtins import cmd_help
 
619
        cmd_help().run_argv_aliases([])
513
620
        return 0
514
621
 
515
622
    if argv[0] == '--version':
520
627
    if not opt_no_plugins:
521
628
        from bzrlib.plugin import load_plugins
522
629
        load_plugins()
 
630
    else:
 
631
        from bzrlib.plugin import disable_plugins
 
632
        disable_plugins()
 
633
 
 
634
    alias_argv = None
 
635
 
 
636
    if not opt_no_aliases:
 
637
        alias_argv = get_alias(argv[0])
 
638
        if alias_argv:
 
639
            alias_argv = [a.decode(bzrlib.user_encoding) for a in alias_argv]
 
640
            argv[0] = alias_argv.pop(0)
523
641
 
524
642
    cmd = str(argv.pop(0))
525
643
 
526
644
    cmd_obj = get_cmd_object(cmd, plugins_override=not opt_builtin)
 
645
    if not getattr(cmd_obj.run_argv, 'is_deprecated', False):
 
646
        run = cmd_obj.run_argv
 
647
        run_argv = [argv]
 
648
    else:
 
649
        run = cmd_obj.run_argv_aliases
 
650
        run_argv = [argv, alias_argv]
527
651
 
528
652
    try:
529
653
        if opt_lsprof:
530
 
            ret = apply_lsprofiled(cmd_obj.run_argv, argv)
 
654
            ret = apply_lsprofiled(opt_lsprof_file, run, *run_argv)
531
655
        elif opt_profile:
532
 
            ret = apply_profiled(cmd_obj.run_argv, argv)
 
656
            ret = apply_profiled(run, *run_argv)
533
657
        else:
534
 
            ret = cmd_obj.run_argv(argv)
 
658
            ret = run(*run_argv)
535
659
        return ret or 0
536
660
    finally:
537
661
        # reset, in case we may do other commands later within the same process
561
685
    ## bzrlib.trace.enable_default_logging()
562
686
    bzrlib.trace.log_startup(argv)
563
687
    bzrlib.ui.ui_factory = TextUIFactory()
564
 
    ret = run_bzr_catch_errors(argv[1:])
 
688
 
 
689
    argv = [a.decode(bzrlib.user_encoding) for a in argv[1:]]
 
690
    ret = run_bzr_catch_errors(argv)
565
691
    mutter("return code %d", ret)
566
692
    return ret
567
693