/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/plugins/weave_fmt/xml4.py

  • Committer: Vincent Ladeuil
  • Date: 2012-01-18 14:09:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6468.
  • Revision ID: v.ladeuil+lp@free.fr-20120118140919-rlvdrhpc0nq1lbwi
Change set/remove to require a lock for the branch config files.

This means that tests (or any plugin for that matter) do not requires an
explicit lock on the branch anymore to change a single option. This also
means the optimisation becomes "opt-in" and as such won't be as
spectacular as it may be and/or harder to get right (nothing fails
anymore).

This reduces the diff by ~300 lines.

Code/tests that were updating more than one config option is still taking
a lock to at least avoid some IOs and demonstrate the benefits through
the decreased number of hpss calls.

The duplication between BranchStack and BranchOnlyStack will be removed
once the same sharing is in place for local config files, at which point
the Stack class itself may be able to host the changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005-2010 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
from __future__ import absolute_import
 
18
 
 
19
from bzrlib.xml_serializer import (
 
20
    Element,
 
21
    SubElement,
 
22
    XMLSerializer,
 
23
    escape_invalid_chars,
 
24
    )
 
25
from bzrlib.inventory import ROOT_ID, Inventory
 
26
import bzrlib.inventory as inventory
 
27
from bzrlib.revision import Revision
 
28
from bzrlib.errors import BzrError
 
29
 
 
30
 
 
31
class _Serializer_v4(XMLSerializer):
 
32
    """Version 0.0.4 serializer
 
33
 
 
34
    You should use the serializer_v4 singleton.
 
35
 
 
36
    v4 serialisation is no longer supported, only deserialisation.
 
37
    """
 
38
 
 
39
    __slots__ = []
 
40
 
 
41
    def _pack_entry(self, ie):
 
42
        """Convert InventoryEntry to XML element"""
 
43
        e = Element('entry')
 
44
        e.set('name', ie.name)
 
45
        e.set('file_id', ie.file_id)
 
46
        e.set('kind', ie.kind)
 
47
 
 
48
        if ie.text_size is not None:
 
49
            e.set('text_size', '%d' % ie.text_size)
 
50
 
 
51
        for f in ['text_id', 'text_sha1', 'symlink_target']:
 
52
            v = getattr(ie, f)
 
53
            if v is not None:
 
54
                e.set(f, v)
 
55
 
 
56
        # to be conservative, we don't externalize the root pointers
 
57
        # for now, leaving them as null in the xml form.  in a future
 
58
        # version it will be implied by nested elements.
 
59
        if ie.parent_id != ROOT_ID:
 
60
            e.set('parent_id', ie.parent_id)
 
61
 
 
62
        e.tail = '\n'
 
63
 
 
64
        return e
 
65
 
 
66
 
 
67
    def _unpack_inventory(self, elt, revision_id=None, entry_cache=None,
 
68
                          return_from_cache=False):
 
69
        """Construct from XML Element
 
70
 
 
71
        :param revision_id: Ignored parameter used by xml5.
 
72
        """
 
73
        root_id = elt.get('file_id') or ROOT_ID
 
74
        inv = Inventory(root_id)
 
75
        for e in elt:
 
76
            ie = self._unpack_entry(e, entry_cache=entry_cache,
 
77
                                    return_from_cache=return_from_cache)
 
78
            if ie.parent_id == ROOT_ID:
 
79
                ie.parent_id = root_id
 
80
            inv.add(ie)
 
81
        return inv
 
82
 
 
83
 
 
84
    def _unpack_entry(self, elt, entry_cache=None, return_from_cache=False):
 
85
        ## original format inventories don't have a parent_id for
 
86
        ## nodes in the root directory, but it's cleaner to use one
 
87
        ## internally.
 
88
        parent_id = elt.get('parent_id')
 
89
        if parent_id is None:
 
90
            parent_id = ROOT_ID
 
91
 
 
92
        kind = elt.get('kind')
 
93
        if kind == 'directory':
 
94
            ie = inventory.InventoryDirectory(elt.get('file_id'),
 
95
                                              elt.get('name'),
 
96
                                              parent_id)
 
