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
25
from bzrlib.errors import IncompatibleAPI
28
def get_current_api_version(object_with_api):
29
"""Return the API version tuple for object_with_api.
31
:param object_with_api: An object to look for an API version on. If the
32
object has a api_current_version attribute, that is used. Otherwise if
33
there is a version_info attribute, its first three elements are used.
34
Finally if there was no version_info attribute, the current api version
35
of bzrlib itself is used.
40
return object_with_api.api_current_version
41
except AttributeError:
43
return object_with_api.version_info[0:3]
44
except AttributeError:
45
return get_current_api_version(bzrlib)
48
def get_minimum_api_version(object_with_api):
49
"""Return the minimum API version supported by object_with_api.
51
:param object_with_api: An object to look for an API version on. If the
52
object has a api_minimum_version attribute, that is used. Otherwise the
53
minimum api version of bzrlib itself is used.
58
return object_with_api.api_minimum_version
59
except AttributeError:
60
return get_minimum_api_version(bzrlib)
63
def require_api(object_with_api, wanted_api):
64
"""Check if object_with_api supports the api version wanted_api.
66
:param object_with_api: An object which exports an API minimum and current
67
version. See get_minimum_api_version and get_current_api_version for
69
:param wanted_api: The API version for which support is required.
71
:raises IncompatibleAPI: When the wanted_api is not supported by
76
current = get_current_api_version(object_with_api)
77
minimum = get_minimum_api_version(object_with_api)
78
if wanted_api < minimum or wanted_api > current:
79
raise IncompatibleAPI(object_with_api, wanted_api, minimum, current)
82
def require_any_api(object_with_api, wanted_api_list):
83
"""Check if object_with_api supports the api version wanted_api.
85
:param object_with_api: An object which exports an API minimum and current
86
version. See get_minimum_api_version and get_current_api_version for
88
:param wanted_api: A list of API versions, any of which being available is
91
:raises IncompatibleAPI: When the wanted_api is not supported by
96
for api in wanted_api_list[:-1]:
98
return require_api(object_with_api, api)
99
except IncompatibleAPI:
101
require_api(object_with_api, wanted_api_list[-1])