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