~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/wholehistory.py

  • Committer: Matt Nordhoff
  • Date: 2009-06-05 01:59:11 UTC
  • Revision ID: mnordhoff@mattnordhoff.com-20090605015911-blapf1agxclubok1
Fix logging 404 Not Found responses (bug #381029)

Show diffs side-by-side

added added

removed removed

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