~bzr-pqm/bzr/bzr.dev

1189 by Martin Pool
- BROKEN: partial support for commit into weave
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
18
from bzrlib.xml import ElementTree, SubElement, Element, Serializer
19
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
1311 by Martin Pool
- remove RevisionReference; just hold parent ids directly
20
from bzrlib.revision import Revision        
1189 by Martin Pool
- BROKEN: partial support for commit into weave
21
from bzrlib.errors import BzrError
22
23
24
25
26
27
class Serializer_v5(Serializer):
28
    """Version 5 serializer
29
30
    Packs objects into XML and vice versa.
31
    """
32
    
33
    __slots__ = []
34
    
35
    def _pack_inventory(self, inv):
36
        """Convert to XML Element"""
37
        e = Element('inventory')
38
        e.text = '\n'
39
        if inv.root.file_id not in (None, ROOT_ID):
40
            e.set('file_id', inv.root.file_id)
41
        for path, ie in inv.iter_entries():
42
            e.append(self._pack_entry(ie))
43
        return e
44
45
46
    def _pack_entry(self, ie):
47
        """Convert InventoryEntry to XML element"""
1092.2.20 by Robert Collins
symlink and weaves, whaddya know
48
        assert ie.kind in ('directory', 'file', 'symlink')
1189 by Martin Pool
- BROKEN: partial support for commit into weave
49
        e = Element(ie.kind)
50
        e.set('name', ie.name)
51
        e.set('file_id', ie.file_id)
52
53
        if ie.text_size != None:
54
            e.set('text_size', '%d' % ie.text_size)
55
1092.2.20 by Robert Collins
symlink and weaves, whaddya know
56
        for f in ['text_version', 'text_sha1', 'name_version', 
57
                  'symlink_target']:
1189 by Martin Pool
- BROKEN: partial support for commit into weave
58
            v = getattr(ie, f)
59
            if v != None:
60
                e.set(f, v)
61
62
        # to be conservative, we don't externalize the root pointers
63
        # for now, leaving them as null in the xml form.  in a future
64
        # version it will be implied by nested elements.
65
        if ie.parent_id != ROOT_ID:
66
            assert isinstance(ie.parent_id, basestring)
67
            e.set('parent_id', ie.parent_id)
68
69
        e.tail = '\n'
70
71
        return e
72
73
74
    def _pack_revision(self, rev):
75
        """Revision object -> xml tree"""
76
        root = Element('revision',
77
                       committer = rev.committer,
78
                       timestamp = '%.9f' % rev.timestamp,
79
                       revision_id = rev.revision_id,
80
                       inventory_sha1 = rev.inventory_sha1,
81
                       )
82
        if rev.timezone:
83
            root.set('timezone', str(rev.timezone))
84
        root.text = '\n'
85
86
        msg = SubElement(root, 'message')
87
        msg.text = rev.message
88
        msg.tail = '\n'
89
1313 by Martin Pool
- rename to Revision.parent_ids to avoid confusion with old usage
90
        if rev.parent_ids:
1189 by Martin Pool
- BROKEN: partial support for commit into weave
91
            pelts = SubElement(root, 'parents')
92
            pelts.tail = pelts.text = '\n'
1313 by Martin Pool
- rename to Revision.parent_ids to avoid confusion with old usage
93
            for parent_id in rev.parent_ids:
1311 by Martin Pool
- remove RevisionReference; just hold parent ids directly
94
                assert isinstance(parent_id, basestring)
1189 by Martin Pool
- BROKEN: partial support for commit into weave
95
                p = SubElement(pelts, 'revision_ref')
96
                p.tail = '\n'
1311 by Martin Pool
- remove RevisionReference; just hold parent ids directly
97
                p.set('revision_id', parent_id)
1189 by Martin Pool
- BROKEN: partial support for commit into weave
98
        return root
99
100
    
101
102
    def _unpack_inventory(self, elt):
103
        """Construct from XML Element
104
        """
105
        assert elt.tag == 'inventory'
106
        root_id = elt.get('file_id') or ROOT_ID
107
        inv = Inventory(root_id)
108
        for e in elt:
109
            ie = self._unpack_entry(e)
110
            if ie.parent_id == ROOT_ID:
111
                ie.parent_id = root_id
112
            inv.add(ie)
113
        return inv
114
115
116
    def _unpack_entry(self, elt):
117
        kind = elt.tag
1092.2.20 by Robert Collins
symlink and weaves, whaddya know
118
        if not kind in ('directory', 'file', 'symlink'):
119
            raise AssertionError('unsupported entry kind %s' % kind)
1189 by Martin Pool
- BROKEN: partial support for commit into weave
120
121
        parent_id = elt.get('parent_id')
122
        if parent_id == None:
123
            parent_id = ROOT_ID
124
125
        ie = InventoryEntry(elt.get('file_id'),
126
                            elt.get('name'),
127
                            kind,
128
                            parent_id)
129
        ie.text_version = elt.get('text_version')
1305 by Martin Pool
- rename entry_version to name_version
130
        ie.name_version = elt.get('name_version')
1189 by Martin Pool
- BROKEN: partial support for commit into weave
131
        ie.text_sha1 = elt.get('text_sha1')
1092.2.20 by Robert Collins
symlink and weaves, whaddya know
132
        ie.symlink_target = elt.get('symlink_target')
1189 by Martin Pool
- BROKEN: partial support for commit into weave
133
        v = elt.get('text_size')
134
        ie.text_size = v and int(v)
135
136
        return ie
137
138
139
    def _unpack_revision(self, elt):
140
        """XML Element -> Revision object"""
141
        assert elt.tag == 'revision'
142
        
143
        rev = Revision(committer = elt.get('committer'),
144
                       timestamp = float(elt.get('timestamp')),
145
                       revision_id = elt.get('revision_id'),
146
                       inventory_sha1 = elt.get('inventory_sha1')
147
                       )
148
149
        parents = elt.find('parents') or []
150
        for p in parents:
151
            assert p.tag == 'revision_ref', \
152
                   "bad parent node tag %r" % p.tag
1313 by Martin Pool
- rename to Revision.parent_ids to avoid confusion with old usage
153
            rev.parent_ids.append(p.get('revision_id'))
1189 by Martin Pool
- BROKEN: partial support for commit into weave
154
155
        v = elt.get('timezone')
156
        rev.timezone = v and int(v)
157
158
        rev.message = elt.findtext('message') # text of <message>
159
        return rev
160
161
162
163
serializer_v5 = Serializer_v5()