~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/xml4.py

  • Committer: John Arbash Meinel
  • Date: 2008-09-26 22:14:42 UTC
  • mto: This revision was merged to the branch mainline in revision 3747.
  • Revision ID: john@arbash-meinel.com-20080926221442-3r67j99sr9rwe9w0
Make message optional, don't check the memory flag directly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
from bzrlib.xml_serializer import ElementTree, SubElement, Element, Serializer
18
18
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
19
19
import bzrlib.inventory as inventory
20
 
from bzrlib.revision import Revision        
 
20
from bzrlib.revision import Revision
21
21
from bzrlib.errors import BzrError
22
22
 
23
23
 
24
24
class _Serializer_v4(Serializer):
25
25
    """Version 0.0.4 serializer
26
26
 
27
 
    You should use the serializer_v4 singleton."""
 
27
    You should use the serializer_v4 singleton.
 
28
    
 
29
    v4 serialisation is no longer supported, only deserialisation.
 
30
    """
28
31
    
29
32
    __slots__ = []
30
33
    
31
 
    def _pack_inventory(self, inv):
32
 
        """Convert to XML Element"""
33
 
        # v4 serialization is not used any more.
34
 
        raise NotImplementedError(self._pack_inventory)
35
 
        e = Element('inventory')
36
 
        e.text = '\n'
37
 
        if inv.root.file_id not in (None, ROOT_ID):
38
 
            e.set('file_id', inv.root.file_id)
39
 
        for path, ie in inv.iter_entries():
40
 
            e.append(self._pack_entry(ie))
41
 
        return e
42
 
 
43
 
 
44
34
    def _pack_entry(self, ie):
45
35
        """Convert InventoryEntry to XML element"""
46
36
        e = Element('entry')
60
50
        # for now, leaving them as null in the xml form.  in a future
61
51
        # version it will be implied by nested elements.
62
52
        if ie.parent_id != ROOT_ID:
63
 
            assert isinstance(ie.parent_id, basestring)
64
53
            e.set('parent_id', ie.parent_id)
65
54
 
66
55
        e.tail = '\n'
68
57
        return e
69
58
 
70
59
 
71
 
    def _unpack_inventory(self, elt):
 
60
    def _unpack_inventory(self, elt, revision_id=None):
72
61
        """Construct from XML Element
 
62
 
 
63
        :param revision_id: Ignored parameter used by xml5.
73
64
        """
74
 
        assert elt.tag == 'inventory'
75
65
        root_id = elt.get('file_id') or ROOT_ID
76
66
        inv = Inventory(root_id)
77
67
        for e in elt:
83
73
 
84
74
 
85
75
    def _unpack_entry(self, elt):
86
 
        assert elt.tag == 'entry'
87
 
 
88
76
        ## original format inventories don't have a parent_id for
89
77
        ## nodes in the root directory, but it's cleaner to use one
90
78
        ## internally.
141
129
            for i, parent_id in enumerate(rev.parents):
142
130
                p = SubElement(pelts, 'revision_ref')
143
131
                p.tail = '\n'
144
 
                assert parent_id
145
132
                p.set('revision_id', parent_id)
146
133
                if i < len(rev.parent_sha1s):
147
134
                    p.set('revision_sha1', rev.parent_sha1s[i])
169
156
 
170
157
        if pelts:
171
158
            for p in pelts:
172
 
                assert p.tag == 'revision_ref', \
173
 
                       "bad parent node tag %r" % p.tag
174
159
                rev.parent_ids.append(p.get('revision_id'))
175
160
                rev.parent_sha1s.append(p.get('revision_sha1'))
176
161
            if precursor:
177
162
                # must be consistent
178
163
                prec_parent = rev.parent_ids[0]
179
 
                assert prec_parent == precursor
180
164
        elif precursor:
181
165
            # revisions written prior to 0.0.5 have a single precursor
182
166
            # give as an attribute