~bzr-pqm/bzr/bzr.dev

1 by mbp at sourcefrog
import from baz patch-364
1
#! /usr/bin/env python
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
"""XML externalization support."""
18
48 by Martin Pool
witty comment
19
# "XML is like violence: if it doesn't solve your problem, you aren't
20
# using enough of it." -- various
21
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
22
# importing this module is fairly slow because it has to load several
23
# ElementTree bits
24
802 by Martin Pool
- Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions
25
try:
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
26
    from util.cElementTree import ElementTree, SubElement, Element
802 by Martin Pool
- Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions
27
except ImportError:
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
28
    from util.elementtree.ElementTree import ElementTree, SubElement, Element
802 by Martin Pool
- Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions
29
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
30
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
1182 by Martin Pool
- more disentangling of xml storage format from objects
31
from bzrlib.revision import Revision, RevisionReference        
1183 by Martin Pool
- implement version 5 xml storage, and tests
32
from bzrlib.errors import BzrError
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
33
34
35
class Serializer(object):
36
    """Abstract object serialize/deserialize"""
37
    def write_inventory(self, inv, f):
38
        """Write inventory to a file"""
39
        elt = self._pack_inventory(inv)
40
        self._write_element(elt, f)
41
42
    def read_inventory(self, f):
43
        return self._unpack_inventory(self._read_element(f))
44
1182 by Martin Pool
- more disentangling of xml storage format from objects
45
    def write_revision(self, rev, f):
46
        self._write_element(self._pack_revision(rev), f)
47
48
    def read_revision(self, f):
49
        return self._unpack_revision(self._read_element(f))
50
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
51
    def _write_element(self, elt, f):
52
        ElementTree(elt).write(f, 'utf-8')
53
        f.write('\n')
54
55
    def _read_element(self, f):
56
        return ElementTree().parse(f)
57
58
59
60
class _Serializer_v4(Serializer):
1183 by Martin Pool
- implement version 5 xml storage, and tests
61
    """Version 0.0.4 serializer
62
63
    You should use the serialzer_v4 singleton."""
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
64
    
65
    __slots__ = []
66
    
67
    def _pack_inventory(self, inv):
68
        """Convert to XML Element"""
69
        e = Element('inventory')
70
        e.text = '\n'
71
        if inv.root.file_id not in (None, ROOT_ID):
72
            e.set('file_id', inv.root.file_id)
73
        for path, ie in inv.iter_entries():
74
            e.append(self._pack_entry(ie))
75
        return e
76
77
78
    def _pack_entry(self, ie):
79
        """Convert InventoryEntry to XML element"""
80
        e = Element('entry')
81
        e.set('name', ie.name)
82
        e.set('file_id', ie.file_id)
83
        e.set('kind', ie.kind)
84
85
        if ie.text_size != None:
86
            e.set('text_size', '%d' % ie.text_size)
87
88
        for f in ['text_id', 'text_sha1']:
89
            v = getattr(ie, f)
90
            if v != None:
91
                e.set(f, v)
92
93
        # to be conservative, we don't externalize the root pointers
94
        # for now, leaving them as null in the xml form.  in a future
95
        # version it will be implied by nested elements.
96
        if ie.parent_id != ROOT_ID:
97
            assert isinstance(ie.parent_id, basestring)
98
            e.set('parent_id', ie.parent_id)
99
100
        e.tail = '\n'
101
102
        return e
103
104
105
    def _unpack_inventory(self, elt):
106
        """Construct from XML Element
107
        """
108
        assert elt.tag == 'inventory'
109
        root_id = elt.get('file_id') or ROOT_ID
110
        inv = Inventory(root_id)
111
        for e in elt:
112
            ie = self._unpack_entry(e)
113
            if ie.parent_id == ROOT_ID:
114
                ie.parent_id = root_id
115
            inv.add(ie)
116
        return inv
117
118
119
    def _unpack_entry(self, elt):
120
        assert elt.tag == 'entry'
121
122
        ## original format inventories don't have a parent_id for
