1
1
# -*- coding: UTF-8 -*-
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
11
# GNU General Public License for more details.
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28
28
from cElementTree import (ElementTree, SubElement, Element,
29
29
XMLTreeBuilder, fromstring, tostring)
31
ParseError = SyntaxError
30
32
except ImportError:
31
33
mutter('WARNING: using slower ElementTree; consider installing cElementTree'
32
34
" and make sure it's on your PYTHONPATH")
33
35
from util.elementtree.ElementTree import (ElementTree, SubElement,
34
36
Element, XMLTreeBuilder,
35
37
fromstring, tostring)
38
import util.elementtree as elementtree
39
from xml.parsers.expat import ExpatError as ParseError
37
from bzrlib.errors import BzrError
41
from bzrlib import errors
40
44
class Serializer(object):
48
52
return tostring(self._pack_inventory(inv)) + '\n'
50
54
def read_inventory_from_string(self, xml_string):
51
return self._unpack_inventory(fromstring(xml_string))
56
return self._unpack_inventory(fromstring(xml_string))
58
raise errors.UnexpectedInventoryFormat(e)
53
60
def read_inventory(self, f):
54
return self._unpack_inventory(self._read_element(f))
62
return self._unpack_inventory(self._read_element(f))
64
raise errors.UnexpectedInventoryFormat(e)
56
66
def write_revision(self, rev, f):
57
67
self._write_element(self._pack_revision(rev), f)
72
82
def _read_element(self, f):
73
83
return ElementTree().parse(f)
86
# performance tuning for elementree's serialiser. This should be
87
# sent upstream - RBC 20060523.
88
# the functions here are patched into elementtree at runtime.
90
escape_re = re.compile("[&'\"<>]")
93
"'":"'", # FIXME: overkill
98
def _escape_replace(match, map=escape_map):
99
return map[match.group()]
101
def _escape_attrib(text, encoding=None, replace=None):
102
# escape attribute value
106
text = elementtree.ElementTree._encode(text, encoding)
108
return elementtree.ElementTree._encode_entity(text)
110
return escape_re.sub(_escape_replace, text)
112
text = replace(text, "&", "&")
113
text = replace(text, "'", "'") # FIXME: overkill
114
text = replace(text, "\"", """)
115
text = replace(text, "<", "<")
116
text = replace(text, ">", ">")
118
except (TypeError, AttributeError):
119
elementtree.ElementTree._raise_serialization_error(text)
121
elementtree.ElementTree._escape_attrib = _escape_attrib
123
escape_cdata_re = re.compile("[&<>]")
129
def _escape_cdata_replace(match, map=escape_cdata_map):
130
return map[match.group()]
132
def _escape_cdata(text, encoding=None, replace=None):
133
# escape character data
137
text = elementtree.ElementTree._encode(text, encoding)
139
return elementtree.ElementTree._encode_entity(text)
141
return escape_cdata_re.sub(_escape_cdata_replace, text)
143
text = replace(text, "&", "&")
144
text = replace(text, "<", "<")
145
text = replace(text, ">", ">")
147
except (TypeError, AttributeError):
148
elementtree.ElementTree._raise_serialization_error(text)
150
elementtree.ElementTree._escape_cdata = _escape_cdata