bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
| 1
by mbp at sourcefrog import from baz patch-364 | 1 | # -*- coding: UTF-8 -*-
 | 
| 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 | """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) | |
| 802
by Martin Pool - Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions | 30 | except ImportError: | 
| 1185.33.68
by Martin Pool Emit warning to trace file only if using cElementTree. | 31 | mutter('WARNING: using slower ElementTree; consider installing cElementTree' | 
| 32 | " and make sure it's on your PYTHONPATH") | |
| 1227
by Martin Pool - methods to deserialize objects from strings | 33 | from util.elementtree.ElementTree import (ElementTree, SubElement, | 
| 1248
by Martin Pool - new weave based cleanup [broken] | 34 | Element, XMLTreeBuilder, | 
| 35 | fromstring, tostring) | |
| 802
by Martin Pool - Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions | 36 | |
| 1183
by Martin Pool - implement version 5 xml storage, and tests | 37 | from bzrlib.errors import BzrError | 
| 1180
by Martin Pool - start splitting code for xml (de)serialization away from objects | 38 | |
| 39 | ||
| 40 | class Serializer(object): | |
| 41 | """Abstract object serialize/deserialize""" | |
| 42 | def write_inventory(self, inv, f): | |
| 43 | """Write inventory to a file""" | |
| 44 | elt = self._pack_inventory(inv) | |
| 45 | self._write_element(elt, f) | |
| 46 | ||
| 1248
by Martin Pool - new weave based cleanup [broken] | 47 | def write_inventory_to_string(self, inv): | 
| 1185.16.123
by Martin Pool Fix syntax of serializer_v5.pack_revision_to_string | 48 | return tostring(self._pack_inventory(inv)) + '\n' | 
| 1248
by Martin Pool - new weave based cleanup [broken] | 49 | |
| 1227
by Martin Pool - methods to deserialize objects from strings | 50 | def read_inventory_from_string(self, xml_string): | 
| 1248
by Martin Pool - new weave based cleanup [broken] | 51 | return self._unpack_inventory(fromstring(xml_string)) | 
| 1227
by Martin Pool - methods to deserialize objects from strings | 52 | |
| 1180
by Martin Pool - start splitting code for xml (de)serialization away from objects | 53 | def read_inventory(self, f): | 
| 54 | return self._unpack_inventory(self._read_element(f)) | |
| 55 | ||
| 1182
by Martin Pool - more disentangling of xml storage format from objects | 56 | def write_revision(self, rev, f): | 
| 57 | self._write_element(self._pack_revision(rev), f) | |
| 58 | ||
| 1248
by Martin Pool - new weave based cleanup [broken] | 59 | def write_revision_to_string(self, rev): | 
| 1185.16.123
by Martin Pool Fix syntax of serializer_v5.pack_revision_to_string | 60 | return tostring(self._pack_revision(rev)) + '\n' | 
| 1248
by Martin Pool - new weave based cleanup [broken] | 61 | |
| 1182
by Martin Pool - more disentangling of xml storage format from objects | 62 | def read_revision(self, f): | 
| 63 | return self._unpack_revision(self._read_element(f)) | |
| 64 | ||
| 1227
by Martin Pool - methods to deserialize objects from strings | 65 | def read_revision_from_string(self, xml_string): | 
| 1248
by Martin Pool - new weave based cleanup [broken] | 66 | return self._unpack_revision(fromstring(xml_string)) | 
| 1227
by Martin Pool - methods to deserialize objects from strings | 67 | |
| 1180
by Martin Pool - start splitting code for xml (de)serialization away from objects | 68 | def _write_element(self, elt, f): | 
| 69 | ElementTree(elt).write(f, 'utf-8') | |
| 70 | f.write('\n') | |
| 71 | ||
| 72 | def _read_element(self, f): | |
| 73 | return ElementTree().parse(f) |