1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
# Copyright (C) 2005-2011 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# TODO: Some kind of command-line display of revision properties:
# perhaps show them in log -v and allow them as options to the commit command.
from bzrlib.lazy_import import lazy_import
lazy_import(globals(), """
from bzrlib import bugtracker
""")
from bzrlib import (
errors,
symbol_versioning,
)
from bzrlib.osutils import contains_whitespace
NULL_REVISION="null:"
CURRENT_REVISION="current:"
class Revision(object):
"""Single revision on a branch.
Revisions may know their revision_hash, but only once they've been
written out. This is not stored because you cannot write the hash
into the file it describes.
After bzr 0.0.5 revisions are allowed to have multiple parents.
parent_ids
List of parent revision_ids
properties
Dictionary of revision properties. These are attached to the
revision as extra metadata. The name must be a single
word; the value can be an arbitrary string.
"""
def __init__(self, revision_id, properties=None, **args):
self.revision_id = revision_id
if properties is None:
self.properties = {}
else:
self.properties = properties
self._check_properties()
self.committer = None
self.parent_ids = []
self.parent_sha1s = []
"""Not used anymore - legacy from for 4."""
self.__dict__.update(args)
def __repr__(self):
return "<Revision id %s>" % self.revision_id
def __eq__(self, other):
if not isinstance(other, Revision):
return False
return (
self.inventory_sha1 == other.inventory_sha1
and self.revision_id == other.revision_id
and self.timestamp == other.timestamp
and self.message == other.message
and self.timezone == other.timezone
and self.committer == other.committer
and self.properties == other.properties
and self.parent_ids == other.parent_ids)
def __ne__(self, other):
return not self.__eq__(other)
def _check_properties(self):
"""Verify that all revision properties are OK."""
for name, value in self.properties.iteritems():
if not isinstance(name, basestring) or contains_whitespace(name):
raise ValueError("invalid property name %r" % name)
if not isinstance(value, basestring):
raise ValueError("invalid property value %r for %r" %
(value, name))
def get_history(self, repository):
"""Return the canonical line-of-history for this revision.
If ghosts are present this may differ in result from a ghost-free
repository.
"""
current_revision = self
reversed_result = []
while current_revision is not None:
reversed_result.append(current_revision.revision_id)
if not len (current_revision.parent_ids):
reversed_result.append(None)
current_revision = None
else:
next_revision_id = current_revision.parent_ids[0]
current_revision = repository.get_revision(next_revision_id)
reversed_result.reverse()
return reversed_result
def get_summary(self):
"""Get the first line of the log message for this revision.
Return an empty string if message is None.
"""
if self.message:
return self.message.lstrip().split('\n', 1)[0]
else:
return ''
def get_apparent_authors(self):
"""Return the apparent authors of this revision.
If the revision properties contain the names of the authors,
return them. Otherwise return the committer name.
The return value will be a list containing at least one element.
"""
authors = self.properties.get('authors', None)
if authors is None:
author = self.properties.get('author', self.committer)
if author is None:
return []
return [author]
else:
return authors.split("\n")
def iter_bugs(self):
"""Iterate over the bugs associated with this revision."""
bug_property = self.properties.get('bugs', None)
if bug_property is None:
return
for line in bug_property.splitlines():
try:
url, status = line.split(None, 2)
except ValueError:
raise errors.InvalidLineInBugsProperty(line)
if status not in bugtracker.ALLOWED_BUG_STATUSES:
raise errors.InvalidBugStatus(status)
yield url, status
def iter_ancestors(revision_id, revision_source, only_present=False):
ancestors = (revision_id,)
distance = 0
while len(ancestors) > 0:
new_ancestors = []
for ancestor in ancestors:
if not only_present:
yield ancestor, distance
try:
revision = revision_source.get_revision(ancestor)
except errors.NoSuchRevision, e:
if e.revision == revision_id:
raise
else:
continue
if only_present:
yield ancestor, distance
new_ancestors.extend(revision.parent_ids)
ancestors = new_ancestors
distance += 1
def find_present_ancestors(revision_id, revision_source):
"""Return the ancestors of a revision present in a branch.
It's possible that a branch won't have the complete ancestry of
one of its revisions.
"""
found_ancestors = {}
anc_iter = enumerate(iter_ancestors(revision_id, revision_source,
only_present=True))
for anc_order, (anc_id, anc_distance) in anc_iter:
if anc_id not in found_ancestors:
found_ancestors[anc_id] = (anc_order, anc_distance)
return found_ancestors
def __get_closest(intersection):
intersection.sort()
matches = []
for entry in intersection:
if entry[0] == intersection[0][0]:
matches.append(entry[2])
return matches
def is_reserved_id(revision_id):
"""Determine whether a revision id is reserved
:return: True if the revision is reserved, False otherwise
"""
return isinstance(revision_id, basestring) and revision_id.endswith(':')
def check_not_reserved_id(revision_id):
"""Raise ReservedId if the supplied revision_id is reserved"""
if is_reserved_id(revision_id):
raise errors.ReservedId(revision_id)
def ensure_null(revision_id):
"""Ensure only NULL_REVISION is used to represent the null revision"""
if revision_id is None:
symbol_versioning.warn('NULL_REVISION should be used for the null'
' revision instead of None, as of bzr 0.91.',
DeprecationWarning, stacklevel=2)
return NULL_REVISION
else:
return revision_id
def is_null(revision_id):
if revision_id is None:
symbol_versioning.warn('NULL_REVISION should be used for the null'
' revision instead of None, as of bzr 0.90.',
DeprecationWarning, stacklevel=2)
return revision_id in (None, NULL_REVISION)
|