bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
| 1
by mbp at sourcefrog import from baz patch-364 | 1 | #! /usr/bin/env python
 | 
| 2 | # -*- coding: UTF-8 -*-
 | |
| 3 | ||
| 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.
 | |
| 8 | ||
| 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.
 | |
| 13 | ||
| 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
 | |
| 17 | ||
| 18 | """XML externalization support."""
 | |
| 19 | ||
| 48
by Martin Pool witty comment | 20 | # "XML is like violence: if it doesn't solve your problem, you aren't
 | 
| 21 | # using enough of it." -- various
 | |
| 22 | ||
| 1180
by Martin Pool - start splitting code for xml (de)serialization away from objects | 23 | # importing this module is fairly slow because it has to load several
 | 
| 24 | # ElementTree bits
 | |
| 25 | ||
| 1248
by Martin Pool - new weave based cleanup [broken] | 26 | from bzrlib.trace import mutter, warning | 
| 27 | ||
| 802
by Martin Pool - Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions | 28 | try: | 
| 1283
by Martin Pool - cElementTree is typically not installed in util | 29 | from cElementTree import (ElementTree, SubElement, Element, | 
| 30 | XMLTreeBuilder, fromstring, tostring) | |
| 802
by Martin Pool - Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions | 31 | except ImportError: | 
| 1390
by Robert Collins pair programming worx... merge integration and weave | 32 |     ## from warnings import warn
 | 
| 33 |     ## warn('using slower ElementTree; consider installing cElementTree')
 | |
| 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) | |
| 802
by Martin Pool - Remove XMLMixin class in favour of simple pack_xml, unpack_xml functions | 37 | |
| 1183
by Martin Pool - implement version 5 xml storage, and tests | 38 | from bzrlib.errors import BzrError | 
| 1180
by Martin Pool - start splitting code for xml (de)serialization away from objects | 39 | |
| 40 | ||
| 41 | class Serializer(object): | |
| 42 | """Abstract object serialize/deserialize""" | |
| 43 | def write_inventory(self, inv, f): | |
| 44 | """Write inventory to a file""" | |
| 45 | elt = self._pack_inventory(inv) | |
| 46 | self._write_element(elt, f) | |
| 47 | ||
| 1248
by Martin Pool - new weave based cleanup [broken] | 48 | def write_inventory_to_string(self, inv): | 
| 49 | return tostring(self._pack_inventory(inv)) | |
| 50 | ||
| 1227
by Martin Pool - methods to deserialize objects from strings | 51 | def read_inventory_from_string(self, xml_string): | 
| 1248
by Martin Pool - new weave based cleanup [broken] | 52 | return self._unpack_inventory(fromstring(xml_string)) | 
| 1227
by Martin Pool - methods to deserialize objects from strings | 53 | |
| 1180
by Martin Pool - start splitting code for xml (de)serialization away from objects | 54 | def read_inventory(self, f): | 
| 55 | return self._unpack_inventory(self._read_element(f)) | |
| 56 | ||
| 1182
by Martin Pool - more disentangling of xml storage format from objects | 57 | def write_revision(self, rev, f): | 
| 58 | self._write_element(self._pack_revision(rev), f) | |
| 59 | ||
| 1248
by Martin Pool - new weave based cleanup [broken] | 60 | def write_revision_to_string(self, rev): | 
| 61 | return tostring(self._pack_revision(rev), f) | |
| 62 | ||
| 1182
by Martin Pool - more disentangling of xml storage format from objects | 63 | def read_revision(self, f): | 
| 64 | return self._unpack_revision(self._read_element(f)) | |
| 65 | ||
| 1227
by Martin Pool - methods to deserialize objects from strings | 66 | def read_revision_from_string(self, xml_string): | 
| 1248
by Martin Pool - new weave based cleanup [broken] | 67 | return self._unpack_revision(fromstring(xml_string)) | 
| 1227
by Martin Pool - methods to deserialize objects from strings | 68 | |
| 1180
by Martin Pool - start splitting code for xml (de)serialization away from objects | 69 | def _write_element(self, elt, f): | 
| 70 | ElementTree(elt).write(f, 'utf-8') | |
| 71 | f.write('\n') | |
| 72 | ||
| 73 | def _read_element(self, f): | |
| 74 | return ElementTree().parse(f) |