1
1
# Copyright (C) 2005 Canonical Ltd
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
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
11
# GNU General Public License for more details.
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
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
from bzrlib.errors import BzrError, NoSuchRevision, NoCommits
24
33
class RevisionInfo(object):
25
34
"""The results of applying a revision specification to a branch.
107
def __new__(cls, spec, foo=_marker):
108
"""Parse a revision specifier.
119
def __new__(cls, spec, _internal=False):
121
return object.__new__(cls, spec, _internal=_internal)
123
symbol_versioning.warn('Creating a RevisionSpec directly has'
124
' been deprecated in version 0.11. Use'
125
' RevisionSpec.from_string()'
127
DeprecationWarning, stacklevel=2)
128
return RevisionSpec.from_string(spec)
131
def from_string(spec):
132
"""Parse a revision spec string into a RevisionSpec object.
134
:param spec: A string specified by the user
135
:return: A RevisionSpec object that understands how to parse the
138
if not isinstance(spec, (type(None), basestring)):
139
raise TypeError('error')
111
return object.__new__(RevisionSpec, spec)
118
if isinstance(spec, int):
119
return object.__new__(RevisionSpec_int, spec)
120
elif isinstance(spec, basestring):
121
for spectype in SPEC_TYPES:
122
if spec.startswith(spectype.prefix):
123
return object.__new__(spectype, spec)
125
raise BzrError('No namespace registered for string: %r' %
142
return RevisionSpec(None, _internal=True)
144
assert isinstance(spec, basestring), \
145
"You should only supply strings not %s" % (type(spec),)
147
for spectype in SPEC_TYPES:
148
if spec.startswith(spectype.prefix):
149
trace.mutter('Returning RevisionSpec %s for %s',
150
spectype.__name__, spec)
151
return spectype(spec, _internal=True)
128
raise TypeError('Unhandled revision type %s' % spec)
130
def __init__(self, spec):
153
# RevisionSpec_revno is special cased, because it is the only
154
# one that directly handles plain integers
156
if _revno_regex is None:
157
_revno_regex = re.compile(r'-?\d+(:.*)?$')
158
if _revno_regex.match(spec) is not None:
159
return RevisionSpec_revno(spec, _internal=True)
161
raise errors.NoSuchRevisionSpec(spec)
163
def __init__(self, spec, _internal=False):
164
"""Create a RevisionSpec referring to the Null revision.
166
:param spec: The original spec supplied by the user
167
:param _internal: Used to ensure that RevisionSpec is not being
168
called directly. Only from RevisionSpec.from_string()
171
# XXX: Update this after 0.10 is released
172
symbol_versioning.warn('Creating a RevisionSpec directly has'
173
' been deprecated in version 0.11. Use'
174
' RevisionSpec.from_string()'
176
DeprecationWarning, stacklevel=2)
177
self.user_spec = spec
131
178
if self.prefix and spec.startswith(self.prefix):
132
179
spec = spec[len(self.prefix):]
135
182
def _match_on(self, branch, revs):
183
trace.mutter('Returning RevisionSpec._match_on: None')
136
184
return RevisionInfo(branch, 0, None)
138
186
def _match_on_and_check(self, branch, revs):
143
191
# special case - the empty tree
145
193
elif self.prefix:
146
raise NoSuchRevision(branch, self.prefix + str(self.spec))
194
raise errors.InvalidRevisionSpec(self.user_spec, branch)
148
raise NoSuchRevision(branch, str(self.spec))
196
raise errors.InvalidRevisionSpec(self.spec, branch)
150
198
def in_history(self, branch):
151
revs = branch.revision_history()
200
revs = branch.revision_history()
152
203
return self._match_on_and_check(branch, revs)
154
205
# FIXME: in_history is somewhat broken,
164
215
def __repr__(self):
165
216
# this is mostly for helping with testing
166
return '<%s %s%s>' % (self.__class__.__name__,
217
return '<%s %s>' % (self.__class__.__name__,
220
def needs_branch(self):
221
"""Whether this revision spec needs a branch.
223
Set this to False the branch argument of _match_on is not used.
227
def get_branch(self):
228
"""When the revision specifier contains a branch location, return it.
230
Otherwise, return None.
173
class RevisionSpec_int(RevisionSpec):
174
"""Spec is a number. Special case."""
175
def __init__(self, spec):
176
self.spec = int(spec)
178
def _match_on(self, branch, revs):
180
revno = len(revs) + self.spec + 1
183
rev_id = branch.get_rev_id(revno, revs)
184
return RevisionInfo(branch, revno, rev_id)
187
237
class RevisionSpec_revno(RevisionSpec):
188
238
prefix = 'revno:'
190
240
def _match_on(self, branch, revs):
191
241
"""Lookup a revision by revision number"""
242
loc = self.spec.find(':')
244
revno_spec = self.spec
247
revno_spec = self.spec[:loc]
248
branch_spec = self.spec[loc+1:]
252
raise errors.InvalidRevisionSpec(self.user_spec,
253
branch, 'cannot have an empty revno and no branch')
257
revno = int(revno_spec)
258
except ValueError, e:
259
raise errors.InvalidRevisionSpec(self.user_spec,
263
from bzrlib.branch import Branch
264
branch = Branch.open(branch_spec)
265
# Need to use a new revision history
266
# because we are using a specific branch
267
revs = branch.revision_history()
270
if (-revno) >= len(revs):
273
revno = len(revs) + revno + 1
193
return RevisionInfo(branch, int(self.spec))
195
return RevisionInfo(branch, None)
275
revision_id = branch.get_rev_id(revno, revs)
276
except errors.NoSuchRevision:
277
raise errors.InvalidRevisionSpec(self.user_spec, branch)
278
return RevisionInfo(branch, revno, revision_id)
280
def needs_branch(self):
281
return self.spec.find(':') == -1
283
def get_branch(self):
284
if self.spec.find(':') == -1:
287
return self.spec[self.spec.find(':')+1:]
290
RevisionSpec_int = RevisionSpec_revno
197
292
SPEC_TYPES.append(RevisionSpec_revno)
216
312
def _match_on(self, branch, revs):
315
raise errors.NoCommits(branch)
316
return RevisionInfo(branch, len(revs), revs[-1])
218
319
offset = int(self.spec)
220
return RevisionInfo(branch, None)
223
raise BzrError('You must supply a positive value for --revision last:XXX')
224
return RevisionInfo(branch, len(revs) - offset + 1)
320
except ValueError, e:
321
raise errors.InvalidRevisionSpec(self.user_spec, branch, e)
324
raise errors.InvalidRevisionSpec(self.user_spec, branch,
325
'you must supply a positive value')
326
revno = len(revs) - offset + 1
328
revision_id = branch.get_rev_id(revno, revs)
329
except errors.NoSuchRevision:
330
raise errors.InvalidRevisionSpec(self.user_spec, branch)
331
return RevisionInfo(branch, revno, revision_id)
226
333
SPEC_TYPES.append(RevisionSpec_last)
231
338
prefix = 'before:'
233
340
def _match_on(self, branch, revs):
234
r = RevisionSpec(self.spec)._match_on(branch, revs)
235
if (r.revno is None) or (r.revno == 0):
237
return RevisionInfo(branch, r.revno - 1)
341
r = RevisionSpec.from_string(self.spec)._match_on(branch, revs)
343
raise errors.InvalidRevisionSpec(self.user_spec, branch,
344
'cannot go before the null: revision')
346
# We need to use the repository history here
347
rev = branch.repository.get_revision(r.rev_id)
348
if not rev.parent_ids:
352
revision_id = rev.parent_ids[0]
354
revno = revs.index(revision_id) + 1
360
revision_id = branch.get_rev_id(revno, revs)
361
except errors.NoSuchRevision:
362
raise errors.InvalidRevisionSpec(self.user_spec,
364
return RevisionInfo(branch, revno, revision_id)
239
366
SPEC_TYPES.append(RevisionSpec_before)
245
372
def _match_on(self, branch, revs):
246
raise BzrError('tag: namespace registered, but not implemented.')
373
raise errors.InvalidRevisionSpec(self.user_spec, branch,
374
'tag: namespace registered,'
375
' but not implemented')
248
377
SPEC_TYPES.append(RevisionSpec_tag)
380
class _RevListToTimestamps(object):
381
"""This takes a list of revisions, and allows you to bisect by date"""
383
__slots__ = ['revs', 'branch']
385
def __init__(self, revs, branch):
389
def __getitem__(self, index):
390
"""Get the date of the index'd item"""
391
r = self.branch.repository.get_revision(self.revs[index])
392
# TODO: Handle timezone.
393
return datetime.datetime.fromtimestamp(r.timestamp)
396
return len(self.revs)
251
399
class RevisionSpec_date(RevisionSpec):
253
401
_date_re = re.compile(
278
426
m = self._date_re.match(self.spec)
279
427
if not m or (not m.group('date') and not m.group('time')):
280
raise BzrError('Invalid revision date %r' % self.spec)
283
year, month, day = int(m.group('year')), int(m.group('month')), int(m.group('day'))
285
year, month, day = today.year, today.month, today.day
287
hour = int(m.group('hour'))
288
minute = int(m.group('minute'))
289
if m.group('second'):
290
second = int(m.group('second'))
294
hour, minute, second = 0,0,0
428
raise errors.InvalidRevisionSpec(self.user_spec,
429
branch, 'invalid date')
433
year = int(m.group('year'))
434
month = int(m.group('month'))
435
day = int(m.group('day'))
442
hour = int(m.group('hour'))
443
minute = int(m.group('minute'))
444
if m.group('second'):
445
second = int(m.group('second'))
449
hour, minute, second = 0,0,0
451
raise errors.InvalidRevisionSpec(self.user_spec,
452
branch, 'invalid date')
296
454
dt = datetime.datetime(year=year, month=month, day=day,
297
455
hour=hour, minute=minute, second=second)
299
for i in range(len(revs)):
300
r = branch.repository.get_revision(revs[i])
301
# TODO: Handle timezone.
302
dt = datetime.datetime.fromtimestamp(r.timestamp)
304
return RevisionInfo(branch, i+1)
305
return RevisionInfo(branch, None)
458
rev = bisect.bisect(_RevListToTimestamps(revs, branch), dt)
462
return RevisionInfo(branch, None)
464
return RevisionInfo(branch, rev + 1)
307
466
SPEC_TYPES.append(RevisionSpec_date)
311
470
prefix = 'ancestor:'
313
472
def _match_on(self, branch, revs):
314
from branch import Branch
315
from revision import common_ancestor, MultipleRevisionSources
316
other_branch = Branch.open_containing(self.spec)[0]
473
from bzrlib.branch import Branch
475
trace.mutter('matching ancestor: on: %s, %s', self.spec, branch)
476
other_branch = Branch.open(self.spec)
317
477
revision_a = branch.last_revision()
318
478
revision_b = other_branch.last_revision()
319
479
for r, b in ((revision_a, branch), (revision_b, other_branch)):
322
revision_source = MultipleRevisionSources(branch.repository,
323
other_branch.repository)
324
rev_id = common_ancestor(revision_a, revision_b, revision_source)
480
if r in (None, revision.NULL_REVISION):
481
raise errors.NoCommits(b)
482
revision_source = revision.MultipleRevisionSources(
483
branch.repository, other_branch.repository)
484
rev_id = revision.common_ancestor(revision_a, revision_b,
326
487
revno = branch.revision_id_to_revno(rev_id)
327
except NoSuchRevision:
488
except errors.NoSuchRevision:
329
490
return RevisionInfo(branch, revno, rev_id)
331
492
SPEC_TYPES.append(RevisionSpec_ancestor)
333
495
class RevisionSpec_branch(RevisionSpec):
334
496
"""A branch: revision specifier.
338
500
prefix = 'branch:'
340
502
def _match_on(self, branch, revs):
341
from branch import Branch
342
other_branch = Branch.open_containing(self.spec)[0]
503
from bzrlib.branch import Branch
504
other_branch = Branch.open(self.spec)
343
505
revision_b = other_branch.last_revision()
344
if revision_b is None:
345
raise NoCommits(other_branch)
506
if revision_b in (None, revision.NULL_REVISION):
507
raise errors.NoCommits(other_branch)
346
508
# pull in the remote revisions so we can diff
347
509
branch.fetch(other_branch, revision_b)
349
511
revno = branch.revision_id_to_revno(revision_b)
350
except NoSuchRevision:
512
except errors.NoSuchRevision:
352
514
return RevisionInfo(branch, revno, revision_b)