/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/xml5.py

  • Committer: Jelmer Vernooij
  • Date: 2020-02-07 02:14:30 UTC
  • mto: This revision was merged to the branch mainline in revision 7492.
  • Revision ID: jelmer@jelmer.uk-20200207021430-m49iq3x4x8xlib6x
Drop python2 support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
 
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
from __future__ import absolute_import
 
18
 
 
19
from .. import (
 
20
    cache_utf8,
 
21
    errors,
 
22
    osutils,
 
23
    )
 
24
from . import (
 
25
    inventory,
 
26
    xml6,
 
27
    )
 
28
from .xml_serializer import (
 
29
    encode_and_escape,
 
30
    get_utf8_or_ascii,
 
31
    unpack_inventory_entry,
 
32
    )
 
33
 
 
34
 
 
35
class Serializer_v5(xml6.Serializer_v6):
 
36
    """Version 5 serializer
 
37
 
 
38
    Packs objects into XML and vice versa.
 
39
    """
 
40
    format_num = b'5'
 
41
    root_id = inventory.ROOT_ID
 
42
 
 
43
    def _unpack_inventory(self, elt, revision_id, entry_cache=None,
 
44
                          return_from_cache=False):
 
45
        """Construct from XML Element
 
46
        """
 
47
        root_id = elt.get('file_id') or inventory.ROOT_ID
 
48
        root_id = get_utf8_or_ascii(root_id)
 
49
 
 
50
        format = elt.get('format')
 
51
        if format is not None:
 
52
            if format != '5':
 
53
                raise errors.BzrError("invalid format version %r on inventory"
 
54
                                      % format)
 
55
        data_revision_id = elt.get('revision_id')
 
56
        if data_revision_id is not None:
 
57
            revision_id = cache_utf8.encode(data_revision_id)
 
58
        inv = inventory.Inventory(root_id, revision_id=revision_id)
 
59
        # Optimizations tested
 
60
        #   baseline w/entry cache  2.85s
 
61
        #   using inv._byid         2.55s
 
62
        #   avoiding attributes     2.46s
 
63
        #   adding assertions       2.50s
 
64
        #   last_parent cache       2.52s (worse, removed)
 
65
        byid = inv._byid
 
66
        for e in elt:
 
67
            ie = unpack_inventory_entry(e, entry_cache=entry_cache,
 
68
                                        return_from_cache=return_from_cache)
 
69
            parent_id = ie.parent_id
 
70
            if parent_id is None:
 
71
                ie.parent_id = parent_id = root_id
 
72
            try:
 
73
                parent = byid[parent_id]
 
74
            except KeyError:
 
75
                raise errors.BzrError("parent_id {%s} not in inventory"
 
76
                                      % (parent_id,))
 
77
            if ie.file_id in byid:
 
78
                raise errors.DuplicateFileId(ie.file_id,
 
79
                                             byid[ie.file_id])
 
80
            if ie.name in parent.children:
 
81
                raise errors.BzrError(
 
82
                    "%s is already versioned" % (
 
83
                        osutils.pathjoin(
 
84
                            inv.id2path(parent_id), ie.name).encode('utf-8'),))
 
85
            parent.children[ie.name] = ie
 
86
            byid[ie.file_id] = ie
 
87
        if revision_id is not None:
 
88
            inv.root.revision = revision_id
 
89
        self._check_cache_size(len(inv), entry_cache)
 
90
        return inv
 
91
 
 
92
    def _check_revisions(self, inv):
 
93
        """Extension point for subclasses to check during serialisation.
 
94
 
 
95
        In this version, no checking is done.
 
96
 
 
97
        :param inv: An inventory about to be serialised, to be checked.
 
98
        :raises: AssertionError if an error has occurred.
 
99
        """
 
100
 
 
101
    def _append_inventory_root(self, append, inv):
 
102
        """Append the inventory root to output."""
 
103
        if inv.root.file_id not in (None, inventory.ROOT_ID):
 
104
            fileid = b''.join([b' file_id="', encode_and_escape(inv.root.file_id), b'"'])
 
105
        else:
 
106
            fileid = b""
 
107
        if inv.revision_id is not None:
 
108
            revid = b''.join([b' revision_id="', encode_and_escape(inv.revision_id), b'"'])
 
109
        else:
 
110
            revid = b""
 
111
        append(b'<inventory%s format="5"%s>\n' % (fileid, revid))
 
112
 
 
113
 
 
114
serializer_v5 = Serializer_v5()