~bzr-pqm/bzr/bzr.dev

1 by mbp at sourcefrog
import from baz patch-364
1
# -*- coding: UTF-8 -*-
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1 by mbp at sourcefrog
import from baz patch-364
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
1 by mbp at sourcefrog
import from baz patch-364
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
1 by mbp at sourcefrog
import from baz patch-364
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
"""XML externalization support."""
18
48 by Martin Pool
witty comment
19
# "XML is like violence: if it doesn't solve your problem, you aren't
20
# using enough of it." -- various
21
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
22
# importing this module is fairly slow because it has to load several
23
# ElementTree bits
24
1248 by Martin Pool
- new weave based cleanup [broken]
25
from bzrlib.trace import mutter, warning
26
802 by Martin Pool
- Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions
27
try:
1283 by Martin Pool
- cElementTree is typically not installed in util
28
    from cElementTree import (ElementTree, SubElement, Element,
29
                              XMLTreeBuilder, fromstring, tostring)
1772.1.1 by mbp at sourcefrog
Fix up loading of fallback ElementTree
30
    import elementtree
802 by Martin Pool
- Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions
31
except ImportError:
1185.33.68 by Martin Pool
Emit warning to trace file only if using cElementTree.
32
    mutter('WARNING: using slower ElementTree; consider installing cElementTree'
33
           " and make sure it's on your PYTHONPATH")
1227 by Martin Pool
- methods to deserialize objects from strings
34
    from util.elementtree.ElementTree import (ElementTree, SubElement,
1248 by Martin Pool
- new weave based cleanup [broken]
35
                                              Element, XMLTreeBuilder,
36
                                              fromstring, tostring)
1772.1.1 by mbp at sourcefrog
Fix up loading of fallback ElementTree
37
    import util.elementtree as elementtree
802 by Martin Pool
- Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions
38
1183 by Martin Pool
- implement version 5 xml storage, and tests
39
from bzrlib.errors import BzrError
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
40
41
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)
48
1248 by Martin Pool
- new weave based cleanup [broken]
49
    def write_inventory_to_string(self, inv):
1185.16.123 by Martin Pool
Fix syntax of serializer_v5.pack_revision_to_string
50
        return tostring(self._pack_inventory(inv)) + '\n'
1248 by Martin Pool
- new weave based cleanup [broken]
51
1227 by Martin Pool
- methods to deserialize objects from strings
52
    def read_inventory_from_string(self, xml_string):
1248 by Martin Pool
- new weave based cleanup [broken]
53
        return self._unpack_inventory(fromstring(xml_string))
1227 by Martin Pool
- methods to deserialize objects from strings
54
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
55
    def read_inventory(self, f):
56
        return self._unpack_inventory(self._read_element(f))
57
1182 by Martin Pool
- more disentangling of xml storage format from objects
58
    def write_revision(self, rev, f):
59
        self._write_element(self._pack_revision(rev), f)
60
1248 by Martin Pool
- new weave based cleanup [broken]
61
    def write_revision_to_string(self, rev):
1185.16.123 by Martin Pool
Fix syntax of serializer_v5.pack_revision_to_string
62
        return tostring(self._pack_revision(rev)) + '\n'
1248 by Martin Pool
- new weave based cleanup [broken]
63
1182 by Martin Pool
- more disentangling of xml storage format from objects
64
    def read_revision(self, f):
65
        return self._unpack_revision(self._read_element(f))
66
1227 by Martin Pool
- methods to deserialize objects from strings
67
    def read_revision_from_string(self, xml_string):
1248 by Martin Pool
- new weave based cleanup [broken]
68
        return self._unpack_revision(fromstring(xml_string))
1227 by Martin Pool
- methods to deserialize objects from strings
69
1180 by Martin Pool
- start splitting code for xml (de)serialization away from objects
70
    def _write_element(self, elt, f):
71
        ElementTree(elt).write(f, 'utf-8')
72
        f.write('\n')
73
74
    def _read_element(self, f):
75
        return ElementTree().parse(f)
1713.1.12 by Robert Collins
Improve serialisation of xml performance by overriding elementree's escape routines.
76
77
1772.1.1 by mbp at sourcefrog
Fix up loading of fallback ElementTree
78
# performance tuning for elementree's serialiser. This should be
1713.1.14 by Robert Collins
Review feedback.
79
# sent upstream - RBC 20060523.
1759.2.1 by Jelmer Vernooij
Fix some types (found using aspell).
80
# the functions here are patched into elementtree at runtime.
1713.1.12 by Robert Collins
Improve serialisation of xml performance by overriding elementree's escape routines.
81
import re
1713.1.14 by Robert Collins
Review feedback.
82
escape_re = re.compile("[&'\"<>]")
1713.1.12 by Robert Collins
Improve serialisation of xml performance by overriding elementree's escape routines.
83
escape_map = {
84
    "&":'&amp;',
85
    "'":"&apos;", # FIXME: overkill
86
    "\"":"&quot;",
87
    "<":"&lt;",
88
    ">":"&gt;",
89
    }
90
def _escape_replace(match, map=escape_map):
91
    return map[match.group()]
92
 
93
def _escape_attrib(text, encoding=None, replace=None):
94
    # escape attribute value
95
    try:
96
        if encoding:
97
            try:
98
                text = elementtree.ElementTree._encode(text, encoding)
99
            except UnicodeError:
100
                return elementtree.ElementTree._encode_entity(text)
101
        if replace is None:
102
            return escape_re.sub(_escape_replace, text)
103
        else:
104
            text = replace(text, "&", "&amp;")
105
            text = replace(text, "'", "&apos;") # FIXME: overkill
106
            text = replace(text, "\"", "&quot;")
107
            text = replace(text, "<", "&lt;")
108
            text = replace(text, ">", "&gt;")
109
            return text
110
    except (TypeError, AttributeError):
111
        elementtree.ElementTree._raise_serialization_error(text)
112
113
elementtree.ElementTree._escape_attrib = _escape_attrib
114
1713.1.14 by Robert Collins
Review feedback.
115
escape_cdata_re = re.compile("[&<>]")
1713.1.12 by Robert Collins
Improve serialisation of xml performance by overriding elementree's escape routines.
116
escape_cdata_map = {
117
    "&":'&amp;',
118
    "<":"&lt;",
119
    ">":"&gt;",
120
    }
121
def _escape_cdata_replace(match, map=escape_cdata_map):
122
    return map[match.group()]
123
 
124
def _escape_cdata(text, encoding=None, replace=None):
125
    # escape character data
126
    try:
127
        if encoding:
128
            try:
129
                text = elementtree.ElementTree._encode(text, encoding)
130
            except UnicodeError:
131
                return elementtree.ElementTree._encode_entity(text)
132
        if replace is None:
133
            return escape_cdata_re.sub(_escape_cdata_replace, text)
134
        else:
135
            text = replace(text, "&", "&amp;")
136
            text = replace(text, "<", "&lt;")
137
            text = replace(text, ">", "&gt;")
138
            return text
139
    except (TypeError, AttributeError):
140
        elementtree.ElementTree._raise_serialization_error(text)
141
142
elementtree.ElementTree._escape_cdata = _escape_cdata