1
# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
"""Foreign branch utilities."""
19
class VcsMapping(object):
20
"""Describes the mapping between the semantics of Bazaar and a foreign vcs.
28
class VcsMappingRegistry(registry.Registry):
29
"""Registry for Bazaar<->foreign VCS mappings.
31
There should be one instance of this registry for every foreign VCS.
34
def register(self, key, factory, help):
35
"""Register a mapping between Bazaar and foreign VCS semantics.
37
The factory must be a callable that takes one parameter: the key.
38
It must produce an instance of VcsMapping when called.
40
registry.Registry.register(self, key, factory, help)
42
def set_default(self, key):
43
"""Set the 'default' key to be a clone of the supplied key.
45
This method must be called once and only once.
47
self._set_default_key(key)
49
def get_default(self):
50
"""Convenience function for obtaining the default mapping to use."""
51
return self.get(self._get_default_key())