97
        elif kind == 'file':
 
98
            ie = inventory.InventoryFile(elt.get('file_id'),
 
99
                                         elt.get('name'),
 
100
                                         parent_id)
 
101
            ie.text_id = elt.get('text_id')
 
102
            ie.text_sha1 = elt.get('text_sha1')
 
103
            v = elt.get('text_size')
 
104
            ie.text_size = v and int(v)
 
105
        elif kind == 'symlink':
 
106
            ie = inventory.InventoryLink(elt.get('file_id'),
 
107
                                         elt.get('name'),
 
108
                                         parent_id)
 
109
            ie.symlink_target = elt.get('symlink_target')
 
110
        else:
 
111
            raise BzrError("unknown kind %r" % kind)
 
112
 
 
113
        ## mutter("read inventoryentry: %r", elt.attrib)
 
114
 
 
115
        return ie
 
116
 
 
117
 
 
118
    def _pack_revision(self, rev):
 
119
        """Revision object -> xml tree"""
 
120
        root = Element('revision',
 
121
                       committer = rev.committer,
 
122
                       timestamp = '%.9f' % rev.timestamp,
 
123
                       revision_id = rev.revision_id,
 
124
                       inventory_id = rev.inventory_id,
 
125
                       inventory_sha1 = rev.inventory_sha1,
 
126
                       )
 
127
        if rev.timezone:
 
128
            root.set('timezone', str(rev.timezone))
 
129
        root.text = '\n'
 
130
 
 
131
        msg = SubElement(root, 'message')
 
132
        msg.text = escape_invalid_chars(rev.message)[0]
 
133
        msg.tail = '\n'
 
134
 
 
135
        if rev.parents:
 
136
            pelts = SubElement(root, 'parents')
 
137
            pelts.tail = pelts.text = '\n'
 
138
            for i, parent_id in enumerate(rev.parents):
 
139
                p = SubElement(pelts, 'revision_ref')
 
140
                p.tail = '\n'
 
141
                p.set('revision_id', parent_id)
 
142
                if i < len(rev.parent_sha1s):
 
143
                    p.set('revision_sha1', rev.parent_sha1s[i])
 
144
        return root
 
145
 
 
146
 
 
147
    def _unpack_revision(self, elt):
 
148
        """XML Element -> Revision object"""
 
149
 
 
150
        # <changeset> is deprecated...
 
151
        if elt.tag not in ('revision', 'changeset'):
 
152
            raise BzrError("unexpected tag in revision file: %r" % elt)
 
153
 
 
154
        rev = Revision(committer = elt.get('committer'),
 
155
                       timestamp = float(elt.get('timestamp')),
 
156
                       revision_id = elt.get('revision_id'),
 
157
                       inventory_id = elt.get('inventory_id'),
 
158
                       inventory_sha1 = elt.get('inventory_sha1')
 
159
                       )
 
160
 
 
161
        precursor = elt.get('precursor')
 
162
        precursor_sha1 = elt.get('precursor_sha1')
 
163
 
 
164
        pelts = elt.find('parents')
 
165
 
 
166
        if pelts:
 
167
            for p in pelts:
 
168
                rev.parent_ids.append(p.get('revision_id'))
 
169
                rev.parent_sha1s.append(p.get('revision_sha1'))
 
170
            if precursor:
 
171
                # must be consistent
 
172
                prec_parent = rev.parent_ids[0]
 
173
        elif precursor:
 
174
            # revisions written prior to 0.0.5 have a single precursor
 
175
            # give as an attribute
 
176
            rev.parent_ids.append(precursor)
 
177
            rev.parent_sha1s.append(precursor_sha1)
 
178
 
 
179
        v = elt.get('timezone')
 
180
        rev.timezone = v and int(v)
 
181
 
 
182
        rev.message = elt.findtext('message') # text of <message>
 
183
        return rev
 
184
 
 
185
 
 
186
 
 
187
 
 
188
"""singleton instance"""
 
189
serializer_v4 = _Serializer_v4()
 
190