123
        ## nodes in the root directory, but it's cleaner to use one
124
        ## internally.
125
        parent_id = elt.get('parent_id')
126
        if parent_id == None:
127
            parent_id = ROOT_ID
128
129
        ie = InventoryEntry(elt.get('file_id'),
1189 by Martin Pool
- BROKEN: partial support for commit into weave
130
                            elt.get('name'),
131
                            elt.get('kind'),
132
                            parent_id)
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
133
        ie.text_id = elt.get('text_id')
134
        ie.text_sha1 = elt.get('text_sha1')
135
136
        ## mutter("read inventoryentry: %r" % (elt.attrib))
137
138
        v = elt.get('text_size')
139
        ie.text_size = v and int(v)
140
141
        return ie
142
143
1182 by Martin Pool
- more disentangling of xml storage format from objects
144
    def _pack_revision(self, rev):
145
        """Revision object -> xml tree"""
146
        root = Element('revision',
147
                       committer = rev.committer,
148
                       timestamp = '%.9f' % rev.timestamp,
149
                       revision_id = rev.revision_id,
150
                       inventory_id = rev.inventory_id,
151
                       inventory_sha1 = rev.inventory_sha1,
152
                       )
153
        if rev.timezone:
154
            root.set('timezone', str(rev.timezone))
155
        root.text = '\n'
156
157
        msg = SubElement(root, 'message')
158
        msg.text = rev.message
159
        msg.tail = '\n'
160
161
        if rev.parents:
162
            pelts = SubElement(root, 'parents')
163
            pelts.tail = pelts.text = '\n'
164
            for rr in rev.parents:
165
                assert isinstance(rr, RevisionReference)
166
                p = SubElement(pelts, 'revision_ref')
167
                p.tail = '\n'
168
                assert rr.revision_id
169
                p.set('revision_id', rr.revision_id)
170
                if rr.revision_sha1:
171
                    p.set('revision_sha1', rr.revision_sha1)
172
173
        return root
174
175
    
176
    def _unpack_revision(self, elt):
177
        """XML Element -> Revision object"""
178
        
179
        # <changeset> is deprecated...
180
        if elt.tag not in ('revision', 'changeset'):
1183 by Martin Pool
- implement version 5 xml storage, and tests
181
            raise BzrError("unexpected tag in revision file: %r" % elt)
1182 by Martin Pool
- more disentangling of xml storage format from objects
182
183
        rev = Revision(committer = elt.get('committer'),
184
                       timestamp = float(elt.get('timestamp')),
185
                       revision_id = elt.get('revision_id'),
186
                       inventory_id = elt.get('inventory_id'),
187
                       inventory_sha1 = elt.get('inventory_sha1')
188
                       )
189
190
        precursor = elt.get('precursor')
191
        precursor_sha1 = elt.get('precursor_sha1')
192
193
        pelts = elt.find('parents')
194
195
        if pelts:
196
            for p in pelts:
197
                assert p.tag == 'revision_ref', \
198
                       "bad parent node tag %r" % p.tag
199
                rev_ref = RevisionReference(p.get('revision_id'),
200
                                            p.get('revision_sha1'))
201
                rev.parents.append(rev_ref)
202
203
            if precursor:
204
                # must be consistent
205
                prec_parent = rev.parents[0].revision_id
206
                assert prec_parent == precursor
207
        elif precursor:
208
            # revisions written prior to 0.0.5 have a single precursor
209
            # give as an attribute
210
            rev_ref = RevisionReference(precursor, precursor_sha1)
211
            rev.parents.append(rev_ref)
212
213
        v = elt.get('timezone')
214
        rev.timezone = v and int(v)
215
216
        rev.message = elt.findtext('message') # text of <message>
217
        return rev
218
219
220
1183 by Martin Pool
- implement version 5 xml storage, and tests
221
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
222
"""singleton instance"""
223
serializer_v4 = _Serializer_v4()
1183 by Martin Pool
- implement version 5 xml storage, and tests
224