~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/xml5.py

  • Committer: Robert Collins
  • Date: 2005-10-03 05:54:35 UTC
  • mto: (1393.1.30)
  • mto: This revision was merged to the branch mainline in revision 1400.
  • Revision ID: robertc@robertcollins.net-20051003055434-c8ebd30d1de10247
move exporting functionality into inventory.py - uncovers bug in symlink support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
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
 
 
18
from bzrlib.xml import ElementTree, SubElement, Element, Serializer
 
19
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
 
20
from bzrlib.revision import Revision        
 
21
from bzrlib.errors import BzrError
 
22
 
 
23
 
 
24
 
 
25
 
 
26
 
 
27
class Serializer_v5(Serializer):
 
28
    """Version 5 serializer
 
29
 
 
30
    Packs objects into XML and vice versa.
 
31
    """
 
32
    
 
33
    __slots__ = []
 
34
    
 
35
    def _pack_inventory(self, inv):
 
36
        """Convert to XML Element"""
 
37
        e = Element('inventory')
 
38
        e.text = '\n'
 
39
        if inv.root.file_id not in (None, ROOT_ID):
 
40
            e.set('file_id', inv.root.file_id)
 
41
        for path, ie in inv.iter_entries():
 
42
            e.append(self._pack_entry(ie))
 
43
        return e
 
44
 
 
45
 
 
46
    def _pack_entry(self, ie):
 
47
        """Convert InventoryEntry to XML element"""
 
48
        if not InventoryEntry.versionable_kind(ie.kind):
 
49
            raise AssertionError('unsupported entry kind %s' % ie.kind)
 
50
        e = Element(ie.kind)
 
51
        e.set('name', ie.name)
 
52
        e.set('file_id', ie.file_id)
 
53
 
 
54
        if ie.text_size != None:
 
55
            e.set('text_size', '%d' % ie.text_size)
 
56
 
 
57
        for f in ['text_sha1', 'revision', 'symlink_target']:
 
58
            v = getattr(ie, f)
 
59
            if v != None:
 
60
                e.set(f, v)
 
61
 
 
62
        if ie.executable:
 
63
            e.set('executable', 'yes')
 
64
 
 
65
        # to be conservative, we don't externalize the root pointers
 
66
        # for now, leaving them as null in the xml form.  in a future
 
67
        # version it will be implied by nested elements.
 
68
        if ie.parent_id != ROOT_ID:
 
69
            assert isinstance(ie.parent_id, basestring)
 
70
            e.set('parent_id', ie.parent_id)
 
71
 
 
72
        e.tail = '\n'
 
73
 
 
74
        return e
 
75
 
 
76
 
 
77
    def _pack_revision(self, rev):
 
78
        """Revision object -> xml tree"""
 
79
        root = Element('revision',
 
80
                       committer = rev.committer,
 
81
                       timestamp = '%.9f' % rev.timestamp,
 
82
                       revision_id = rev.revision_id,
 
83
                       inventory_sha1 = rev.inventory_sha1,
 
84
                       )
 
85
        if rev.timezone:
 
86
            root.set('timezone', str(rev.timezone))
 
87
        root.text = '\n'
 
88
 
 
89
        msg = SubElement(root, 'message')
 
90
        msg.text = rev.message
 
91
        msg.tail = '\n'
 
92
 
 
93
        if rev.parent_ids:
 
94
            pelts = SubElement(root, 'parents')
 
95
            pelts.tail = pelts.text = '\n'
 
96
            for parent_id in rev.parent_ids:
 
97
                assert isinstance(parent_id, basestring)
 
98
                p = SubElement(pelts, 'revision_ref')
 
99
                p.tail = '\n'
 
100
                p.set('revision_id', parent_id)
 
101
        return root
 
102
 
 
103
    
 
104
 
 
105
    def _unpack_inventory(self, elt):
 
106
        """Construct from XML Element
 
107
        """
 
108
        assert elt.tag == 'inventory'
 
109
        root_id = elt.get('file_id') or ROOT_ID
 
110
        inv = Inventory(root_id)
 
111
        for e in elt:
 
112
            ie = self._unpack_entry(e)
 
113
            if ie.parent_id == ROOT_ID:
 
114
                ie.parent_id = root_id
 
115
            inv.add(ie)
 
116
        return inv
 
117
 
 
118
 
 
119
    def _unpack_entry(self, elt):
 
120
        kind = elt.tag
 
121
        if not InventoryEntry.versionable_kind(kind):
 
122
            raise AssertionError('unsupported entry kind %s' % kind)
 
123
 
 
124
        parent_id = elt.get('parent_id')
 
125
        if parent_id == None:
 
126
            parent_id = ROOT_ID
 
127
 
 
128
        ie = InventoryEntry(elt.get('file_id'),
 
129
                            elt.get('name'),
 
130
                            kind,
 
131
                            parent_id)
 
132
        ie.revision = elt.get('revision')
 
133
        ie.text_sha1 = elt.get('text_sha1')
 
134
        ie.symlink_target = elt.get('symlink_target')
 
135
        if elt.get('executable') == 'yes':
 
136
            ie.executable = True
 
137
        v = elt.get('text_size')
 
138
        ie.text_size = v and int(v)
 
139
 
 
140
        return ie
 
141
 
 
142
 
 
143
    def _unpack_revision(self, elt):
 
144
        """XML Element -> Revision object"""
 
145
        assert elt.tag == 'revision'
 
146
        
 
147
        rev = Revision(committer = elt.get('committer'),
 
148
                       timestamp = float(elt.get('timestamp')),
 
149
                       revision_id = elt.get('revision_id'),
 
150
                       inventory_sha1 = elt.get('inventory_sha1')
 
151
                       )
 
152
 
 
153
        parents = elt.find('parents') or []
 
154
        for p in parents:
 
155
            assert p.tag == 'revision_ref', \
 
156
                   "bad parent node tag %r" % p.tag
 
157
            rev.parent_ids.append(p.get('revision_id'))
 
158
 
 
159
        v = elt.get('timezone')
 
160
        rev.timezone = v and int(v)
 
161
 
 
162
        rev.message = elt.findtext('message') # text of <message>
 
163
        return rev
 
164
 
 
165
 
 
166
 
 
167
serializer_v5 = Serializer_v5()