1
# Copyright (C) 2007, 2008, 2009, 2011 Canonical Ltd
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.
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.
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
17
"""Library API versioning support.
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
24
from __future__ import absolute_import
27
from bzrlib.errors import IncompatibleAPI
30
def get_current_api_version(object_with_api):
31
"""Return the API version tuple for object_with_api.
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.
42
return object_with_api.api_current_version
43
except AttributeError:
45
return object_with_api.version_info[0:3]
46
except AttributeError:
47
return get_current_api_version(bzrlib)
50
def get_minimum_api_version(object_with_api):
51
"""Return the minimum API version supported by object_with_api.
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.
60
return object_with_api.api_minimum_version
61
except AttributeError:
62
return get_minimum_api_version(bzrlib)
65
def require_api(object_with_api, wanted_api):
66
"""Check if object_with_api supports the api version wanted_api.
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
71
:param wanted_api: The API version for which support is required.
73
:raises IncompatibleAPI: When the wanted_api is not supported by
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)
84
def require_any_api(object_with_api, wanted_api_list):
85
"""Check if object_with_api supports the api version wanted_api.
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
90
:param wanted_api: A list of API versions, any of which being available is
93
:raises IncompatibleAPI: When the wanted_api is not supported by
98
for api in wanted_api_list[:-1]:
100
return require_api(object_with_api, api)
101
except IncompatibleAPI:
103
require_api(object_with_api, wanted_api_list[-1])