~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/wholehistory.py

  • Committer: Matt Nordhoff
  • Date: 2009-10-17 09:28:42 UTC
  • mto: This revision was merged to the branch mainline in revision 406.
  • Revision ID: mnordhoff@mattnordhoff.com-20091017092842-o9oefagbqdh7ud4t
Remove trailing whitespace in the non-Python files too

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (C) 2008, 2009 Canonical Ltd.
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
#
 
18
"""Cache the whole history data needed by loggerhead about a branch."""
 
19
 
 
20
import logging
 
21
import time
 
22
 
 
23
from bzrlib.revision import is_null, NULL_REVISION
 
24
from bzrlib.tsort import merge_sort
 
25
 
 
26
 
 
27
def _strip_NULL_ghosts(revision_graph):
 
28
    """
 
29
    Copied over from bzrlib meant as a temporary workaround for
 
30
    deprecated methods.
 
31
    """
 
32
    # Filter ghosts, and null:
 
33
    if NULL_REVISION in revision_graph:
 
34
        del revision_graph[NULL_REVISION]
 
35
    for key, parents in revision_graph.iteritems():
 
36
        revision_graph[key] = tuple(parent for parent in parents if parent
 
37
            in revision_graph)
 
38
    return revision_graph
 
39
 
 
40
 
 
41
def compute_whole_history_data(branch):
 
42
    """Compute _rev_info and _rev_indices for a branch.
 
43
 
 
44
    See History.__doc__ for what these data structures mean.
 
45
    """
 
46
    z = time.time()
 
47
 
 
48
    last_revid = branch.last_revision()
 
49
 
 
50
    log = logging.getLogger('loggerhead.%s' %
 
51
                            (branch.get_config().get_nickname(),))
 
52
 
 
53
    graph = branch.repository.get_graph()
 
54
    parent_map = dict(((key, value) for key, value in
 
55
         graph.iter_ancestry([last_revid]) if value is not None))
 
56
 
 
57
    _revision_graph = _strip_NULL_ghosts(parent_map)
 
58
 
 
59
    _rev_info = []
 
60
    _rev_indices = {}
 
61
 
 
62
    if is_null(last_revid):
 
63
        _merge_sort = []
 
64
    else:
 
65
        _merge_sort = merge_sort(
 
66
            _revision_graph, last_revid, generate_revno=True)
 
67
 
 
68
    for info in _merge_sort:
 
69
        seq, revid, merge_depth, revno, end_of_merge = info
 
70
        revno_str = '.'.join(str(n) for n in revno)
 
71
        parents = _revision_graph[revid]
 
72
        _rev_indices[revid] = len(_rev_info)
 
73
        _rev_info.append([(seq, revid, merge_depth, revno_str, end_of_merge), (), parents])
 
74
 
 
75
    for revid in _revision_graph.iterkeys():
 
76
        if _rev_info[_rev_indices[revid]][0][2] == 0:
 
77
            continue
 
78
        for parent in _revision_graph[revid]:
 
79
            c = _rev_info[_rev_indices[parent]]
 
80
            if revid not in c[1]:
 
81
                c[1] = c[1] + (revid,)
 
82
 
 
83
    log.info('built revision graph cache: %r secs' % (time.time() - z))
 
84
 
 
85
    return (_rev_info, _rev_indices)