/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.200.872 by Jelmer Vernooij
Move refs code to separate module.
1
# Copyright (C) 2010 Jelmer Vernooij <jelmer@samba.org>
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17
"""Conversion between refs and Bazaar revision pointers."""
18
0.200.873 by Jelmer Vernooij
Add convenience command for accessing virtual git refs.
19
from dulwich.repo import (
20
    RefsContainer,
21
    )
22
23
from bzrlib import (
24
    errors,
25
    )
26
27
0.200.872 by Jelmer Vernooij
Move refs code to separate module.
28
def extract_tags(refs):
29
    """Extract the tags from a refs dictionary.
30
31
    :param refs: Refs to extract the tags from.
32
    :return: Dictionary mapping tag names to SHA1s.
33
    """
34
    ret = {}
35
    for k,v in refs.iteritems():
36
        if k.startswith("refs/tags/") and not k.endswith("^{}"):
37
            v = refs.get(k+"^{}", v)
38
            ret[k[len("refs/tags/"):]] = v
39
    return ret
40
41
42
def branch_name_to_ref(name, default=None):
43
    """Map a branch name to a ref.
44
45
    :param name: Branch name
46
    :return: ref string
47
    """
48
    if name is None:
49
        return default
50
    if name == "HEAD":
51
        return "HEAD"
52
    if not name.startswith("refs/"):
53
        return "refs/heads/%s" % name
54
    else:
55
        return name
56
57
58
def ref_to_branch_name(ref):
59
    """Map a ref to a branch name
60
61
    :param ref: Ref
62
    :return: A branch name
63
    """
64
    if ref == "HEAD":
65
        return "HEAD"
66
    if ref.startswith("refs/heads/"):
67
        return ref[len("refs/heads/"):]
68
    raise ValueError("unable to map ref %s back to branch name")
69
70
0.200.873 by Jelmer Vernooij
Add convenience command for accessing virtual git refs.
71
72
class BazaarRefsContainer(RefsContainer):
73
74
    def __init__(self, dir, object_store):
75
        self.dir = dir
76
        self.object_store = object_store
77
78
    def set_symbolic_ref(self, name, other):
79
        if name == "HEAD":
80
            pass # FIXME: Switch default branch
81
        else:
82
            raise NotImplementedError(
83
                "Symbolic references not supported for anything other than "
84
                "HEAD")
85
86
    def read_loose_ref(self, ref):
87
        branch_name = ref_to_branch_name(ref)
88
        try:
89
            branch = self.dir.open_branch(branch_name)
90
        except errors.NoColocatedBranchSupport:
91
            if ref != "refs/heads/master":
92
                raise
93
            branch = self.dir.open_branch()
94
        return self.object_store._lookup_revision_sha1(
95
            branch.last_revision())
96
97
    def allkeys(self):
98
        keys = set()
99
        for branch in self.dir.list_branches():
100
            ref = branch_name_to_ref(branch.name, "refs/heads/master")
101
            keys.add(ref)
102
        return keys
103
104
    def __delitem__(self, ref):
105
        try:
106
            branch_name = ref_to_branch_name(ref)
107
        except ValueError:
108
            return # FIXME: Cope with tags!
109
        self.dir.destroy_branch(branch_name)
110
111
    def __setitem__(self, ref, sha):
112
        try:
113
            branch_name = ref_to_branch_name(ref)
114
        except ValueError:
115
            # FIXME: Cope with tags!
116
            return
117
        try:
118
            target_branch = self.repo_dir.open_branch(branch_name)
119
        except errors.NotBranchError:
120
            target_branch = self.repo.create_branch(branch_name)
121
122
        rev_id = self.mapping.revision_id_foreign_to_bzr(sha)
123
        target_branch.lock_write()
124
        try:
125
            target_branch.generate_revision_history(rev_id)
126
        finally:
127
            target_branch.unlock()