1
# This program is free software; you can redistribute it and/or modify
2
# it under the terms of the GNU General Public License as published by
3
# the Free Software Foundation; either version 2 of the License, or
4
# (at your option) any later version.
6
# This program is distributed in the hope that it will be useful,
7
# but WITHOUT ANY WARRANTY; without even the implied warranty of
8
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9
# GNU General Public License for more details.
11
# You should have received a copy of the GNU General Public License
12
# along with this program; if not, write to the Free Software
13
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
from bzrlib.xml_serializer import ElementTree, SubElement, Element, Serializer
17
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
18
import bzrlib.inventory as inventory
19
from bzrlib.revision import Revision
20
from bzrlib.errors import BzrError
23
class Serializer_v5(Serializer):
24
"""Version 5 serializer
26
Packs objects into XML and vice versa.
31
def _pack_inventory(self, inv):
32
"""Convert to XML Element"""
33
e = Element('inventory',
36
if inv.root.file_id not in (None, ROOT_ID):
37
e.set('file_id', inv.root.file_id)
38
if inv.revision_id is not None:
39
e.set('revision_id', inv.revision_id)
40
for path, ie in inv.iter_entries():
41
e.append(self._pack_entry(ie))
44
def _pack_entry(self, ie):
45
"""Convert InventoryEntry to XML element"""
46
if not InventoryEntry.versionable_kind(ie.kind):
47
raise AssertionError('unsupported entry kind %s' % ie.kind)
49
e.set('name', ie.name)
50
e.set('file_id', ie.file_id)
52
if ie.text_size != None:
53
e.set('text_size', '%d' % ie.text_size)
55
for f in ['text_sha1', 'revision', 'symlink_target']:
61
e.set('executable', 'yes')
63
# to be conservative, we don't externalize the root pointers
64
# for now, leaving them as null in the xml form. in a future
65
# version it will be implied by nested elements.
66
if ie.parent_id != ROOT_ID:
67
assert isinstance(ie.parent_id, basestring)
68
e.set('parent_id', ie.parent_id)
72
def _pack_revision(self, rev):
73
"""Revision object -> xml tree"""
74
root = Element('revision',
75
committer = rev.committer,
76
timestamp = '%.9f' % rev.timestamp,
77
revision_id = rev.revision_id,
78
inventory_sha1 = rev.inventory_sha1,
82
root.set('timezone', str(rev.timezone))
84
msg = SubElement(root, 'message')
85
msg.text = rev.message
88
pelts = SubElement(root, 'parents')
89
pelts.tail = pelts.text = '\n'
90
for parent_id in rev.parent_ids:
91
assert isinstance(parent_id, basestring)
92
p = SubElement(pelts, 'revision_ref')
94
p.set('revision_id', parent_id)
96
self._pack_revision_properties(rev, root)
100
def _pack_revision_properties(self, rev, under_element):
101
top_elt = SubElement(under_element, 'properties')
102
for prop_name, prop_value in sorted(rev.properties.items()):
103
assert isinstance(prop_name, basestring)
104
assert isinstance(prop_value, basestring)
105
prop_elt = SubElement(top_elt, 'property')
106
prop_elt.set('name', prop_name)
107
prop_elt.text = prop_value
112
def _unpack_inventory(self, elt):
113
"""Construct from XML Element
115
assert elt.tag == 'inventory'
116
root_id = elt.get('file_id') or ROOT_ID
117
format = elt.get('format')
118
if format is not None:
120
raise BzrError("invalid format version %r on inventory"
122
revision_id = elt.get('revision_id')
123
inv = Inventory(root_id, revision_id=revision_id)
125
ie = self._unpack_entry(e)
126
if ie.parent_id == ROOT_ID:
127
ie.parent_id = root_id
132
def _unpack_entry(self, elt):
134
if not InventoryEntry.versionable_kind(kind):
135
raise AssertionError('unsupported entry kind %s' % kind)
137
parent_id = elt.get('parent_id')
138
if parent_id == None:
141
if kind == 'directory':
142
ie = inventory.InventoryDirectory(elt.get('file_id'),
146
ie = inventory.InventoryFile(elt.get('file_id'),
149
ie.text_sha1 = elt.get('text_sha1')
150
if elt.get('executable') == 'yes':
152
v = elt.get('text_size')
153
ie.text_size = v and int(v)
154
elif kind == 'symlink':
155
ie = inventory.InventoryLink(elt.get('file_id'),
158
ie.symlink_target = elt.get('symlink_target')
160
raise BzrError("unknown kind %r" % kind)
161
ie.revision = elt.get('revision')
166
def _unpack_revision(self, elt):
167
"""XML Element -> Revision object"""
168
assert elt.tag == 'revision'
169
format = elt.get('format')
170
if format is not None:
172
raise BzrError("invalid format version %r on inventory"
174
rev = Revision(committer = elt.get('committer'),
175
timestamp = float(elt.get('timestamp')),
176
revision_id = elt.get('revision_id'),
177
inventory_sha1 = elt.get('inventory_sha1')
179
parents = elt.find('parents') or []
181
assert p.tag == 'revision_ref', \
182
"bad parent node tag %r" % p.tag
183
rev.parent_ids.append(p.get('revision_id'))
184
self._unpack_revision_properties(elt, rev)
185
v = elt.get('timezone')
186
rev.timezone = v and int(v)
187
rev.message = elt.findtext('message') # text of <message>
191
def _unpack_revision_properties(self, elt, rev):
192
"""Unpack properties onto a revision."""
193
props_elt = elt.find('properties')
194
assert len(rev.properties) == 0
197
for prop_elt in props_elt:
198
assert prop_elt.tag == 'property', \
199
"bad tag under properties list: %r" % p.tag
200
name = prop_elt.get('name')
201
value = prop_elt.text
202
assert name not in rev.properties, \
203
"repeated property %r" % p.name
204
rev.properties[name] = value
207
serializer_v5 = Serializer_v5()