2
# -*- coding: UTF-8 -*-
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
"""XML externalization support."""
20
# "XML is like violence: if it doesn't solve your problem, you aren't
21
# using enough of it." -- various
23
# importing this module is fairly slow because it has to load several
26
from bzrlib.trace import mutter, warning
29
from cElementTree import (ElementTree, SubElement, Element,
30
XMLTreeBuilder, fromstring, tostring)
32
## from warnings import warn
33
## warn('using slower ElementTree; consider installing cElementTree')
34
from util.elementtree.ElementTree import (ElementTree, SubElement,
35
Element, XMLTreeBuilder,
38
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
39
from bzrlib.errors import BzrError
42
class Serializer(object):
43
"""Abstract object serialize/deserialize"""
44
def write_inventory(self, inv, f):
45
"""Write inventory to a file"""
46
elt = self._pack_inventory(inv)
47
self._write_element(elt, f)
49
def write_inventory_to_string(self, inv):
50
return tostring(self._pack_inventory(inv))
52
def read_inventory_from_string(self, xml_string):
53
return self._unpack_inventory(fromstring(xml_string))
55
def read_inventory(self, f):
56
return self._unpack_inventory(self._read_element(f))
58
def write_revision(self, rev, f):
59
self._write_element(self._pack_revision(rev), f)
61
def write_revision_to_string(self, rev):
62
return tostring(self._pack_revision(rev), f)
64
def read_revision(self, f):
65
return self._unpack_revision(self._read_element(f))
67
def read_revision_from_string(self, xml_string):
68
return self._unpack_revision(fromstring(xml_string))
70
def _write_element(self, elt, f):
71
ElementTree(elt).write(f, 'utf-8')
74
def _read_element(self, f):
75
return ElementTree().parse(f)