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.
 
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.
 
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
 
20
 
from xml import XMLMixin
 
23
 
    from cElementTree import Element, ElementTree, SubElement
 
25
 
    from elementtree.ElementTree import Element, ElementTree, SubElement
 
27
 
from errors import BzrError
 
30
 
class Revision(XMLMixin):
 
31
 
    """Single revision on a branch.
 
33
 
    Revisions may know their revision_hash, but only once they've been
 
34
 
    written out.  This is not stored because you cannot write the hash
 
35
 
    into the file it describes.
 
37
 
    TODO: Perhaps make predecessor be a child element, not an attribute?
 
39
 
    def __init__(self, **args):
 
40
 
        self.inventory_id = None
 
41
 
        self.revision_id = None
 
47
 
        self.__dict__.update(args)
 
51
 
        return "<Revision id %s>" % self.revision_id
 
55
 
        root = Element('revision',
 
56
 
                       committer = self.committer,
 
57
 
                       timestamp = '%.9f' % self.timestamp,
 
58
 
                       revision_id = self.revision_id,
 
59
 
                       inventory_id = self.inventory_id,
 
60
 
                       timezone = str(self.timezone))
 
62
 
            root.set('precursor', self.precursor)
 
65
 
        msg = SubElement(root, 'message')
 
66
 
        msg.text = self.message
 
72
 
    def from_element(cls, elt):
 
73
 
        # <changeset> is deprecated...
 
74
 
        if elt.tag not in ('revision', 'changeset'):
 
75
 
            raise BzrError("unexpected tag in revision file: %r" % elt)
 
77
 
        cs = cls(committer = elt.get('committer'),
 
78
 
                 timestamp = float(elt.get('timestamp')),
 
79
 
                 precursor = elt.get('precursor'),
 
80
 
                 revision_id = elt.get('revision_id'),
 
81
 
                 inventory_id = elt.get('inventory_id'))
 
83
 
        v = elt.get('timezone')
 
84
 
        cs.timezone = v and int(v)
 
86
 
        cs.message = elt.findtext('message') # text of <message>
 
89
 
    from_element = classmethod(from_element)