~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/chk_serializer.py

merge 2.0 branch rev 4647

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008 Canonical Ltd
 
1
# Copyright (C) 2008, 2009 Canonical Ltd
2
2
#
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
16
16
 
17
17
"""Serializer object for CHK based inventory storage."""
18
18
 
19
 
from cStringIO import (
20
 
    StringIO,
21
 
    )
22
 
 
23
19
from bzrlib import (
24
20
    bencode,
25
21
    cache_utf8,
26
22
    inventory,
27
 
    osutils,
28
23
    revision as _mod_revision,
29
 
    xml5,
30
24
    xml6,
 
25
    xml7,
31
26
    )
32
27
 
33
28
 
50
45
    """Simple revision serializer based around bencode.
51
46
    """
52
47
 
 
48
    squashes_xml_invalid_characters = False
 
49
 
53
50
    # Maps {key:(Revision attribute, bencode_type, validator)}
54
51
    # This tells us what kind we expect bdecode to create, what variable on
55
52
    # Revision we should be using, and a function to call to validate/transform
134
131
        return self.read_revision_from_string(f.read())
135
132
 
136
133
 
137
 
class CHKSerializerSubtree(BEncodeRevisionSerializer1, xml6.Serializer_v6):
 
134
class CHKSerializerSubtree(BEncodeRevisionSerializer1, xml7.Serializer_v7):
138
135
    """A CHKInventory based serializer that supports tree references"""
139
136
 
140
137
    supported_kinds = set(['file', 'directory', 'symlink', 'tree-reference'])
155
152
            return inventory.TreeReference(file_id, name, parent_id, revision,
156
153
                                           reference_revision)
157
154
        else:
158
 
            return xml6.Serializer_v6._unpack_entry(self, elt)
 
155
            return xml7.Serializer_v7._unpack_entry(self, elt)
159
156
 
160
157
    def __init__(self, node_size, search_key_name):
161
158
        self.maximum_size = node_size
162
159
        self.search_key_name = search_key_name
163
160
 
164
161
 
165
 
class CHKSerializer(xml5.Serializer_v5):
 
162
class CHKSerializer(xml6.Serializer_v6):
166
163
    """A CHKInventory based serializer with 'plain' behaviour."""
167
164
 
168
165
    format_num = '9'