~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/api.py

(vila) Fix test failures blocking package builds. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2007, 2008, 2009, 2011 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Library API versioning support.
 
18
 
 
19
Added in bzrlib 0.18 this allows export of compatibility information about
 
20
bzrlib. Please see doc/developers/api-versioning.txt for design details and
 
21
examples.
 
22
"""
 
23
 
 
24
from __future__ import absolute_import
 
25
 
 
26
import bzrlib
 
27
from bzrlib.errors import IncompatibleAPI
 
28
 
 
29
 
 
30
def get_current_api_version(object_with_api):
 
31
    """Return the API version tuple for object_with_api.
 
32
 
 
33
    :param object_with_api: An object to look for an API version on. If the
 
34
        object has a api_current_version attribute, that is used. Otherwise if
 
35
        there is a version_info attribute, its first three elements are used.
 
36
        Finally if there was no version_info attribute, the current api version
 
37
        of bzrlib itself is used.
 
38
 
 
39
    Added in bzrlib 0.18.
 
40
    """
 
41
    try:
 
42
        return object_with_api.api_current_version
 
43
    except AttributeError:
 
44
        try:
 
45
            return object_with_api.version_info[0:3]
 
46
        except AttributeError:
 
47
            return get_current_api_version(bzrlib)
 
48
 
 
49
 
 
50
def get_minimum_api_version(object_with_api):
 
51
    """Return the minimum API version supported by object_with_api.
 
52
 
 
53
    :param object_with_api: An object to look for an API version on. If the
 
54
        object has a api_minimum_version attribute, that is used. Otherwise the
 
55
        minimum api version of bzrlib itself is used.
 
56
 
 
57
    Added in bzrlib 0.18.
 
58
    """
 
59
    try:
 
60
        return object_with_api.api_minimum_version
 
61
    except AttributeError:
 
62
        return get_minimum_api_version(bzrlib)
 
63
 
 
64
 
 
65
def require_api(object_with_api, wanted_api):
 
66
    """Check if object_with_api supports the api version wanted_api.
 
67
 
 
68
    :param object_with_api: An object which exports an API minimum and current
 
69
        version. See get_minimum_api_version and get_current_api_version for
 
70
        details.
 
71
    :param wanted_api: The API version for which support is required.
 
72
    :return: None
 
73
    :raises IncompatibleAPI: When the wanted_api is not supported by
 
74
        object_with_api.
 
75
 
 
76
    Added in bzrlib 0.18.
 
77
    """
 
78
    current = get_current_api_version(object_with_api)
 
79
    minimum = get_minimum_api_version(object_with_api)
 
80
    if wanted_api < minimum or wanted_api > current:
 
81
        raise IncompatibleAPI(object_with_api, wanted_api, minimum, current)
 
82
 
 
83
 
 
84
def require_any_api(object_with_api, wanted_api_list):
 
85
    """Check if object_with_api supports the api version wanted_api.
 
86
 
 
87
    :param object_with_api: An object which exports an API minimum and current
 
88
        version. See get_minimum_api_version and get_current_api_version for
 
89
        details.
 
90
    :param wanted_api: A list of API versions, any of which being available is
 
91
        sufficent.
 
92
    :return: None
 
93
    :raises IncompatibleAPI: When the wanted_api is not supported by
 
94
        object_with_api.
 
95
 
 
96
    Added in bzrlib 1.9.
 
97
    """
 
98
    for api in wanted_api_list[:-1]:
 
99
        try:
 
100
            return require_api(object_with_api, api)
 
101
        except IncompatibleAPI:
 
102
            pass
 
103
    require_api(object_with_api, wanted_api_list[-1])