~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

Fix up inter_changes with dirstate both C and python.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 Canonical Ltd
 
1
# Copyright (C) 2005, 2006 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
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
 
# TODO: Some kind of command-line display of revision properties:
 
17
# TODO: Some kind of command-line display of revision properties: 
18
18
# perhaps show them in log -v and allow them as options to the commit command.
19
19
 
20
20
 
21
 
from bzrlib.lazy_import import lazy_import
22
 
lazy_import(globals(), """
23
 
from bzrlib import bugtracker
24
 
""")
25
21
from bzrlib import (
26
22
    errors,
27
23
    symbol_versioning,
28
24
    )
29
25
from bzrlib.osutils import contains_whitespace
 
26
from bzrlib.progress import DummyProgress
30
27
 
31
28
NULL_REVISION="null:"
32
29
CURRENT_REVISION="current:"
46
43
 
47
44
    properties
48
45
        Dictionary of revision properties.  These are attached to the
49
 
        revision as extra metadata.  The name must be a single
 
46
        revision as extra metadata.  The name must be a single 
50
47
        word; the value can be an arbitrary string.
51
48
    """
52
 
 
 
49
    
53
50
    def __init__(self, revision_id, properties=None, **args):
54
51
        self.revision_id = revision_id
55
 
        if properties is None:
56
 
            self.properties = {}
57
 
        else:
58
 
            self.properties = properties
59
 
            self._check_properties()
60
 
        self.committer = None
 
52
        self.properties = properties or {}
 
53
        self._check_properties()
61
54
        self.parent_ids = []
62
55
        self.parent_sha1s = []
63
56
        """Not used anymore - legacy from for 4."""
69
62
    def __eq__(self, other):
70
63
        if not isinstance(other, Revision):
71
64
            return False
 
65
        # FIXME: rbc 20050930 parent_ids are not being compared
72
66
        return (
73
67
                self.inventory_sha1 == other.inventory_sha1
74
68
                and self.revision_id == other.revision_id
76
70
                and self.message == other.message
77
71
                and self.timezone == other.timezone
78
72
                and self.committer == other.committer
79
 
                and self.properties == other.properties
80
 
                and self.parent_ids == other.parent_ids)
 
73
                and self.properties == other.properties)
81
74
 
82
75
    def __ne__(self, other):
83
76
        return not self.__eq__(other)
88
81
            if not isinstance(name, basestring) or contains_whitespace(name):
89
82
                raise ValueError("invalid property name %r" % name)
90
83
            if not isinstance(value, basestring):
91
 
                raise ValueError("invalid property value %r for %r" %
92
 
                                 (value, name))
 
84
                raise ValueError("invalid property value %r for %r" % 
 
85
                                 (name, value))
93
86
 
94
87
    def get_history(self, repository):
95
88
        """Return the canonical line-of-history for this revision.
112
105
 
113
106
    def get_summary(self):
114
107
        """Get the first line of the log message for this revision.
115
 
 
116
 
        Return an empty string if message is None.
117
 
        """
118
 
        if self.message:
119
 
            return self.message.lstrip().split('\n', 1)[0]
120
 
        else:
121
 
            return ''
122
 
 
123
 
    def get_apparent_authors(self):
124
 
        """Return the apparent authors of this revision.
125
 
 
126
 
        If the revision properties contain the names of the authors,
127
 
        return them. Otherwise return the committer name.
128
 
 
129
 
        The return value will be a list containing at least one element.
130
 
        """
131
 
        authors = self.properties.get('authors', None)
132
 
        if authors is None:
133
 
            author = self.properties.get('author', self.committer)
134
 
            if author is None:
135
 
                return []
136
 
            return [author]
137
 
        else:
138
 
            return authors.split("\n")
139
 
 
140
 
    def iter_bugs(self):
141
 
        """Iterate over the bugs associated with this revision."""
142
 
        bug_property = self.properties.get('bugs', None)
143
 
        if bug_property is None:
144
 
            return
145
 
        for line in bug_property.splitlines():
146
 
            try:
147
 
                url, status = line.split(None, 2)
148
 
            except ValueError:
149
 
                raise errors.InvalidLineInBugsProperty(line)
150
 
            if status not in bugtracker.ALLOWED_BUG_STATUSES:
151
 
                raise errors.InvalidBugStatus(status)
152
 
            yield url, status
 
108
        """
 
109
        return self.message.lstrip().split('\n', 1)[0]
 
110
 
 
111
    def get_apparent_author(self):
 
112
        """Return the apparent author of this revision.
 
113
 
 
114
        If the revision properties contain the author name,
 
115
        return it. Otherwise return the committer name.
 
116
        """
 
117
        return self.properties.get('author', self.committer)
153
118
 
154
119
 
155
120
def iter_ancestors(revision_id, revision_source, only_present=False):
164
129
                revision = revision_source.get_revision(ancestor)
165
130
            except errors.NoSuchRevision, e:
166
131
                if e.revision == revision_id:
167
 
                    raise
 
132
                    raise 
168
133
                else:
169
134
                    continue
170
135
            if only_present:
178
143
    """Return the ancestors of a revision present in a branch.
179
144
 
180
145
    It's possible that a branch won't have the complete ancestry of
181
 
    one of its revisions.
 
146
    one of its revisions.  
182
147
 
183
148
    """
184
149
    found_ancestors = {}
188
153
        if anc_id not in found_ancestors:
189
154
            found_ancestors[anc_id] = (anc_order, anc_distance)
190
155
    return found_ancestors
191
 
 
 
156
    
192
157
 
193
158
def __get_closest(intersection):
194
159
    intersection.sort()
195
 
    matches = []
 
160
    matches = [] 
196
161
    for entry in intersection:
197
162
        if entry[0] == intersection[0][0]:
198
163
            matches.append(entry[2])
202
167
def is_reserved_id(revision_id):
203
168
    """Determine whether a revision id is reserved
204
169
 
205
 
    :return: True if the revision is reserved, False otherwise
 
170
    :return: True if the revision is is reserved, False otherwise
206
171
    """
207
172
    return isinstance(revision_id, basestring) and revision_id.endswith(':')
208
173