~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/wholehistory.py

  • Committer: John Arbash Meinel
  • Date: 2010-05-14 07:33:29 UTC
  • mto: This revision was merged to the branch mainline in revision 432.
  • Revision ID: john@arbash-meinel.com-20100514073329-6w7rrbulq7tzsloj
Stop referencing start-loggerhead and stop-loggerhead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Cache the whole history data needed by loggerhead about a branch.
 
1
#
 
2
# Copyright (C) 2008, 2009 Canonical Ltd.
2
3
#
3
4
# This program is free software; you can redistribute it and/or modify
4
5
# it under the terms of the GNU General Public License as published by
14
15
# along with this program; if not, write to the Free Software
15
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17
#
 
18
"""Cache the whole history data needed by loggerhead about a branch."""
17
19
 
18
20
import logging
19
21
import time
30
32
    # Filter ghosts, and null:
31
33
    if NULL_REVISION in revision_graph:
32
34
        del revision_graph[NULL_REVISION]
33
 
    for key, parents in revision_graph.items():
 
35
    for key, parents in revision_graph.iteritems():
34
36
        revision_graph[key] = tuple(parent for parent in parents if parent
35
37
            in revision_graph)
36
38
    return revision_graph
37
39
 
38
40
 
39
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
    """
40
46
    z = time.time()
41
47
 
42
48
    last_revid = branch.last_revision()
43
49
 
44
 
    log = logging.getLogger('loggerhead.%s' % (branch.nick,))
 
50
    log = logging.getLogger('loggerhead.%s' %
 
51
                            (branch.get_config().get_nickname(),))
45
52
 
46
53
    graph = branch.repository.get_graph()
47
 
    parent_map = dict(((key, value) for key, value in
48
 
         graph.iter_ancestry([last_revid]) if value is not None))
 
54
    parent_map = dict((key, value) for key, value in
 
55
        graph.iter_ancestry([last_revid]) if value is not None)
49
56
 
50
57
    _revision_graph = _strip_NULL_ghosts(parent_map)
51
 
    _full_history = []
52
 
    _revision_info = {}
53
 
    _revno_revid = {}
 
58
 
 
59
    _rev_info = []
 
60
    _rev_indices = {}
 
61
 
54
62
    if is_null(last_revid):
55
63
        _merge_sort = []
56
64
    else:
57
65
        _merge_sort = merge_sort(
58
66
            _revision_graph, last_revid, generate_revno=True)
59
67
 
60
 
    for (seq, revid, merge_depth, revno, end_of_merge) in _merge_sort:
61
 
        _full_history.append(revid)
 
68
    for info in _merge_sort:
 
69
        seq, revid, merge_depth, revno, end_of_merge = info
62
70
        revno_str = '.'.join(str(n) for n in revno)
63
 
        _revno_revid[revno_str] = revid
64
 
        _revision_info[revid] = (
65
 
            seq, revid, merge_depth, revno_str, end_of_merge)
66
 
 
67
 
    _where_merged = {}
68
 
 
69
 
    for revid in _revision_graph.keys():
70
 
        if _revision_info[revid][2] == 0:
 
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:
71
77
            continue
72
78
        for parent in _revision_graph[revid]:
73
 
            _where_merged.setdefault(parent, set()).add(revid)
 
79
            c = _rev_info[_rev_indices[parent]]
 
80
            if revid not in c[1]:
 
81
                c[1] = c[1] + (revid,)
74
82
 
75
83
    log.info('built revision graph cache: %r secs' % (time.time() - z,))
76
84
 
77
 
    return (_revision_graph, _full_history, _revision_info,
78
 
            _revno_revid, _merge_sort, _where_merged)
 
85
    return (_rev_info, _rev_indices)