~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to command.py

  • Committer: Aaron Bentley
  • Date: 2006-07-17 13:29:34 UTC
  • Revision ID: abentley@panoramicfeedback.com-20060717132934-6dd09eca40796769
Nicer directory completion for bzr shell

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import bzrlib
2
 
from bzrlib import commands
3
 
 
4
 
from version import version_info, __version__
5
 
 
6
 
 
7
 
_testing = False
8
 
# True if we are currently testing commands via the test suite.
9
 
 
10
 
def _stop_testing():
11
 
    """Set the _testing flag to indicate we are no longer testing."""
12
 
    global _testing
13
 
    _testing = False
14
 
 
15
 
 
16
 
class BzrToolsCommand(commands.Command):
17
 
 
18
 
    def run_argv_aliases(self, argv, alias_argv=None):
19
 
        result = check_bzrlib_version(version_info[:2])
20
 
        if result is not None:
21
 
            return result
22
 
        commands.Command.run_argv_aliases(self, argv, alias_argv)
23
 
 
24
 
 
25
 
def check_bzrlib_version(desired):
26
 
    """Check that bzrlib is compatible.
27
 
 
28
 
    If version is < bzrtools version, assume incompatible.
29
 
    If version == bzrtools version, assume completely compatible
30
 
    If version == bzrtools version + 1, assume compatible, with deprecations
31
 
    Otherwise, assume incompatible.
32
 
    """
33
 
    global _testing
34
 
    if _testing:
35
 
        return
36
 
    desired_plus = (desired[0], desired[1]+1)
37
 
    bzrlib_version = bzrlib.version_info[:2]
38
 
    if bzrlib_version == desired or (bzrlib_version == desired_plus and
39
 
                                     bzrlib.version_info[3] == 'dev'):
40
 
        return
41
 
    try:
42
 
        from bzrlib.trace import warning
43
 
    except ImportError:
44
 
        # get the message out any way we can
45
 
        from warnings import warn as warning
46
 
    if bzrlib_version < desired:
47
 
        warning('Installed Bazaar version %s is too old to be used with'
48
 
                ' plugin \n'
49
 
                '"Bzrtools" %s.' % (
50
 
                bzrlib.__version__, __version__))
51
 
        # Not using BzrNewError, because it may not exist.
52
 
        return 3
53
 
    else:
54
 
        warning('Plugin "Bzrtools" is not up to date with installed Bazaar'
55
 
                ' version %s.\n'
56
 
                'There should be a newer version of Bzrtools available, e.g.'
57
 
                ' %i.%i.'
58
 
                % (bzrlib.__version__, bzrlib_version[0], bzrlib_version[1]))
59
 
        if bzrlib_version != desired_plus:
60
 
            return 3