/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/bzr/serializer.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-06-01 13:47:29 UTC
  • mfrom: (7488.1.2 iter-bytes)
  • Revision ID: breezy.the.bot@gmail.com-20200601134729-6h4iywd85gpienn2
iter_files_bytes can return iterators.

Merged from https://code.launchpad.net/~jelmer/brz/iter-bytes/+merge/378776

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
 
18
17
"""Inventory/revision serialization."""
19
18
 
20
 
 
21
 
from bzrlib import registry
 
19
from .. import registry
22
20
 
23
21
 
24
22
class Serializer(object):
34
32
        """
35
33
        raise NotImplementedError(self.write_inventory)
36
34
 
37
 
    def write_inventory_to_string(self, inv):
38
 
        """Produce a simple string representation of an inventory.
39
 
 
40
 
        Note: this is a *whole inventory* operation, and should only be used
41
 
        sparingly, as it does not scale well with large trees.
42
 
 
43
 
        The requirement for the contents of the string is that it can be passed
44
 
        to read_inventory_from_string and the result is an identical inventory
45
 
        in memory.
46
 
 
47
 
        (All serializers as of 2009-07-29 produce XML, but this is not mandated
48
 
        by the interface.)
49
 
        """
50
 
        raise NotImplementedError(self.write_inventory_to_string)
51
 
 
52
 
    def read_inventory_from_string(self, string, revision_id=None,
53
 
                                   entry_cache=None, return_from_cache=False):
54
 
        """Read string into an inventory object.
55
 
 
56
 
        :param string: The serialized inventory to read.
 
35
    def write_inventory_to_chunks(self, inv):
 
36
        """Produce a simple bytestring chunk representation of an inventory.
 
37
 
 
38
        Note: this is a *whole inventory* operation, and should only be used
 
39
        sparingly, as it does not scale well with large trees.
 
40
 
 
41
        The requirement for the contents of the string is that it can be passed
 
42
        to read_inventory_from_lines and the result is an identical inventory
 
43
        in memory.
 
44
        """
 
45
        raise NotImplementedError(self.write_inventory_to_chunks)
 
46
 
 
47
    def write_inventory_to_lines(self, inv):
 
48
        """Produce a simple lines representation of an inventory.
 
49
 
 
50
        Note: this is a *whole inventory* operation, and should only be used
 
51
        sparingly, as it does not scale well with large trees.
 
52
 
 
53
        The requirement for the contents of the string is that it can be passed
 
54
        to read_inventory_from_lines and the result is an identical inventory
 
55
        in memory.
 
56
        """
 
57
        raise NotImplementedError(self.write_inventory_to_lines)
 
58
 
 
59
    def read_inventory_from_lines(self, lines, revision_id=None,
 
60
                                  entry_cache=None, return_from_cache=False):
 
61
        """Read bytestring chunks into an inventory object.
 
62
 
 
63
        :param lines: The serialized inventory to read.
57
64
        :param revision_id: If not-None, the expected revision id of the
58
65
            inventory. Some serialisers use this to set the results' root
59
66
            revision. This should be supplied for deserialising all
69
76
            promises not to mutate the returned inventory entries, but it can
70
77
            make some operations significantly faster.
71
78
        """
72
 
        raise NotImplementedError(self.read_inventory_from_string)
 
79
        raise NotImplementedError(self.read_inventory_from_lines)
73
80
 
74
81
    def read_inventory(self, f, revision_id=None):
75
 
        """See read_inventory_from_string."""
 
82
        """See read_inventory_from_lines."""
76
83
        raise NotImplementedError(self.read_inventory)
77
84
 
78
 
    def write_revision(self, rev, f):
79
 
        raise NotImplementedError(self.write_revision)
80
 
 
81
85
    def write_revision_to_string(self, rev):
82
86
        raise NotImplementedError(self.write_revision_to_string)
83
87
 
 
88
    def write_revision_to_lines(self, rev):
 
89
        raise NotImplementedError(self.write_revision_to_lines)
 
90
 
84
91
    def read_revision(self, f):
85
92
        raise NotImplementedError(self.read_revision)
86
93
 
93
100
 
94
101
 
95
102
format_registry = SerializerRegistry()
96
 
format_registry.register_lazy('4', 'bzrlib.xml4', 'serializer_v4')
97
 
format_registry.register_lazy('5', 'bzrlib.xml5', 'serializer_v5')
98
 
format_registry.register_lazy('6', 'bzrlib.xml6', 'serializer_v6')
99
 
format_registry.register_lazy('7', 'bzrlib.xml7', 'serializer_v7')
100
 
format_registry.register_lazy('8', 'bzrlib.xml8', 'serializer_v8')
101
 
format_registry.register_lazy('9', 'bzrlib.chk_serializer',
102
 
    'chk_serializer_255_bigpage')
103
 
format_registry.register_lazy('10', 'bzrlib.chk_serializer',
104
 
    'chk_bencode_serializer')
 
103
format_registry.register_lazy('5', 'breezy.bzr.xml5', 'serializer_v5')
 
104
format_registry.register_lazy('6', 'breezy.bzr.xml6', 'serializer_v6')
 
105
format_registry.register_lazy('7', 'breezy.bzr.xml7', 'serializer_v7')
 
106
format_registry.register_lazy('8', 'breezy.bzr.xml8', 'serializer_v8')
 
107
format_registry.register_lazy('9', 'breezy.bzr.chk_serializer',
 
108
                              'chk_serializer_255_bigpage')
 
109
format_registry.register_lazy('10', 'breezy.bzr.chk_serializer',
 
110
                              'chk_bencode_serializer')